]> git.mxchange.org Git - simgear.git/blob - simgear/scene/bvh/CMakeLists.txt
hla: Provide a directly property based api for property data element.
[simgear.git] / simgear / scene / bvh / CMakeLists.txt
1 include (SimGearComponent)
2
3 set(HEADERS 
4     BVHBoundingBoxVisitor.hxx
5     BVHDebugCollectVisitor.hxx
6     BVHGroup.hxx
7     BVHLineGeometry.hxx
8     BVHLineSegmentVisitor.hxx
9     BVHMotionTransform.hxx
10     BVHNearestPointVisitor.hxx
11     BVHNode.hxx
12     BVHStaticBinary.hxx
13     BVHStaticData.hxx
14     BVHStaticGeometry.hxx
15     BVHStaticGeometryBuilder.hxx
16     BVHStaticLeaf.hxx
17     BVHStaticNode.hxx
18     BVHStaticTriangle.hxx
19     BVHSubTreeCollector.hxx
20     BVHTransform.hxx
21     BVHVisitor.hxx
22     )
23
24 set(SOURCES 
25     BVHGroup.cxx
26     BVHLineGeometry.cxx
27     BVHLineSegmentVisitor.cxx
28     BVHMotionTransform.cxx
29     BVHNode.cxx
30     BVHStaticBinary.cxx
31     BVHStaticGeometry.cxx
32     BVHStaticLeaf.cxx
33     BVHStaticNode.cxx
34     BVHStaticTriangle.cxx
35     BVHSubTreeCollector.cxx
36     BVHTransform.cxx    
37     )
38
39 simgear_component(bvh scene/bvh "${SOURCES}" "${HEADERS}")