From: Kornel Benko Date: Sun, 13 Jan 2013 14:31:23 +0000 (+0100) Subject: Cmake build: Add .tex files to the list of doc-files. X-Git-Tag: 2.1.0beta1~924 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ab1be44b920f6c2116189de4d766b0d00d696c95;p=features.git Cmake build: Add .tex files to the list of doc-files. (This adds "SpecialParagraphShape.tex", which is needed by Additional.lyx) --- diff --git a/development/cmake/doc/CMakeLists.txt b/development/cmake/doc/CMakeLists.txt index d3895ddf74..b9e17440ea 100644 --- a/development/cmake/doc/CMakeLists.txt +++ b/development/cmake/doc/CMakeLists.txt @@ -8,7 +8,10 @@ project(doc) SET(_docs) -file(GLOB_RECURSE _rel_lyx_docs RELATIVE "${TOP_SRC_DIR}/lib/doc" "${TOP_SRC_DIR}/lib/doc/*.lyx" "${TOP_SRC_DIR}/lib/doc/*.txt") +file(GLOB_RECURSE _rel_lyx_docs RELATIVE "${TOP_SRC_DIR}/lib/doc" + "${TOP_SRC_DIR}/lib/doc/*.lyx" + "${TOP_SRC_DIR}/lib/doc/*.txt" + "${TOP_SRC_DIR}/lib/doc/*.tex") list(REMOVE_ITEM _rel_lyx_docs LFUNs.lyx) foreach(_rel_doc ${_rel_lyx_docs})