Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1158 was 1153, checked in by rgrieder, 17 years ago
  • merged cmake branch back to trunk (the last one, hopefully ;))
  • added Oli's lua library name (liblua.so)
File size: 634 bytes
RevLine 
[1115]1SET(UTIL_SRC_FILES
[1024]2  ArgReader.cc
[1052]3  Clipboard.cc
[1120]4  ExprParser.cc
[1153]5  Math.cc
[871]6  MultiTypePrimitive.cc
7  MultiTypeString.cc
8  MultiTypeMath.cc
[1153]9  String.cc
10  SubString.cc
11
12  tinyxml/ticpp.cc
13  tinyxml/tinystr.cc
14  tinyxml/tinyxml.cc
15  tinyxml/tinyxmlerror.cc
16  tinyxml/tinyxmlparser.cc
17
18  tolua/tolua_event.c
19  tolua/tolua_is.c
20  tolua/tolua_map.c
21  tolua/tolua_push.c
22  tolua/tolua_to.c
[744]23)
24
[1115]25ADD_LIBRARY(util SHARED ${UTIL_SRC_FILES})
[744]26
[742]27IF(TESTING_ENABLED)
[768]28  ADD_SUBDIRECTORY(testing)
[742]29ENDIF(TESTING_ENABLED)
[871]30
[1115]31TARGET_LINK_LIBRARIES(util
[871]32  ${OGRE_LIBRARIES}
[1153]33  ${Lua_LIBRARIES}
[1076]34)
35
[1153]36ADD_SUBDIRECTORY(tolua)
37
Note: See TracBrowser for help on using the repository browser.