mariadb/plugin/auth_mysql_sha2/CMakeLists.txt
Sergei Golubchik 63583b0824 MDEV-9804 Implement a caching_sha2_password plugin
but without caching
2025-07-27 13:57:06 +02:00

8 lines
318 B
CMake

ADD_DEFINITIONS(${SSL_DEFINES})
IF(WITH_SSL STREQUAL "bundled")
# WolfSSL is static, we don't want it linked both into plugin and server
SET(static STATIC_ONLY DEFAULT)
ENDIF()
MYSQL_ADD_PLUGIN(auth_mysql_sha2
mysql_sha2.c sha256crypt.c ssl_stuff.c openssl1-compat.c
LINK_LIBRARIES ${SSL_LIBRARIES} ${static})