From a07169432455745bbf25f4756e0abd9492c1784a Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 1 Jan 2019 08:59:46 -0500 Subject: [PATCH] test: Workaround the cyclic dependencies between the libraries --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3e34ef778..f1f79bd12 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -25,7 +25,7 @@ add_custom_target (build_tests DEPENDS ${test_SRCS} foreach (src_FILE ${test_SRCS}) add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp) - target_link_libraries (${src_FILE} task commands task columns libshared ${TASK_LIBRARIES}) + target_link_libraries (${src_FILE} task commands columns libshared task commands columns libshared task commands columns libshared ${TASK_LIBRARIES}) endforeach (src_FILE) configure_file(run_all run_all COPYONLY)