MXS-1275: Move SetSqlModeParser to .../server/core/maxscale

The parser is needed not only by mysql_client but also by the test
program of the qc-plugins, so it need to be available someplace
common.

Not that nice that both a qc-component and mysql_client will include
stuff from server/core/maxscale, but at least temporarily ok.
This commit is contained in:
Johan Wikman
2017-05-31 16:01:22 +03:00
parent 3084e95772
commit b385e862b0
5 changed files with 11 additions and 9 deletions

View File

@ -2,7 +2,3 @@ add_library(MySQLClient SHARED mysql_client.cc)
target_link_libraries(MySQLClient maxscale-common MySQLCommon)
set_target_properties(MySQLClient PROPERTIES VERSION "1.0.0")
install_module(MySQLClient core)
if(BUILD_TESTS)
add_subdirectory(test)
endif()