Skip to content
Snippets Groups Projects
Commit d84964af authored by Markus Blatt's avatar Markus Blatt
Browse files

[Merge][CMake] -r7398 from branches/cmake: [BugFix] Fix endless recursion in...

[Merge][CMake] -r7398 from branches/cmake: [BugFix] Fix endless recursion in dune_add_latex_document.

We now check whether the tex source exists. If not we check whether
the pdf is already in the source tree, otherwise we send an error.


[[Imported from SVN: r7401]]
parent e7d14446
No related branches found
No related tags found
No related merge requests found
......@@ -82,11 +82,19 @@ MACRO(dune_add_latex_document tex_file)
string(REGEX REPLACE "(.+).tex" "\\1.pdf" file ${tex_file})
string(REGEX REPLACE "/" "_" "${CMAKE_CURRENT_SOURCE_DIR}/${file}" filevar ${file})
set(filevar "filevar-NOTFOUND")
find_file(filevar ${file} ${CMAKE_CURRENT_SOURCE_DIR})
if(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR} OR NOT filevar)
find_file(filevar ${tex_file} ${CMAKE_CURRENT_SOURCE_DIR})
message(filevar=${filevar} tex_file=${tex_file} CMAKE_CURRENT_SOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR})
if(filevar)
# add rule to create latex document
dune_add_latex_document(tex_file ${ARGN})
endif(${CMAKE_CURRENT_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR} OR NOT filevar)
add_latex_document(${tex_file} ${ARGN})
else(filevar)
# Check for the pdf file
set(pdffilevar "pdffilevar-NOTFOUND")
find_file(pdffilevar ${file} ${CMAKE_CURRENT_SOURCE_DIR})
if(NOT pdffilevar)
message(SEND_ERROR "No tex source ${filevar} and no generated ${pdffilevar} found!")
endif(NOT pdffilevar)
endif(filevar)
ENDMACRO(dune_add_latex_document tex_file)
# Support building documentation with doxygen.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment