-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openvdb: Fix an issue with CMP0167 CMake policy
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/cmake/FindOpenVDB.cmake b/cmake/FindOpenVDB.cmake | ||
index c4213c85..11ebaca9 100644 | ||
--- a/cmake/FindOpenVDB.cmake | ||
+++ b/cmake/FindOpenVDB.cmake | ||
@@ -491,6 +491,10 @@ endif() | ||
# Add standard dependencies | ||
|
||
find_package(TBB REQUIRED COMPONENTS tbb) | ||
+ | ||
+if(POLICY CMP0167) | ||
+ cmake_policy(SET CMP0167 NEW) | ||
+endif() | ||
find_package(Boost REQUIRED COMPONENTS iostreams) | ||
|
||
# Add deps for pyopenvdb |