]> git.lyx.org Git - lyx.git/blobdiff - src/Makefile.am
Fix layout tests for autotools
[lyx.git] / src / Makefile.am
index d3c52f5e90a30d5a4313f944ced70787dfd5630a..761c8e429124ffc863a8ed7c651fffab91018c01 100644 (file)
@@ -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
+