diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-03 09:55:40 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-03 09:55:59 +0200 |
commit | e730ea1e3ebe2a5f3b6d93d5c05c3c387fab8c57 (patch) | |
tree | b8eff5f5c5a206380b88e7b51c68cf575fcd2923 /plugin | |
parent | c9b49a4be723c18a8fad2bf4fd549079d45a33a5 (diff) | |
download | mariadb-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')
-rw-r--r-- | plugin/auth_ed25519/CMakeLists.txt | 2 |
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() |