Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Update minimum required cmake to 3.5 (#25)
Browse files Browse the repository at this point in the history
As of CMake 3.27, declaring a minimum supported cmake of < 3.5 generates
a warning:

> Compatibility with CMake < 3.5 will be removed from a future version
of CMake.

This updates the minimum required version to 3.5 accordingly.
  • Loading branch information
nclack authored Aug 11, 2023
1 parent 799d0c9 commit 48f1c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.5)
project(acquire-core-libs)
cmake_policy(SET CMP0079 NEW) # use targets from other directories
enable_testing()
Expand Down

0 comments on commit 48f1c1f

Please sign in to comment.