Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 12, 2009, 1:33:55 PM (15 years ago)
Author:
rgrieder
Message:
  • Use $ENV{BOOST_ROOT} to find boost if possible
  • Set TOLUA_PARSER_WORKING_DIRECTORY now defaults to ${CMAKE_RUNTIME_OUTPUT_PATH}
  • Added bin/release, bin/debug, release and debug to the Ogre library prefix paths
  • Lots of small fixes and changes
File:
1 edited

Legend:

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

    r2582 r2583  
    3232############ Misc Default Options ###############
    3333
     34# When searching for debug libraries, this is appended to the libarary name
    3435SET(LIBRARY_DEBUG_POSTFIX "_d")
     36# Working directory for the tolua parser. Adjust for windows because lua.dll has to be there!
     37SET(TOLUA_PARSER_WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
    3538
    36 OPTION(EXTRA_WARNINGS "Enable some extra warnings (pollutes the output heavily)")
     39OPTION(EXTRA_WARNINGS "Enable some extra warnings (heavily pollutes the output)")
    3740IF(EXTRA_WARNINGS)
    3841  SET(ORXONOX_WARNING_FLAGS "-Wextra --Wno-unsued-parameter")
     
    4043  SET(ORXONOX_WARNING_FLAGS "-Wall")
    4144ENDIF(EXTRA_WARNINGS)
    42 
    43 MARK_AS_ADVANCED(
    44   LIBRARY_DEBUG_POSTFIX
    45   ORXONOX_WARNINGS_FLAGS
    46 )
    4745
    4846###### Default Compiler/Linker Options ##########
Note: See TracChangeset for help on using the changeset viewer.