Changeset 6443
- Timestamp:
- Jan 4, 2010, 3:52:43 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/cmake/CompilerConfigMSVC.cmake
r6429 r6443 150 150 # Use Link time code generation for Release config if ORXONOX_RELEASE is defined 151 151 IF(ORXONOX_RELEASE) 152 REMOVE_COMPILER_FLAGS("-INCREMENTAL:YES" ReleaseAll CACHE) 153 ADD_LINKER_FLAGS("-LTCG" ReleaseAll CACHE) 152 REMOVE_LINKER_FLAGS("-INCREMENTAL:YES" ReleaseAll CACHE) 153 ADD_LINKER_FLAGS ("-INCREMENTAL:NO" ReleaseAll CACHE) 154 ADD_LINKER_FLAGS ("-LTCG" ReleaseAll CACHE) 154 155 ENDIF() -
code/trunk/src/libraries/util/Debug.h
r6417 r6443 73 73 // Adjust this to discard certain output with level > hardDebugLevel at compile time already 74 74 #ifdef ORXONOX_RELEASE 75 const int hardDebugLevel = OutputLevel::Verbose 75 const int hardDebugLevel = OutputLevel::Verbose; 76 76 #elif defined(NDEBUG) 77 77 const int hardDebugLevel = OutputLevel::Verbose;
Note: See TracChangeset
for help on using the changeset viewer.