]> git.jsancho.org Git - lugaru.git/commitdiff
Added in 'stdint.h' and 'inttypes.h' for MSVC as Dependencies, since MSVC isn't C99...
authorNeal Gompa <ngompa13@gmail.com>
Fri, 14 May 2010 06:46:37 +0000 (01:46 -0500)
committerNeal Gompa <ngompa13@gmail.com>
Fri, 14 May 2010 06:46:37 +0000 (01:46 -0500)
CMakeLists.txt

index 81af4a836730b166eb7eaa070b8aee711b665df4..d524e8ccb4c191df4ec38b6eea6e0fdb411baa02 100644 (file)
@@ -70,6 +70,14 @@ if(UNIX)
        )
 endif(UNIX)
 
+if(MSVC) # MSVC non-C99 support biting us hard
+       set(LUGARU_H
+               ${LUGARU_H}
+               ${DEPDIR}/msinttypes/stdint.h
+               ${DEPDIR}/msinttypes/inttypes.h
+       )
+endif(MSVC)
+
 set(LUGARU_H
        ${SRCDIR}/Constants.h
        ${SRCDIR}/Frustum.h