summaryrefslogtreecommitdiff
path: root/plugin/auth_ed25519
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-06-03 09:55:40 +0200
committerVladislav Vaintroub <wlad@mariadb.com>2019-06-03 09:55:59 +0200
commite730ea1e3ebe2a5f3b6d93d5c05c3c387fab8c57 (patch)
treeb8eff5f5c5a206380b88e7b51c68cf575fcd2923 /plugin/auth_ed25519
parentc9b49a4be723c18a8fad2bf4fd549079d45a33a5 (diff)
downloadmariadb-git-e730ea1e3ebe2a5f3b6d93d5c05c3c387fab8c57.tar.gz
Only link mysys_ssl when required.
Do not use TARGET_LINK_LIBRARIES(mysys mysys_ssl), this means that mysys_ssl is linked to practically everything.
Diffstat (limited to 'plugin/auth_ed25519')
-rw-r--r--plugin/auth_ed25519/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth_ed25519/CMakeLists.txt b/plugin/auth_ed25519/CMakeLists.txt
index 73d8eeb208b..8ed50e8fec9 100644
--- a/plugin/auth_ed25519/CMakeLists.txt
+++ b/plugin/auth_ed25519/CMakeLists.txt
@@ -28,5 +28,5 @@ MYSQL_ADD_PLUGIN(client_ed25519 client_ed25519.c MODULE_ONLY
CLIENT LINK_LIBRARIES mysys_ssl ref10 COMPONENT ClientPlugins)
IF(WITH_UNIT_TESTS)
- MY_ADD_TESTS(ed25519 LINK_LIBRARIES mysys ref10)
+ MY_ADD_TESTS(ed25519 LINK_LIBRARIES ref10 mysys_ssl)
ENDIF()