Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/network/src/asylum/loader/CMakeLists.txt @ 1499

Last change on this file since 1499 was 1494, checked in by rgrieder, 17 years ago
  • set the svn:eol-style property to all files so, that where ever you check out, you'll get the right line endings (had to change every file with mixed endings to windows in order to set the property)
  • Property svn:eol-style set to native
File size: 285 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)
Note: See TracBrowser for help on using the repository browser.