aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2021-01-19 16:37:50 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2021-03-07 19:04:15 +0000
commit8615b0c3ed7c77423144f832d1b912d6a94fdeb2 (patch)
treec3c19aed4f531efedfa14fbb2d99d8be2e07d5b5
parent9ba47a0204aef03defc772745acbd93bc2cc8406 (diff)
downloadwaffle-8615b0c3ed7c77423144f832d1b912d6a94fdeb2.tar.gz
cmake: bump minimum cmake version to 2.8.12
Cmake version 3.19.3 throws a deprecation warning. Considering 2.8.12 has been around since 2013, it's perfectly reasonable to depend on it. In the future we might consider bumping the requirement to something more modern, but for now this gets silences the warning. Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6d2c1d7..acece86 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,7 @@
project(waffle1 C CXX)
-cmake_minimum_required(VERSION 2.8.11)
+cmake_minimum_required(VERSION 2.8.12)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")