From 688cfed63e0bdef23ee723f2b3e2abed6d8015f7 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 3 Jun 2020 07:38:07 +0300 Subject: [PATCH] Add Boost::bind to CMake test dependencies --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8dd7fcb..99a508b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -10,6 +10,6 @@ if(HAVE_BOOST_TEST) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads) -boost_test_jamfile(FILE Jamfile LINK_LIBRARIES Boost::smart_ptr Boost::core Boost::align Boost::atomic Boost::container_hash Threads::Threads) +boost_test_jamfile(FILE Jamfile LINK_LIBRARIES Boost::smart_ptr Boost::core Boost::align Boost::atomic Boost::container_hash Boost::bind Threads::Threads) endif()