Skip to content

Commit

Permalink
Change cmake required to v3.13
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ytnuf committed Mar 21, 2024
1 parent a62f633 commit b2ed2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b2ed2d9

Please sign in to comment.