Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/core/CMakeLists.txt @ 1030

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

started implementing a config-file manager, but this is still unfinished.

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