2016-10-30 18:24:19 +01:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2017-04-14 19:02:05 +02:00
|
|
|
subdirs(Doxygen)
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2021-09-14 00:13:48 +02:00
|
|
|
if (CMake_DOC_ARTIFACT_PREFIX)
|
|
|
|
# Undocumented option for CI usage to reuse already
|
|
|
|
# built documentation.
|
|
|
|
install(DIRECTORY ${CMake_DOC_ARTIFACT_PREFIX}/
|
2014-08-03 19:52:23 +02:00
|
|
|
DESTINATION . USE_SOURCE_PERMISSIONS)
|
|
|
|
else()
|
|
|
|
# Normal documentation build.
|
|
|
|
add_subdirectory(Sphinx)
|
2010-06-23 01:18:35 +03:00
|
|
|
endif()
|
2016-03-13 13:35:51 +01:00
|
|
|
|
|
|
|
if(WIX_CUSTOM_ACTION_ENABLED)
|
|
|
|
add_subdirectory(Release/WiX)
|
|
|
|
endif()
|
2017-07-20 19:35:53 +02:00
|
|
|
|
|
|
|
# Make sure generated files use the same clang-tidy checks (none).
|
|
|
|
configure_file(.clang-tidy .clang-tidy COPYONLY)
|