]> git.mxchange.org Git - simgear.git/blob - simgear/scene/bvh/Makefile.am
Initial commit of the bounding volume tree implementation.
[simgear.git] / simgear / scene / bvh / Makefile.am
1 includedir = @includedir@/scene/bvh
2
3 check_PROGRAMS  = bvhtest
4 TESTS           = $(check_PROGRAMS)
5
6 bvhtest_SOURCES = bvhtest.cxx
7 bvhtest_LDADD = libsgbvh.a -lsgstructure -lsgmath $(base_LIBS)
8
9 lib_LIBRARIES = libsgbvh.a
10
11 noinst_HEADERS =
12
13 include_HEADERS = \
14         BVHBoundingBoxVisitor.hxx \
15         BVHDebugCollectVisitor.hxx \
16         BVHGroup.hxx \
17         BVHLineSegmentVisitor.hxx \
18         BVHLineGeometry.hxx \
19         BVHMotionTransform.hxx \
20         BVHNode.hxx \
21         BVHStaticBinary.hxx \
22         BVHStaticData.hxx \
23         BVHStaticGeometry.hxx \
24         BVHStaticGeometryBuilder.hxx \
25         BVHStaticLeaf.hxx \
26         BVHStaticNode.hxx \
27         BVHStaticTriangle.hxx \
28         BVHSubTreeCollector.hxx \
29         BVHTransform.hxx \
30         BVHVisitor.hxx
31
32 libsgbvh_a_SOURCES = \
33         BVHGroup.cxx \
34         BVHLineGeometry.cxx \
35         BVHLineSegmentVisitor.cxx \
36         BVHMotionTransform.cxx \
37         BVHNode.cxx \
38         BVHStaticBinary.cxx \
39         BVHStaticGeometry.cxx \
40         BVHStaticLeaf.cxx \
41         BVHStaticNode.cxx \
42         BVHStaticTriangle.cxx \
43         BVHSubTreeCollector.cxx \
44         BVHTransform.cxx
45
46 INCLUDES = -I$(top_srcdir)