Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/unity_build/src/libraries/tools/CMakeLists.txt @ 8558

Last change on this file since 8558 was 8558, checked in by rgrieder, 13 years ago

Renamed the infamous 'Compilation' to 'BuildUnit' which definitely suits better and avoids much of the general confusion.
There are no actual changes, just the renaming.

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