Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/core/CMakeLists.txt @ 2509

Last change on this file since 2509 was 2509, checked in by rgrieder, 15 years ago

Merged revisions 1875-2278 of the buildsystem branch to buildsystem2.

  • Property svn:eol-style set to native
File size: 1015 bytes
RevLine 
[1505]1SET(CORE_SRC_FILES
[1755]2  Clock.cc
[1505]3  ConfigFileManager.cc
4  ConfigValueContainer.cc
[1535]5  Core.cc
[2087]6  Event.cc
[1755]7  GameState.cc
[1543]8  Language.cc
[2087]9  LuaBind.cc
[1747]10  ObjectListBase.cc
[1543]11  OrxonoxClass.cc
[1755]12  RootGameState.cc
[1543]13
14  # command
15  ArgumentCompletionFunctions.cc
16  CommandEvaluation.cc
[1505]17  CommandExecutor.cc
[1755]18  CommandLine.cc
[1505]19  ConsoleCommand.cc
20  ConsoleCommandCompilation.cc
[1543]21  Executor.cc
22
23  # hierarchy
24  Factory.cc
25  Identifier.cc
26  MetaObjectList.cc
27
28  # level
29  BaseObject.cc
30  ClassTreeMask.cc
[1505]31  Loader.cc
32  Namespace.cc
33  NamespaceNode.cc
[2087]34  Template.cc
[1543]35  XMLPort.cc
[2087]36  XMLNameListener.cc
[1543]37
38  # shell
39  IRC.cc
40  Shell.cc
[1505]41  TclBind.cc
42  TclThreadManager.cc
[1535]43
[1505]44)
45
[2131]46ADD_SOURCE_DIRECTORY(CORE_SRC_FILES input)
47
[2509]48INCLUDE(UseTolua)
49TOLUA(Core CORE_SRC_FILES INPUTFILES LuaBind.h CommandExecutor.h)
[1505]50
51ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
52
53TARGET_LINK_LIBRARIES(core
[2509]54  ${OGRE_LIBRARY}
55  ${Boost_THREAD_LIBRARY}
56  ${Boost_FILESYSTEM_LIBRARY}
57  ${LUA_LIBRARIES}
[1810]58  cpptcl_orxonox
[1555]59  ois_orxonox
[1810]60  tinyxml_orxonox
61  tolualib_orxonox
[1505]62  util
63)
Note: See TracBrowser for help on using the repository browser.