Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

merged core2 back to trunk
there might be some errors, wasn't able to test it yet due to some strange g++ and linker behaviour.

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