aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lzop/patches/001-add-cmake-ENABLE_DOCS-configurable.patch
blob: 01ebd33a399ae791f8dc2ace0684357da6471c5e (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
--- a/CMakeLists.txt	2017-08-10 04:19:45.000000000 -0700
+++ b/CMakeLists.txt	2022-11-28 17:21:03.453548350 -0800
@@ -50,6 +50,9 @@
 
 project(lzop VERSION 1.04 LANGUAGES C)
 
+# configuration options
+option(ENABLE_DOCS     "Install documentation."    ON)
+
 # install directories
 if(NOT CMAKE_INSTALL_PREFIX)
     message(FATAL_ERROR "ERROR: CMAKE_INSTALL_PREFIX is not defined.")
@@ -186,9 +189,11 @@
 
 install(TARGETS lzop DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
 
+if(ENABLE_DOCS)
 set(f AUTHORS COPYING NEWS README THANKS doc/lzop.html doc/lzop.man doc/lzop.pod doc/lzop.ps doc/lzop.tex doc/lzop.txt)
 install(FILES ${f} DESTINATION "${CMAKE_INSTALL_FULL_DOCDIR}")
 install(FILES doc/lzop.1 DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man1")
+endif() # ENABLE_DOCS
 
 endif() # CMAKE_INSTALL_FULL_LIBDIR