Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/loader/CMakeLists.txt @ 793

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

reduced the build-script of the core branch to the minimum (utils, core, orxonox + test objects)

File size: 307 bytes
Line 
1SET( LOADER_SRC_FILES
2  LevelLoader.cc
3)
4
5IF (WIN32)
6  ADD_LIBRARY( loader ${LOADER_SRC_FILES} )
7ELSE (WIN32)
8  ADD_LIBRARY( loader SHARED ${LOADER_SRC_FILES})
9ENDIF (WIN32)
10
11SET_TARGET_PROPERTIES( loader PROPERTIES LINK_FLAGS "--no-undefined" )
12
13TARGET_LINK_LIBRARIES( loader
14  util
15  core
16)
Note: See TracBrowser for help on using the repository browser.