mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 01:29:01 +08:00
6f42659cb9
* [azure-storage-common-cpp] Update to 12.0.0-beta.8 * [azure-storage-blobs-cpp] Update to 12.0.0-beta.8 * [azure-storage-files-datalake-cpp] Update to 12.0.0-beta.8 * [azure-storage-files-shares-cpp] Update to 12.0.0-beta.8
24 lines
727 B
CMake
24 lines
727 B
CMake
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Azure/azure-sdk-for-cpp
|
|
REF azure-storage-common_12.0.0-beta.8
|
|
SHA512 8630ab3bbc7e39bfae4c24fdf343c9e7fb076069757a308698593d935b6d1e23dac5f0d8fb68c16751735b2e6d7b825adc39594e4f3b09cdfc35d0a6c6506f50
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-common/
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DWARNINGS_AS_ERRORS=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
vcpkg_fixup_cmake_targets()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
vcpkg_copy_pdbs()
|
|
|