Changeset 735 for code/branches/FICN
- Timestamp:
- Dec 30, 2007, 11:13:14 PM (17 years ago)
- Location:
- code/branches/FICN
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/CMakeLists.txt
r732 r735 38 38 # check wheter we are on a tardis machine 39 39 IF ("${UNAME_OV}" MATCHES "tardis") 40 SET (IS_TARDIS "tardis")40 SET (IS_TARDIS ON) 41 41 ENDIF ("${UNAME_OV}" MATCHES "tardis") 42 42 43 43 # if on tardis change compiler 44 IF 44 IF(IS_TARDIS) 45 45 MESSAGE("System is a TARDIS: Setting Compiler to g++-4.1.1") 46 46 SET(CMAKE_CXX_COMPILER "g++-4.1.1") … … 56 56 SET(CMAKE_LD_FLAGS "$ENV{LDFLAGS}") 57 57 58 59 58 #This sets where to look for "Find*.cmake" files 60 59 SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) … … 62 61 FIND_PACKAGE(OGRE) 63 62 FIND_PACKAGE(OIS) 64 FIND_PACKAGE(CEGUI)65 FIND_PACKAGE(CEGUI_OGRE)63 # FIND_PACKAGE(CEGUI) 64 # FIND_PACKAGE(CEGUI_OGRE) 66 65 FIND_PACKAGE(ENet) 67 FIND_PACKAGE(Boost )66 FIND_PACKAGE(Boost REQUIRED thread) 68 67 FIND_PACKAGE(OpenAL) 69 68 FIND_PACKAGE(ALUT) -
code/branches/FICN/cmake/FindBoost.cmake
r601 r735 1 # THIS FILE HAS BEEN MODIFIED TO WORK ON T ARDIS1 # THIS FILE HAS BEEN MODIFIED TO WORK ON THE TARDIS INFRASTURUCTURE of THE ETH. 2 2 # use with cation 3 3 # Nicolas Schlumberger <nico AT orxonx DOT net> (C) 2007 … … 278 278 IF(Boost_${library}_FOUND) 279 279 SET(Boost_LIBRARIES ${Boost_LIBRARIES} ${Boost_${library}_LIBRARIES}) 280 MESSAGE(STATUS "Found BoostLibrary: ${library}") 280 281 ENDIF(Boost_${library}_FOUND) 281 282 ENDFOREACH(library)
Note: See TracChangeset
for help on using the changeset viewer.