]> git.mxchange.org Git - simgear.git/blob - simgear/props/Makefile.am
c39bd0a038cee300e26d8546b82906a81186dc33
[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
13 libsgprops_a_SOURCES = \
14         condition.cxx \
15         props.cxx \
16         props_io.cxx \
17         AtomicChangeListener.cxx \
18         propertyObject.cxx
19
20 check_PROGRAMS = props_test
21
22 props_test_SOURCES = props_test.cxx
23 props_test_LDADD = \
24         libsgprops.a \
25         $(top_builddir)/simgear/xml/libsgxml.a \
26         $(top_builddir)/simgear/misc/libsgmisc.a \
27         $(top_builddir)/simgear/debug/libsgdebug.a \
28         $(top_builddir)/simgear/structure/libsgstructure.a
29
30 if HAVE_FRAMEWORK_OSG
31 props_test_LDFLAGS = $(openthreads_FRAMEWORK)
32 else
33 props_test_LDFLAGS = -lOpenThreads
34 endif
35
36 INCLUDES = -I$(top_srcdir)