From e846bc49f60bb41ba1d63c14e37a34d03c0a1c6a Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 5 Sep 2025 11:29:08 -0400 Subject: [PATCH] Set rapidjson docs + examples to off --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4aebc34..e6e9ed2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,6 +49,12 @@ FetchContent_MakeAvailable(nlohmann_json) set(RAPIDJSON_BUILD_TESTS OFF CACHE BOOL "Disable RapidJSON tests" FORCE) +set(RAPIDJSON_BUILD_DOC + OFF + CACHE BOOL "Disable RapidJSON documentation" FORCE) +set(RAPIDJSON_BUILD_EXAMPLES + OFF + CACHE BOOL "Disable RapidJSON examples" FORCE) FetchContent_Declare( RapidJSON GIT_REPOSITORY https://github.com/Tencent/rapidjson.git