]> git.mxchange.org Git - simgear.git/blob - simgear/scene/bvh/Makefile.am
Make the debug geometry stuff work with a time argument.
[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         BVHNearestPointVisitor.hxx \
21         BVHNode.hxx \
22         BVHStaticBinary.hxx \
23         BVHStaticData.hxx \
24         BVHStaticGeometry.hxx \
25         BVHStaticGeometryBuilder.hxx \
26         BVHStaticLeaf.hxx \
27         BVHStaticNode.hxx \
28         BVHStaticTriangle.hxx \
29         BVHSubTreeCollector.hxx \
30         BVHTransform.hxx \
31         BVHVisitor.hxx
32
33 libsgbvh_a_SOURCES = \
34         BVHGroup.cxx \
35         BVHLineGeometry.cxx \
36         BVHLineSegmentVisitor.cxx \
37         BVHMotionTransform.cxx \
38         BVHNode.cxx \
39         BVHStaticBinary.cxx \
40         BVHStaticGeometry.cxx \
41         BVHStaticLeaf.cxx \
42         BVHStaticNode.cxx \
43         BVHStaticTriangle.cxx \
44         BVHSubTreeCollector.cxx \
45         BVHTransform.cxx
46
47 INCLUDES = -I$(top_srcdir)