Skip to content

Commit d9c57fb

Browse files
authored
cpp; Update minimum cmake, all services (#5265)
Bump to CMAKE min version to 3.13 except tests which require 3.14
1 parent 6a6656e commit d9c57fb

File tree

53 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+53
-53
lines changed

cpp/example_code/acm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Set the minimum required version of CMake for this project.
5-
cmake_minimum_required(VERSION 3.8)
5+
cmake_minimum_required(VERSION 3.13)
66

77
# Set this project's name.
88
project("acm-examples")

cpp/example_code/aurora/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Set the minimum required version of CMake for this project.
5-
cmake_minimum_required(VERSION 3.11)
5+
cmake_minimum_required(VERSION 3.13)
66

77
set(SERVICE_NAME aurora)
88
set(SERVICE_COMPONENTS rds)

cpp/example_code/aurora/hello_aurora/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# snippet-start:[cpp.example_code.aurora.hello_aurora.cmake]
55
# Set the minimum required version of CMake for this project.
6-
cmake_minimum_required(VERSION 3.8)
6+
cmake_minimum_required(VERSION 3.13)
77

88
# Set the AWS service components used by this project.
99
set(SERVICE_COMPONENTS rds)

cpp/example_code/autoscaling/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Set the minimum required version of CMake for this project.
5-
cmake_minimum_required(VERSION 3.8)
5+
cmake_minimum_required(VERSION 3.13)
66

77
set(SERVICE_NAME auto_scaling)
88
set(SERVICE_COMPONENTS autoscaling ec2 monitoring)

cpp/example_code/autoscaling/hello_autoscaling/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# snippet-start:[cpp.example_code.autoscaling.hello_autoscaling.cmake]
55
# Set the minimum required version of CMake for this project.
6-
cmake_minimum_required(VERSION 3.8)
6+
cmake_minimum_required(VERSION 3.13)
77

88
# Set the AWS service components used by this project.
99
set(SERVICE_COMPONENTS autoscaling)

cpp/example_code/cloudtrail/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
88
# specific language governing permissions and limitations under the License.
99

10-
cmake_minimum_required(VERSION 3.2)
10+
cmake_minimum_required(VERSION 3.13)
1111
project(cloudtrail-examples)
1212
set (CMAKE_CXX_STANDARD 11)
1313

cpp/example_code/cloudwatch/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# SPDX-License-Identifier: Apache-2.0
99

1010
# Set the minimum required version of CMake for this project.
11-
cmake_minimum_required(VERSION 3.8)
11+
cmake_minimum_required(VERSION 3.13)
1212

1313
set(SERVICE_NAME cloudwatch)
1414
set(SERVICE_COMPONENTS monitoring events logs)

cpp/example_code/codebuild/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
88
# specific language governing permissions and limitations under the License.
99

10-
cmake_minimum_required(VERSION 3.2)
10+
cmake_minimum_required(VERSION 3.13)
1111
project(codebuild-examples)
1212
set (CMAKE_CXX_STANDARD 11)
1313

cpp/example_code/codecommit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
88
# specific language governing permissions and limitations under the License.
99

10-
cmake_minimum_required(VERSION 3.2)
10+
cmake_minimum_required(VERSION 3.13)
1111
project(codecommit-examples)
1212
set (CMAKE_CXX_STANDARD 11)
1313

cpp/example_code/cognito/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Set the minimum required version of CMake for this project.
5-
cmake_minimum_required(VERSION 3.8)
5+
cmake_minimum_required(VERSION 3.13)
66

77
set(SERVICE_NAME cognito)
88
set(SERVICE_COMPONENTS cognito-idp)

0 commit comments

Comments
 (0)