diff options
| author | Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com> | 2021-04-23 17:23:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-23 10:23:13 -0700 |
| commit | 8067f8a110485a90b3d4f24b2c6ca5676912f940 (patch) | |
| tree | 460011bf64bfba4748b929cf18c8abc7d91609e2 /ports/azure-storage-common-cpp | |
| parent | 684a000aac62cd28fffbfe03b428e91b1764519b (diff) | |
| download | vcpkg-8067f8a110485a90b3d4f24b2c6ca5676912f940.tar.gz vcpkg-8067f8a110485a90b3d4f24b2c6ca5676912f940.zip | |
[azure-sdk-for-cpp] Upgrade vcpkg manifest files (#17447)
* [azure-sdk-for-cpp] Upgrade vcpkg manifest files
* Update version files
* vcpkg format-manifest
* Update version files
* Minor change to re-trigger CI
* Undo that minor change
* Bump up port-version
* Update x-add-version
* redo x-add-version without overwrite
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
Diffstat (limited to 'ports/azure-storage-common-cpp')
| -rw-r--r-- | ports/azure-storage-common-cpp/portfile.cmake | 6 | ||||
| -rw-r--r-- | ports/azure-storage-common-cpp/vcpkg.json | 17 |
2 files changed, 18 insertions, 5 deletions
diff --git a/ports/azure-storage-common-cpp/portfile.cmake b/ports/azure-storage-common-cpp/portfile.cmake index 427ab715f..38a907c1b 100644 --- a/ports/azure-storage-common-cpp/portfile.cmake +++ b/ports/azure-storage-common-cpp/portfile.cmake @@ -5,15 +5,15 @@ vcpkg_from_github( SHA512 f49f74c9a6d7b80b0f7c8a9b9d2e4595dc304439d30c8c83f520833f81ef7d3480b858ada61c12f76e82eea7960eb155453b0acdcea143f163a12d567adbf18d
)
-vcpkg_configure_cmake(
+vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}/sdk/storage/azure-storage-common/
PREFER_NINJA
OPTIONS
-DWARNINGS_AS_ERRORS=OFF
)
-vcpkg_install_cmake()
+vcpkg_cmake_install()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
-vcpkg_fixup_cmake_targets()
+vcpkg_cmake_config_fixup()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
vcpkg_copy_pdbs()
diff --git a/ports/azure-storage-common-cpp/vcpkg.json b/ports/azure-storage-common-cpp/vcpkg.json index 60537946c..c26b2d418 100644 --- a/ports/azure-storage-common-cpp/vcpkg.json +++ b/ports/azure-storage-common-cpp/vcpkg.json @@ -1,17 +1,30 @@ { "name": "azure-storage-common-cpp", - "version-string": "12.0.0-beta.10", + "version-semver": "12.0.0-beta.10", + "port-version": 1, "description": [ "Microsoft Azure Common Storage SDK for C++", "This library provides common Azure Storage-related abstractions for Azure SDK." ], "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/storage/azure-storage-common", + "license": "MIT", "dependencies": [ - "azure-core-cpp", + { + "name": "azure-core-cpp", + "default-features": false + }, "libxml2", { "name": "openssl", "platform": "!windows" + }, + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true } ] } |
