2017-07-09 22:36:14 -07:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
2019-03-27 09:40:19 +00:00
|
|
|
string(LENGTH "${CURRENT_BUILDTREES_DIR}" BUILDTREES_PATH_LENGTH)
|
|
|
|
if(BUILDTREES_PATH_LENGTH GREATER 37 AND CMAKE_HOST_WIN32)
|
|
|
|
message(WARNING "Alembic's buildsystem uses very long paths and may fail on your system.\n"
|
|
|
|
"We recommend moving vcpkg to a short path such as 'C:\\src\\vcpkg' or using the subst command."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2017-07-11 14:55:24 -07:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
|
|
message(STATUS "Alembic does not support static linkage. Building dynamically.")
|
|
|
|
set(VCPKG_LIBRARY_LINKAGE dynamic)
|
|
|
|
endif()
|
|
|
|
|
2017-07-09 22:36:14 -07:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO alembic/alembic
|
2018-12-17 16:32:13 -08:00
|
|
|
REF 1.7.10
|
|
|
|
SHA512 e98ffaedb98dbc5c53fe9703d3063bb118d32c83c47e3af04c8fc96237034b02fe0fc2c628ca82bdd0e0ef17d9375f4f48e0022ce33380b9ad91970539611ced
|
2017-07-09 22:36:14 -07:00
|
|
|
HEAD_REF master
|
2017-07-30 09:19:13 +09:00
|
|
|
PATCHES
|
2019-04-24 11:19:54 -07:00
|
|
|
fix-hdf5link.patch
|
|
|
|
bypass-findhdf5.patch
|
|
|
|
fix-C1083.patch
|
2017-07-27 02:36:27 +09:00
|
|
|
)
|
|
|
|
|
2017-07-09 22:36:14 -07:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2017-07-30 09:19:13 +09:00
|
|
|
OPTIONS
|
|
|
|
-DUSE_HDF5=ON
|
|
|
|
-DHDF5_ROOT=${CURRENT_INSTALLED_DIR}
|
2017-07-09 22:36:14 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/cmake/Alembic")
|
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
2017-07-10 07:58:52 -07:00
|
|
|
file(GLOB EXE ${CURRENT_PACKAGES_DIR}/bin/*.exe)
|
|
|
|
file(GLOB DEBUG_EXE ${CURRENT_PACKAGES_DIR}/debug/bin/*.exe)
|
|
|
|
file(REMOVE ${EXE})
|
|
|
|
file(REMOVE ${DEBUG_EXE})
|
2017-07-09 22:36:14 -07:00
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/lib/Alembic.dll ${CURRENT_PACKAGES_DIR}/bin/Alembic.dll)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/debug/lib/Alembic.dll ${CURRENT_PACKAGES_DIR}/debug/bin/Alembic.dll)
|
|
|
|
|
2017-07-17 15:39:20 -07:00
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-debug.cmake DEBUG_CONFIG)
|
|
|
|
string(REPLACE "\${_IMPORT_PREFIX}/debug/lib/Alembic.dll"
|
2017-11-21 17:18:12 -08:00
|
|
|
"\${_IMPORT_PREFIX}/debug/bin/Alembic.dll" DEBUG_CONFIG "${DEBUG_CONFIG}")
|
2017-07-17 15:39:20 -07:00
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-debug.cmake "${DEBUG_CONFIG}")
|
|
|
|
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-release.cmake RELEASE_CONFIG)
|
|
|
|
string(REPLACE "\${_IMPORT_PREFIX}/lib/Alembic.dll"
|
2017-11-21 17:18:12 -08:00
|
|
|
"\${_IMPORT_PREFIX}/bin/Alembic.dll" RELEASE_CONFIG "${RELEASE_CONFIG}")
|
2017-07-17 15:39:20 -07:00
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/Alembic/AlembicTargets-release.cmake "${RELEASE_CONFIG}")
|
|
|
|
|
2017-07-09 22:36:14 -07:00
|
|
|
# Put the license file where vcpkg expects it
|
|
|
|
file(COPY ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/Alembic/)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/Alembic/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/Alembic/copyright)
|