commit | 3a01ec37828affe4c9650004edb5b304fb9d5b75 | [log] [tgz] |
---|---|---|
author | Joshua Goins <josh@redstrate.com> | Mon Jan 08 09:16:29 2024 +0000 |
committer | GitHub <noreply@github.com> | Mon Jan 08 11:16:29 2024 +0200 |
tree | 178a72d1a7d245260298cdc95b041d6e5936b845 | |
parent | d7a5eeb820b61cc3af8a61b3117f76a403b7742a [diff] |
Bump minimum CMake version to 3.5 (#811) Compatibility with CMake < 3.5 will be removed in future versions of CMake, so this avoids the warning and the impending doom.
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f11b67..558d208 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) if(POLICY CMP0077) cmake_policy(SET CMP0077 NEW)