From fd791a068e39e06785adc44693f4c533d3d6c903 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 17 Apr 2024 17:51:32 +0200 Subject: 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 --- CMake/options.cmake | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CMake') 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 ####################################################################### -- cgit v1.2.3