Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6443


Ignore:
Timestamp:
Jan 4, 2010, 3:52:43 PM (14 years ago)
Author:
rgrieder
Message:

Fixed two problems with the ORXONOX_RELEASE really release version.

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/CompilerConfigMSVC.cmake

    r6429 r6443  
    150150# Use Link time code generation for Release config if ORXONOX_RELEASE is defined
    151151IF(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)
    154155ENDIF()
  • code/trunk/src/libraries/util/Debug.h

    r6417 r6443  
    7373    // Adjust this to discard certain output with level > hardDebugLevel at compile time already
    7474#ifdef ORXONOX_RELEASE
    75     const int hardDebugLevel = OutputLevel::Verbose
     75    const int hardDebugLevel = OutputLevel::Verbose;
    7676#elif defined(NDEBUG)
    7777    const int hardDebugLevel = OutputLevel::Verbose;
Note: See TracChangeset for help on using the changeset viewer.