Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/cmake/src/core/CMakeLists.txt @ 1124

Last change on this file since 1124 was 1124, checked in by rgrieder, 16 years ago
  • completely rewrote FindLua.cmake (hope it still works) It should be more clear now and cache works. Lua_LIBRARIES, Lua_INCLUDE_DIR, Lua_FOUND and Lua_VERSION (5.1 or 5.0) are defined
  • something to add for last commit: when using out-of-source build, you can simply write 'rm -rf *' in the build directory to clean everything, including the CMake cache, but not the binary files in bin/ and bin/lib/
File size: 644 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  Language.cc
18  ClassTreeMask.cc
19  Loader.cc
20  Executor.cc
21  XMLPort.cc
22  Namespace.cc
23  NamespaceNode.cc
24  CommandExecutor.cc
25  InputBuffer.cc
26  Tickable.cc
27  Script.cc
28)
29
30ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
31
32TARGET_LINK_LIBRARIES(core
33  util
34  tolualib
35  ${Lua_LIBRARIES}
36  ${OIS_LIBRARIES}
37)
Note: See TracBrowser for help on using the repository browser.