Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

moved tolua from util to core because of circular dependencies
reverted some bugfixes in ParticleInterface

File size: 673 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
34  ${Lua_LIBRARIES}
35  ${OIS_LIBRARIES}
36)
Note: See TracBrowser for help on using the repository browser.