support cmake version 3.12 for Azure core (#2787)

* support cmake version 3.12 for Azure core
This commit is contained in:
Victor Vazquez 2021-08-24 15:17:06 -07:00 committed by GitHub
parent 93d1f83ee7
commit 28d7a22fbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@
### Other Changes
- Fixed compilation error on POSIX platforms where OpenSSL was not available.
- Support CMake version 3.12
## 1.2.0 (2021-08-05)

View File

@ -1,7 +1,8 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
cmake_minimum_required (VERSION 3.13)
# Azure core is compatible with CMake 3.12
cmake_minimum_required (VERSION 3.12)
project(azure-core LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 14)