X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FMakefile.am;h=761c8e429124ffc863a8ed7c651fffab91018c01;hb=952853eb2358472644e45f3fe3a6f3a68fac3556;hp=d3c52f5e90a30d5a4313f944ced70787dfd5630a;hpb=752f2e48113100c5c7ff559c827d6c14a3f9d552;p=lyx.git diff --git a/src/Makefile.am b/src/Makefile.am index d3c52f5e90..761c8e4291 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -409,6 +409,7 @@ SOURCEFILESMATHED = \ mathed/InsetMathRef.cpp \ mathed/InsetMathRoot.cpp \ mathed/InsetMathScript.cpp \ + mathed/InsetMathSideset.cpp \ mathed/InsetMathSize.cpp \ mathed/InsetMathSpace.cpp \ mathed/InsetMathSpecialChar.cpp \ @@ -477,6 +478,7 @@ HEADERFILESMATHED = \ mathed/InsetMathRef.h \ mathed/InsetMathRoot.h \ mathed/InsetMathScript.h \ + mathed/InsetMathSideset.h \ mathed/InsetMathSize.h \ mathed/InsetMathSpace.h \ mathed/InsetMathSpecialChar.h \ @@ -664,3 +666,38 @@ else liblyxinsets_a_SOURCES = $(SOURCEFILESINSETS) $(HEADERFILESINSETS) endif + + +############################## Tests ################################## + +EXTRA_DIST += \ + tests/test_layout + + +TESTS = \ + tests/test_layout + +check_PROGRAMS = \ + check_layout + +check_layout_CPPFLAGS = $(AM_CPPFLAGS) -DNO_LAYOUT_CSS +check_layout_LDADD = support/liblyxsupport.a $(INTLLIBS) $(LIBICONV) $(BOOST_LIBS) @LIBS@ $(QT4_CORE_LIBS) $(LIBSHLWAPI) +# need to allow multiple definitions of _() (see dummy_functions.cpp) +check_layout_LDFLAGS = $(QT4_CORE_LDFLAGS) -Wl,--allow-multiple-definition +check_layout_SOURCES = \ + insets/InsetLayout.cpp \ + Color.cpp \ + Counters.cpp \ + Floating.cpp \ + FloatList.cpp \ + FontInfo.cpp \ + Layout.cpp \ + LayoutFile.cpp \ + Lexer.cpp \ + ModuleList.cpp \ + Spacing.cpp \ + TextClass.cpp \ + tests/check_layout.cpp \ + support/tests/boost.cpp \ + support/tests/dummy_functions.cpp +