Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

changed InputBuffer, added OutputBuffer and made a first sketch of Shell.

File size: 749 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  Language.cc
21  ClassTreeMask.cc
22  Loader.cc
23  Executor.cc
24  XMLPort.cc
25  Namespace.cc
26  NamespaceNode.cc
27  Tickable.cc
28  Script.cc
29  TclBind.cc
30  TclThreadManager.cc
31  IRC.cc
32)
33
34ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
35
36TARGET_LINK_LIBRARIES(core
37  util
38  tolualib
39  cpptcl
40  ${Lua_LIBRARIES}
41  ${OIS_LIBRARIES}
42  ${Boost_thread_LIBRARIES}
43)
Note: See TracBrowser for help on using the repository browser.