Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/util/CMakeLists.txt @ 1076

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

two hours of Fuk is very 'enlighting', the whole thing works now.\ncmake. will now build lua, then compile with tolua and finally create the Makefiles for orxonox.\n

File size: 527 bytes
Line 
1AUX_SOURCE_DIRECTORY(tinyxml TINYXML_SRC_FILES)
2AUX_SOURCE_DIRECTORY(tolua   TOLUA_SRC_FILES)
3
4SET (UTIL_SRC_FILES
5  ArgReader.cc
6  Math.cc
7  String.cc
8  Clipboard.cc
9  SubString.cc
10  MultiTypePrimitive.cc
11  MultiTypeString.cc
12  MultiTypeMath.cc
13  ${TINYXML_SRC_FILES}
14  ${TOLUA_SRC_FILES}
15)
16
17ADD_LIBRARY( util SHARED ${UTIL_SRC_FILES} )
18
19IF(TESTING_ENABLED)
20  ADD_SUBDIRECTORY(testing)
21ENDIF(TESTING_ENABLED)
22
23TARGET_LINK_LIBRARIES( util
24  ${OGRE_LIBRARIES}
25  ${Lua_LIBRARIES}
26  ${Lua_LIBRARY}
27)
28
Note: See TracBrowser for help on using the repository browser.