]> git.mxchange.org Git - simgear.git/blobdiff - simgear/props/Makefile.am
Melchior FRANZ: fix SGPropertyNode::LAST_USED_ATTRIBUTE
[simgear.git] / simgear / props / Makefile.am
index acf5201711ec4dfc6eda70fd44fa4af07335467d..7196e8a887dd0ce5b5ddb2fa2c2005d21abd48df 100644 (file)
@@ -7,15 +7,19 @@ include_HEADERS = \
        props.hxx \
        props_io.hxx \
        AtomicChangeListener.hxx \
-       ExtendedPropertyAdapter.hxx
+       ExtendedPropertyAdapter.hxx \
+       propertyObject.hxx \
+       tiedpropertylist.hxx
 
 libsgprops_a_SOURCES = \
        condition.cxx \
        props.cxx \
        props_io.cxx \
-       AtomicChangeListener.cxx
+       AtomicChangeListener.cxx \
+       propertyObject.cxx
 
-noinst_PROGRAMS = props_test
+check_PROGRAMS = props_test propertyObject_test
+TESTS           = propertyObject_test
 
 props_test_SOURCES = props_test.cxx
 props_test_LDADD = \
@@ -25,6 +29,15 @@ props_test_LDADD = \
        $(top_builddir)/simgear/debug/libsgdebug.a \
        $(top_builddir)/simgear/structure/libsgstructure.a
 
+propertyObject_test_SOURCES = propertyObject_test.cxx
+propertyObject_test_LDADD = \
+       libsgprops.a \
+       $(top_builddir)/simgear/xml/libsgxml.a \
+       $(top_builddir)/simgear/misc/libsgmisc.a \
+       $(top_builddir)/simgear/debug/libsgdebug.a \
+       $(top_builddir)/simgear/structure/libsgstructure.a
+
+
 if HAVE_FRAMEWORK_OSG
 props_test_LDFLAGS = $(openthreads_FRAMEWORK)
 else