From 84be86e9438d72c9ff56d10fc30e2dfc042a1d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 4 Apr 2021 18:49:35 +0200 Subject: [PATCH] Boost::timer no longer needed to run tests --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1d01a61..0418f69 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::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) foreach(test IN LISTS tests)