]> git.mxchange.org Git - simgear.git/blob - simgear/math/Makefile.am
Add project.* to MSVC project files
[simgear.git] / simgear / math / Makefile.am
1 includedir = @includedir@/math
2
3 check_PROGRAMS  = SGMathTest SGGeometryTest
4 TESTS           = $(check_PROGRAMS)
5
6 SGMathTest_SOURCES = SGMathTest.cxx
7
8 SGMathTest_LDADD = \
9         libsgmath.a \
10         $(top_builddir)/simgear/debug/libsgdebug.a \
11         $(top_builddir)/simgear/structure/libsgstructure.a \
12         $(base_LIBS)
13
14 SGGeometryTest_SOURCES = SGGeometryTest.cxx
15
16 SGGeometryTest_LDADD = \
17         libsgmath.a \
18         $(top_builddir)/simgear/debug/libsgdebug.a \
19         $(top_builddir)/simgear/structure/libsgstructure.a \
20         $(base_LIBS)
21
22 lib_LIBRARIES = libsgmath.a
23
24 include_HEADERS = \
25         interpolater.hxx \
26         leastsqs.hxx \
27         sg_geodesy.hxx \
28         sg_random.h \
29         sg_types.hxx \
30         Math.hxx \
31         SGBox.hxx \
32         SGCMath.hxx \
33         SGGeoc.hxx \
34         SGGeod.hxx \
35         SGGeodesy.hxx \
36         SGGeometry.hxx \
37         SGGeometryFwd.hxx \
38         SGIntersect.hxx \
39         SGLimits.hxx \
40         SGLineSegment.hxx \
41         SGMatrix.hxx \
42         SGMath.hxx \
43         SGMathFwd.hxx \
44         SGMisc.hxx \
45         SGPlane.hxx \
46         SGQuat.hxx \
47         SGRay.hxx \
48         SGSphere.hxx \
49         SGTriangle.hxx \
50         SGVec2.hxx \
51         SGVec3.hxx \
52         SGVec4.hxx \
53         beziercurve.hxx \
54         project.hxx
55
56 libsgmath_a_SOURCES = \
57         interpolater.cxx \
58         leastsqs.cxx \
59         sg_random.c \
60         SGGeod.cxx \
61         SGGeodesy.cxx \
62         project.cxx
63
64 INCLUDES = -I$(top_srcdir)