Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/loader/CMakeLists.txt @ 744

Last change on this file since 744 was 744, checked in by landauf, 16 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: 287 bytes
RevLine 
[341]1PROJECT(Orxonox)
2
3# TODO find a cleaner way to include xmlParser
4SET( LOADER_SRC_FILES
[376]5  LevelLoader.cc
[341]6)
7
[555]8IF(WIN32)
9  ADD_LIBRARY(loader ${LOADER_SRC_FILES})
10ELSE(WIN32)
11  ADD_LIBRARY(loader SHARED ${LOADER_SRC_FILES})
12ENDIF(WIN32)
[480]13
14TARGET_LINK_LIBRARIES( loader
[744]15  util
[480]16)
Note: See TracBrowser for help on using the repository browser.