diff options
author | Oleg Bulatov <oleg@bulatov.me> | 2022-05-05 23:12:54 +0200 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2022-05-06 07:25:10 +0800 |
commit | 61ffed6ece4857fe5e708f5c3bd6d7e6d2b2b13b (patch) | |
tree | 37577bc789c8a1321fea9754b815c064c0730c0c /CMakeLists.txt | |
parent | 54991cc22e51733bfeadb1fdd8b3001b06df4d74 (diff) | |
download | fork-ledger-61ffed6ece4857fe5e708f5c3bd6d7e6d2b2b13b.tar.gz fork-ledger-61ffed6ece4857fe5e708f5c3bd6d7e6d2b2b13b.tar.bz2 fork-ledger-61ffed6ece4857fe5e708f5c3bd6d7e6d2b2b13b.zip |
Bump required CMake version
CMake 3.21.4 reports that compatibility with CMake < 2.8.12 will be
removed from a future version of CMake.
CMake 3.0 has new defaults for MACOSX_RPATH. It seems ledger works fine
with them. See CMake Policy CMP0042 for the details.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f7e4ca5..63e5efa1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.5) +cmake_minimum_required(VERSION 3.0) PROJECT(ledger) |