at91: enable 6.6 testing kernel
[openwrt/staging/pepe2k.git] / tools / lzop / patches / 001-add-cmake-ENABLE_DOCS-configurable.patch
1 --- a/CMakeLists.txt
2 +++ b/CMakeLists.txt
3 @@ -50,6 +50,9 @@ endif()
4
5 project(lzop VERSION 1.04 LANGUAGES C)
6
7 +# configuration options
8 +option(ENABLE_DOCS "Install documentation." ON)
9 +
10 # install directories
11 if(NOT CMAKE_INSTALL_PREFIX)
12 message(FATAL_ERROR "ERROR: CMAKE_INSTALL_PREFIX is not defined.")
13 @@ -186,9 +189,11 @@ if(DEFINED CMAKE_INSTALL_FULL_LIBDIR)
14
15 install(TARGETS lzop DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
16
17 +if(ENABLE_DOCS)
18 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)
19 install(FILES ${f} DESTINATION "${CMAKE_INSTALL_FULL_DOCDIR}")
20 install(FILES doc/lzop.1 DESTINATION "${CMAKE_INSTALL_FULL_MANDIR}/man1")
21 +endif() # ENABLE_DOCS
22
23 endif() # CMAKE_INSTALL_FULL_LIBDIR
24