Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Moved Exception to util now that debug has been moved.

  • Property svn:eol-style set to native
File size: 363 bytes
Line 
1SET(UTIL_SRC_FILES
2  Clipboard.cc
3  Error.cc
4  CRC32.cc
5  Exception.cc
6  ExprParser.cc
7  Math.cc
8  MultiType.cc
9  OutputBuffer.cc
10  OutputHandler.cc
11  String.cc
12  SubString.cc
13)
14
15ADD_LIBRARY(util SHARED ${UTIL_SRC_FILES})
16
17IF(TESTING_ENABLED)
18  ADD_SUBDIRECTORY(testing)
19ENDIF(TESTING_ENABLED)
20
21TARGET_LINK_LIBRARIES(util
22  ${OGRE_LIBRARIES}
23  ${Lua_LIBRARIES}
24)
Note: See TracBrowser for help on using the repository browser.