summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2018-11-04 16:51:17 +0100
committerGitHub <noreply@github.com>2018-11-04 16:51:17 +0100
commit11693bed8f1d992118efcd7548060b00db2ba1ca (patch)
tree598c9ca78d7dd4df07f4db7c762e77613f757cc2
parent0c2d8f0ea61f20476542e861bc1772a878a54d32 (diff)
downloadmidori-git-11693bed8f1d992118efcd7548060b00db2ba1ca.tar.gz
Require CMake 3.2 for the "continue" command (#155)
The actual CMake required is version 3.2. This should've been increased when starting to use the `continue` command. Note: The policy command is redundant if it matches the required version.
-rw-r--r--CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a2ffedde..18795e34 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,6 @@
# Copyright (C) 2013-2018 Christian Dywan <christian@twotoasts.de>
-cmake_minimum_required(VERSION 3.0)
-cmake_policy(VERSION 3.0)
+cmake_minimum_required(VERSION 3.2)
# dh_translations detects this if there's no variable used
set (GETTEXT_PACKAGE "midori")