From a35f99394f085437342f4bb272dfc70f4ecb96a7 Mon Sep 17 00:00:00 2001 From: Igor Freire Date: Tue, 11 Jul 2023 13:38:19 +0000 Subject: [PATCH] Require Boost unit_test_framework on CMakeLists As indicated in #28, the macOS build requires an explicit find_package call to find the Boost::unit_test_framework component to which each unit test application is linked (via the GR_ADD_CPP_TEST call). --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aae381f..a943b1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,9 +111,10 @@ if(APPLE) endif(APPLE) ######################################################################## -# Find gnuradio build dependencies +# Find OOT build dependencies ######################################################################## find_package(Doxygen) +find_package(Boost REQUIRED unit_test_framework) ######################################################################## # PyBind11 Related