From 538d727571fec1e84a872c1af0b60b9df1a44d5b Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Thu, 27 Aug 2015 09:01:02 +0200 Subject: [PATCH] Fixed testbinlog compilation Fixed testbinlog compilation --- server/modules/routing/binlog/test/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/modules/routing/binlog/test/CMakeLists.txt b/server/modules/routing/binlog/test/CMakeLists.txt index 02ee34ebe..62e355b28 100644 --- a/server/modules/routing/binlog/test/CMakeLists.txt +++ b/server/modules/routing/binlog/test/CMakeLists.txt @@ -1,6 +1,5 @@ if(BUILD_TESTS) - aux_source_directory(${CMAKE_SOURCE_DIR}/server/modules/routing/binlog BINLOG_SOURCE) - add_executable(testbinlogrouter testbinlog.c ${BINLOG_SOURCE}) + add_executable(testbinlogrouter testbinlog.c ../blr.c ../blr_slave.c ../blr_master.c ../blr_file.c ../blr_cache.c) target_link_libraries(testbinlogrouter fullcore ssl pthread log_manager) add_test(TestBinlogRouter ${CMAKE_CURRENT_BINARY_DIR}/testbinlogrouter) endif()