Changeset 1977 for code/branches/buildsystem/src
- Timestamp:
- Oct 20, 2008, 5:53:30 PM (16 years ago)
- Location:
- code/branches/buildsystem/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/src/CMakeLists.txt
r1975 r1977 1 INCLUDE_DIRECTORIES(.) 2 INCLUDE_DIRECTORIES(..) 3 INCLUDE_DIRECTORIES(ois) # for ois library subfolders 4 INCLUDE_DIRECTORIES(orxonox) 5 #INCLUDE_DIRECTORIES(lua) # for tolua library and generator 6 INCLUDE_DIRECTORIES(${LUA_INCLUDE_DIR}) 1 # Set the search paths for include files 2 INCLUDE_DIRECTORIES( 3 ${OGRE_INCLUDE_DIR} 4 ${CEGUI_INCLUDE_DIR} 5 # ${CEGUI_OGRE_INCLUDE_DIR} 6 ${ENet_INCLUDE_DIR} 7 ${Boost_INCLUDE_DIRS} 8 ${OPENAL_INCLUDE_DIR} 9 ${ALUT_INCLUDE_DIR} 10 ${VORBIS_INCLUDE_DIR} 11 ${OGG_INCLUDE_DIR} 12 ${LUA_INCLUDE_DIR} 13 ${TCL_INCLUDE_PATH} 14 ${DirectX_INCLUDE_DIR} 15 ${ZLIB_INCLUDE_DIR} 16 ) 17 18 # Set the search paths for the linking 19 LINK_DIRECTORIES( 20 ${OGRE_LIB_DIR} 21 ${CEGUI_LIB_DIR} 22 # ${CEGUI_SCRIPT_LIB_DIR} 23 # ${CEGUI_OGRE_LIB_DIR} 24 ${ENet_LIBRARY} 25 ${Boost_LIBRARY_DIRS} 26 ${Zlib_LIBRARY_DIR} 27 ${TCL_LIBRARY} 28 ) 29 30 INCLUDE_DIRECTORIES( 31 . 32 .. 33 ois 34 orxonox 35 ) 7 36 8 37 ADD_SUBDIRECTORY(cpptcl) … … 12 41 ADD_SUBDIRECTORY(tolua) 13 42 43 # TODO: write include file for this stuff 14 44 # Some people may not have CEGUILua installed, espc. with version 0.5 15 45 # And we don't know what lua version it was linked against, so we compile -
code/branches/buildsystem/src/core/CMakeLists.txt
r1975 r1977 59 59 TARGET_LINK_LIBRARIES(core 60 60 ${OGRE_LIBRARIES} 61 ${Boost_ thread_LIBRARIES}62 ${Boost_ filesystem_LIBRARIES}61 ${Boost_THREAD_LIBRARY} 62 ${Boost_FILESYSTEM_LIBRARY} 63 63 ${LUA_LIBRARIES} 64 64 cpptcl_orxonox -
code/branches/buildsystem/src/network/CMakeLists.txt
r1740 r1977 28 28 ${ZLIB_LIBRARY} 29 29 ${ENet_LIBRARY} 30 ${Boost_ thread_LIBRARIES}30 ${Boost_THREAD_LIBRARY} 31 31 core 32 32 ) -
code/branches/buildsystem/src/orxonox/CMakeLists.txt
r1975 r1977 98 98 ${CEGUI_LIBRARIES} 99 99 ${LUA_LIBRARIES} 100 # TODO: write include file for this 100 101 CEGUILuaScriptModule 101 102 tinyxml_orxonox
Note: See TracChangeset
for help on using the changeset viewer.