]> git.mxchange.org Git - simgear.git/blob - simgear/props/Makefile.am
PropertyObject ::create tests.
[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 propertyObject_test
21 TESTS           = propertyObject_test
22
23 props_test_SOURCES = props_test.cxx
24 props_test_LDADD = \
25         libsgprops.a \
26         $(top_builddir)/simgear/xml/libsgxml.a \
27         $(top_builddir)/simgear/misc/libsgmisc.a \
28         $(top_builddir)/simgear/debug/libsgdebug.a \
29         $(top_builddir)/simgear/structure/libsgstructure.a
30
31 propertyObject_test_SOURCES = propertyObject_test.cxx
32 propertyObject_test_LDADD = \
33         libsgprops.a \
34         $(top_builddir)/simgear/xml/libsgxml.a \
35         $(top_builddir)/simgear/misc/libsgmisc.a \
36         $(top_builddir)/simgear/debug/libsgdebug.a \
37         $(top_builddir)/simgear/structure/libsgstructure.a
38
39
40 if HAVE_FRAMEWORK_OSG
41 props_test_LDFLAGS = $(openthreads_FRAMEWORK)
42 else
43 props_test_LDFLAGS = -lOpenThreads
44 endif
45
46 INCLUDES = -I$(top_srcdir)