Updated cmakelists to include core 1.5 requirement (#3494)

This commit is contained in:
Larry Osterman 2022-03-31 16:35:54 -07:00 committed by GitHub
parent ca8b843954
commit b61cd1b91d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)