Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 12, 2009, 9:40:33 AM (16 years ago)
Author:
rgrieder
Message:
  • Default config values for OGRE plugins, the plugins folder and the media directory are now configured in OrxonoxConfig.h
  • You should not need a preconfigured orxonox.ini anymore after installation
  • Small bugfixes in compiler flags and visual studio project generation
  • probable bugfix in FlagUtilities.cmake
Location:
code/branches/buildsystem2/cmake
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/cmake/BuildConfigMSVC.cmake

    r2639 r2643  
    116116# CMake default flags: -MANIFEST -STACK:10000000 -machine:I386
    117117# and INCREMENTAL and DEBUG for debug versions
    118 ADD_LINKER_FLAGS("-OPT:REF -OPT:ICF -OPT:NOWIN98" Release MinSizeRel CACHE)
     118ADD_LINKER_FLAGS("-OPT:REF -OPT:ICF" Release MinSizeRel CACHE)
     119ADD_LINKER_FLAGS("-OPT:NOWIN98" MSVC80 CACHE)
  • code/branches/buildsystem2/cmake/FlagUtilities.cmake

    r2626 r2643  
    5050  IF(NOT DEFINED _INTERNAL_${_varname} OR "${_INTERNAL_${_varname}}" STREQUAL "${${_varname}}")
    5151    SET(${_varname} "${_value}" CACHE ${_type} "${_docstring}" FORCE)
    52   ENDIF()
    53   SET(_INTERNAL_${_varname} "${_value}" CACHE INTERNAL "Do not edit in any case!")
     52    SET(_INTERNAL_${_varname} "${_value}" CACHE INTERNAL "Do not edit in any case!")
     53  ENDIF()
    5454ENDMACRO(SET_CACHE)
    5555
Note: See TracChangeset for help on using the changeset viewer.