Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/core/CMakeLists.txt @ 669

Last change on this file since 669 was 560, checked in by landauf, 17 years ago
  • changed output from std::cout to COUT(level)
  • added SoftDebugLevel config-variable (its a hack, but it works fine)
File size: 353 bytes
RevLine 
[341]1PROJECT(Orxonox)
2
3SET( CORE_SRC_FILES
[376]4  Factory.cc
5  IdentifierList.cc
6  Identifier.cc
7  MetaObjectList.cc
8  OrxonoxClass.cc
[496]9  ConfigValueContainer.cc
[420]10  Error.cc
[496]11  SignalHandler.cc
[542]12  ArgReader.cc
[560]13  DebugLevel.cc
[341]14)
15
[555]16IF(WIN32)
17  ADD_LIBRARY(core ${CORE_SRC_FILES})
18ELSE(WIN32)
19  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
20ENDIF(WIN32)
Note: See TracBrowser for help on using the repository browser.