aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
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
#]============================================================================]