aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/rapidjson/003-cmake-removedocs-examples.patch
blob: 4bf06da59c4c55c6aa29aa03bfdaf81d57feb20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -134,14 +134,17 @@
       COMPONENT pkgconfig)
 ENDIF()
 
+if(RAPIDJSON_BUILD_DOC)
 install(FILES readme.md
         DESTINATION "${DOC_INSTALL_DIR}"
         COMPONENT doc)
+endif()
 
 install(DIRECTORY include/rapidjson
     DESTINATION "${INCLUDE_INSTALL_DIR}"
     COMPONENT dev)
 
+if(RAPIDJSON_BUILD_EXAMPLES)
 install(DIRECTORY example/
     DESTINATION "${DOC_INSTALL_DIR}/examples"
     COMPONENT examples
@@ -150,6 +153,7 @@
     PATTERN "CMakeFiles" EXCLUDE
     PATTERN "Makefile" EXCLUDE
     PATTERN "cmake_install.cmake" EXCLUDE)
+endif()
 
 # Provide config and version files to be used by other applications
 # ===============================