]> git.mxchange.org Git - simgear.git/blob - simgear/props/Makefile.am
Ooops, forgot automake
[simgear.git] / simgear / props / Makefile.am
1 includedir = @includedir@/props
2
3 lib_LIBRARIES = libsgprops.a
4
5 include_HEADERS = \
6         condition.hxx \
7         props.hxx \
8         props_io.hxx \
9         propsfwd.hxx \
10         AtomicChangeListener.hxx \
11         ExtendedPropertyAdapter.hxx \
12         propertyObject.hxx \
13         tiedpropertylist.hxx
14
15 libsgprops_a_SOURCES = \
16         condition.cxx \
17         props.cxx \
18         props_io.cxx \
19         AtomicChangeListener.cxx \
20         propertyObject.cxx
21
22 check_PROGRAMS = props_test propertyObject_test
23 TESTS           = propertyObject_test
24
25 props_test_SOURCES = props_test.cxx
26 props_test_LDADD = \
27         libsgprops.a \
28         $(top_builddir)/simgear/xml/libsgxml.a \
29         $(top_builddir)/simgear/misc/libsgmisc.a \
30         $(top_builddir)/simgear/debug/libsgdebug.a \
31         $(top_builddir)/simgear/structure/libsgstructure.a
32
33 propertyObject_test_SOURCES = propertyObject_test.cxx
34 propertyObject_test_LDADD = \
35         libsgprops.a \
36         $(top_builddir)/simgear/xml/libsgxml.a \
37         $(top_builddir)/simgear/misc/libsgmisc.a \
38         $(top_builddir)/simgear/debug/libsgdebug.a \
39         $(top_builddir)/simgear/structure/libsgstructure.a
40
41
42 if HAVE_FRAMEWORK_OSG
43 props_test_LDFLAGS = $(openthreads_FRAMEWORK)
44 else
45 props_test_LDFLAGS = -lOpenThreads
46 endif
47
48 INCLUDES = -I$(top_srcdir)