From 5bc9c82ae3774889e47176460fe02eb3e67cf0e1 Mon Sep 17 00:00:00 2001 From: costan Date: Tue, 27 Jun 2017 12:23:33 -0700 Subject: [PATCH] Set minimum CMake version to 3.1. The project only needs CMake 3.1 features, and some Travis CI bots have CMake 3.2.2. Therefore, requiring CMake 3.4 is inconvenient. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59274a1..0ec0a44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.4) +CMAKE_MINIMUM_REQUIRED(VERSION 3.1) PROJECT(Snappy VERSION 1.1.4 LANGUAGES C CXX) SET(CMAKE_INCLUDE_CURRENT_DIR ON)