Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/util/CMakeLists.txt @ 794

Last change on this file since 794 was 792, checked in by landauf, 17 years ago

upload of the work i did before the exams (not yet finished nor working)

File size: 475 bytes
Line 
1PROJECT(Orxonox)
2
3AUX_SOURCE_DIRECTORY(tinyxml TINYXML_SRC_FILES)
4
5SET (UTIL_SRC_FILES
6  ${TINYXML_SRC_FILES}
7  Math.cc
8  String.cc
9  substring.cc
10  MultiTypePrimitive.cc
11  MultiTypeString.cc
12  MultiTypeMath.cc
13)
14
15ADD_LIBRARY( util SHARED ${UTIL_SRC_FILES} )
16SET_TARGET_PROPERTIES( util PROPERTIES LINK_FLAGS "--no-undefined" )
17
18IF(TESTING_ENABLED)
19  ADD_SUBDIRECTORY(testing)
20ENDIF(TESTING_ENABLED)
21
22TARGET_LINK_LIBRARIES( util
23  ${OGRE_LIBRARIES}
24)
Note: See TracBrowser for help on using the repository browser.