From b61cd1b91d45011aaf87db52697806f1da7cb5ae Mon Sep 17 00:00:00 2001 From: Larry Osterman Date: Thu, 31 Mar 2022 16:35:54 -0700 Subject: [PATCH] Updated cmakelists to include core 1.5 requirement (#3494) --- sdk/attestation/azure-security-attestation/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/attestation/azure-security-attestation/CMakeLists.txt b/sdk/attestation/azure-security-attestation/CMakeLists.txt index 3f573c0c1..bdbde3450 100644 --- a/sdk/attestation/azure-security-attestation/CMakeLists.txt +++ b/sdk/attestation/azure-security-attestation/CMakeLists.txt @@ -22,9 +22,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED True) set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) if(NOT AZ_ALL_LIBRARIES) - find_package(azure-core-cpp "1.2.0" CONFIG QUIET) + find_package(azure-core-cpp "1.5.0" CONFIG QUIET) if(NOT azure-core-cpp_FOUND) - find_package(azure-core-cpp "1.2.0" REQUIRED) + find_package(azure-core-cpp "1.5.0" REQUIRED) endif() endif() find_package(OpenSSL REQUIRED)