Changeset 2199
- Timestamp:
- Nov 12, 2008, 4:09:01 PM (16 years ago)
- Location:
- code/branches/buildsystem
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/CMakeLists.txt
r2197 r2199 65 65 # Add main source dir 66 66 ADD_SUBDIRECTORY(src) 67 ADD_SUBDIRECTORY(bin) -
code/branches/buildsystem/bin/run-script
r1735 r2199 1 #!/bin/ bash1 #!/bin/sh 2 2 3 if [ [ ! -f orxonox ]]; then3 if [ ! -f orxonox ]; then 4 4 echo "orxonox does not exist" 5 5 echo "did you compile it?" … … 8 8 fi 9 9 10 if [ [ -ne orge.cfg ]]; then10 if [ ! -f orge.cfg ]; then 11 11 cp ogre.cfg-init ogre.cfg 12 12 fi … … 14 14 # check if plugins.cfg exists, and of not create it 15 15 # and modify 16 if [ [ ! -f plugins.cfg ]] ; then17 if uname -n | grep "tardis" > /dev/null; then16 if [ ! -f plugins.cfg ]; then 17 if uname -n | grep -q "tardis"; then 18 18 sed -e 's:PluginFolder=/usr/lib/OGRE:PluginFolder=/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1/lib/OGRE/:' \ 19 19 -e 's:#Plugin=Plugin_CgProgramManager:Plugin=Plugin_CgProgramManager:' plugins.cfg-init > plugins.cfg -
code/branches/buildsystem/run
r1506 r2199 1 #!/bin/ bash2 cd bin 3 ./run-script $@ 4 cd ..1 #!/bin/sh 2 # convenience script for starting orxonox 3 4 cd build/bin && exec ./run-script $@ -
code/branches/buildsystem/src/orxonox/Settings.cc
r1755 r2199 64 64 void Settings::setConfigValues() 65 65 { 66 SetConfigValue(dataPath_, "../../ Media/").description("Relative path to the game data.").callback(this, &Settings::dataPathChanged);66 SetConfigValue(dataPath_, "../../../Media/").description("Relative path to the game data.").callback(this, &Settings::dataPathChanged); 67 67 } 68 68
Note: See TracChangeset
for help on using the changeset viewer.