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