
Make all modules lowercase and make module loading case insensitive. Further, make command invocation case insensitive, as far as the module name is conserned.
9 lines
338 B
CMake
9 lines
338 B
CMake
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()
|