diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-06-12 03:56:33 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-06-12 15:26:59 +0200 |
commit | 158b6e1152413e4fa973b70b7469bb1f256a1f38 (patch) | |
tree | 6b529a235256338800e41479e822556760b1d3b1 /tdesu | |
parent | 080c061b15cfcb11e26a2ede1c8082afb0c5d329 (diff) | |
download | tdelibs-158b6e1152413e4fa973b70b7469bb1f256a1f38.tar.gz tdelibs-158b6e1152413e4fa973b70b7469bb1f256a1f38.zip |
Use private linking for exported CMake targets.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdesu')
-rw-r--r-- | tdesu/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tdesu/CMakeLists.txt b/tdesu/CMakeLists.txt index 8dcf012bd..de84adb4e 100644 --- a/tdesu/CMakeLists.txt +++ b/tdesu/CMakeLists.txt @@ -42,7 +42,8 @@ set( ${target}_SRCS tde_add_library( ${target} SHARED SOURCES ${${target}_SRCS} VERSION 14.0.0 - LINK tdecore-shared ${LIB_UTIL} + LINK tdecore-shared + LINK_PRIVATE ${LIB_UTIL} DESTINATION ${LIB_INSTALL_DIR} ) |