-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated godot-cpp submodule to @vanos's cmake rewrite PR + one line c…
…make buildfix in the project scripts
- Loading branch information
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule godot-cpp
updated
24 files
+1 −1 | .github/workflows/ci.yml | |
+77 −170 | CMakeLists.txt | |
+4 −1 | README.md | |
+3 −2 | binding_generator.py | |
+16 −15 | cmake/GodotCompilerWarnings.cmake | |
+65 −0 | cmake/android.cmake | |
+299 −0 | cmake/godotcpp.cmake | |
+62 −0 | cmake/ios.cmake | |
+59 −0 | cmake/linux.cmake | |
+51 −0 | cmake/macos.cmake | |
+26 −0 | cmake/web.cmake | |
+51 −0 | cmake/windows.cmake | |
+22 −22 | include/godot_cpp/core/binder_common.hpp | |
+7 −0 | include/godot_cpp/variant/variant.hpp | |
+3 −0 | include/godot_cpp/variant/vector2i.hpp | |
+11 −0 | include/godot_cpp/variant/vector3i.hpp | |
+11 −0 | include/godot_cpp/variant/vector4i.hpp | |
+5 −0 | src/godot.cpp | |
+8 −0 | src/variant/vector2i.cpp | |
+58 −150 | test/CMakeLists.txt | |
+39 −0 | test/project/export_presets.cfg | |
+3 −0 | test/run-tests.sh | |
+6 −0 | tools/android.py | |
+3 −0 | tools/godotcpp.py |