aboutsummaryrefslogtreecommitdiff
path: root/tls
diff options
context:
space:
mode:
authord3x0r <d3x0r@users.noreply.github.com>2017-07-06 01:49:43 -0700
committerBrent Cook <bcook@openbsd.org>2017-07-07 00:10:15 -0500
commitde9ea11a07f23809c102c7a2e0378d71f8713c16 (patch)
treec291010c226e8f389f3d95c9b8f303c9a9aa33be /tls
parent3cf0bc1226d2f7c14c7fa82ee8fd1626963bac10 (diff)
downloadportable-de9ea11a07f23809c102c7a2e0378d71f8713c16.tar.gz
portable-de9ea11a07f23809c102c7a2e0378d71f8713c16.tar.bz2
portable-de9ea11a07f23809c102c7a2e0378d71f8713c16.zip
use GNUInstallDirs from cmake to specify install paths.
Primarily this is to select whether 'lib64' or 'lib' is used on linux type systems.
Diffstat (limited to 'tls')
-rw-r--r--tls/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt
index b71fb37..c3e6336 100644
--- a/tls/CMakeLists.txt
+++ b/tls/CMakeLists.txt
@@ -39,9 +39,9 @@ if (BUILD_SHARED)
39 ARCHIVE_OUTPUT_NAME tls${TLS_POSTFIX}) 39 ARCHIVE_OUTPUT_NAME tls${TLS_POSTFIX})
40 set_target_properties(tls-shared PROPERTIES VERSION ${TLS_VERSION} 40 set_target_properties(tls-shared PROPERTIES VERSION ${TLS_VERSION}
41 SOVERSION ${TLS_MAJOR_VERSION}) 41 SOVERSION ${TLS_MAJOR_VERSION})
42 install(TARGETS tls tls-shared DESTINATION lib) 42 install(TARGETS tls tls-shared DESTINATION ${CMAKE_INSTALL_LIBDIR})
43else() 43else()
44 add_library(tls STATIC ${TLS_SRC}) 44 add_library(tls STATIC ${TLS_SRC})
45 install(TARGETS tls DESTINATION lib) 45 install(TARGETS tls DESTINATION ${CMAKE_INSTALL_LIBDIR})
46endif() 46endif()
47 47