Files
MaxScale/server/modules/authenticator/MariaDBAuth/CMakeLists.txt
2019-05-13 15:35:09 +03:00

9 lines
390 B
CMake

if(SQLITE_VERSION VERSION_LESS 3.3 AND NOT BUILD_SYSTEM_TESTS)
message(FATAL_ERROR "SQLite version 3.3 or higher is required")
else()
add_library(mariadbauth SHARED mysql_auth.cc dbusers.cc)
target_link_libraries(mariadbauth maxscale-common mysqlcommon)
set_target_properties(mariadbauth PROPERTIES VERSION "1.0.0" LINK_FLAGS -Wl,-z,defs)
install_module(mariadbauth core)
endif()