From bbf7582c00138ab38f84b6acf52e76175bfebb79 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 16 May 2010 00:52:55 -0500 Subject: [PATCH] Added a line to enforce inclusion of C99 support headers for MSVC --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee5c085..fe7c8b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -191,6 +191,10 @@ if(WIN32) include_directories("${DEPDIR}/OpenGL") endif(WIN32) +if(MSVC) # More Visual Studio annoyances + include_directories("${DEPDIR}/msinttypes") +endif(MSVC) + option (LUGARU_FORCE_INTERNAL_OPENAL "Force internal libOpenAL, even if there's a system version" False) if (NOT LUGARU_FORCE_INTERNAL_OPENAL) find_package(OpenAL REQUIRED) -- 2.39.2