diff --git a/CMakeLists.txt b/CMakeLists.txt index 63da596d7..7878bccc9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake-modules") # Compile Options diff --git a/sdk/core/azure-core/CMakeLists.txt b/sdk/core/azure-core/CMakeLists.txt index f255d250b..1b6a410aa 100644 --- a/sdk/core/azure-core/CMakeLists.txt +++ b/sdk/core/azure-core/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure-core") project(${TARGET_NAME} LANGUAGES CXX) diff --git a/sdk/core/azure-core/test/e2e/CMakeLists.txt b/sdk/core/azure-core/test/e2e/CMakeLists.txt index 348815482..faeee1ba7 100644 --- a/sdk/core/azure-core/test/e2e/CMakeLists.txt +++ b/sdk/core/azure-core/test/e2e/CMakeLists.txt @@ -3,7 +3,7 @@ if (BUILD_CURL_TRANSPORT) -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure_core_with_curl") set(TARGET_NAME_STREAM "azure_core_with_curl_stream") set(TARGET_NAME_STORAGE_ISSUE_249 "azure_core_storage_issue_249") diff --git a/sdk/core/azure-core/test/ut/CMakeLists.txt b/sdk/core/azure-core/test/ut/CMakeLists.txt index d5543dde0..463ebefb7 100644 --- a/sdk/core/azure-core/test/ut/CMakeLists.txt +++ b/sdk/core/azure-core/test/ut/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure-core-test") diff --git a/sdk/core/performance-stress/CMakeLists.txt b/sdk/core/performance-stress/CMakeLists.txt index 2f5ca781a..ac434e0c4 100644 --- a/sdk/core/performance-stress/CMakeLists.txt +++ b/sdk/core/performance-stress/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure-perf-stress") project(${TARGET_NAME} LANGUAGES CXX) diff --git a/sdk/core/performance-stress/test/CMakeLists.txt b/sdk/core/performance-stress/test/CMakeLists.txt index ed5dddbfc..7f6ebd928 100644 --- a/sdk/core/performance-stress/test/CMakeLists.txt +++ b/sdk/core/performance-stress/test/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure-perf-stress-test") diff --git a/sdk/storage/CMakeLists.txt b/sdk/storage/CMakeLists.txt index e5799b67f..c488d5fc7 100644 --- a/sdk/storage/CMakeLists.txt +++ b/sdk/storage/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) project (azure-storage LANGUAGES CXX) set(CMAKE_CXX_STANDARD 14) diff --git a/sdk/storage/azure-storage-blobs/CMakeLists.txt b/sdk/storage/azure-storage-blobs/CMakeLists.txt index a0a39aa4a..a135e34bb 100644 --- a/sdk/storage/azure-storage-blobs/CMakeLists.txt +++ b/sdk/storage/azure-storage-blobs/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) set (AZURE_STORAGE_BLOB_HEADER inc/azure/storage/blobs/append_blob_client.hpp diff --git a/sdk/storage/azure-storage-common/CMakeLists.txt b/sdk/storage/azure-storage-common/CMakeLists.txt index cd1e98b91..44fb8c5b5 100644 --- a/sdk/storage/azure-storage-common/CMakeLists.txt +++ b/sdk/storage/azure-storage-common/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) set(AZURE_STORAGE_COMMON_HEADER inc/azure/storage/common/access_conditions.hpp diff --git a/sdk/storage/azure-storage-files-datalake/CMakeLists.txt b/sdk/storage/azure-storage-files-datalake/CMakeLists.txt index 50e387421..b02e66781 100644 --- a/sdk/storage/azure-storage-files-datalake/CMakeLists.txt +++ b/sdk/storage/azure-storage-files-datalake/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) set (AZURE_STORAGE_DATALAKE_HEADER inc/azure/storage/files/datalake/datalake.hpp diff --git a/sdk/storage/azure-storage-files-shares/CMakeLists.txt b/sdk/storage/azure-storage-files-shares/CMakeLists.txt index 01cd6f723..3485d2a44 100644 --- a/sdk/storage/azure-storage-files-shares/CMakeLists.txt +++ b/sdk/storage/azure-storage-files-shares/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.15) +cmake_minimum_required (VERSION 3.13) set (AZURE_STORAGE_SHARES_HEADER inc/azure/storage/files/shares/protocol/share_rest_client.hpp diff --git a/sdk/template/azure-template/CMakeLists.txt b/sdk/template/azure-template/CMakeLists.txt index 92b2fbbcb..203b72fd1 100644 --- a/sdk/template/azure-template/CMakeLists.txt +++ b/sdk/template/azure-template/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) set(TARGET_NAME "azure-template") project(azure-template LANGUAGES CXX) diff --git a/sdk/template/azure-template/test/CMakeLists.txt b/sdk/template/azure-template/test/CMakeLists.txt index 234df2cc6..ea0e76eba 100644 --- a/sdk/template/azure-template/test/CMakeLists.txt +++ b/sdk/template/azure-template/test/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # SPDX-License-Identifier: MIT -cmake_minimum_required (VERSION 3.12) +cmake_minimum_required (VERSION 3.13) project (azure-template-test LANGUAGES CXX) set(CMAKE_CXX_STANDARD 14)