Changes between Version 13 and Version 14 of code/Buildsystem
- Timestamp:
- Jul 3, 2011, 5:22:31 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/Buildsystem
v13 v14 34 34 == CMake Options == 35 35 Specifying 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 .. }}} 37 37 If you wish to have more options than listed here, you will have to consult an Orxonox developer or the CMake online docs. 38 38 39 39 || Variable Name || Availability || Default Value || Description || 40 41 || CMAKE_BUILD_TYPE || || Debug || Debug, Release, RelWithDebInfo, RelForDevs, ... || 40 42 41 43 || CMAKE_INSTALL_PREFIX || || /usr (UNIX), %ProgramFiles%\Orxonox (Windows) || Where you would like to install Orxonox. See the install sections below for more information || … … 53 55 || USER_SCRIPT_LIBRARY_CONFIG || || empty || Like above, but gets included earlier before finding the libraries. || 54 56 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 || 56 58 57 59 == Installation ==