X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FMakefile.am;h=81a7228bba5d4ba935475fcdab327694e358d555;hb=13736219ff22c5ee673724b778617fb7926b9a21;hp=8e726f15a96a822ad73b25c2740923fdd90ab82e;hpb=dc2c437a1a0bd263cb15e8f4240a3607c94e4d44;p=simgear.git diff --git a/simgear/props/Makefile.am b/simgear/props/Makefile.am index 8e726f15..81a7228b 100644 --- a/simgear/props/Makefile.am +++ b/simgear/props/Makefile.am @@ -5,14 +5,22 @@ lib_LIBRARIES = libsgprops.a include_HEADERS = \ condition.hxx \ props.hxx \ - props_io.hxx + props_io.hxx \ + propsfwd.hxx \ + AtomicChangeListener.hxx \ + ExtendedPropertyAdapter.hxx \ + propertyObject.hxx \ + tiedpropertylist.hxx libsgprops_a_SOURCES = \ condition.cxx \ props.cxx \ - props_io.cxx + props_io.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 = \ @@ -22,6 +30,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