From 4561f5ca7fba1fed713978994bd5c0a93d8fd2f1 Mon Sep 17 00:00:00 2001 From: Alexis Maiquez Date: Thu, 14 Jul 2022 20:01:41 +0200 Subject: [PATCH] Raised minimum cmake version to 3.12, should fix errors about add_compile_definitions Signed-off-by: Alexis Maiquez --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0aa9b3c..24bbb75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.12) project(wallengine) set(CMAKE_CXX_STANDARD 17)