Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 735


Ignore:
Timestamp:
Dec 30, 2007, 11:13:14 PM (16 years ago)
Author:
nicolasc
Message:
  • created output for lib in FindBoost.cmake
  • cleanup in root-CML
Location:
code/branches/FICN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/CMakeLists.txt

    r732 r735  
    3838  # check wheter we are on a tardis machine
    3939  IF ("${UNAME_OV}" MATCHES "tardis")
    40     SET (IS_TARDIS "tardis")
     40    SET (IS_TARDIS ON)
    4141  ENDIF ("${UNAME_OV}" MATCHES "tardis")
    4242
    4343  # if on tardis change compiler
    44   IF (IS_TARDIS)
     44  IF(IS_TARDIS)
    4545    MESSAGE("System is a TARDIS: Setting Compiler to g++-4.1.1")
    4646    SET(CMAKE_CXX_COMPILER "g++-4.1.1")
     
    5656SET(CMAKE_LD_FLAGS "$ENV{LDFLAGS}")
    5757
    58 
    5958#This sets where to look for "Find*.cmake" files
    6059SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
     
    6261FIND_PACKAGE(OGRE)
    6362FIND_PACKAGE(OIS)
    64 FIND_PACKAGE(CEGUI)
    65 FIND_PACKAGE(CEGUI_OGRE)
     63# FIND_PACKAGE(CEGUI)
     64# FIND_PACKAGE(CEGUI_OGRE)
    6665FIND_PACKAGE(ENet)
    67 FIND_PACKAGE(Boost)
     66FIND_PACKAGE(Boost REQUIRED thread)
    6867FIND_PACKAGE(OpenAL)
    6968FIND_PACKAGE(ALUT)
  • code/branches/FICN/cmake/FindBoost.cmake

    r601 r735  
    1 # THIS FILE HAS BEEN MODIFIED TO WORK ON TARDIS
     1# THIS FILE HAS BEEN MODIFIED TO WORK ON THE TARDIS INFRASTURUCTURE of THE ETH.
    22# use with cation
    33# Nicolas Schlumberger <nico AT orxonx DOT net> (C) 2007
     
    278278    IF(Boost_${library}_FOUND)
    279279      SET(Boost_LIBRARIES ${Boost_LIBRARIES} ${Boost_${library}_LIBRARIES})
     280      MESSAGE(STATUS "Found BoostLibrary: ${library}")
    280281    ENDIF(Boost_${library}_FOUND)
    281282  ENDFOREACH(library)
Note: See TracChangeset for help on using the changeset viewer.