From c6023618360d7df5e3a42e9a5aa280da52171474 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Tue, 13 Mar 2018 12:20:29 +0100 Subject: [PATCH] Problem: debug output in CMake file Solution: removed --- unittests/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt index 137f4a18..04b4cdf3 100644 --- a/unittests/CMakeLists.txt +++ b/unittests/CMakeLists.txt @@ -48,7 +48,6 @@ foreach(test ${unittests}) # TODO prevent libzmq (non-static) being in the list of link libraries at all get_target_property(LIBS ${test} LINK_LIBRARIES) list(REMOVE_ITEM LIBS libzmq) - message("Link libraries of ${test}: ${LIBS}") set_target_properties(${test} PROPERTIES LINK_LIBRARIES "${LIBS}") endforeach()