X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FMakefile.am;h=7196e8a887dd0ce5b5ddb2fa2c2005d21abd48df;hb=feab25d0bee2c65a9b5c0a27802fb71c9a1a1190;hp=f1cf6f9a99c2779dd5bce157e3d22e57c6e0aec0;hpb=5d7d77d4b61824e5f67fbadcc34c335d2fee25ca;p=simgear.git diff --git a/simgear/props/Makefile.am b/simgear/props/Makefile.am index f1cf6f9a..7196e8a8 100644 --- a/simgear/props/Makefile.am +++ b/simgear/props/Makefile.am @@ -5,14 +5,21 @@ lib_LIBRARIES = libsgprops.a include_HEADERS = \ condition.hxx \ props.hxx \ - props_io.hxx + props_io.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,4 +29,19 @@ 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 +props_test_LDFLAGS = -lOpenThreads +endif + INCLUDES = -I$(top_srcdir)