From 8570d062d644b2fee33a5124978aaa4bddcf2b53 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Mon, 11 Jan 2016 11:10:34 +0100 Subject: [PATCH] lower cmake requirement to 3.1.0 eaf7229d57ccb77ca29efcfa2bf719ba8fbab568 suggests that it was bumped to 3.2 for CMAKE_CXX_STANDARD, this feature was however introduced in 3.1. lower the cmake requirement from 3.2 to 3.1 to align with the actual requirements --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e1b930d6..df1c612b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # CMakeLists for the AppStream Project project(appstream) -cmake_minimum_required(VERSION 3.2.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) set(CMAKE_BUILD_TYPE "Debug")