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.
This commit is contained in:
d3x0r
2017-07-06 02:09:44 -07:00
parent 728bda1830
commit 2557dd7439
9 changed files with 57 additions and 27 deletions

View File

@@ -39,9 +39,13 @@ if (BUILD_SHARED)
ARCHIVE_OUTPUT_NAME tls${TLS_POSTFIX})
set_target_properties(tls-shared PROPERTIES VERSION ${TLS_VERSION}
SOVERSION ${TLS_MAJOR_VERSION})
install(TARGETS tls tls-shared DESTINATION lib)
if(ENABLE_LIBRESSL_INSTALL)
install(TARGETS tls tls-shared DESTINATION lib)
endif(ENABLE_LIBRESSL_INSTALL)
else()
add_library(tls STATIC ${TLS_SRC})
install(TARGETS tls DESTINATION lib)
if(ENABLE_LIBRESSL_INSTALL)
install(TARGETS tls DESTINATION lib)
endif(ENABLE_LIBRESSL_INSTALL)
endif()