mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-13 13:28:04 +08:00
21 lines
644 B
CMake
21 lines
644 B
CMake
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO Azure/azure-sdk-for-cpp
|
||
|
REF azure-storage-files-shares_12.0.0-beta.7
|
||
|
SHA512 77238977df087b026eaf87a0728e198a8c6989e856ba805f3710bfab34c8255e7374e0d89fb21d4fd23f3ae229c4b854f59f13bcae73cf0eb15ecca5c7fbe80e
|
||
|
)
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-files-shares/
|
||
|
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()
|
||
|
|