Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 687 was 684, checked in by landauf, 16 years ago
  • added new class: the OutputHandler replaces std::cout in Debug.h and redirects the output not only to the console, but also into orxonox.log (this works, of course, only for output using COUT(level) from Debug.h)
  • commented DebugLevel
File size: 380 bytes
Line 
1PROJECT(Orxonox)
2
3SET( CORE_SRC_FILES
4  Factory.cc
5  IdentifierList.cc
6  Identifier.cc
7  MetaObjectList.cc
8  OrxonoxClass.cc
9  ConfigValueContainer.cc
10  Error.cc
11  SignalHandler.cc
12  ArgReader.cc
13  DebugLevel.cc
14  OutputHandler.cc
15)
16
17IF(WIN32)
18  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
19ELSE(WIN32)
20  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
21ENDIF(WIN32)
Note: See TracBrowser for help on using the repository browser.