Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/core/CMakeLists.txt @ 1038

Last change on this file since 1038 was 1038, checked in by landauf, 16 years ago

compiles on tardis

File size: 637 bytes
Line 
1AUX_SOURCE_DIRECTORY(tolua TOLUA_SRC_FILES)
2
3SET( CORE_SRC_FILES
4  ${TOLUA_SRC_FILES}
5  OrxonoxClass.cc
6  BaseObject.cc
7  Factory.cc
8  Identifier.cc
9  IdentifierDistributor.cc
10  InputHandler.cc
11  InputManager.cc
12  InputEventListener.cc
13  MetaObjectList.cc
14  ConfigValueContainer.cc
15  Error.cc
16  SignalHandler.cc
17  DebugLevel.cc
18  OutputHandler.cc
19  Language.cc
20  ClassTreeMask.cc
21  Loader.cc
22  Executor.cc
23  XMLPort.cc
24  Tickable.cc
25  Script.cc
26)
27
28ADD_LIBRARY( core SHARED ${CORE_SRC_FILES})
29SET_TARGET_PROPERTIES( core PROPERTIES LINK_FLAGS "--no-undefined" )
30
31TARGET_LINK_LIBRARIES( core
32  util
33  ${Lua_LIBRARIES}
34  ${OIS_LIBRARIES}
35)
Note: See TracBrowser for help on using the repository browser.