Changeset 376 for code/branches/FICN/CMakeLists.txt
- Timestamp:
- Dec 3, 2007, 10:14:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/CMakeLists.txt
r371 r376 1 1 PROJECT(Orxonox) 2 #set some global variables, which are use throughout the project2 #set some global variables, which are used throughout the project 3 3 4 4 #Create some verbose output 5 5 SET(CMAKE_VERBOSE_MAKEFILE TRUE) 6 6 7 # set eNet search path7 # set boost search path 8 8 SET(Boost_INCLUDE_DIR "/usr/include/boost/") 9 9 … … 47 47 #This sets where to look for "Find*.cmake" files 48 48 SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) 49 # SET(BOOST_LIBDIR /usr/pack/boost-1.33.1-mo/i686-debian-linux3.1/lib/)50 # SET(BOOST_INCDIR /usr/pack/boost-1.33.1-mo/i686-debian-linux3.1/include/)51 49 52 50 #Performs the search and sets the variables … … 58 56 FIND_PACKAGE(Boost) 59 57 60 #Sets the search paths for the link ing58 #Sets the search paths for the linker 61 59 LINK_DIRECTORIES( 62 63 64 65 66 67 60 ${OGRE_LIB_DIR} 61 ${OIS_LIB_DIR} 62 ${CEGUI_LIB_DIR} 63 ${CEGUI_OGRE_LIB_DIR} 64 ${ENet_LIBRARY} 65 ${Boost_LIBRARY_DIRS} 68 66 ) 69 67 70 68 #Sets the search path for include files 71 69 INCLUDE_DIRECTORIES( 72 73 74 75 76 77 70 ${OGRE_INCLUDE_DIR} 71 ${OIS_INCLUDE_DIR} 72 ${CEGUI_INCLUDE_DIR} 73 ${CEGUI_OGRE_INCLUDE_DIR} 74 ${ENet_INCLUDE_DIR} 75 ${Boost_INCLUDE_DIRS} 78 76 ) 79 77
Note: See TracChangeset
for help on using the changeset viewer.