X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FMakefile.am;h=7196e8a887dd0ce5b5ddb2fa2c2005d21abd48df;hb=708ae35068499af33329f9db91f55441f4956acb;hp=658fe126763a57ae8eb9dce1856eaac5dcf6f9e0;hpb=c4506b8e6cb72659fd78273b150dbf59f3edcecf;p=simgear.git diff --git a/simgear/props/Makefile.am b/simgear/props/Makefile.am index 658fe126..7196e8a8 100644 --- a/simgear/props/Makefile.am +++ b/simgear/props/Makefile.am @@ -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 -check_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