Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 13 and Version 14 of code/Buildsystem


Ignore:
Timestamp:
Jul 3, 2011, 5:22:31 PM (13 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/Buildsystem

    v13 v14  
    3434== CMake Options ==
    3535Specifying them can either be done in the GUI very easily (please exclude the advanced entries) or on the command line with:
    36 {{{ cmake -D MYVALUE=TRUE .. }}}
     36{{{ cmake -D MYVALUE=value .. }}}
    3737If you wish to have more options than listed here, you will have to consult an Orxonox developer or the CMake online docs.
    3838
    3939|| Variable Name || Availability || Default Value || Description ||
     40
     41|| CMAKE_BUILD_TYPE ||  || Debug || Debug, Release, RelWithDebInfo, RelForDevs, ... ||
    4042
    4143|| CMAKE_INSTALL_PREFIX || || /usr (UNIX), %ProgramFiles%\Orxonox (Windows) || Where you would like to install Orxonox. See the install sections below for more information ||
     
    5355|| USER_SCRIPT_LIBRARY_CONFIG || || empty || Like above, but gets included earlier before finding the libraries. ||
    5456
    55 || VISUAL_LEAK_DETECTOR_ENABLE (MSVC) || || false || Enable including the Visual Leak detector in every source file to help tracking memory leaks. This option is only available when using Visual Studio and you need to have the library configured (global included and library folder set ||
     57|| VISUAL_LEAK_DETECTOR_ENABLE || MSVC || false || Enable including the Visual Leak detector in every source file to help tracking memory leaks. This option is only available when using Visual Studio and you need to have the library configured (global included and library folder set ||
    5658
    5759== Installation ==