From 03074cdbc242a06c861a703ad76365b4dca7cb4a Mon Sep 17 00:00:00 2001 From: Irides Date: Tue, 5 Apr 2022 10:12:44 -0500 Subject: [PATCH] cmake: properly include TBB libraries. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 78c1caa1..fcbbbb13 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -257,7 +257,7 @@ if(PROFILER) list(APPEND EXTRA_LIB_DEPS profiler) endif() if(TBB_FOUND) - list(APPEND EXTRA_LIB_DEPS tbb) + list(APPEND EXTRA_LIB_DEPS TBB::tbb) endif() foreach (family ${ARCH})