We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae5a01 commit c03a5acCopy full SHA for c03a5ac
manifoldDeps.cmake
@@ -1,9 +1,12 @@
1
include(FetchContent)
2
include(GNUInstallDirs)
3
find_package(PkgConfig)
4
+if(MANIFOLD_PAR STREQUAL "TBB")
5
+ find_package(TBB)
6
+endif()
7
if (PKG_CONFIG_FOUND)
8
pkg_check_modules(Clipper2 Clipper2)
- if(MANIFOLD_PAR STREQUAL "TBB")
9
+ if(MANIFOLD_PAR STREQUAL "TBB" AND NOT TBB_FOUND)
10
pkg_check_modules(TBB tbb)
11
endif()
12
0 commit comments