aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/azure-storage-cpp/portfile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/azure-storage-cpp/portfile.cmake')
-rw-r--r--vcpkg/ports/azure-storage-cpp/portfile.cmake27
1 files changed, 27 insertions, 0 deletions
diff --git a/vcpkg/ports/azure-storage-cpp/portfile.cmake b/vcpkg/ports/azure-storage-cpp/portfile.cmake
new file mode 100644
index 0000000..dccb725
--- /dev/null
+++ b/vcpkg/ports/azure-storage-cpp/portfile.cmake
@@ -0,0 +1,27 @@
+message(WARNING "azure-storage-cpp is no longer actively developed. Instead, users should migrate to the new sdk:azure-core-cpp")
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Azure/azure-storage-cpp
+ REF v7.5.0
+ SHA512 83eabcaf2114c8af1cabbc96b6ef2b57c934a06f68e7a870adf336feaa19edd57aedaf8507d5c40500e46d4e77f5059f9286e319fe7cadeb9ffc8fa018fb030c
+ HEAD_REF master
+ PATCHES
+ cmake.diff
+ fix-asio-error.patch
+)
+file(REMOVE_RECURSE "${SOURCE_PATH}/Microsoft.WindowsAzure.Storage/cmake/Modules/FindLibXML2.cmake")
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}/Microsoft.WindowsAzure.Storage"
+ OPTIONS
+ -DCMAKE_FIND_FRAMEWORK=LAST
+ -DBUILD_TESTS=OFF
+ -DBUILD_SAMPLES=OFF
+)
+vcpkg_cmake_install()
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt")