From b2ed2d9373c4b1e5e36bf0b8e9a7289b2aee6a49 Mon Sep 17 00:00:00 2001 From: ytnuf <161308826+ytnuf@users.noreply.github.com> Date: Wed, 20 Mar 2024 19:25:56 +0000 Subject: [PATCH] Change cmake required to v3.13 This is because target_link_options was added in v3.13 So this wouldn't build with cmake v3.12 https://cmake.org/cmake/help/latest/release/3.13.html#commands --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e715102687..cf564d01de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ # Todo # Test build for Windows, Mac and mingw. -cmake_minimum_required(VERSION 3.12) +cmake_minimum_required(VERSION 3.13) project(godot-cpp LANGUAGES CXX) option(GENERATE_TEMPLATE_GET_NODE "Generate a template version of the Node class's get_node." ON)