aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph GrĂ¼ninger <foss@grueninger.de>2024-02-28 22:17:46 +0100
committerChristoph GrĂ¼ninger <foss@grueninger.de>2024-02-28 22:22:44 +0100
commit38f578a578cfe1bb25ac0e2a477e862d2f5a0fcd (patch)
tree2362db98d3f5576f659ef70a9bc69ade7525b362
parentf353355a7d75a570a81005c133df8631bc0205f3 (diff)
[cmake] Increase mimimum required CMake version to 3.8
Value 17 for CXX_STANDARD was added in 3.8 and is not supported in 3.7. See https://cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4cde09eb..24d0c631 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@
# The man page is not available on Windows.
#
-cmake_minimum_required(VERSION 3.7)
+cmake_minimum_required(VERSION 3.8)
project(clazy)