mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:59:00 +08:00
b523ecaca7
Update vcpkg ports for Azure SDK release. This release may contain multiple ports.
34 lines
1.2 KiB
CMake
34 lines
1.2 KiB
CMake
# NOTE: All changes made to this file will get overwritten by the next port release.
|
|
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Azure/azure-sdk-for-cpp
|
|
REF "azure-storage-files-datalake_${VERSION}"
|
|
SHA512 04e18095262043394fbb1f0e654a0aef5d36cc432cdea4be7021fa2455b21035fc6430cd09b3da612aff1777b330c78950b627b5a4ff383033bbbdbe01694c85
|
|
HEAD_REF main
|
|
)
|
|
|
|
if(EXISTS "${SOURCE_PATH}/sdk/storage/azure-storage-files-datalake")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/storage/_")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/_")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/_")
|
|
|
|
file(RENAME "${SOURCE_PATH}/sdk/storage/azure-storage-files-datalake" "${SOURCE_PATH}/sdk/storage/_")
|
|
file(RENAME "${SOURCE_PATH}/sdk/storage" "${SOURCE_PATH}/sdk/_")
|
|
file(RENAME "${SOURCE_PATH}/sdk" "${SOURCE_PATH}/_")
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}/_/_/_"
|
|
OPTIONS
|
|
-DWARNINGS_AS_ERRORS=OFF
|
|
-DBUILD_TESTING=OFF
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
vcpkg_cmake_config_fixup()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
vcpkg_copy_pdbs()
|