diff options
| author | Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> | 2021-02-03 11:27:37 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-03 11:27:37 -0800 |
| commit | 36f69420544d72c4a8ee0c72870315ba9ce01ef1 (patch) | |
| tree | fb86fe13bab24a54692b81f4490deacd07a196ab /ports/azure-core-cpp | |
| parent | 23971254df39acd4231437b6086a696c39bf8765 (diff) | |
| download | vcpkg-36f69420544d72c4a8ee0c72870315ba9ce01ef1.tar.gz vcpkg-36f69420544d72c4a8ee0c72870315ba9ce01ef1.zip | |
[azure-core-cpp] Add new port (#16013)
* Update port for azure-core-cpp
* Update port version SHA
* Apply suggestions from code review
Remove comment headers from port files
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* Update port version SHA once again
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
Co-authored-by: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Diffstat (limited to 'ports/azure-core-cpp')
| -rw-r--r-- | ports/azure-core-cpp/CONTROL | 18 | ||||
| -rw-r--r-- | ports/azure-core-cpp/portfile.cmake | 27 |
2 files changed, 45 insertions, 0 deletions
diff --git a/ports/azure-core-cpp/CONTROL b/ports/azure-core-cpp/CONTROL new file mode 100644 index 000000000..67563e095 --- /dev/null +++ b/ports/azure-core-cpp/CONTROL @@ -0,0 +1,18 @@ +Source: azure-core-cpp
+Version: 1.0.0-beta.5
+Description: Microsoft Azure Core SDK for C++
+ This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++.
+Homepage: https://github.com/Azure/azure-sdk-for-cpp/tree/master/sdk/core/azure-core
+Default-Features: http
+
+Feature: http
+Build-Depends: azure-core-cpp[core, curl], azure-core-cpp[core, curl, winhttp] (windows&!uwp)
+Description: Build all HTTP transport implementations, depending on the platform
+
+Feature: curl
+Build-Depends: azure-core-cpp[core], curl
+Description: Build an HTTP transport implementation with LibCURL
+
+Feature: winhttp
+Build-Depends: azure-core-cpp[core]
+Description: Build an HTTP transport implementation with WinHTTP
diff --git a/ports/azure-core-cpp/portfile.cmake b/ports/azure-core-cpp/portfile.cmake new file mode 100644 index 000000000..64501b42f --- /dev/null +++ b/ports/azure-core-cpp/portfile.cmake @@ -0,0 +1,27 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Azure/azure-sdk-for-cpp
+ REF azure-core_1.0.0-beta.5
+ SHA512 e109ea215f3a2440d2b66cccfa6be9b4c143373105df962e47ddaf6668207171a1e8c9317a7799aa647b4669078871fde0c48e407c7966e377e7e6a9d8a67575
+)
+
+vcpkg_check_features(
+ OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ curl BUILD_TRANSPORT_CURL
+ winhttp BUILD_TRANSPORT_WINHTTP
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}/sdk/core/azure-core/
+ PREFER_NINJA
+ OPTIONS
+ ${FEATURE_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()
|
