mirror of
https://github.com/microsoft/vcpkg
synced 2024-11-21 16:09:03 -07:00
[openvdb] update to 12.0.0 and fix link error (#42020)
Co-authored-by: Jon <v-zhli17@microsoft.com>
This commit is contained in:
parent
ba97444509
commit
81a178ad4b
6 changed files with 62 additions and 59 deletions
|
@ -1,8 +1,8 @@
|
|||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 8329dda9..71f45701 100644
|
||||
index 34df130..70351ef 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -284,12 +284,9 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
||||
@@ -311,12 +311,9 @@ endif()
|
||||
|
||||
if(OPENVDB_INSTALL_CMAKE_MODULES)
|
||||
set(OPENVDB_CMAKE_MODULES
|
||||
|
@ -16,19 +16,19 @@ index 8329dda9..71f45701 100644
|
|||
cmake/OpenVDBHoudiniSetup.cmake
|
||||
cmake/OpenVDBMayaSetup.cmake
|
||||
diff --git a/cmake/FindOpenVDB.cmake b/cmake/FindOpenVDB.cmake
|
||||
index c4213c85..86b24e9d 100644
|
||||
index 33b0838..c1e9d00 100644
|
||||
--- a/cmake/FindOpenVDB.cmake
|
||||
+++ b/cmake/FindOpenVDB.cmake
|
||||
@@ -490,7 +490,7 @@ endif()
|
||||
@@ -488,7 +488,7 @@ endif()
|
||||
|
||||
# Add standard dependencies
|
||||
|
||||
-find_package(TBB REQUIRED COMPONENTS tbb)
|
||||
+find_package(TBB CONFIG REQUIRED)
|
||||
find_package(Boost REQUIRED COMPONENTS iostreams)
|
||||
|
||||
# Add deps for pyopenvdb
|
||||
@@ -641,7 +641,7 @@ elseif(NOT OPENVDB_USE_STATIC_LIBS)
|
||||
|
||||
@@ -613,7 +613,7 @@ elseif(NOT OPENVDB_USE_STATIC_LIBS)
|
||||
endif()
|
||||
|
||||
if(OpenVDB_USES_BLOSC)
|
||||
|
@ -37,7 +37,7 @@ index c4213c85..86b24e9d 100644
|
|||
endif()
|
||||
|
||||
if(OpenVDB_USES_ZLIB)
|
||||
@@ -694,7 +694,7 @@ set(_OPENVDB_HIDDEN_DEPENDENCIES)
|
||||
@@ -670,7 +670,7 @@ set(_OPENVDB_HIDDEN_DEPENDENCIES)
|
||||
|
||||
if(NOT OPENVDB_USE_STATIC_LIBS)
|
||||
if(OpenVDB_USES_BLOSC)
|
||||
|
@ -46,11 +46,43 @@ index c4213c85..86b24e9d 100644
|
|||
endif()
|
||||
if(OpenVDB_USES_ZLIB)
|
||||
list(APPEND _OPENVDB_HIDDEN_DEPENDENCIES ZLIB::ZLIB)
|
||||
diff --git a/nanovdb/nanovdb/CMakeLists.txt b/nanovdb/nanovdb/CMakeLists.txt
|
||||
index 4e0284e..ca3449b 100644
|
||||
--- a/nanovdb/nanovdb/CMakeLists.txt
|
||||
+++ b/nanovdb/nanovdb/CMakeLists.txt
|
||||
@@ -122,15 +122,15 @@ if(NANOVDB_USE_OPENVDB)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_TBB AND NOT TARGET TBB::tbb)
|
||||
- find_package(TBB ${MINIMUM_TBB_VERSION} REQUIRED)
|
||||
+ find_package(TBB CONFIG REQUIRED)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_BLOSC AND NOT TARGET Blosc::blosc)
|
||||
- find_package(Blosc ${MINIMUM_BLOSC_VERSION} REQUIRED)
|
||||
+ find_package(blosc CONFIG REQUIRED)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_ZLIB AND NOT TARGET ZLIB::ZLIB)
|
||||
- find_package(ZLIB ${MINIMUM_ZLIB_VERSION} REQUIRED)
|
||||
+ find_package(ZLIB REQUIRED)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_MAGICAVOXEL)
|
||||
@@ -290,7 +290,7 @@ if(NANOVDB_USE_TBB)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_BLOSC)
|
||||
- target_link_libraries(nanovdb INTERFACE Blosc::blosc)
|
||||
+ target_link_libraries(nanovdb INTERFACE $<IF:$<TARGET_EXISTS:blosc_shared>,blosc_shared,blosc_static>)
|
||||
target_compile_definitions(nanovdb INTERFACE -DNANOVDB_USE_BLOSC)
|
||||
endif()
|
||||
|
||||
diff --git a/openvdb/openvdb/CMakeLists.txt b/openvdb/openvdb/CMakeLists.txt
|
||||
index 33d4e5cc..63699b2c 100644
|
||||
index 3db0e4e..9475709 100644
|
||||
--- a/openvdb/openvdb/CMakeLists.txt
|
||||
+++ b/openvdb/openvdb/CMakeLists.txt
|
||||
@@ -123,7 +123,7 @@ if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_BOOST_VERSION)
|
||||
@@ -121,7 +121,7 @@ if(OPENVDB_USE_DELAYED_LOADING)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
@ -59,35 +91,24 @@ index 33d4e5cc..63699b2c 100644
|
|||
if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_TBB_VERSION)
|
||||
if(${TBB_VERSION} VERSION_LESS FUTURE_MINIMUM_TBB_VERSION)
|
||||
message(DEPRECATION "Support for TBB versions < ${FUTURE_MINIMUM_TBB_VERSION} "
|
||||
@@ -152,26 +152,7 @@ endif()
|
||||
@@ -150,6 +150,7 @@ endif()
|
||||
|
||||
if(USE_BLOSC)
|
||||
# Find Blosc libraries
|
||||
- find_package(Blosc ${MINIMUM_BLOSC_VERSION} REQUIRED)
|
||||
- if(Blosc_VERSION)
|
||||
- if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_BLOSC_VERSION)
|
||||
- if(${Blosc_VERSION} VERSION_LESS FUTURE_MINIMUM_BLOSC_VERSION)
|
||||
- message(DEPRECATION "Support for Blosc versions < ${FUTURE_MINIMUM_BLOSC_VERSION} "
|
||||
- "is deprecated and will be removed.")
|
||||
- endif()
|
||||
- endif()
|
||||
- # Print a warning if using of the blosc versions with regression issues
|
||||
- # with Blosc 1.5.0 caches.
|
||||
- if((Blosc_VERSION VERSION_GREATER_EQUAL 1.11.0 AND
|
||||
- Blosc_VERSION VERSION_LESS 1.14.0) OR
|
||||
- (Blosc_VERSION VERSION_GREATER_EQUAL 1.16.0 AND
|
||||
- Blosc_VERSION VERSION_LESS 1.16.2))
|
||||
- message(WARNING "The following Blosc versions are incompatible with the "
|
||||
- "recommended builds of OpenVDB: [1.11.0 -> 1.14.0) [1.16.0, 1.16.1]. "
|
||||
- "Found Blosc version '${Blosc_VERSION}' which falls in this range. We "
|
||||
- "strongly recommend using the new future minimum version '${FUTURE_MINIMUM_BLOSC_VERSION}'")
|
||||
- endif()
|
||||
- endif()
|
||||
+ if(0)
|
||||
find_package(Blosc ${MINIMUM_BLOSC_VERSION} REQUIRED)
|
||||
if(Blosc_VERSION)
|
||||
if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_BLOSC_VERSION)
|
||||
@@ -170,6 +171,8 @@ if(USE_BLOSC)
|
||||
"strongly recommend using the new future minimum version '${FUTURE_MINIMUM_BLOSC_VERSION}'")
|
||||
endif()
|
||||
endif()
|
||||
+ endif()
|
||||
+ find_package(blosc CONFIG REQUIRED)
|
||||
else()
|
||||
message(WARNING "Blosc support is disabled. It is strongly recommended to "
|
||||
"enable blosc for optimal builds of OpenVDB and to support compatible "
|
||||
@@ -228,7 +209,11 @@ endif()
|
||||
@@ -226,7 +229,11 @@ endif()
|
||||
# /usr/local
|
||||
|
||||
if(USE_BLOSC)
|
||||
|
@ -101,7 +122,7 @@ index 33d4e5cc..63699b2c 100644
|
|||
|
||||
if(USE_BLOSC OR USE_ZLIB)
|
||||
diff --git a/openvdb_cmd/CMakeLists.txt b/openvdb_cmd/CMakeLists.txt
|
||||
index c4351f49..b4803341 100644
|
||||
index edbb1a4..463d3ed 100644
|
||||
--- a/openvdb_cmd/CMakeLists.txt
|
||||
+++ b/openvdb_cmd/CMakeLists.txt
|
||||
@@ -53,7 +53,7 @@ if(CONCURRENT_MALLOC STREQUAL "Jemalloc")
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
diff --git a/nanovdb/nanovdb/CMakeLists.txt b/nanovdb/nanovdb/CMakeLists.txt
|
||||
index 7bb3ab86..9311ed17 100644
|
||||
--- a/nanovdb/nanovdb/CMakeLists.txt
|
||||
+++ b/nanovdb/nanovdb/CMakeLists.txt
|
||||
@@ -127,7 +127,7 @@ if(NANOVDB_USE_TBB AND NOT TARGET TBB::tbb)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_BLOSC AND NOT TARGET Blosc::blosc)
|
||||
- find_package(Blosc REQUIRED)
|
||||
+ find_package(Blosc REQUIRED NAMES blosc)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_ZLIB AND NOT TARGET ZLIB::ZLIB)
|
||||
@@ -236,7 +236,7 @@ if(NANOVDB_USE_TBB)
|
||||
endif()
|
||||
|
||||
if(NANOVDB_USE_BLOSC)
|
||||
- target_link_libraries(nanovdb INTERFACE Blosc::blosc)
|
||||
+ target_link_libraries(nanovdb INTERFACE $<IF:$<TARGET_EXISTS:blosc_shared>,blosc_shared,blosc_static>)
|
||||
target_compile_definitions(nanovdb INTERFACE -DNANOVDB_USE_BLOSC)
|
||||
endif()
|
||||
|
|
@ -2,10 +2,9 @@ vcpkg_from_github(
|
|||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO AcademySoftwareFoundation/openvdb
|
||||
REF "v${VERSION}"
|
||||
SHA512 f2c90ca8435ecbacefda429341000ecb555385c746a3e0233220cd78540cee2a26cc17df7b560fdfe2dc03f2b2e960a2fa226a85980189c3e018164ccc037bd4
|
||||
SHA512 7ea2997afa99ed1ed23422eb8b8420c7127c913432f94043ccf559b6720bba2f6e19376e955d8d9055ab765a821749936966f6e5925b9d36febaa724d866b90a
|
||||
PATCHES
|
||||
fix_cmake.patch
|
||||
fix_nanovdb.patch
|
||||
)
|
||||
|
||||
file(REMOVE "${SOURCE_PATH}/cmake/FindTBB.cmake")
|
||||
|
@ -71,4 +70,4 @@ endif()
|
|||
|
||||
configure_file("${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake.in" "${CURRENT_PACKAGES_DIR}/share/${PORT}/vcpkg-cmake-wrapper.cmake" @ONLY)
|
||||
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
||||
file(INSTALL "${SOURCE_PATH}/openvdb/openvdb/COPYRIGHT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/openvdb/openvdb/COPYRIGHT")
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "openvdb",
|
||||
"version": "11.0.0",
|
||||
"version": "12.0.0",
|
||||
"description": "Sparse volume data structure and tools",
|
||||
"homepage": "https://github.com/dreamworksanimation/openvdb",
|
||||
"license": "MPL-2.0",
|
||||
|
|
|
@ -6761,7 +6761,7 @@
|
|||
"port-version": 2
|
||||
},
|
||||
"openvdb": {
|
||||
"baseline": "11.0.0",
|
||||
"baseline": "12.0.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"openvino": {
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "bb88224f64822d690b692169cbcdb87ffdb9d597",
|
||||
"version": "12.0.0",
|
||||
"port-version": 0
|
||||
},
|
||||
{
|
||||
"git-tree": "6997652c81d0f91033cb3cce2bf6e55674725400",
|
||||
"version": "11.0.0",
|
||||
|
|
Loading…
Reference in a new issue