Skip to content

Commit

Permalink
Update minimum CMake version to 3.6
Browse files Browse the repository at this point in the history
We can't really claim to work with cmake 2.8
any more, since we no longer have machines that
use such an old version, so update to match
the oldest version we use.
  • Loading branch information
benmwebb committed Nov 12, 2024
1 parent 4390929 commit 05b6e7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.12...3.6.0)
cmake_minimum_required(VERSION 3.6.0)

project(IMP)

Expand Down
2 changes: 1 addition & 1 deletion doc/manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ In order to build %IMP from source, you will need:

- A C++ compiler that supports the C++11 standard, such as gcc, clang,
or Microsoft Visual Studio 2017 or later.
- [CMake](https://cmake.org) (2.8.12 or later; 3.14 or later is recommended)
- [CMake](https://cmake.org) (3.6 or later; 3.14 or later is recommended)
- [Boost](https://www.boost.org) (1.53 or later; Boost.Iostreams must be built
with its [zlib filter enabled](https://www.boost.org/doc/libs/1_67_0/libs/iostreams/doc/installation.html))
- [Eigen](https://eigen.tuxfamily.org/) (3.0 or later)
Expand Down

0 comments on commit 05b6e7d

Please sign in to comment.