mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-21 08:43:10 +08:00
21 lines
620 B
CMake
21 lines
620 B
CMake
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO Azure/azure-sdk-for-cpp
|
||
|
REF azure-identity_1.0.0-beta.3
|
||
|
SHA512 ef1926e81e14b040871d654e5d4a3e07607ee82b0c9a0205dd6fa2253ae84eb86cfadc45de6dab6a060a5e8909615e559444c65174368fc1bd386894ea89efa6
|
||
|
)
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}/sdk/identity/azure-identity/
|
||
|
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()
|
||
|
|