X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FMakefile.am;h=862613a67f51964dded997125b30f6fcd9cac155;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=baeaedf1bb6ce1359f7984de6fafbd9b4b8351ec;hpb=d837643c95740c4169ebe3185f1f69c540311928;p=lyx.git diff --git a/src/frontends/Makefile.am b/src/frontends/Makefile.am index baeaedf1bb..862613a67f 100644 --- a/src/frontends/Makefile.am +++ b/src/frontends/Makefile.am @@ -4,23 +4,19 @@ SUBDIRS = $(FRONTENDS_SUBDIRS) . DIST_SUBDIRS = qt4 . -noinst_LTLIBRARIES = liblyxfrontends.la +noinst_LIBRARIES = liblyxfrontends.a -AM_CPPFLAGS += -I$(srcdir)/.. $(BOOST_INCLUDES) +AM_CPPFLAGS += -I$(srcdir)/.. \ + $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES) -liblyxfrontends_la_SOURCES = \ +liblyxfrontends_a_SOURCES = \ alert.h \ Application.h \ - NoGuiFontLoader.h \ - NoGuiFontMetrics.h \ - Dialogs.h \ - FileDialog.h \ FontLoader.h \ FontMetrics.h \ + Delegates.h \ KeyModifier.h \ KeySymbol.h \ - LyXView.h \ - Painter.cpp \ Painter.h \ Clipboard.h \ Selection.h \ @@ -31,20 +27,25 @@ liblyxfrontends_la_SOURCES = \ ################################# Tests ################################ -EXTRA_DIST = tests/test_biblio +EXTRA_DIST = \ + CMakeLists.txt \ + tests/CMakeLists.txt \ + tests/test_biblio.cmake \ + tests/test_biblio \ + tests/regfiles/biblio TESTS = \ - test_biblio + tests/test_biblio check_PROGRAMS = \ biblio -biblio_LDADD = $(BOOST_REGEX) +biblio_LDADD = $(BOOST_LIBS) $(ICONV_LIBS) $(ZLIB_LIBS) biblio_SOURCES = \ tests/biblio.cpp \ tests/boost.cpp makeregfiles: ${check_PROGRAMS} for all in ${check_PROGRAMS} ; do \ - ./$$all > ${srcdir}/regfiles/$$all ; \ + ./$$all > ${srcdir}/tests/regfiles/$$all ; \ done