Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 733 was 733, checked in by rgrieder, 16 years ago
  • moved BaseObject to core
File size: 412 bytes
Line 
1PROJECT(Orxonox)
2
3SET( CORE_SRC_FILES
4  BaseObject.cc
5  Factory.cc
6  IdentifierList.cc
7  Identifier.cc
8  MetaObjectList.cc
9  OrxonoxClass.cc
10  ConfigValueContainer.cc
11  Error.cc
12  SignalHandler.cc
13  ArgReader.cc
14  DebugLevel.cc
15  OutputHandler.cc
16  Language.cc
17)
18
19IF(WIN32)
20  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
21ELSE(WIN32)
22  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
23ENDIF(WIN32)
Note: See TracBrowser for help on using the repository browser.