From c16dc295593483dba05abed3c211e8063403bae7 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 25 Aug 2024 17:19:09 -0400 Subject: [PATCH] enable taskflow by default We now have some tasking functionality implemented via taskflow instead of TBB. It makes sense to enable it by default to shake out any problems. --- cmake/configure/configure_10_taskflow.cmake | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cmake/configure/configure_10_taskflow.cmake b/cmake/configure/configure_10_taskflow.cmake index 9298f02348..9fbee7972d 100644 --- a/cmake/configure/configure_10_taskflow.cmake +++ b/cmake/configure/configure_10_taskflow.cmake @@ -17,11 +17,7 @@ # library: # -# -# Disallow the default detection of taskflow for the time being to avoid -# unpleasant surprises on user side. -# -set(DEAL_II_WITH_TASKFLOW OFF CACHE BOOL "") +set(DEAL_II_WITH_TASKFLOW ON CACHE BOOL "") macro(feature_taskflow_find_external var) find_package(DEAL_II_TASKFLOW) -- 2.39.5