summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-12-28 22:18:07 +0100
committerMatthias Melcher <github@matthiasm.com>2025-12-28 22:18:07 +0100
commit17eaeeda9216fd5b06469d4f52a1ff943ab090a5 (patch)
tree29dbad3851c12588b630a0b083d944ce45888cd2
parentf5e7d62f90f5eb88afad45d56017c42835149d0c (diff)
Update filename case and LaTeX details
-rw-r--r--documentation/CMakeLists.txt2
-rw-r--r--documentation/Doxyfile.in2
-rw-r--r--util/CMakeLists.txt6
3 files changed, 6 insertions, 4 deletions
diff --git a/documentation/CMakeLists.txt b/documentation/CMakeLists.txt
index bbf8da6ae..6c8524ffe 100644
--- a/documentation/CMakeLists.txt
+++ b/documentation/CMakeLists.txt
@@ -158,6 +158,8 @@ if(FLTK_BUILD_PDF_DOCS)
set(DOXYFILE "Doxybook")
set(LOGFILE "${CMAKE_CURRENT_BINARY_DIR}/${DOXYFILE}_error.log")
+ file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/generated)
+
# configure Doxygen input file for PDF docs (Doxybook.in)
configure_file(
diff --git a/documentation/Doxyfile.in b/documentation/Doxyfile.in
index 10c277a72..85b208cce 100644
--- a/documentation/Doxyfile.in
+++ b/documentation/Doxyfile.in
@@ -229,7 +229,7 @@ TAB_SIZE = 8
# newlines (in the resulting output). You can put ^^ in the value part of an
# alias to insert a newline as if a physical newline was in the original file.
-ALIASES = code_international{1}="@if LATEX_SECTIONS^^@image latex \1 width=\\linewidth^^@endif^^@if HTML_SECTIONS^^@code"
+ALIASES = code_international{1}="@if LATEX_SECTIONS^^@image latex \1 width=\linewidth^^@endif^^@if HTML_SECTIONS^^@code"
ALIASES += endcode_international="@endcode^^@endif"
# This tag can be used to specify a number of word-keyword mappings (TCL only).
diff --git a/util/CMakeLists.txt b/util/CMakeLists.txt
index a89413a19..25ab479dc 100644
--- a/util/CMakeLists.txt
+++ b/util/CMakeLists.txt
@@ -48,9 +48,9 @@ if(FLTK_BUILD_PDF_DOCS)
# PDF documentation helper tool
add_executable(code_snapshot
code_snapshot.cxx
- ../fluid/Widgets/Code_Viewer.cxx
- ../fluid/Widgets/Code_Editor.cxx
- ../fluid/Widgets/Style_Parser.cxx
+ ../fluid/widgets/Code_Viewer.cxx
+ ../fluid/widgets/Code_Editor.cxx
+ ../fluid/widgets/Style_Parser.cxx
)
target_link_libraries(code_snapshot PRIVATE fltk::images)