Cmake build: Add .tex files to the list of doc-files.

(This adds "SpecialParagraphShape.tex", which is needed by
Additional.lyx)
This commit is contained in:
Kornel Benko 2013-01-13 15:31:23 +01:00
parent e27ee60098
commit ab1be44b92

View File

@ -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})