mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 14:18:59 +08:00
21 lines
648 B
CMake
21 lines
648 B
CMake
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO Azure/azure-sdk-for-cpp
|
||
|
REF azure-storage-files-datalake_12.0.0-beta.7
|
||
|
SHA512 0fe864854b46ef7130e9e473ade9beb8d64cad29a5a63c78c1053aeb0de8ee6149d5fc93d4d941a3507d8a4eaa3c9d5baa2681da410a7c8d595767f24449b46e
|
||
|
)
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-files-datalake/
|
||
|
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()
|
||
|
|