2017-05-11 12:41:13 +03:00

9 lines
278 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)
add_subdirectory(test)