if(SQLITE_VERSION VERSION_LESS 3.3) message(FATAL_ERROR "SQLite version 3.3 or higher is required") else() add_library(MySQLAuth SHARED mysql_auth.c dbusers.c) target_link_libraries(MySQLAuth maxscale-common MySQLCommon sqlite3) set_target_properties(MySQLAuth PROPERTIES VERSION "1.0.0") install_module(MySQLAuth core) endif()