Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/core/CMakeLists.txt @ 1083

Last change on this file since 1083 was 1076, checked in by rgrieder, 17 years ago

two hours of Fuk is very 'enlighting', the whole thing works now.\ncmake. will now build lua, then compile with tolua and finally create the Makefiles for orxonox.\n

File size: 805 bytes
Line 
1#get the created files
2AUX_SOURCE_DIRECTORY(tolua TOLUA_BIND_FILES)
3
4MESSAGE(STATUS "tolua sources: ${TOLUA_BIND_FILES}")
5
6SET( CORE_SRC_FILES
7  OrxonoxClass.cc
8  BaseObject.cc
9  Factory.cc
10  Identifier.cc
11  IdentifierDistributor.cc
12  InputHandler.cc
13  InputManager.cc
14  InputEventListener.cc
15  MetaObjectList.cc
16  ConfigFileManager.cc
17  ConfigValueContainer.cc
18  Error.cc
19  SignalHandler.cc
20  CoreSettings.cc
21  OutputHandler.cc
22  Language.cc
23  ClassTreeMask.cc
24  Loader.cc
25  Executor.cc
26  XMLPort.cc
27  Namespace.cc
28  NamespaceNode.cc
29  CommandExecutor.cc
30  InputBuffer.cc
31  Tickable.cc
32  Script.cc
33  ${TOLUA_BIND_FILES}
34)
35
36ADD_LIBRARY( core SHARED ${CORE_SRC_FILES})
37
38TARGET_LINK_LIBRARIES( core
39  util
40  ${Lua_LIBRARIES}
41  ${Lua_LIBRARY}
42  ${OIS_LIBRARIES}
43)
Note: See TracBrowser for help on using the repository browser.