Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 31, 2007, 4:36:19 AM (16 years ago)
Author:
landauf
Message:
  • 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:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/util/CMakeLists.txt

    r742 r744  
    11PROJECT(Orxonox)
    22
    3 ADD_SUBDIRECTORY(tinyxml)
     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
    423
    524IF(TESTING_ENABLED)
Note: See TracChangeset for help on using the changeset viewer.