From 019a8f9acbbdcd12d771ef97a67d0d712fdb4c12 Mon Sep 17 00:00:00 2001 From: Yegor Derevenets Date: Mon, 6 Nov 2017 23:21:56 +0100 Subject: [PATCH] Update minimum required CMake version --- doc/build.asciidoc | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build.asciidoc b/doc/build.asciidoc index 7022a760b..ae0f777a9 100644 --- a/doc/build.asciidoc +++ b/doc/build.asciidoc @@ -18,7 +18,7 @@ build it. The following compilers are known to work: The following software packages must be installed before Snowman can be built: - * http://cmake.org/[CMake] >= 2.8 + * http://cmake.org/[CMake] >= 3.9 * http://www.boost.org/[Boost] >= 1.49 (headers only) * http://qt-project.org/[Qt] >= 4.7 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a8d2f33f0..af588d178 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.11) +cmake_minimum_required(VERSION 3.9) project(Decompiler C CXX) enable_testing()