summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2024-04-17 17:51:32 +0200
committerGitHub <noreply@github.com>2024-04-17 17:51:32 +0200
commitfd791a068e39e06785adc44693f4c533d3d6c903 (patch)
treeef7ff684b38f646165e80c142e454cd7ef077e2e /CMake
parentb4cf1a9824f2c4ba9596044962d3af36e3ca3d99 (diff)
Separate FLUID user documentation, screen shot automation (#936)
* CMake integration, no autotiools * alignment panel is now correctly renamed to setting panel * source view is now correctly renamed to code view * Merge FLTK FLUID docs into FLUID user manual. * Add two simple entry tutorials * Remove FLUID chapter form FLTK docs. * GitHub action to generate HTML and PDF docs and make the available as artefacts
Diffstat (limited to 'CMake')
-rw-r--r--CMake/options.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMake/options.cmake b/CMake/options.cmake
index b242c5f40..c1aa0dcea 100644
--- a/CMake/options.cmake
+++ b/CMake/options.cmake
@@ -459,6 +459,8 @@ endif()
if(DOXYGEN_FOUND)
option(FLTK_BUILD_HTML_DOCS "build html docs" ON)
option(FLTK_INSTALL_HTML_DOCS "install html docs" OFF)
+ option(FLTK_BUILD_FLUID_DOCS "build FLUID docs" OFF)
+ option(FLTK_INSTALL_FLUID_DOCS "install FLUID docs" OFF)
option(FLTK_INCLUDE_DRIVER_DOCS "include driver (developer) docs" OFF)
mark_as_advanced(FLTK_INCLUDE_DRIVER_DOCS)
@@ -473,6 +475,10 @@ if(FLTK_BUILD_HTML_DOCS OR FLTK_BUILD_PDF_DOCS)
add_subdirectory(documentation)
endif(FLTK_BUILD_HTML_DOCS OR FLTK_BUILD_PDF_DOCS)
+if(FLTK_BUILD_FLUID_DOCS)
+ add_subdirectory(fluid/documentation)
+endif(FLTK_BUILD_FLUID_DOCS)
+
#######################################################################
# Include optional Cairo support
#######################################################################