From 6645bcd30f9dd4e62fe6af1262997b56551bbd39 Mon Sep 17 00:00:00 2001 From: dancesWithBugs <75453205+dancesWithBugs@users.noreply.github.com> Date: Thu, 3 Dec 2020 23:15:03 +0100 Subject: [PATCH] Increase minimum required CMake version to 3.12 Fixes #35 Alternatively, one could work around the use of `add_compile_definitions`. Increasing the minimum required version just seemed easier. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1153c6..f941598 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.12) set(CMAKE_CXX_STANDARD 17) project(libnut)