2018-02-03 04:37:22 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO BlueBrain/HighFive
|
2020-09-05 22:19:43 +08:00
|
|
|
REF v2.2.2
|
|
|
|
SHA512 7e562951b18425f1bfc96c30d0e47b6d218830417a732856a27943cd7ee6feab54d833b94aa303c40ca5038ac1aaf0eadd8c61800ffe82b6da46a465b21b1fc4
|
2018-02-03 04:37:22 +08:00
|
|
|
HEAD_REF master
|
2020-12-29 13:21:03 +08:00
|
|
|
PATCHES fix-dependency-hdf5.patch
|
2018-02-03 04:37:22 +08:00
|
|
|
)
|
|
|
|
|
2020-09-05 22:19:43 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
tests HIGHFIVE_UNIT_TESTS
|
|
|
|
boost HIGHFIVE_USE_BOOST
|
|
|
|
)
|
|
|
|
|
2019-03-15 05:32:31 +08:00
|
|
|
if(${VCPKG_LIBRARY_LINKAGE} MATCHES "static")
|
|
|
|
set(HDF5_USE_STATIC_LIBRARIES ON)
|
|
|
|
endif()
|
|
|
|
|
2018-02-03 04:37:22 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
|
|
|
OPTIONS
|
2020-09-05 22:19:43 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2018-02-03 04:37:22 +08:00
|
|
|
-DHIGHFIVE_EXAMPLES=OFF
|
|
|
|
-DHIGH_FIVE_DOCUMENTATION=OFF
|
2019-03-15 05:32:31 +08:00
|
|
|
-DHDF5_USE_STATIC_LIBRARIES=${HDF5_USE_STATIC_LIBRARIES}
|
2017-08-25 02:14:49 +08:00
|
|
|
)
|
|
|
|
|
2018-02-03 04:37:22 +08:00
|
|
|
vcpkg_install_cmake()
|
2020-09-05 22:19:43 +08:00
|
|
|
if("tests" IN_LIST FEATURES)
|
|
|
|
vcpkg_copy_tools(
|
|
|
|
TOOL_NAMES
|
|
|
|
tests_high_five_base
|
|
|
|
tests_high_five_easy
|
|
|
|
tests_high_five_multi_dims
|
|
|
|
SEARCH_DIR "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/tests/unit" # Tools are not installed so release version tools are manually copied
|
|
|
|
)
|
|
|
|
endif()
|
2018-02-03 04:37:22 +08:00
|
|
|
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/HighFive/CMake)
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
|
[openexr,openimageio,suitesparse,theia] updates for non-win32 (#6371)
* [openexr,openimageio,suitesparse,theia] updates for non-win32
* [theia] use only valid cmake symbols
* [suitesparse] Fix build
* [lapack] still not properly integrating with other ports
* [lapack] intercept cmake module calls and substitute them with our defs
* [suitesparse,clapack] fixes for proper integration
* [ceres,clapack] bump CONTROL
* [suitesparse] remove unnecessary defs
* [clapack] improve wrapper logic
* [WIN32] remove wrong symbol
* [clapack] fix wrapper integration
* [Accelerate] use best framework when available
* [clapack] separate config from wrapper
* [clapack] fix paths and filenames
* [mlpack,armadillo,clapack] improve library handling
* [mlpack] remove unnecessary cmake option
* [clp,coinutils,osi,liblemon] dependencies of openmvg, improve compatibility with non-win32
* [openmvg] fix for case-sensitive filesystems
* [clp,coinutils,osi] simplify CMakeLists removing many unnecessary steps
* [sophus] Force rebuild
* [theia] fixes for linux, part1
* [io2d] remove broken sintax
* [fontconfig] bump version to remove CI cached failure
* [theia] fixes for linux, part2
* [theia] remove unnecessary empty folders and comments from portfile
* [theia] use correct build type removing forced vars in cmakelists.txt
* [openmvg] add missing suitesparse target detection
* [sophus] fix Suitesparse dependency
* [sophus,openmvg] use suitesparse lowercase for module compatibility on case-sensitive filesystems
* [suitesparse] fixes for case-sensitive filesystems
* [openmvg] use correct Eigen3 name for case-sensitive filesystems
* [sophus] trigger rebuild
* [shogun] use modern vcpkg style
* [shogun] add missing cmake system processor symbol
2019-06-01 06:48:17 +08:00
|
|
|
if(NOT (NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") AND NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
2019-03-15 05:32:31 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/HighFive)
|
|
|
|
endif()
|
2018-02-03 04:37:22 +08:00
|
|
|
|
2017-08-25 02:14:49 +08:00
|
|
|
# Handle copyright
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/highfive RENAME copyright)
|