modified: CMakeLists.txt modified: README modified: macros.cmake modified: query_classifier/test/canonical_tests/CMakeLists.txt modified: rabbitmq_consumer/CMakeLists.txt modified: server/modules/filter/CMakeLists.txt
13 lines
647 B
CMake
13 lines
647 B
CMake
file(COPY ${ERRMSG} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
if(${ERRMSG} MATCHES "ERRMSG-NOTFOUND")
|
|
message(FATAL_ERROR "The errmsg.sys file was not found, please define the path with -DERRMSG=<path>")
|
|
endif()
|
|
add_executable(canonizer canonizer.c)
|
|
target_link_libraries(canonizer pthread query_classifier z dl ssl aio crypt crypto rt m ${EMBEDDED_LIB} fullcore stdc++)
|
|
add_test(NAME TestCanonicalQuery COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/canontest.sh
|
|
${CMAKE_CURRENT_BINARY_DIR}/test.log
|
|
${CMAKE_CURRENT_SOURCE_DIR}/input.sql
|
|
${CMAKE_CURRENT_BINARY_DIR}/output.sql
|
|
${CMAKE_CURRENT_SOURCE_DIR}/expected.sql
|
|
$<TARGET_FILE:canonizer>)
|