2017-11-22 01:55:55 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2019-02-27 00:16:20 +08:00
|
|
|
REPO AcademySoftwareFoundation/openvdb
|
2019-11-20 02:59:56 +08:00
|
|
|
REF aebaf8d95be5e57fd33949281ec357db4a576c2e # v6.2.1
|
|
|
|
SHA512 e5cf03e77ed0600252cb97aa4bbf9468345ad037a3053626900bd8233e89720f981f0706e5103c2d33ea9c246ba1cf695af68e60d395e5be90e655f2e127db9b
|
2017-11-22 01:55:55 +08:00
|
|
|
HEAD_REF master
|
|
|
|
PATCHES
|
2019-06-27 01:33:36 +08:00
|
|
|
0001-remove-pkgconfig.patch
|
|
|
|
0002-fix-cmake-modules.patch
|
|
|
|
0003-fix-cmake.patch
|
2017-11-22 01:55:55 +08:00
|
|
|
)
|
|
|
|
|
2019-11-20 02:59:56 +08:00
|
|
|
file(REMOVE ${SOURCE_PATH}/cmake/FindTBB.cmake)
|
|
|
|
|
2017-11-22 01:55:55 +08:00
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
|
|
set(OPENVDB_STATIC ON)
|
|
|
|
set(OPENVDB_SHARED OFF)
|
|
|
|
else()
|
|
|
|
set(OPENVDB_STATIC OFF)
|
|
|
|
set(OPENVDB_SHARED ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if ("tools" IN_LIST FEATURES)
|
2019-02-27 00:16:20 +08:00
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
|
2017-11-22 01:55:55 +08:00
|
|
|
set(OPENVDB_BUILD_TOOLS ON)
|
2019-02-27 00:16:20 +08:00
|
|
|
else()
|
2019-11-20 02:59:56 +08:00
|
|
|
message(FATAL_ERROR "Unable to build tools if static libraries are required")
|
2019-02-27 00:16:20 +08:00
|
|
|
endif()
|
2017-11-22 01:55:55 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
2019-02-27 00:16:20 +08:00
|
|
|
OPTIONS
|
|
|
|
-DOPENVDB_BUILD_UNITTESTS=OFF
|
|
|
|
-DOPENVDB_BUILD_PYTHON_MODULE=OFF
|
|
|
|
-DOPENVDB_ENABLE_3_ABI_COMPATIBLE=OFF
|
|
|
|
-DUSE_GLFW3=ON
|
2019-06-27 01:33:36 +08:00
|
|
|
-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} # Enable vdb_render when https://github.com/openexr/openexr/issues/302 is fixed
|
|
|
|
-DOPENVDB_BUILD_VDB_LOD=${OPENVDB_BUILD_TOOLS}
|
2017-11-22 01:55:55 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2019-06-27 01:33:36 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/OpenVDB TARGET_PATH share/openvdb)
|
|
|
|
|
2017-11-22 01:55:55 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2019-06-27 01:33:36 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
2017-11-22 01:55:55 +08:00
|
|
|
|
|
|
|
if (OPENVDB_BUILD_TOOLS)
|
|
|
|
# copy tools to tools/openvdb directory
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools/${PORT}/)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/bin/vdb_print.exe ${CURRENT_PACKAGES_DIR}/tools/${PORT}/vdb_print.exe)
|
2019-06-27 01:33:36 +08:00
|
|
|
#file(RENAME ${CURRENT_PACKAGES_DIR}/bin/vdb_render.exe ${CURRENT_PACKAGES_DIR}/tools/${PORT}/vdb_render.exe)
|
|
|
|
#file(RENAME ${CURRENT_PACKAGES_DIR}/bin/vdb_view.exe ${CURRENT_PACKAGES_DIR}/tools/${PORT}/vdb_view.exe) # vdb_view does not support win32 currently.
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/bin/vdb_lod.exe ${CURRENT_PACKAGES_DIR}/tools/${PORT}/vdb_lod.exe)
|
2017-11-22 01:55:55 +08:00
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
|
|
|
|
|
|
# remove debug versions of tools
|
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vdb_print.exe)
|
2019-06-27 01:33:36 +08:00
|
|
|
#file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vdb_render.exe)
|
|
|
|
#file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vdb_view.exe) # vdb_view does not support win32 currently.
|
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vdb_lod.exe)
|
2017-11-22 01:55:55 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Handle copyright
|
2019-11-20 02:59:56 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/openvdb/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|