diff options
author | costan <costan@google.com> | 2017-06-27 12:23:33 -0700 |
---|---|---|
committer | Victor Costan <pwnall@chromium.org> | 2017-06-28 18:37:08 -0700 |
commit | 5bc9c82ae3774889e47176460fe02eb3e67cf0e1 (patch) | |
tree | 3e99eb51eb64f9d0994330ed84b982918b3a84c6 | |
parent | e9720a001d4feffe1fc9770859fe9913d0d5ede6 (diff) | |
download | snappy-5bc9c82ae3774889e47176460fe02eb3e67cf0e1.tar.gz snappy-5bc9c82ae3774889e47176460fe02eb3e67cf0e1.tar.bz2 snappy-5bc9c82ae3774889e47176460fe02eb3e67cf0e1.zip |
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.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |