Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1313 was 1313, checked in by landauf, 16 years ago
  • implemented Shell, but not yet linked with the graphical console
  • added new features (cursor, OIS::KeyCode listener) to InputBuffer
  • changed some includes to avoid circular header-dependencies in OrxonoxClass and Shell
File size: 761 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  CommandExecutor.cc
20  Shell.cc
21  Language.cc
22  ClassTreeMask.cc
23  Loader.cc
24  Executor.cc
25  XMLPort.cc
26  Namespace.cc
27  NamespaceNode.cc
28  Tickable.cc
29  Script.cc
30  TclBind.cc
31  TclThreadManager.cc
32  IRC.cc
33)
34
35ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
36
37TARGET_LINK_LIBRARIES(core
38  util
39  tolualib
40  cpptcl
41  ${Lua_LIBRARIES}
42  ${OIS_LIBRARIES}
43  ${Boost_thread_LIBRARIES}
44)
Note: See TracBrowser for help on using the repository browser.