Changeset 2643 for code/branches/buildsystem2/src/orxonox
- Timestamp:
- Feb 12, 2009, 9:40:33 AM (16 years ago)
- Location:
- code/branches/buildsystem2/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/orxonox/CMakeLists.txt
r2640 r2643 86 86 SET(MSVC_PLATFORM "Win32") 87 87 ENDIF() 88 STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" 89 VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") 88 90 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox.vcproj.user" "${CMAKE_CURRENT_BINARY_DIR}/orxonox.vcproj.user") 89 91 ENDIF(MSVC) -
code/branches/buildsystem2/src/orxonox/Settings.cc
r2509 r2643 63 63 void Settings::setConfigValues() 64 64 { 65 SetConfigValue(dataPath_, "../../../media/").description("Relative path to the game data.").callback(this, &Settings::dataPathChanged);65 SetConfigValue(dataPath_, ORXONOX_MEDIA_PATH).description("Relative path to the game data.").callback(this, &Settings::dataPathChanged); 66 66 } 67 67 -
code/branches/buildsystem2/src/orxonox/gamestates/GSGraphics.cc
r2639 r2643 100 100 SetConfigValue(ogreConfigFile_, "ogre.cfg") 101 101 .description("Location of the Ogre config file"); 102 SetConfigValue(ogrePluginsFolder_, ".")102 SetConfigValue(ogrePluginsFolder_, ORXONOX_OGRE_PLUGINS_FOLDER) 103 103 .description("Folder where the Ogre plugins are located."); 104 SetConfigValue(ogrePlugins_, "RenderSystem_GL, Plugin_ParticleFX")104 SetConfigValue(ogrePlugins_, ORXONOX_OGRE_PLUGINS) 105 105 .description("Comma separated list of all plugins to load."); 106 106 SetConfigValue(ogreLogFile_, "ogre.log") -
code/branches/buildsystem2/src/orxonox/orxonox.vcproj.user
r2621 r2643 2 2 <VisualStudioUserFile 3 3 ProjectType="Visual C++" 4 Version=" 8.00"4 Version="${VISUAL_STUDIO_VERSION_SIMPLE}.00" 5 5 ShowAllFiles="false" 6 6 >
Note: See TracChangeset
for help on using the changeset viewer.