Now, qc_mysqlembedded is linked against MySQL's embedded library, and MaxScale itself against Connector-C. So, in order to build MaxScale, Connector-C must be installed. This has been tested with Connector-C 2.2.1. The build variable MYSQLCLIENT_LIBRARIES is no longer used.
21 lines
780 B
CMake
21 lines
780 B
CMake
subdirs(MYSQL_DIR_ALL ${MYSQL_DIR})
|
|
foreach(DIR ${MYSQL_DIR_ALL})
|
|
include_directories(${DIR})
|
|
endforeach()
|
|
include_directories(${MYSQL_INCLUDE})
|
|
|
|
if(${ERRMSG} MATCHES "ERRMSG-NOTFOUND")
|
|
message(FATAL_ERROR "The errmsg.sys file was not found, please define the path with -DERRMSG=<path>")
|
|
else()
|
|
if(${CMAKE_VERSION} VERSION_LESS 2.8)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy ${ERRMSG} ${CMAKE_CURRENT_BINARY_DIR})
|
|
else()
|
|
file(COPY ${ERRMSG} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(canonical_tests)
|
|
add_executable(classify classify.c)
|
|
target_link_libraries(classify query_classifier maxscale-common)
|
|
add_test(Internal-TestQueryClassifier classify ${CMAKE_CURRENT_SOURCE_DIR}/input.sql ${CMAKE_CURRENT_SOURCE_DIR}/expected.sql)
|