From 2557dd7439806448ad41b7bc5f175f4ed4f74d9c Mon Sep 17 00:00:00 2001 From: d3x0r Date: Thu, 6 Jul 2017 02:09:44 -0700 Subject: Add option LIBRESSL_SKIP_INSTALL Internally LIBRESSL_SKIP_INSTALL, if not set becomes ENABLE_LIBRESSL_INSTALL so this by default is enabled. defining LIBRESSL_SKIP_INSTALL before hand will disable all install() rules. This is useful if another project includes and links to this statically. I chose to add a prefix to avoid potential name collision because the options are cached globally. If the installation is skipped, maybe it should also disable building apps? I didn't do that. --- man/CMakeLists.txt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'man') diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt index 5923f58..f08091c 100644 --- a/man/CMakeLists.txt +++ b/man/CMakeLists.txt @@ -1,9 +1,11 @@ -install(DIRECTORY . - DESTINATION share/man/man3 - FILES_MATCHING PATTERN "*.3" - ) +if(ENABLE_LIBRESSL_INSTALL) + install(DIRECTORY . + DESTINATION share/man/man3 + FILES_MATCHING PATTERN "*.3" + ) -install(DIRECTORY . - DESTINATION share/man/man1 - FILES_MATCHING PATTERN "*.1" - ) + install(DIRECTORY . + DESTINATION share/man/man1 + FILES_MATCHING PATTERN "*.1" + ) +endif(ENABLE_LIBRESSL_INSTALL) -- cgit v1.2.3-55-g6feb