From be657471e761462d91c62e8cd00519e5dbda82a0 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 29 Aug 2023 17:25:10 +0200 Subject: Documentation/PDF: always use the configured doxygen executable ... to create the LaTeX header file used by doxygen. This fix applies to both configure/make and CMake. The existing version used `doxygen` which erroneously ran the doxygen version from the current 'PATH' which might issue doxygen warnings and potentially create a wrong LaTeX header file if the configured doxygen program was not the one in the user's path. --- documentation/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'documentation/CMakeLists.txt') diff --git a/documentation/CMakeLists.txt b/documentation/CMakeLists.txt index e5d358e08..415e3e707 100644 --- a/documentation/CMakeLists.txt +++ b/documentation/CMakeLists.txt @@ -188,6 +188,7 @@ if (OPTION_BUILD_PDF_DOCUMENTATION) add_custom_command ( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/fltk.pdf COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/make_header + ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/fltk-title.tex ${CMAKE_CURRENT_BINARY_DIR}/fltk-book.tex COMMAND ${DOXYGEN_EXECUTABLE} Doxybook -- cgit v1.2.3