deal.II package: Update CMake variable for >=9.3.0 (#26909)

This commit is contained in:
Daniel Arndt
2021-10-25 18:00:40 -04:00
committed by GitHub
parent 6063600a7b
commit e221617386

View File

@@ -460,6 +460,11 @@ def cmake_args(self):
))
# Threading
if spec.satisfies('@9.3.0:'):
options.append(self.define_from_variant(
'DEAL_II_WITH_TBB', 'threads'
))
else:
options.append(self.define_from_variant(
'DEAL_II_WITH_THREADS', 'threads'
))