From 894cd75198678ee8793b9dc897fae6ef41d703e0 Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Wed, 8 Dec 2021 12:13:57 -0800 Subject: [PATCH] Update vcpkg and dependencies to the newer commit sha from 11-10-2021, after last SDK release (#3154) * Update vcpkg to the newest published tag * Update to latest commit sha from 12-02-2021 * Update to a commit sha from 11-10-2021, after last SDK release * Treat third-party dependencies as system to avoid triggering warnings in code we don't control --- eng/vcpkg-commit.txt | 2 +- sdk/storage/azure-storage-common/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/vcpkg-commit.txt b/eng/vcpkg-commit.txt index a08f46d5b..bb0af1cd1 100644 --- a/eng/vcpkg-commit.txt +++ b/eng/vcpkg-commit.txt @@ -1 +1 @@ -tags/2020.11 \ No newline at end of file +fcd3a3bb53356cc954f7fa07cee2c99b253d1a49 diff --git a/sdk/storage/azure-storage-common/CMakeLists.txt b/sdk/storage/azure-storage-common/CMakeLists.txt index fb981d455..a843ad793 100644 --- a/sdk/storage/azure-storage-common/CMakeLists.txt +++ b/sdk/storage/azure-storage-common/CMakeLists.txt @@ -85,7 +85,7 @@ if(WIN32) target_compile_options(azure-storage-common PUBLIC /wd28204 /wd28020) else() find_package(LibXml2 REQUIRED) - target_include_directories(azure-storage-common PRIVATE ${LIBXML2_INCLUDE_DIRS}) + target_include_directories(azure-storage-common SYSTEM PRIVATE ${LIBXML2_INCLUDE_DIRS}) target_link_libraries(azure-storage-common PRIVATE ${LIBXML2_LIBRARIES}) find_package(OpenSSL REQUIRED) target_link_libraries(azure-storage-common PRIVATE OpenSSL::SSL OpenSSL::Crypto)