mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 02:59:00 +08:00
641e1cd53d
* Using newer version of ITK which fixes double-conversion problem * Minor style update of ITK portfile * Using newer version of ITK which fixes double-conversion problem * [itk] Improve version string * [itk][hdf5] Update ITK commit. Depend on eigen3. Bump hdf5 control version. * [hdf5] Update CONTROL * [netcdf-c] Disable parallel configure due to writes to source directory * [hdf5] Disable parallel configure due to writes to source directory. Switch to tar.gz to prevent CRLF line endings.
48 lines
1.3 KiB
CMake
48 lines
1.3 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Unidata/netcdf-c
|
|
REF v4.6.2
|
|
SHA512 7c7084e80cf2fb86cd05101f5be7b74797ee96bf49afadfae6ab32ceed6cd9a049bfa90175e7cc0742806bcd2f61156e33fe7930c7b646661d9c89be6b20dea3
|
|
HEAD_REF master
|
|
PATCHES
|
|
no-install-deps.patch
|
|
config-pkg-location.patch
|
|
transitive-hdf5.patch
|
|
fix_curl_linkage.patch
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DBUILD_UTILITIES=OFF
|
|
-DBUILD_TESTING=OFF
|
|
-DENABLE_EXAMPLES=OFF
|
|
-DENABLE_TESTS=OFF
|
|
-DUSE_HDF5=ON
|
|
-DENABLE_DAP_REMOTE_TESTS=OFF
|
|
-DDISABLE_INSTALL_DEPENDENCIES=ON
|
|
-DConfigPackageLocation=share/netcdf
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/netcdf)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin ${CURRENT_PACKAGES_DIR}/bin)
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
# Handle copyright
|
|
file(COPY ${SOURCE_PATH}/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/netcdf-c)
|
|
file(
|
|
RENAME
|
|
${CURRENT_PACKAGES_DIR}/share/netcdf-c/COPYRIGHT
|
|
${CURRENT_PACKAGES_DIR}/share/netcdf-c/copyright
|
|
)
|