add_library(MySQLAuth SHARED mysql_auth.c dbusers.c) target_link_libraries(MySQLAuth maxscale-common MySQLCommon) set_target_properties(MySQLAuth PROPERTIES VERSION "1.0.0") install_module(MySQLAuth core) if (BUILD_TESTS) add_executable(test_mysql_users test_mysql_users.c) target_link_libraries(test_mysql_users MySQLAuth MySQLCommon maxscale-common) add_test(TestMySQLUsers test_mysql_users) endif()