Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 12, 2009, 1:33:55 PM (15 years ago)
Author:
rgrieder
Message:
  • Use $ENV{BOOST_ROOT} to find boost if possible
  • Set TOLUA_PARSER_WORKING_DIRECTORY now defaults to ${CMAKE_RUNTIME_OUTPUT_PATH}
  • Added bin/release, bin/debug, release and debug to the Ogre library prefix paths
  • Lots of small fixes and changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/cmake/ConfigTardis.cmake

    r2581 r2583  
    66IF (UNIX)
    77  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]$")
     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]$")
    1111ENDIF (UNIX)
    12 MARK_AS_ADVANCED(HOSTNAME IS_TARDIS)
    1312
    14 IF (IS_TARDIS)
     13IF (TARDIS)
    1514  MESSAGE(STATUS "Running on D-ITET isg.ee Tardis Computer. Using customized paths.")
    1615  SET(CMAKE_C_COMPILER "gcc-4.1")
    1716  SET(CMAKE_CXX_COMPILER "g++-4.1")
    1817
    19   #SET(Boost_ADDITIONAL_VERSIONS "1.36")
     18  # Note: When setting ENV${} variables, make sure to use quotes when
     19  #       having multiple directories.
    2020  SET(BOOST_INCLUDEDIR "/usr/pack/boost-1.34.1-sd/include")
    2121  SET(BOOST_LIBRARYDIR "/usr/pack/boost-1.34.1-sd/i686-debian-linux3.1/lib")
     
    2929  SET(ENV{OPENALDIR}   "/usr/pack/openal-0.0.8-cl;/usr/pack/openal-0.0.8-cl/i686-debian-linux3.1")
    3030  #SET(TCL_INCLUDE_PATH "/usr/pack/tcltk-8.4.9.linux-mo/include")
    31 ENDIF (IS_TARDIS)
     31ENDIF (TARDIS)
Note: See TracChangeset for help on using the changeset viewer.