Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1504 was 1504, checked in by rgrieder, 16 years ago

Once again, set all the svn:eol-style property to native. I really hope this doesn't pose more problems than it solves..

  • Property eol-style set to native
File size: 1.2 KB
RevLine 
[1115]1SET(CORE_SRC_FILES
[1045]2  BaseObject.cc
[1224]3  ClassTreeMask.cc
4  ConfigFileManager.cc
5  ConfigValueContainer.cc
6  CoreSettings.cc
7  Error.cc
8  Executor.cc
[1045]9  Factory.cc
10  Identifier.cc
11  IdentifierDistributor.cc
[1502]12  InputManager.cc
13  KeyBinder.cc
14  OutputBuffer.cc
[1224]15  InputBuffer.cc
[1502]16  Shell.cc
17  CommandExecutor.cc
18  CommandEvaluation.cc
19  ConsoleCommand.cc
20  ArgumentCompletionFunctions.cc
21  ConsoleCommandCompilation.cc
[1045]22  Language.cc
23  Loader.cc
[1224]24  MetaObjectList.cc
[1052]25  Namespace.cc
26  NamespaceNode.cc
[1224]27  OrxonoxClass.cc
28  OutputHandler.cc
29  Script.cc
30  SignalHandler.cc
31  TclBind.cc
[1045]32  Tickable.cc
[1224]33  XMLPort.cc
[1502]34  TclThreadManager.cc
35  IRC.cc
[1153]36  tolua/tolua_bind.cc
[1045]37)
38
[1153]39GET_TARGET_PROPERTY(TOLUA_EXE tolua LOCATION)
40ADD_CUSTOM_COMMAND(
41  OUTPUT tolua/tolua_bind.cc tolua/tolua_bind.h
42  COMMAND ${TOLUA_EXE} -n core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg
43  DEPENDS tolua
44  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/lib
45)
46
[1115]47ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
[1045]48
[1115]49TARGET_LINK_LIBRARIES(core
[1045]50  ${Lua_LIBRARIES}
[1153]51  ${OGRE_LIBRARIES}
[1224]52  cpptcl
[1209]53  tinyxml
54  tolualib
[1219]55  ois
[1153]56  util
[1502]57  ${Boost_thread_LIBRARIES}
58  ${Boost_filesystem_LIBRARIES}
[1045]59)
Note: See TracBrowser for help on using the repository browser.