mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 22:29:01 +08:00
73 lines
2.8 KiB
CMake
73 lines
2.8 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO AcademySoftwareFoundation/openvdb
|
|
REF c5e9e2944f085907e973b627843c49c838afe912 # v7.0.0
|
|
SHA512 351611b04a192bcc501da599e55892a5dc7570dce6c0aea287d800612a20f6cb2a0d7825e062aa99f12bc2a968c51c7fe6af61badfdbd746edbd4e9fc9e4f2a4
|
|
HEAD_REF master
|
|
PATCHES
|
|
0001-remove-pkgconfig.patch
|
|
0002-fix-cmake-modules.patch
|
|
0003-fix-cmake.patch
|
|
)
|
|
|
|
file(REMOVE ${SOURCE_PATH}/cmake/FindTBB.cmake)
|
|
|
|
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)
|
|
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()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
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} # Enable vdb_render when https://github.com/openexr/openexr/issues/302 is fixed
|
|
-DOPENVDB_BUILD_VDB_LOD=${OPENVDB_BUILD_TOOLS}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/OpenVDB TARGET_PATH share/openvdb)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
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)
|
|
#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)
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
|
|
# remove debug versions of tools
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vdb_print.exe)
|
|
#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)
|
|
endif()
|
|
|
|
# Handle copyright
|
|
file(INSTALL ${SOURCE_PATH}/openvdb/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|