Added a preprocessor definition for MSVC to silence safety warnings regarding
authorJared Mulconry <j.mulconry@atomizergames.com>
Sun, 27 Nov 2016 06:34:34 +0000 (17:34 +1100)
committerJared Mulconry <j.mulconry@atomizergames.com>
Sun, 27 Nov 2016 06:34:34 +0000 (17:34 +1100)
C library functions. This addresses all warnings for MSVC x86 and x64 when
building zlib, tools and viewer as a static lib.

test/CMakeLists.txt

index 038a68d..911c2ee 100644 (file)
@@ -122,6 +122,10 @@ ELSE( WIN32 )
     SET( platform_libs pthread )
 ENDIF( WIN32 )
 
+IF(MSVC)
+               add_definitions(-D_CRT_SECURE_NO_WARNINGS)
+ENDIF(MSVC)
+
 target_link_libraries( unit assimp ${platform_libs} )
 
 add_subdirectory(headercheck)