
The MySQLCommon library contains functions used by both the protocol and authenticator modules. The contents of the modutil.c file could also be moved to this file if the functions in that file are only used by modules and not the core.
8 lines
255 B
CMake
8 lines
255 B
CMake
add_library(MySQLCommon SHARED mysql_common.c)
|
|
target_link_libraries(MySQLCommon maxscale-common)
|
|
set_target_properties(MySQLCommon PROPERTIES VERSION "2.0.0")
|
|
install_module(MySQLCommon core)
|
|
|
|
add_subdirectory(MySQLBackend)
|
|
add_subdirectory(MySQLClient)
|