From eb06060cd8504511fd4e324902643bc77e3cb3c4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 5 Jan 2020 15:48:43 +0200 Subject: [PATCH] Remove Boost::assert from test LINK_LIBRARIES as it's not used by tests --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6da16bc..1d01a61 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -10,7 +10,7 @@ endif() file(GLOB tests RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp) -set(BOOST_TEST_LINK_LIBRARIES Boost::move Boost::assert Boost::config Boost::container Boost::core Boost::static_assert Boost::timer) +set(BOOST_TEST_LINK_LIBRARIES Boost::move Boost::config Boost::container Boost::core Boost::static_assert Boost::timer) foreach(test IN LISTS tests)