Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 947 was 947, checked in by landauf, 16 years ago
  • added CommandExecutor
  • added ConsoleCommand macros
  • added getTypename to all MultiTypes
  • added 2 static maps to Identifier that contain all existing Identifiers with their names and lowercase names respectively.
  • added 2 maps to each Identifier that contain all console commands of the Identifier with their names and lowercase names respectively
  • using tolower(.) and toupper(.) instead of selfmade hacks in String.h
  • added AccessLevel enum
  • added some test-console-commands to OutputHandler, Ambient and SpaceShip
File size: 546 bytes
Line 
1SET( CORE_SRC_FILES
2  OrxonoxClass.cc
3  BaseObject.cc
4  Factory.cc
5  Identifier.cc
6  IdentifierDistributor.cc
7  MetaObjectList.cc
8  ConfigValueContainer.cc
9  Error.cc
10  SignalHandler.cc
11  ArgReader.cc
12  DebugLevel.cc
13  OutputHandler.cc
14  Language.cc
15  ClassTreeMask.cc
16  Loader.cc
17  Executor.cc
18  XMLPort.cc
19  Namespace.cc
20  NamespaceNode.cc
21  CommandExecutor.cc
22)
23
24ADD_LIBRARY( core SHARED ${CORE_SRC_FILES})
25SET_TARGET_PROPERTIES( core PROPERTIES LINK_FLAGS "--no-undefined" )
26
27TARGET_LINK_LIBRARIES( core
28  util
29)
Note: See TracBrowser for help on using the repository browser.