X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmisc%2FMakefile.am;h=9623cc6420fab45dd55212bc75eeb2abb74e60f1;hb=70f495b4e156dfa076b61f0afadbd288afbbba54;hp=f2166e1fdea6e0828f6f9ec7f1ca15d1668d80aa;hpb=1c2289dacdc73847222655a4d5b1afd1cedccf21;p=simgear.git diff --git a/simgear/misc/Makefile.am b/simgear/misc/Makefile.am index f2166e1f..9623cc64 100644 --- a/simgear/misc/Makefile.am +++ b/simgear/misc/Makefile.am @@ -3,7 +3,7 @@ includedir = @includedir@/misc if HAVE_ZLIB ZLIB_INCL = else -ZLIB_INCL = -I$(top_builddir)/src/zlib +ZLIB_INCL = -I$(top_srcdir)/src/zlib endif lib_LIBRARIES = libsgmisc.a @@ -21,8 +21,14 @@ libsgmisc_a_SOURCES = \ fgpath.cxx \ fgstream.cxx \ props.cxx \ + props_io.cxx \ strutils.cxx \ texcoord.cxx \ zfstream.cxx -INCLUDES += -I$(top_builddir) $(ZLIB_INCL) +noinst_PROGRAMS = props_test + +props_test_SOURCES = props_test.cxx +props_test_LDADD = libsgmisc.a ../xml/libsgxml.a ../debug/libsgdebug.a + +INCLUDES += -I$(top_srcdir) $(ZLIB_INCL)