From 1067e761217dc57cc6629bd1bc64935b43a4bbb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 19 Sep 2017 11:18:21 +0300 Subject: [PATCH] Fix CMake variables of cdc_connector The library is not a static library but a shared object. --- maxscale-system-test/utilities.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxscale-system-test/utilities.cmake b/maxscale-system-test/utilities.cmake index bf6e72a4b..c284958c7 100644 --- a/maxscale-system-test/utilities.cmake +++ b/maxscale-system-test/utilities.cmake @@ -111,5 +111,5 @@ ExternalProject_Add(cdc_connector INSTALL_COMMAND make install) set(CDC_CONNECTOR_INCLUDE ${CMAKE_BINARY_DIR}/cdc_connector/include/ CACHE INTERNAL "") -set(CDC_CONNECTOR_LIBRARIES ${CMAKE_BINARY_DIR}/cdc_connector/lib/libcdc_connector.a CACHE INTERNAL "") +set(CDC_CONNECTOR_LIBRARIES ${CMAKE_BINARY_DIR}/cdc_connector/lib/libcdc_connector.so CACHE INTERNAL "") include_directories(${CMAKE_BINARY_DIR}/cdc_connector/include)