Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 704 was 704, checked in by landauf, 16 years ago

added a new class: Language
it's a manager for different language files to store translations of ingame text (it uses the default text, defined in the code, if no translation in the configured language is available)

File size: 395 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  Language.cc
16)
17
18IF(WIN32)
19  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
20ELSE(WIN32)
21  ADD_LIBRARY(core SHARED ${CORE_SRC_FILES})
22ENDIF(WIN32)
Note: See TracBrowser for help on using the repository browser.