[Orxonox-commit 5626] r10286 - code/trunk/cmake

landauf at orxonox.net landauf at orxonox.net
Sat Feb 28 18:14:55 CET 2015


Author: landauf
Date: 2015-02-28 18:14:55 +0100 (Sat, 28 Feb 2015)
New Revision: 10286

Modified:
   code/trunk/cmake/CompilerConfigMSVC.cmake
Log:
trying to fix msvc linker warnings related to /INCREMENTAL:YES

Modified: code/trunk/cmake/CompilerConfigMSVC.cmake
===================================================================
--- code/trunk/cmake/CompilerConfigMSVC.cmake	2015-02-28 10:08:41 UTC (rev 10285)
+++ code/trunk/cmake/CompilerConfigMSVC.cmake	2015-02-28 17:14:55 UTC (rev 10286)
@@ -135,8 +135,8 @@
 ADD_LINKER_FLAGS("-DEBUG" Debug RelForDevs RelWithDebInfo CACHE)
 
 # Incremental linking speeds up development builds
-ADD_LINKER_FLAGS("-INCREMENTAL:YES" Debug   RelForDevs                CACHE)
-ADD_LINKER_FLAGS("-INCREMENTAL:NO"  Release RelWithDebInfo MinSizeRel CACHE)
+ADD_LINKER_FLAGS("-INCREMENTAL"    Debug   RelForDevs                CACHE)
+ADD_LINKER_FLAGS("-INCREMENTAL:NO" Release RelWithDebInfo MinSizeRel CACHE)
 
 # Eliminate unreferenced data
 ADD_LINKER_FLAGS("-OPT:REF" Release RelWithDebInfo MinSizeRel CACHE)




More information about the Orxonox-commit mailing list