Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/asylum/loader/CMakeLists.txt @ 1504

Last change on this file since 1504 was 1504, checked in by rgrieder, 16 years ago

Once again, set all the svn:eol-style property to native. I really hope this doesn't pose more problems than it solves..

  • Property eol-style set to native
File size: 299 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.