Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/cmake/LibraryConfigTardis.cmake @ 2618

Last change on this file since 2618 was 2618, checked in by rgrieder, 15 years ago
  • Functionised CheckOGREPlugins.cmake
  • Updated LibraryConfigMSVC.cmake and LibraryConfigMinGW.cmake
  • Some more changes in LibraryConfig.cmake and BuildConfig.cmake
  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/buildsystem/cmake/CheckTardis.cmakemergedeligible
    /code/branches/questsystem2/cmake/CheckTardis.cmakemergedeligible
    /code/branches/ceguilua/cmake/CheckTardis.cmake1802-1808
    /code/branches/core3/cmake/CheckTardis.cmake1572-1739
    /code/branches/gcc43/cmake/CheckTardis.cmake1580
    /code/branches/gui/cmake/CheckTardis.cmake1635-1723
    /code/branches/input/cmake/CheckTardis.cmake1629-1636
    /code/branches/objecthierarchy/cmake/CheckTardis.cmake1911-2085,​2100,​2110-2169
    /code/branches/pickups/cmake/CheckTardis.cmake1926-2086
    /code/branches/questsystem/cmake/CheckTardis.cmake1894-2088
    /code/branches/script_trigger/cmake/CheckTardis.cmake1295-1953,​1955
    /code/branches/weapon/cmake/CheckTardis.cmake1925-2094
File size: 1.7 KB
Line 
1################# Tardis config #################
2# This code checks whether the current machine  #
3# is an ETH tardis box.                         #
4#################################################
5
6IF (UNIX)
7  FILE(STRINGS /etc/hostname HOSTNAME LIMIT_COUNT 1)
8  IF (${HOSTNAME} MATCHES "^tardis-[a-z][0-9][0-9]$")
9    SET (TARDIS ON)
10  ENDIF (${HOSTNAME} MATCHES "^tardis-[a-z][0-9][0-9]$")
11ENDIF (UNIX)
12
13IF (TARDIS)
14  MESSAGE(STATUS "Running on D-ITET isg.ee Tardis Computer. Using customized paths.")
15
16  # We cannot use the default compiler (why?)
17  SET(CMAKE_C_COMPILER "gcc-4.1")
18  SET(CMAKE_CXX_COMPILER "g++-4.1")
19
20  # Note: When setting ENV${} variables, make sure to use quotes when
21  #       having multiple directories.
22  SET(BOOST_INCLUDEDIR "/usr/pack/boost-1.34.1-sd/include")
23  SET(BOOST_LIBRARYDIR "/usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/lib")
24  SET(ENV{CEGUIDIR}    "/usr/pack/cegui-0.5.0-sd;/usr/pack/cegui-0.5.0-sd/i686-debian-linux3.1")
25  SET(ENV{ENETDIR}     "/usr/pack/enet-2007-sd;/usr/pack/enet-2007-sd/i686-debian-linux3.1")
26  SET(ENV{ALUTDIR}     "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1")
27  SET(ENV{OGGDIR}      "/usr/pack/oggvorbis-1.0-ds;/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0")
28  SET(ENV{VORBISDIR}   "/usr/pack/oggvorbis-1.0-ds;/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0")
29  SET(ENV{LUA_DIR}     "/usr/pack/lua-5.0.3-sd;/usr/pack/lua-5.0.3-sd/i686-debian-linux3.1")
30  SET(ENV{OGRE_HOME}   "/usr/pack/ogre-1.4.5-sd;/usr/pack/ogre-1.4.5-sd/i686-debian-linux3.1")
31  SET(ENV{OPENALDIR}   "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1")
32  #SET(TCL_INCLUDE_PATH "/usr/pack/tcltk-8.4.9.linux-mo/include")
33ENDIF (TARDIS)
Note: See TracBrowser for help on using the repository browser.