Move gatekeeper and ccrfilter into the core

The filters should be a part of the core package.
This commit is contained in:
Markus Makela
2016-09-12 13:17:38 +03:00
parent d8bff00fa5
commit cbf3ae0f8f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
add_library(ccrfilter SHARED ccrfilter.c)
target_link_libraries(ccrfilter maxscale-common)
set_target_properties(ccrfilter PROPERTIES VERSION "1.0.0")
install_module(ccrfilter experimental)
install_module(ccrfilter core)

View File

@ -1,4 +1,4 @@
add_library(gatekeeper SHARED gatekeeper.c)
target_link_libraries(gatekeeper maxscale-common)
set_target_properties(gatekeeper PROPERTIES VERSION "1.0.0")
install_module(gatekeeper experimental)
install_module(gatekeeper core)