diff options
author | Brent Cook <bcook@openbsd.org> | 2017-07-09 05:06:06 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2017-07-09 05:06:06 -0500 |
commit | 0dbae37735a395e3c378ac944842e359f8087d41 (patch) | |
tree | 18aaf9fa1665455886fc171edbb8857ef5c35a21 /include | |
parent | c18852f650a3cb258e10222695a31ed5c929ab23 (diff) | |
parent | 0e82f22d16dc4c45bd45f9a994a30fc7435d430b (diff) | |
download | portable-0dbae37735a395e3c378ac944842e359f8087d41.tar.gz portable-0dbae37735a395e3c378ac944842e359f8087d41.tar.bz2 portable-0dbae37735a395e3c378ac944842e359f8087d41.zip |
Land #324, Add option LIBRESSL_SKIP_INSTALL
Diffstat (limited to 'include')
-rw-r--r-- | include/CMakeLists.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index ccb6589..b730954 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt | |||
@@ -1,5 +1,7 @@ | |||
1 | install(DIRECTORY . | 1 | if(ENABLE_LIBRESSL_INSTALL) |
2 | DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} | 2 | install(DIRECTORY . |
3 | PATTERN "CMakeLists.txt" EXCLUDE | 3 | DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} |
4 | PATTERN "compat" EXCLUDE | 4 | PATTERN "CMakeLists.txt" EXCLUDE |
5 | PATTERN "Makefile*" EXCLUDE) | 5 | PATTERN "compat" EXCLUDE |
6 | PATTERN "Makefile*" EXCLUDE) | ||
7 | endif(ENABLE_LIBRESSL_INSTALL) | ||