Skip to content

Commit

Permalink
Update required CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Aug 19, 2024
1 parent 97caad7 commit 0848685
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.13)
project(aws-c-auth C)

if (DEFINED CMAKE_PREFIX_PATH)
Expand Down Expand Up @@ -61,7 +61,6 @@ file(GLOB AUTH_SRC
${AWS_AUTH_ROOT_SRC}
)

aws_set_common_policies()
add_library(${PROJECT_NAME} ${LIBTYPE} ${AUTH_HEADERS} ${AUTH_SRC})
aws_set_common_properties(${PROJECT_NAME})
aws_prepare_symbol_visibility_args(${PROJECT_NAME} "AWS_AUTH")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This library is licensed under the Apache 2.0 License.

### Building

CMake 3.1+ is required to build.
CMake 3.13+ is required to build.

`<install-path>` must be an absolute path in the following instructions.

Expand Down Expand Up @@ -62,7 +62,7 @@ cmake --build aws-c-auth/build --target install
### Testing
Certain tests require a specific environment setup in order to run successfully. This may be a specific execution
environment (EC2, ECS, etc...) or it may require certain environment variables to be set that configure properties
(often sensitive materials, like keys). Whether or not these tests are enabled is controlled by certain CMAKE
(often sensitive materials, like keys). Whether or not these tests are enabled is controlled by certain CMAKE
properties:
* AWS_BUILDING_ON_EC2 - indicates real IMDS credentials provider test(s) should run
* AWS_BUILDING_ON_ECS - indciates real ECS credentials provider tests(s) should run
Expand Down

0 comments on commit 0848685

Please sign in to comment.