Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/console/src/core/CMakeLists.txt @ 1442

Last change on this file since 1442 was 1442, checked in by landauf, 16 years ago
  • filesystem-autocompletion uses now boost::filesystem
  • fixed a small problem in OutputBuffer
File size: 905 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  OutputBuffer.cc
18  InputBuffer.cc
19  Shell.cc
20  CommandExecutor.cc
21  CommandEvaluation.cc
22  ConsoleCommand.cc
23  ArgumentCompletionFunctions.cc
24  ConsoleCommandCompilation.cc
25  Language.cc
26  ClassTreeMask.cc
27  Loader.cc
28  Executor.cc
29  XMLPort.cc
30  Namespace.cc
31  NamespaceNode.cc
32  Tickable.cc
33  Script.cc
34  TclBind.cc
35  TclThreadManager.cc
36  IRC.cc
37)
38
39ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
40
41TARGET_LINK_LIBRARIES(core
42  util
43  tolualib
44  cpptcl
45  ${Lua_LIBRARIES}
46  ${OIS_LIBRARIES}
47  ${Boost_thread_LIBRARIES}
48  ${Boost_filesystem_LIBRARIES}
49)
Note: See TracBrowser for help on using the repository browser.