diff options
author | David Snopek <dsnopek@gmail.com> | 2024-04-02 14:30:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 14:30:26 -0500 |
commit | 7d4a24caab340a99a77a7a5da4d5dc96830b72f4 (patch) | |
tree | 7d9a01106d3ac7a620e9e9e6d86fa8e501bcb94f | |
parent | 3715bfe25329bfcc34d098e63966d3716a5b04f1 (diff) | |
parent | 5c12bd22872742f274079fb11e6d884d4dd2723e (diff) | |
download | redot-cpp-7d4a24caab340a99a77a7a5da4d5dc96830b72f4.tar.gz |
Merge pull request #1417 from ytnuf/cmake-fix
Change cmake required to v3.13
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e715102..cf564d0 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) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 67f3c5c..42ea6e0 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ +cmake_minimum_required(VERSION 3.13) project(godot-cpp-test) -cmake_minimum_required(VERSION 3.6) set(GODOT_GDEXTENSION_DIR ../gdextension/ CACHE STRING "Path to GDExtension interface header directory") set(CPP_BINDINGS_PATH ../ CACHE STRING "Path to C++ bindings") |