summaryrefslogtreecommitdiffstats
path: root/scu_builders.py
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-1/+1
|
* 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.