| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Merge commit godotengine/godot-cpp@c20a84e
|
|/| |
|
| |\
| | |
| | | |
Add lto scons option
|
| | | |
|
| |\ \
| | | |
| | | | |
[Web] Don't cache emsdk
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Due to how caches are accessed this cache is almost useless, it only
matters if it is from the same branch or a base branch, and is identical
between branches, so caching it just clutters the build cache
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
dsnopek/classdb-add-virtual-method-arg-metadata-size
Fix crash in `ClassDB::add_virtual_method()` if arguments metadata is the wrong size
|
| | | |
| | | |
| | | |
| | | | |
wrong size
|
|\ \ \ \
| | | | |
| | | | | |
Fix README documentation issues
|
|/ / / /
| | | |
| | | |
| | | | |
Fix redot-cpp rebranding for minor docs
|
|\ \ \ \
| |/ / /
|/| | | |
Rebrand godot-cpp to redot-cpp
|
| | | |
| | | |
| | | |
| | | | |
Redot-Engine/redot-engine@77eaec766e2e40f2a5d399989d827f9582a3be15
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Rename Vector4.components -> coords.
|
| | | |
| | | |
| | | | |
The use of .components is deprecated.
|
|\ \ \ \
| | | | |
| | | | | |
Update for new NOTIFICATION_POSTINITIALIZE handling
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove unimplemented static variant functions 'blend' and 'interpolate'…
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
a user attempts to call either of these it will introduce a linker error and it may not be immediately clear to them why. Also, variant interpolation can already be accessed via 'UtilityFunctions::lerp', making at least the interpolate function unecessary here.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
CI: Add `runner` workflow to call other workflows
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Avoid `thread_local` on MacOS to prevent issues with hot reload
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Directly get object instance ID from `Variant` and implement `Variant::get_validated_object()`
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
`Variant::get_validated_object()`
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Allow unicode class names
|
| | |_|_|_|/ /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
Sync `Quaternion` with the version in Godot
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Correctly set instance bindings on reload
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add `p_use_model_front` to `Basis::looking_at()`
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
SCons: Don't cache libraries
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[SCons] Remove use_clang_cl windows flag in favor of generic use_llvm
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
This is consistent with Godot upstream.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Re-Structure cmake solution to be closer to the scons solution.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is just a single step, re-arranging the code without actually changing its functionality.
new docs/cmake.md
moved the block of comments from the start of the CMakeLists.txt into the cmake.md file and converted content to markdown.
new cmake/godotcpp.cmake
Moved all exposed options into a new function godotcpp_options()
Moved configuration and generation code into godotcpp_generate()
To get all the options into the godotcpp_options() I changed the logic of GODOT_USE_HOT_RELOAD which I believe is a closer match to scons, that if the options is not set, and the build type is not release, then it defaults to ON.
I msvc builds require the default flags to be modified or it will throw errors. I have added the links to articles in the commit, but its about removing the runtime error checks /RTC1 from the CMAKE_CXX_FLAGS_DEBUG variable. This needs to happen before the files are included.
https://stackoverflow.com/questions/74426638/how-to-remove-rtc1-from-specific-target-or-file-in-cmake
https://discourse.cmake.org/t/how-do-i-remove-compile-options-from-target/5965
Renamed GodotCompilerWarnings.cmake to common_compiler_flags.cmake to match scons
Included files explicitly by path, as we dont need to append to the CMAKE_MODULES_PATH which effects the whole build tree.
This prevents consumers of the library from clobbering the names of the cmake include files and breaking the build.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
VSProj Configure type on build command - to resolve #1582
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Visual Studio projects are multi-config projects like Ninja-MultiConfig which means you can't set the configuration at configure time as there are multiple, it always chooses the first one by default when not specified in the build command.
Instead of this:
cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 17 2022" .
cmake --build . --verbose
It should be this
cmake -G"Visual Studio 17 2022" .
cmake --build . --verbose --config Release
Update ci.yml
Because the current build system doesnt use generator expressions for multi config builds, both the CMAKE_BUILD_TYPE and the build --config options need to be set
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Update .gitignore to add .idea for the Jetbrains CLion IDE
|
|/ / / /
| | | |
| | | |
| | | | |
and also the default cmake build directory when building in clion cmake-build-*
|
|\ \ \ \
| |/ / /
|/| | | |
[SCons] Enable WASM_BIGINT in web builds
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Required since Godot 4.3, which is also the first Godot version with
wide WASM gdnative support (previous versions were Chrome-only, and very
brittle).
|
|\ \ \
| | | |
| | | | |
Implement typed dictionaries
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Updated all variable names to use GODOT_ prefix
|