From 998a001fc621ca0e7560ca09a8acd29469ae3373 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 11 Dec 2025 17:46:02 +0100 Subject: docs: improve documentation --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e53923..9c348d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,20 @@ if(CLANG_TIDY_EXE AND TEACHOS_ENABLE_LINTING) set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_EXE}") endif() +#[============================================================================[ +# Global Documentation Configuration +#]============================================================================] + +find_package(Doxygen "1.10") + +if(Doxygen_FOUND) + doxygen_add_docs("docs" + ALL + COMMENT "Generating documentation" + CONFIG_FILE "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile" + ) +endif() + #[============================================================================[ # Kernel Executable #]============================================================================] -- cgit v1.2.3