summaryrefslogtreecommitdiffstats
path: root/scu_builders.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-4/+0
|\
| * Make SCons SCU build banner less intrusiveHugo Locurcio2024-11-081-4/+0
| | | | | | | | | | A message is still printed every build when `scu_build` is enabled, which is sufficient.
* | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+17
|\|
| * Add some big folders which would benefit from scu to scu pipelineYevhen Babiichuk (DustDFG)2024-10-301-0/+17
| | | | | | | | Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Move Godot Physics 2D into a module; add dummy 2D physics serverRicardo Buring2024-09-231-1/+1
| | | | | | | | | | | | If the module is enabled (default), 2D physics works as it did before. If the module is disabled and no other 2D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 2D physics functionality (and a warning is printed). The dummy 2D physics server can also be selected explicitly, in which case no warning is printed.
* Move Godot Physics 3D into a module; add dummy 3D physics serverRicardo Buring2024-09-211-2/+2
| | | | | | | | | | | | If the module is enabled (default), 3D physics works as it did before. If the module is disabled and no other 3D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 3D physics functionality (and a warning is printed). The dummy 3D physics server can also be selected explicitly, in which case no warning is printed.
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-11/+10
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-3/+4
|
* SCons: Fix SCU build regression on WindowsRémi Verschelde2024-04-091-3/+4
| | | | | | PR #89452 made assumptions on comparing paths as strings which doesn't work when composing them as POSIX paths (`/`) but processing them on NT (`\`, `\\`).
* SCons: unify code generations routine and minimize timestamp changesRiteo2024-03-151-18/+35
| | | | | | | | | Previously, all of the code generation routines would just needlessly write the same files over and over, even when not needed. This became a problem with the advent of the experimental ninja backend for SCons, which can be trivially enabled with a few lines of code and relies on timestamp changes, making it thus impractical.
* SCU: disable verbose outputRiteo2024-03-141-1/+1
| | | | It's meant to be used as a debug tool but it has been forgotten on.
* Pre-commit: Update to clang-format 17.0.6 and black 24.2.0Rémi Verschelde2024-02-281-0/+1
|
* Split monolithic physics class filessmix82024-02-271-0/+4
| | | | Splits monolithic physics class files.
* Move 3D-only resources to their own folderAaron Franke2024-02-261-0/+1
|
* Move 2D-only resources to their own folderAaron Franke2024-02-261-0/+1
|
* Move 3D scene import classes to their own folderAaron Franke2024-01-041-0/+1
|
* SCons: Reduce and cleanup verbose output for SCU buildsRémi Verschelde2023-10-261-15/+15
| | | | | | | | Verbose output is meant for debugging the SCU mode itself and can be triggered by changing the `_verbose` bool manually. Prefix all prints with "SCU:" for context, and print the processed folders all at once instead of when adding the sources.
* UWP: Remove platform port, needs to be redone from scratch for 4.xRémi Verschelde2023-09-071-1/+0
| | | | | | | | | | | The UWP platform port was never ported to the Godot 4.0+ API, and it's now accumulating bitrot as it doesn't compile, and thus we no longer propagate platform changes in it. So we finally remove to acknowledge this state. There's still some interest in reviving the UWP port eventually, especially as support for Direct3D 12 will soon be merged, but when that happens it will be easiest to redo it from scratch.
* SCons : Add "scu_limit" argumentlawnjelly2023-07-021-11/+12
| | | | "scu_limit" allows specifying the maximum number of includes in a single SCU file (translation unit). A lower limit (e.g. 8) uses less RAM during compilation, but may be slower to compile.
* CI: Update static checks to black 23.3.0Rémi Verschelde2023-06-191-3/+1
| | | | And apply it to the codebase, removing empty lines at the start of blocks.
* SCU build - make paths relative to project folderlawnjelly2023-06-091-1/+1
| | | | Making paths relative to the project folder rather than the SCU directory helps make stack traces more readable.
* Single Compilation Unit build.lawnjelly2023-06-061-0/+339
Adds support for simple SCU build (DEV_ENABLED only). This speeds up compilation by compiling multiple cpp files within a single translation unit.