diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e53923..9c348d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,6 +49,20 @@ if(CLANG_TIDY_EXE AND TEACHOS_ENABLE_LINTING) 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 #]============================================================================] |
