aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2024-02-19 14:10:52 +0100
committerEike Ziller <eike.ziller@qt.io>2024-02-19 15:31:48 +0000
commitfd09e90ca7bb5f881ee780abbecd1ebdec4d0d7a (patch)
treee2804b34ebb9f9a388c536484a04c7f2c166d228
parent108d26eadf66abb8cc44e8aa431c960ab4b8dd06 (diff)
Don't try to build documentation for extra-cmake-modulesv13.0.0-rc1v13.0.0-beta2v13.0.013.0
We don't need the documentation, so avoid issues with it by not even trying. Change-Id: Iaa147da25b75c6e2127259ce53df128be604a842 Reviewed-by: Kai Köhne <kai.koehne@qt.io>
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 99295e8..b32558b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,6 +16,9 @@ ExternalProject_Add(extra-cmake-modules
PREFIX extra-cmake-modules
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/extra-cmake-modules"
CMAKE_ARGS
+ -DBUILD_HTML_DOCS=OFF
+ -DBUILD_MAN_DOCS=OFF
+ -DBUILD_QTHELP_DOCS=OFF
-DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR}/extra-cmake-modules
"${CMAKE_OSX_ARCHITECTURES_MASKED_SEMICOLON}"
)