]> git.lyx.org Git - features.git/commitdiff
Add templates to export tests (CMake & autotools)
authorScott Kostyshak <skostysh@lyx.org>
Thu, 21 Feb 2013 13:25:13 +0000 (08:25 -0500)
committerScott Kostyshak <skostysh@lyx.org>
Thu, 21 Feb 2013 13:25:13 +0000 (08:25 -0500)
development/autotests/CMakeLists.txt
development/autotests/export-in.sh

index 66968cb9bdb6cc1d5758875ad82c568d248f9c99..d8683334450fac781ee7096efbe410b96b029ab9 100644 (file)
@@ -62,7 +62,7 @@ macro(getdefaultoutputformat filepath varname)
   endforeach()
 endmacro()
 
-foreach(libsubfolder doc examples)
+foreach(libsubfolder doc examples templates)
   set(LIBSUB_SRC_DIR "${TOP_SRC_DIR}/lib/${libsubfolder}")
   file(GLOB_RECURSE lyx_files RELATIVE "${LIBSUB_SRC_DIR}" "${LIBSUB_SRC_DIR}/*.lyx")
   list(SORT lyx_files)
index adf2ce167f922073edc1dfb9d9122da7b4013909..a6f93a72062f05aa67969408401da906d3a0b3a7 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 failed=0
-for libsubdir in doc examples; do
+for libsubdir in doc examples templates; do
     for format in xhtml lyx16x; do
         for f in $LYX_ROOT/lib/$libsubdir/*lyx; do
             if $LYX_EXE -e $format $f >> lyx-log.txt 2>&1; then