Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core3/src/util/CMakeLists.txt @ 1606

Last change on this file since 1606 was 1606, checked in by rgrieder, 16 years ago
  • removed struct ObjectListBase::Export from the forward declarations (not allowed for nested classes, but were possible with the use of a template..)
  • moved Error from core to util (since Debug.h has moved too)
  • Property svn:eol-style set to native
File size: 401 bytes
Line 
1SET(UTIL_SRC_FILES
2  ArgReader.cc
3  Clipboard.cc
4  Error.cc
5  ExprParser.cc
6  Math.cc
7  MultiTypePrimitive.cc
8  MultiTypeString.cc
9  MultiTypeMath.cc
10  OutputBuffer.cc
11  OutputHandler.cc
12  String.cc
13  SubString.cc
14)
15
16ADD_LIBRARY(util SHARED ${UTIL_SRC_FILES})
17
18IF(TESTING_ENABLED)
19  ADD_SUBDIRECTORY(testing)
20ENDIF(TESTING_ENABLED)
21
22TARGET_LINK_LIBRARIES(util
23  ${OGRE_LIBRARIES}
24  ${Lua_LIBRARIES}
25)
Note: See TracBrowser for help on using the repository browser.