mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 14:28:59 +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
725 B
CMake
24 lines
725 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-blobs_12.0.0-beta.8
|
|
SHA512 30266911729c7f6c499f834b2134c1657182228cf8ba003e993e8ecbb725c28014ac3a2892667bd804a044cfc7961c0b5c7e567144ddd3cb224c6c7736ed505a
|
|
)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-blobs/
|
|
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()
|
|
|