early-access version 2853
This commit is contained in:
		
							
								
								
									
										152
									
								
								externals/vcpkg/ports/openvdb/0003-fix-cmake.patch
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										152
									
								
								externals/vcpkg/ports/openvdb/0003-fix-cmake.patch
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,152 @@
 | 
			
		||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
 | 
			
		||||
index 8dfbc5e..0ba8887 100644
 | 
			
		||||
--- a/CMakeLists.txt
 | 
			
		||||
+++ b/CMakeLists.txt
 | 
			
		||||
@@ -373,13 +373,9 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
 | 
			
		||||
 
 | 
			
		||||
 if(OPENVDB_INSTALL_CMAKE_MODULES)
 | 
			
		||||
   set(OPENVDB_CMAKE_MODULES
 | 
			
		||||
-    cmake/FindBlosc.cmake
 | 
			
		||||
     cmake/FindJemalloc.cmake
 | 
			
		||||
-    cmake/FindIlmBase.cmake
 | 
			
		||||
     cmake/FindLog4cplus.cmake
 | 
			
		||||
-    cmake/FindOpenEXR.cmake
 | 
			
		||||
     cmake/FindOpenVDB.cmake
 | 
			
		||||
-    cmake/FindTBB.cmake
 | 
			
		||||
     cmake/OpenVDBGLFW3Setup.cmake
 | 
			
		||||
     cmake/OpenVDBHoudiniSetup.cmake
 | 
			
		||||
     cmake/OpenVDBMayaSetup.cmake
 | 
			
		||||
diff --git a/cmake/FindOpenVDB.cmake b/cmake/FindOpenVDB.cmake
 | 
			
		||||
index 0dac1de..5014c6a 100644
 | 
			
		||||
--- a/cmake/FindOpenVDB.cmake
 | 
			
		||||
+++ b/cmake/FindOpenVDB.cmake
 | 
			
		||||
@@ -485,7 +485,7 @@ endif()
 | 
			
		||||
 
 | 
			
		||||
 # Add standard dependencies
 | 
			
		||||
 
 | 
			
		||||
-find_package(TBB REQUIRED COMPONENTS tbb)
 | 
			
		||||
+find_package(TBB CONFIG REQUIRED)
 | 
			
		||||
 
 | 
			
		||||
 if(NOT OPENVDB_USE_STATIC_LIBS AND NOT Boost_USE_STATIC_LIBS)
 | 
			
		||||
   # @note  Both of these must be set for Boost 1.70 (VFX2020) to link against
 | 
			
		||||
@@ -635,7 +635,7 @@ elseif(NOT OPENVDB_USE_STATIC_LIBS)
 | 
			
		||||
 endif()
 | 
			
		||||
 
 | 
			
		||||
 if(OpenVDB_USES_BLOSC)
 | 
			
		||||
-  find_package(Blosc REQUIRED)
 | 
			
		||||
+  find_package(blosc CONFIG REQUIRED)
 | 
			
		||||
 endif()
 | 
			
		||||
 
 | 
			
		||||
 if(OpenVDB_USES_ZLIB)
 | 
			
		||||
@@ -649,7 +649,7 @@ endif()
 | 
			
		||||
 if(OpenVDB_USES_IMATH_HALF)
 | 
			
		||||
   find_package(Imath CONFIG)
 | 
			
		||||
   if (NOT TARGET Imath::Imath)
 | 
			
		||||
-    find_package(IlmBase REQUIRED COMPONENTS Half)
 | 
			
		||||
+    find_package(IlmBase CONFIG REQUIRED)
 | 
			
		||||
   endif()
 | 
			
		||||
 
 | 
			
		||||
   if(WIN32)
 | 
			
		||||
@@ -698,7 +698,7 @@ set(_OPENVDB_HIDDEN_DEPENDENCIES)
 | 
			
		||||
 
 | 
			
		||||
 if(NOT OPENVDB_USE_STATIC_LIBS)
 | 
			
		||||
   if(OpenVDB_USES_BLOSC)
 | 
			
		||||
-    list(APPEND _OPENVDB_HIDDEN_DEPENDENCIES Blosc::blosc)
 | 
			
		||||
+    list(APPEND _OPENVDB_HIDDEN_DEPENDENCIES blosc)
 | 
			
		||||
   endif()
 | 
			
		||||
   if(OpenVDB_USES_ZLIB)
 | 
			
		||||
     list(APPEND _OPENVDB_HIDDEN_DEPENDENCIES ZLIB::ZLIB)
 | 
			
		||||
diff --git a/openvdb/openvdb/CMakeLists.txt b/openvdb/openvdb/CMakeLists.txt
 | 
			
		||||
index 1d5b75f..f2da6f9 100644
 | 
			
		||||
--- a/openvdb/openvdb/CMakeLists.txt
 | 
			
		||||
+++ b/openvdb/openvdb/CMakeLists.txt
 | 
			
		||||
@@ -127,9 +127,9 @@ if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_BOOST_VERSION)
 | 
			
		||||
   endif()
 | 
			
		||||
 endif()
 | 
			
		||||
 
 | 
			
		||||
-find_package(TBB ${MINIMUM_TBB_VERSION} REQUIRED COMPONENTS tbb)
 | 
			
		||||
+find_package(TBB CONFIG REQUIRED)
 | 
			
		||||
 if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_TBB_VERSION)
 | 
			
		||||
-  if(${Tbb_VERSION} VERSION_LESS FUTURE_MINIMUM_TBB_VERSION)
 | 
			
		||||
+  if(${TBB_VERSION} VERSION_LESS FUTURE_MINIMUM_TBB_VERSION)
 | 
			
		||||
     message(DEPRECATION "Support for TBB versions < ${FUTURE_MINIMUM_TBB_VERSION} "
 | 
			
		||||
       "is deprecated and will be removed.")
 | 
			
		||||
   endif()
 | 
			
		||||
@@ -138,7 +138,7 @@ endif()
 | 
			
		||||
 if(USE_IMATH_HALF)
 | 
			
		||||
   find_package(Imath CONFIG)
 | 
			
		||||
   if (NOT TARGET Imath::Imath)
 | 
			
		||||
-    find_package(IlmBase ${MINIMUM_ILMBASE_VERSION} REQUIRED COMPONENTS Half)
 | 
			
		||||
+    find_package(IlmBase CONFIG REQUIRED)
 | 
			
		||||
     if(OPENVDB_FUTURE_DEPRECATION AND FUTURE_MINIMUM_ILMBASE_VERSION)
 | 
			
		||||
       if(${IlmBase_VERSION} VERSION_LESS FUTURE_MINIMUM_ILMBASE_VERSION)
 | 
			
		||||
         message(DEPRECATION "Support for IlmBase versions < ${FUTURE_MINIMUM_ILMBASE_VERSION} "
 | 
			
		||||
@@ -157,26 +157,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()
 | 
			
		||||
+  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 "
 | 
			
		||||
@@ -234,7 +215,7 @@ endif()
 | 
			
		||||
 # /usr/local
 | 
			
		||||
 
 | 
			
		||||
 if(USE_BLOSC)
 | 
			
		||||
-  list(APPEND OPENVDB_CORE_DEPENDENT_LIBS Blosc::blosc)
 | 
			
		||||
+  list(APPEND OPENVDB_CORE_DEPENDENT_LIBS blosc)
 | 
			
		||||
 endif()
 | 
			
		||||
 
 | 
			
		||||
 if(USE_BLOSC OR USE_ZLIB)
 | 
			
		||||
diff --git a/openvdb/openvdb/cmd/CMakeLists.txt b/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
index c1d5649..c173566 100644
 | 
			
		||||
--- a/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
+++ b/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
@@ -46,7 +46,7 @@ if(CONCURRENT_MALLOC STREQUAL "Jemalloc")
 | 
			
		||||
   find_package(Jemalloc REQUIRED)
 | 
			
		||||
   list(APPEND OPENVDB_BINARIES_DEPENDENT_LIBS Jemalloc::jemalloc)
 | 
			
		||||
 elseif(CONCURRENT_MALLOC STREQUAL "Tbbmalloc")
 | 
			
		||||
-  find_package(TBB ${MINIMUM_TBB_VERSION} REQUIRED COMPONENTS tbbmalloc)
 | 
			
		||||
+  find_package(TBB CONFIG REQUIRED)
 | 
			
		||||
   list(APPEND OPENVDB_BINARIES_DEPENDENT_LIBS TBB::tbbmalloc)
 | 
			
		||||
 endif()
 | 
			
		||||
 
 | 
			
		||||
@@ -90,17 +90,13 @@ if(OPENVDB_BUILD_VDB_RENDER)
 | 
			
		||||
     find_package(Imath CONFIG)
 | 
			
		||||
     if (NOT TARGET Imath::Imath)
 | 
			
		||||
       if(USE_EXR)
 | 
			
		||||
-        find_package(IlmBase ${MINIMUM_ILMBASE_VERSION} REQUIRED COMPONENTS Half Iex IlmThread Imath)
 | 
			
		||||
-      else()
 | 
			
		||||
-        find_package(IlmBase ${MINIMUM_ILMBASE_VERSION} REQUIRED COMPONENTS Half)
 | 
			
		||||
+        find_package(IlmBase CONFIG REQUIRED)  
 | 
			
		||||
       endif()
 | 
			
		||||
     endif()
 | 
			
		||||
   endif()
 | 
			
		||||
 
 | 
			
		||||
   if(USE_EXR)
 | 
			
		||||
     if (NOT TARGET Imath::Imath)
 | 
			
		||||
-      find_package(OpenEXR ${MINIMUM_OPENEXR_VERSION} REQUIRED COMPONENTS IlmImf)
 | 
			
		||||
-    else()
 | 
			
		||||
       find_package(OpenEXR CONFIG REQUIRED)
 | 
			
		||||
     endif()
 | 
			
		||||
   endif()
 | 
			
		||||
							
								
								
									
										19
									
								
								externals/vcpkg/ports/openvdb/fix-Target-notfound.patch
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										19
									
								
								externals/vcpkg/ports/openvdb/fix-Target-notfound.patch
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
diff --git a/openvdb/openvdb/cmd/CMakeLists.txt b/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
index c173566..53f8575 100644
 | 
			
		||||
--- a/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
+++ b/openvdb/openvdb/cmd/CMakeLists.txt
 | 
			
		||||
@@ -137,9 +137,11 @@ if(OPENVDB_BUILD_VDB_RENDER)
 | 
			
		||||
 
 | 
			
		||||
   if(WIN32)
 | 
			
		||||
     # @note OPENVDB_OPENEXR_STATICLIB is old functionality and should be removed
 | 
			
		||||
-    get_target_property(ILMBASE_LIB_TYPE IlmBase::Half TYPE)
 | 
			
		||||
-    if(OPENEXR_USE_STATIC_LIBS OR (${ILMBASE_LIB_TYPE} STREQUAL STATIC_LIBRARY))
 | 
			
		||||
-      target_compile_definitions(vdb_render PUBLIC -DOPENVDB_OPENEXR_STATICLIB)
 | 
			
		||||
+    if(USE_IMATH_HALF)
 | 
			
		||||
+      get_target_property(ILMBASE_LIB_TYPE IlmBase::Half TYPE)
 | 
			
		||||
+      if(OPENEXR_USE_STATIC_LIBS OR (${ILMBASE_LIB_TYPE} STREQUAL STATIC_LIBRARY))
 | 
			
		||||
+        target_compile_definitions(vdb_render PUBLIC -DOPENVDB_OPENEXR_STATICLIB)
 | 
			
		||||
+      endif()
 | 
			
		||||
     endif()
 | 
			
		||||
   endif()
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										67
									
								
								externals/vcpkg/ports/openvdb/portfile.cmake
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										67
									
								
								externals/vcpkg/ports/openvdb/portfile.cmake
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,67 @@
 | 
			
		||||
vcpkg_from_github(
 | 
			
		||||
    OUT_SOURCE_PATH SOURCE_PATH
 | 
			
		||||
    REPO AcademySoftwareFoundation/openvdb
 | 
			
		||||
    REF 0ed0f19ea4fbb0d8bf64d3dca07abab3c7429803 # v9.0.0
 | 
			
		||||
    SHA512 f033f2d5801327ab8aeffb12d1a74ff880e477a1f00da3b03a3087262a3e72ef77c13e05fe8e3c94a26721804230c0272d9ca069af997c36c992f3e2f3d962f2
 | 
			
		||||
    PATCHES
 | 
			
		||||
        0003-fix-cmake.patch
 | 
			
		||||
        fix-Target-notfound.patch
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
file(REMOVE "${SOURCE_PATH}/cmake/FindTBB.cmake")
 | 
			
		||||
file(REMOVE "${SOURCE_PATH}/cmake/FindIlmBase.cmake")
 | 
			
		||||
file(REMOVE "${SOURCE_PATH}/cmake/FindBlosc.cmake")
 | 
			
		||||
file(REMOVE "${SOURCE_PATH}/cmake/FindOpenEXR.cmake")
 | 
			
		||||
 | 
			
		||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" OPENVDB_STATIC)
 | 
			
		||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" OPENVDB_SHARED)
 | 
			
		||||
 | 
			
		||||
set(OPENVDB_BUILD_TOOLS OFF)
 | 
			
		||||
if ("tools" IN_LIST FEATURES)
 | 
			
		||||
  if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
 | 
			
		||||
    set(OPENVDB_BUILD_TOOLS ON)
 | 
			
		||||
  else()
 | 
			
		||||
    message(FATAL_ERROR "Unable to build tools if static libraries are required")
 | 
			
		||||
  endif()
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
if ("ax" IN_LIST FEATURES)
 | 
			
		||||
  if(NOT VCPKG_TARGET_IS_WINDOWS)
 | 
			
		||||
    set(OPENVDB_BUILD_AX ON)
 | 
			
		||||
  else()
 | 
			
		||||
    message(FATAL_ERROR "Currently no support for building OpenVDB AX on Windows.")  
 | 
			
		||||
  endif()
 | 
			
		||||
endif()
 | 
			
		||||
 | 
			
		||||
vcpkg_cmake_configure(
 | 
			
		||||
    SOURCE_PATH "${SOURCE_PATH}"
 | 
			
		||||
    OPTIONS
 | 
			
		||||
        -DOPENVDB_BUILD_UNITTESTS=OFF
 | 
			
		||||
        -DOPENVDB_BUILD_PYTHON_MODULE=OFF
 | 
			
		||||
        -DOPENVDB_ENABLE_3_ABI_COMPATIBLE=OFF
 | 
			
		||||
        -DUSE_GLFW3=ON
 | 
			
		||||
        -DOPENVDB_CORE_STATIC=${OPENVDB_STATIC}
 | 
			
		||||
        -DOPENVDB_CORE_SHARED=${OPENVDB_SHARED}
 | 
			
		||||
        -DOPENVDB_BUILD_VDB_PRINT=${OPENVDB_BUILD_TOOLS}
 | 
			
		||||
        -DOPENVDB_BUILD_VDB_VIEW=${OPENVDB_BUILD_TOOLS}
 | 
			
		||||
        -DOPENVDB_BUILD_VDB_RENDER=${OPENVDB_BUILD_TOOLS}
 | 
			
		||||
        -DOPENVDB_BUILD_VDB_LOD=${OPENVDB_BUILD_TOOLS}
 | 
			
		||||
        -DUSE_PKGCONFIG=OFF
 | 
			
		||||
        ${OPENVDB_BUILD_AX}
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
vcpkg_cmake_install()
 | 
			
		||||
 | 
			
		||||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/OpenVDB)
 | 
			
		||||
 | 
			
		||||
vcpkg_copy_pdbs()
 | 
			
		||||
 | 
			
		||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
 | 
			
		||||
 | 
			
		||||
if (OPENVDB_BUILD_TOOLS)
 | 
			
		||||
    vcpkg_copy_tools(TOOL_NAMES vdb_print vdb_render vdb_view vdb_lod AUTO_CLEAN)
 | 
			
		||||
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)
 | 
			
		||||
							
								
								
									
										4
									
								
								externals/vcpkg/ports/openvdb/usage
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										4
									
								
								externals/vcpkg/ports/openvdb/usage
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
The package openvdb provides CMake targets:
 | 
			
		||||
 | 
			
		||||
    find_package(OpenVDB CONFIG REQUIRED)
 | 
			
		||||
    target_link_libraries(main PRIVATE OpenVDB::openvdb)
 | 
			
		||||
							
								
								
									
										12
									
								
								externals/vcpkg/ports/openvdb/vcpkg-cmake-wrapper.cmake.in
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										12
									
								
								externals/vcpkg/ports/openvdb/vcpkg-cmake-wrapper.cmake.in
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
set(OPENVDB_PREV_MODULE_PATH ${CMAKE_MODULE_PATH})
 | 
			
		||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
 | 
			
		||||
 | 
			
		||||
list(REMOVE_ITEM ARGS "NO_MODULE")
 | 
			
		||||
list(REMOVE_ITEM ARGS "CONFIG")
 | 
			
		||||
list(REMOVE_ITEM ARGS "MODULE")
 | 
			
		||||
 | 
			
		||||
set(OPENVDB_USE_STATIC_LIBS @OPENVDB_STATIC@)
 | 
			
		||||
 | 
			
		||||
_find_package(${ARGS})
 | 
			
		||||
 | 
			
		||||
set(CMAKE_MODULE_PATH ${OPENVDB_PREV_MODULE_PATH})
 | 
			
		||||
							
								
								
									
										41
									
								
								externals/vcpkg/ports/openvdb/vcpkg.json
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										41
									
								
								externals/vcpkg/ports/openvdb/vcpkg.json
									
									
									
									
										vendored
									
									
										Executable file
									
								
							@@ -0,0 +1,41 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "openvdb",
 | 
			
		||||
  "version": "9.0.0",
 | 
			
		||||
  "description": "Sparse volume data structure and tools",
 | 
			
		||||
  "homepage": "https://github.com/dreamworksanimation/openvdb",
 | 
			
		||||
  "license": "MPL-2.0",
 | 
			
		||||
  "dependencies": [
 | 
			
		||||
    "blosc",
 | 
			
		||||
    "boost-any",
 | 
			
		||||
    "boost-date-time",
 | 
			
		||||
    "boost-interprocess",
 | 
			
		||||
    "boost-iostreams",
 | 
			
		||||
    "boost-ptr-container",
 | 
			
		||||
    "boost-system",
 | 
			
		||||
    "boost-thread",
 | 
			
		||||
    "boost-uuid",
 | 
			
		||||
    "ilmbase",
 | 
			
		||||
    "openexr",
 | 
			
		||||
    "tbb",
 | 
			
		||||
    {
 | 
			
		||||
      "name": "vcpkg-cmake",
 | 
			
		||||
      "host": true
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "name": "vcpkg-cmake-config",
 | 
			
		||||
      "host": true
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "features": {
 | 
			
		||||
    "ax": {
 | 
			
		||||
      "description": "Provides a powerful and easy way of interacting with OpenVDB volume and point data."
 | 
			
		||||
    },
 | 
			
		||||
    "tools": {
 | 
			
		||||
      "description": "OpenVDB utilities: view, print and render",
 | 
			
		||||
      "dependencies": [
 | 
			
		||||
        "glew",
 | 
			
		||||
        "glfw3"
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user