Files
MaxScale/server/modules/monitor/mysqlmon/CMakeLists.txt
Markus Mäkelä 08cc7a9515 Make MySQL monitor crash-safe
The MySQL monitor stores the server states in a backup file which can be
used to restore the state of the servers even if MaxScale is stoppen in an
uncontrolled fashion.
2017-03-17 11:12:48 +02:00

6 lines
230 B
CMake

add_library(mysqlmon SHARED mysql_mon.c mysql_mon_backup.c)
target_link_libraries(mysqlmon maxscale-common)
add_dependencies(mysqlmon pcre2)
set_target_properties(mysqlmon PROPERTIES VERSION "1.4.0")
install_module(mysqlmon core)