]> git.mxchange.org Git - simgear.git/blob - simgear/props/Makefile.am
Melchior FRANZ: fix SGPropertyNode::LAST_USED_ATTRIBUTE
[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         AtomicChangeListener.hxx \
10         ExtendedPropertyAdapter.hxx \
11         propertyObject.hxx \
12         tiedpropertylist.hxx
13
14 libsgprops_a_SOURCES = \
15         condition.cxx \
16         props.cxx \
17         props_io.cxx \
18         AtomicChangeListener.cxx \
19         propertyObject.cxx
20
21 check_PROGRAMS = props_test propertyObject_test
22 TESTS           = propertyObject_test
23
24 props_test_SOURCES = props_test.cxx
25 props_test_LDADD = \
26         libsgprops.a \
27         $(top_builddir)/simgear/xml/libsgxml.a \
28         $(top_builddir)/simgear/misc/libsgmisc.a \
29         $(top_builddir)/simgear/debug/libsgdebug.a \
30         $(top_builddir)/simgear/structure/libsgstructure.a
31
32 propertyObject_test_SOURCES = propertyObject_test.cxx
33 propertyObject_test_LDADD = \
34         libsgprops.a \
35         $(top_builddir)/simgear/xml/libsgxml.a \
36         $(top_builddir)/simgear/misc/libsgmisc.a \
37         $(top_builddir)/simgear/debug/libsgdebug.a \
38         $(top_builddir)/simgear/structure/libsgstructure.a
39
40
41 if HAVE_FRAMEWORK_OSG
42 props_test_LDFLAGS = $(openthreads_FRAMEWORK)
43 else
44 props_test_LDFLAGS = -lOpenThreads
45 endif
46
47 INCLUDES = -I$(top_srcdir)