Last change
on this file since 2575 was
2566,
checked in by rgrieder, 16 years ago
|
Renamed special CMake configuration files.
|
-
Property svn:eol-style set to
native
-
Property svn:mergeinfo set to
(toggle deleted branches)
/code/branches/buildsystem/cmake/CheckTardis.cmake | merged | eligible | /code/branches/questsystem2/cmake/CheckTardis.cmake | merged | eligible | /code/branches/ceguilua/cmake/CheckTardis.cmake | 1802-1808 | /code/branches/core3/cmake/CheckTardis.cmake | 1572-1739 | /code/branches/gcc43/cmake/CheckTardis.cmake | 1580 | /code/branches/gui/cmake/CheckTardis.cmake | 1635-1723 | /code/branches/input/cmake/CheckTardis.cmake | 1629-1636 | /code/branches/objecthierarchy/cmake/CheckTardis.cmake | 1911-2085,2100,2110-2169 | /code/branches/pickups/cmake/CheckTardis.cmake | 1926-2086 | /code/branches/questsystem/cmake/CheckTardis.cmake | 1894-2088 | /code/branches/script_trigger/cmake/CheckTardis.cmake | 1295-1953,1955 | /code/branches/weapon/cmake/CheckTardis.cmake | 1925-2094 |
|
File size:
1.5 KB
|
Rev | Line | |
---|
[2566] | 1 | ################# Tardis config ################# |
---|
[1505] | 2 | # This code checks whether the current machine # |
---|
| 3 | # is an ETH tardis box. # |
---|
| 4 | ################################################# |
---|
| 5 | |
---|
| 6 | IF (UNIX) |
---|
[2510] | 7 | FILE(STRINGS /etc/hostname HOSTNAME LIMIT_COUNT 1) |
---|
| 8 | IF ("${HOSTNAME}" MATCHES "^tardis-[a-z][0-9][0-9]$") |
---|
[1505] | 9 | SET (IS_TARDIS ON) |
---|
[2510] | 10 | ENDIF ("${HOSTNAME}" MATCHES "^tardis-[a-z][0-9][0-9]$") |
---|
[1505] | 11 | ENDIF (UNIX) |
---|
[2510] | 12 | MARK_AS_ADVANCED(HOSTNAME IS_TARDIS) |
---|
[2509] | 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 | #SET(Boost_ADDITIONAL_VERSIONS "1.36") |
---|
| 19 | SET(BOOST_INCLUDEDIR "/usr/pack/boost-1.34.1-sd/include") |
---|
| 20 | SET(BOOST_LIBRARYDIR "/usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/lib") |
---|
| 21 | SET(ENV{LUA_DIR} "/usr/pack/lua-5.0.3-sd;/usr/pack/lua-5.0.3-sd/i686-debian-linux3.1") |
---|
| 22 | SET(ENV{ALUTDIR} "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1") |
---|
| 23 | SET(ENV{OPENALDIR} "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1") |
---|
| 24 | SET(ENV{ENETDIR} "/usr/pack/enet-2007-sd;/usr/pack/enet-2007-sd/i686-debian-linux3.1") |
---|
| 25 | SET(ENV{OGGVORBISDIR} "/usr/pack/oggvorbis-1.0-ds;/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0") |
---|
| 26 | #SET(TCL_INCLUDE_PATH "/usr/pack/tcltk-8.4.9.linux-mo/include") |
---|
| 27 | SET(ENV{CEGUIDIR} "/usr/pack/cegui-0.5.0-sd;/usr/pack/cegui-0.5.0-sd/i686-debian-linux3.1") |
---|
| 28 | SET(ENV{OGREDIR} "/usr/pack/ogre-1.4.5-sd;/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1") |
---|
| 29 | ENDIF (IS_TARDIS) |
---|
Note: See
TracBrowser
for help on using the repository browser.