| 1 | ################# Tardis config ################# |
|---|
| 2 | # This code checks whether the current machine # |
|---|
| 3 | # is an ETH tardis box. # |
|---|
| 4 | ################################################# |
|---|
| 5 | |
|---|
| 6 | IF (UNIX) |
|---|
| 7 | FILE(STRINGS /etc/hostname HOSTNAME LIMIT_COUNT 1) |
|---|
| 8 | IF ("${HOSTNAME}" MATCHES "^tardis-[a-z][0-9][0-9]$") |
|---|
| 9 | SET (IS_TARDIS ON) |
|---|
| 10 | ENDIF ("${HOSTNAME}" MATCHES "^tardis-[a-z][0-9][0-9]$") |
|---|
| 11 | ENDIF (UNIX) |
|---|
| 12 | MARK_AS_ADVANCED(HOSTNAME IS_TARDIS) |
|---|
| 13 | |
|---|
| 14 | IF (IS_TARDIS) |
|---|
| 15 | MESSAGE(STATUS "Running on D-ITET isg.ee Tardis Computer. Using customized paths.") |
|---|
| 16 | SET(CMAKE_C_COMPILER "gcc-4.1") |
|---|
| 17 | SET(CMAKE_CXX_COMPILER "g++-4.1") |
|---|
| 18 | |
|---|
| 19 | #SET(Boost_ADDITIONAL_VERSIONS "1.36") |
|---|
| 20 | SET(BOOST_INCLUDEDIR /usr/pack/boost-1.34.1-sd/include) |
|---|
| 21 | SET(BOOST_LIBRARYDIR /usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/lib) |
|---|
| 22 | SET(ENV{CEGUIDIR} /usr/pack/cegui-0.5.0-sd |
|---|
| 23 | /usr/pack/cegui-0.5.0-sd/i686-debian-linux3.1) |
|---|
| 24 | SET(ENV{ENETDIR} /usr/pack/enet-2007-sd |
|---|
| 25 | /usr/pack/enet-2007-sd/i686-debian-linux3.1) |
|---|
| 26 | SET(ENV{ALUTDIR} /usr/pack/openal-0.0.8-cl |
|---|
| 27 | /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1) |
|---|
| 28 | SET(ENV{OGGDIR} /usr/pack/oggvorbis-1.0-ds |
|---|
| 29 | /usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0) |
|---|
| 30 | SET(ENV{VORBISDIR} /usr/pack/oggvorbis-1.0-ds |
|---|
| 31 | /usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0) |
|---|
| 32 | SET(ENV{LUA_DIR} /usr/pack/lua-5.0.3-sd |
|---|
| 33 | /usr/pack/lua-5.0.3-sd/i686-debian-linux3.1) |
|---|
| 34 | SET(ENV{OGRE_HOME} /usr/pack/ogre-1.4.5-sd |
|---|
| 35 | /usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1) |
|---|
| 36 | SET(ENV{OPENALDIR} /usr/pack/openal-0.0.8-cl |
|---|
| 37 | /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1) |
|---|
| 38 | #SET(TCL_INCLUDE_PATH /usr/pack/tcltk-8.4.9.linux-mo/include) |
|---|
| 39 | ENDIF (IS_TARDIS) |
|---|