aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-08-31 13:13:16 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-08-31 13:13:16 +0200
commitfd15eda1cf574d667fb04ebd2b51462ee8e7774e (patch)
tree02568b23e9e9f5d138d4576bc19033f6e0a1ae5b /CMakeLists.txt
parentecf882dad2aaa6160e6c27277dceae935658b4cb (diff)
downloadkernel-fd15eda1cf574d667fb04ebd2b51462ee8e7774e.tar.xz
kernel-fd15eda1cf574d667fb04ebd2b51462ee8e7774e.zip
docs: prepare for pages deployment
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f57c540e..830da817 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -39,7 +39,6 @@ endif()
#]============================================================================]
option(TEACHOS_ENABLE_LINTING "Enable linting during build" ON)
-option(TEACHOS_GENERATE_DOCS "Generate documentation during build" ON)
option(TEACHOS_ENABLE_TEST_SANITIZERS "Enable sanitizers for test executables" ON)
option(TEACHOS_ENABLE_TEST_COVERAGE "Enable generation of test coverage" ON)
option(TEACHOS_ENABLE_TEST_TSAN "Enable TSan for the test executable" OFF)
@@ -87,20 +86,6 @@ if(CLANG_TIDY_EXE AND TEACHOS_ENABLE_LINTING)
endif()
#[============================================================================[
-# Global Documentation Configuration
-#]============================================================================]
-
-find_package(Doxygen "1.10")
-
-if(Doxygen_FOUND AND TEACHOS_GENERATE_DOCS)
- doxygen_add_docs("docs"
- ALL
- COMMENT "Generating documentation"
- CONFIG_FILE "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile"
- )
-endif()
-
-#[============================================================================[
# Build Host Testing
#]============================================================================]