Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core2/src/orxonox/core/CMakeLists.txt @ 955

Last change on this file since 955 was 955, checked in by landauf, 16 years ago
  • added input buffer: this class captures key-input (at the moment it's using OIS directly, later it will use the InputHandler) and writes it into a string - other classes can listen to changes and can read and modify the string.
  • fixed some bugs in CommandExecutor
  • fixed a small bug (or changed a questionable feature) in Functor
File size: 564 bytes
RevLine 
[341]1SET( CORE_SRC_FILES
[871]2  OrxonoxClass.cc
[733]3  BaseObject.cc
[376]4  Factory.cc
5  Identifier.cc
[871]6  IdentifierDistributor.cc
[376]7  MetaObjectList.cc
[496]8  ConfigValueContainer.cc
[420]9  Error.cc
[496]10  SignalHandler.cc
[542]11  ArgReader.cc
[560]12  DebugLevel.cc
[684]13  OutputHandler.cc
[704]14  Language.cc
[871]15  ClassTreeMask.cc
16  Loader.cc
17  Executor.cc
18  XMLPort.cc
[877]19  Namespace.cc
[895]20  NamespaceNode.cc
[947]21  CommandExecutor.cc
[955]22  InputBuffer.cc
[341]23)
24
[768]25ADD_LIBRARY( core SHARED ${CORE_SRC_FILES})
26SET_TARGET_PROPERTIES( core PROPERTIES LINK_FLAGS "--no-undefined" )
27
28TARGET_LINK_LIBRARIES( core
29  util
[871]30)
Note: See TracBrowser for help on using the repository browser.