Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem/src/core/CMakeLists.txt @ 1975

Last change on this file since 1975 was 1975, checked in by adrfried, 16 years ago

lua removed and using extern one

  • Property svn:eol-style set to native
File size: 1.2 KB
RevLine 
[1505]1SET(CORE_SRC_FILES
[1755]2  Clock.cc
[1505]3  ConfigFileManager.cc
4  ConfigValueContainer.cc
[1535]5  Core.cc
[1755]6  GameState.cc
[1543]7  Language.cc
[1747]8  ObjectListBase.cc
[1543]9  OrxonoxClass.cc
[1755]10  RootGameState.cc
[1543]11  Script.cc
12
13  # command
14  ArgumentCompletionFunctions.cc
15  CommandEvaluation.cc
[1505]16  CommandExecutor.cc
[1755]17  CommandLine.cc
[1505]18  ConsoleCommand.cc
19  ConsoleCommandCompilation.cc
[1543]20  Executor.cc
21
22  # hierarchy
23  Factory.cc
24  Identifier.cc
25  MetaObjectList.cc
26
27  # level
28  BaseObject.cc
29  ClassTreeMask.cc
[1505]30  Loader.cc
31  Namespace.cc
32  NamespaceNode.cc
[1543]33  XMLPort.cc
34
35  # shell
36  IRC.cc
37  Shell.cc
[1505]38  TclBind.cc
39  TclThreadManager.cc
[1535]40
[1543]41  # input
[1535]42  input/Button.cc
43  input/CalibratorCallback.cc
[1755]44  input/ExtendedInputState.cc
[1535]45  input/HalfAxis.cc
46  input/InputBuffer.cc
47  input/InputCommands.cc
48  input/InputManager.cc
49  input/KeyBinder.cc
50  input/KeyDetector.cc
[1755]51  input/SimpleInputState.cc
[1505]52)
53
[1882]54INCLUDE(UseTolua)
55TOLUA(Core CORE_SRC_FILES INPUTFILES Script.h CommandExecutor.h)
[1505]56
57ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
58
59TARGET_LINK_LIBRARIES(core
60  ${OGRE_LIBRARIES}
[1844]61  ${Boost_thread_LIBRARIES}
62  ${Boost_filesystem_LIBRARIES}
[1975]63  ${LUA_LIBRARIES}
[1810]64  cpptcl_orxonox
[1555]65  ois_orxonox
[1810]66  tinyxml_orxonox
67  tolualib_orxonox
[1505]68  util
69)
Note: See TracBrowser for help on using the repository browser.