Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/util/CMakeLists.txt @ 749

Last change on this file since 749 was 744, checked in by landauf, 17 years ago
  • changed CML files: xml library is now util library and is open for more files
  • added substring class from orxonox v1, linked to the new util library
File size: 419 bytes
Line 
1PROJECT(Orxonox)
2
3PROJECT(Orxonox)
4
5INCLUDE_DIRECTORIES(tinyxml)
6
7SET (SRC_FILES
8  tinyxml/tinystr.cc
9  tinyxml/tinyxml.cc
10  tinyxml/tinyxmlerror.cc
11  tinyxml/tinyxmlparser.cc
12  tinyxml/ticpp.cc
13  substring.cc
14)
15
16IF(WIN32)
17  ADD_LIBRARY(util ${SRC_FILES})
18ELSE(WIN32)
19  ADD_LIBRARY(util SHARED ${SRC_FILES})
20ENDIF(WIN32)
21
22
23
24IF(TESTING_ENABLED)
25ADD_SUBDIRECTORY(testing)
26ENDIF(TESTING_ENABLED)
Note: See TracBrowser for help on using the repository browser.