Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/input/src/util/CMakeLists.txt @ 1154

Last change on this file since 1154 was 1154, checked in by rgrieder, 16 years ago
  • updated input branch to trunk state. Only Input system files should differ now.
  • this revision doesn't even compile, its just an 'svn save'
File size: 634 bytes
Line 
1SET(UTIL_SRC_FILES
2  ArgReader.cc
3  Clipboard.cc
4  ExprParser.cc
5  Math.cc
6  MultiTypePrimitive.cc
7  MultiTypeString.cc
8  MultiTypeMath.cc
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
23)
24
25ADD_LIBRARY(util SHARED ${UTIL_SRC_FILES})
26
27IF(TESTING_ENABLED)
28  ADD_SUBDIRECTORY(testing)
29ENDIF(TESTING_ENABLED)
30
31TARGET_LINK_LIBRARIES(util
32  ${OGRE_LIBRARIES}
33  ${Lua_LIBRARIES}
34)
35
36ADD_SUBDIRECTORY(tolua)
37
Note: See TracBrowser for help on using the repository browser.