Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/core/CMakeLists.txt @ 2069

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

added events but not yet connected with triggers

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1SET(CORE_SRC_FILES
2  Clock.cc
3  ConfigFileManager.cc
4  ConfigValueContainer.cc
5  Core.cc
6  Event.cc
7  GameState.cc
8  Language.cc
9  LuaBind.cc
10  ObjectListBase.cc
11  OrxonoxClass.cc
12  RootGameState.cc
13
14  # command
15  ArgumentCompletionFunctions.cc
16  CommandEvaluation.cc
17  CommandExecutor.cc
18  CommandLine.cc
19  ConsoleCommand.cc
20  ConsoleCommandCompilation.cc
21  Executor.cc
22
23  # hierarchy
24  Factory.cc
25  Identifier.cc
26  MetaObjectList.cc
27
28  # level
29  BaseObject.cc
30  ClassTreeMask.cc
31  Loader.cc
32  Namespace.cc
33  NamespaceNode.cc
34  Template.cc
35  XMLPort.cc
36
37  # shell
38  IRC.cc
39  Shell.cc
40  TclBind.cc
41  TclThreadManager.cc
42
43  # input
44  input/Button.cc
45  input/CalibratorCallback.cc
46  input/ExtendedInputState.cc
47  input/HalfAxis.cc
48  input/InputBuffer.cc
49  input/InputCommands.cc
50  input/InputManager.cc
51  input/JoyStickDeviceNumberListener.cc
52  input/KeyBinder.cc
53  input/KeyDetector.cc
54  input/SimpleInputState.cc
55
56  tolua/tolua_bind.cc
57)
58
59GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION)
60ADD_CUSTOM_COMMAND(
61  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h
62  COMMAND ${TOLUA_EXE} -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg
63  DEPENDS
64    tolua_orxonox
65    tolua/tolua.pkg
66    LuaBind.h
67    CommandExecutor.h
68  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
69)
70
71ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
72
73TARGET_LINK_LIBRARIES(core
74  ${OGRE_LIBRARIES}
75  ${Boost_thread_LIBRARIES}
76  ${Boost_filesystem_LIBRARIES}
77  lua_orxonox
78  cpptcl_orxonox
79  ois_orxonox
80  tinyxml_orxonox
81  tolualib_orxonox
82  util
83)
Note: See TracBrowser for help on using the repository browser.