From f3f6cd10e0f8352640f557174a5ef3c62d5f6147 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Mon, 19 Aug 2024 13:18:39 -0700 Subject: [PATCH] Update required CMake --- CMakeLists.txt | 3 +-- README.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42580c5..5bc8002 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0. -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.13) project(aws-c-sdkutils LANGUAGES C VERSION 0.1.0) if (DEFINED CMAKE_PREFIX_PATH) @@ -58,7 +58,6 @@ file(GLOB SDKUTILS_SRC ${AWS_SDKUTILS_SRC} ) -aws_set_common_policies() add_library(${PROJECT_NAME} ${SDKUTILS_SRC}) aws_set_common_properties(${PROJECT_NAME} NO_WEXTRA) aws_prepare_symbol_visibility_args(${PROJECT_NAME} "AWS_SDKUTILS") diff --git a/README.md b/README.md index 12d391f..bf4d735 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This library is licensed under the Apache 2.0 License. ### Building -CMake 3.0+ is required to build. +CMake 3.13+ is required to build. `` must be an absolute path in the following instructions. @@ -26,4 +26,4 @@ cmake --build aws-c-common/build --target install git clone git@github.com:awslabs/aws-c-sdkutils.git cmake -S aws-c-sdkutils -B aws-c-sdkutils/build -DCMAKE_INSTALL_PREFIX= -DCMAKE_PREFIX_PATH= cmake --build aws-c-sdkutils/build --target install -``` \ No newline at end of file +```