Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib2/src/libraries/tools/CMakeLists.txt @ 8565

Last change on this file since 8565 was 8344, checked in by rgrieder, 14 years ago

Cleaned up library dependencies a little bit to list exactly those that are actually needed. (Didn't touch the modules though).

  • Property svn:eol-style set to native
File size: 626 bytes
Line 
1SET_SOURCE_FILES(TOOLS_SRC_FILES
2COMPILATION_BEGIN ResourceCompilation.cc
3  ResourceCollection.cc
4  ResourceLocation.cc
5COMPILATION_END
6  TextureGenerator.cc
7  Timer.cc
8COMPILATION_BEGIN OgreCompilation.cc
9  BillboardSet.cc
10  DynamicLines.cc
11  DynamicRenderable.cc
12  Mesh.cc
13  ParticleInterface.cc
14  Shader.cc
15COMPILATION_END
16)
17#ADD_SUBDIRECTORY(bsp)
18ADD_SUBDIRECTORY(interfaces)
19
20ORXONOX_ADD_LIBRARY(tools
21  FIND_HEADER_FILES
22  LINK_LIBRARIES
23    ${OGRE_LIBRARY}
24    ${Boost_FILESYSTEM_LIBRARY}
25    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
26    tinyxml_orxonox
27    util
28    core
29  SOURCE_FILES
30    ${TOOLS_SRC_FILES}
31)
Note: See TracBrowser for help on using the repository browser.