]> git.jsancho.org Git - lugaru.git/commitdiff
Added a line to enforce inclusion of C99 support headers for MSVC
authorNeal Gompa <ngompa13@gmail.com>
Sun, 16 May 2010 05:52:55 +0000 (00:52 -0500)
committerNeal Gompa <ngompa13@gmail.com>
Sun, 16 May 2010 05:52:55 +0000 (00:52 -0500)
CMakeLists.txt

index ee5c085bb58d4505b031c3e982d2294ec74662db..fe7c8b683def7a80e24aa7414edb7c8ae78c7b5f 100644 (file)
@@ -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)