From 11693bed8f1d992118efcd7548060b00db2ba1ca Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sun, 4 Nov 2018 16:51:17 +0100 Subject: 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. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 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 -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") -- cgit v1.2.1