From 97f54318e3f6f5f60ecfaa7121371bc1ff21a056 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Mon, 20 Jun 2022 08:37:11 -0700 Subject: [PATCH] Add `Boost::concept_check` to CMake test suite dependencies --- test/CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 89703768..51758339 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,6 +6,12 @@ include(BoostTestJamfile OPTIONAL RESULT_VARIABLE HAVE_BOOST_TEST) if(HAVE_BOOST_TEST) -boost_test_jamfile(FILE Jamfile.v2 LINK_LIBRARIES Boost::unordered Boost::core) +boost_test_jamfile( + FILE Jamfile.v2 + LINK_LIBRARIES + Boost::unordered + Boost::core + Boost::concept_check +) endif()