Changeset 3116 for code/branches/pch/src/orxonox
- Timestamp:
- Jun 3, 2009, 8:28:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/CMakeLists.txt
r3110 r3116 30 30 ADD_SUBDIRECTORY(objects) 31 31 ADD_SUBDIRECTORY(overlays) 32 ADD_SUBDIRECTORY(sound) 32 33 ADD_SUBDIRECTORY(tools) 33 ADD_SUBDIRECTORY(sound)34 GET_ALL_HEADER_FILES(ORXONOX_HDR_FILES)35 SET(ORXONOX_FILES ${ORXONOX_SRC_FILES} ${ORXONOX_HDR_FILES})36 34 37 GENERATE_SOURCE_GROUPS(${ORXONOX_FILES}) 38 GENERATE_TOLUA_BINDINGS(Orxonox ORXONOX_FILES INPUTFILES gui/GUIManager.h objects/quest/QuestManager.h objects/quest/QuestDescription.h objects/pickup/PickupInventory.h objects/pickup/BaseItem.h) 35 ORXONOX_ADD_EXECUTABLE(orxonox 36 FIND_HEADER_FILES 37 TOLUA_FILES 38 gui/GUIManager.h 39 objects/pickup/BaseItem.h 40 objects/pickup/PickupInventory.h 41 objects/quest/QuestDescription.h 42 objects/quest/QuestManager.h 43 LINK_LIBRARIES 44 ${OGRE_LIBRARY} 45 ${CEGUI_LIBRARY} 46 ${LUA_LIBRARIES} 47 ${CEGUILUA_LIBRARY} 48 ${Boost_SYSTEM_LIBRARY} 49 ${OPENAL_LIBRARY} 50 ${ALUT_LIBRARY} 51 ${VORBISFILE_LIBRARY} 52 ${VORBIS_LIBRARY} 53 ${OGG_LIBRARY} 54 ogreceguirenderer_orxonox 55 tinyxml++_orxonox 56 tolua++_orxonox 57 bullet_orxonox 58 util 59 core 60 network 61 SOURCE_FILES ${ORXONOX_SRC_FILES} 62 ) 39 63 40 ADD_EXECUTABLE(orxonox ${ORXONOX_FILES})41 64 GET_TARGET_PROPERTY(_exec_loc orxonox LOCATION) 42 65 GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) 43 66 SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") 44 45 TARGET_LINK_LIBRARIES(orxonox46 ${OGRE_LIBRARY}47 ${CEGUI_LIBRARY}48 ${LUA_LIBRARIES}49 ${CEGUILUA_LIBRARY}50 ${Boost_SYSTEM_LIBRARY}51 ${OPENAL_LIBRARY}52 ${ALUT_LIBRARY}53 ${VORBISFILE_LIBRARY}54 ${VORBIS_LIBRARY}55 ${OGG_LIBRARY}56 ogreceguirenderer_orxonox57 tinyxml++_orxonox58 tolua++_orxonox59 bullet_orxonox60 util61 core62 network63 )64 65 ORXONOX_INSTALL(orxonox)66 67 67 68
Note: See TracChangeset
for help on using the changeset viewer.