diff options
author | Riteo <riteo@posteo.net> | 2024-03-12 22:51:19 +0100 |
---|---|---|
committer | Riteo <riteo@posteo.net> | 2024-03-15 16:05:25 +0100 |
commit | 55558fb17574ddcbf0dcbba3f90a1aa880907f28 (patch) | |
tree | fda1ff6254923f3287d8576303d24f8c96203a42 /platform_methods.py | |
parent | a5cf92664db9633b9fb1307a801d99de70d09aba (diff) | |
download | redot-engine-55558fb17574ddcbf0dcbba3f90a1aa880907f28.tar.gz |
SCons: Add an option to enable the experimental ninja build backend
With this option turned on, if properly set up, SCons generates a
`build.ninja` file and quits. To actually build the engine, the user can
then call `ninja` with whatever options they might prefer (not
everything is yet transferred properly to this new generated file).
Ideally, the scons file should never be called again, as ninja
automatically detects any SCons build script change and invokes
the required commands to regenerate itself.
This approach speeds up incremental builds considerably, as it limits
SCons to code generation and uses ninja's extremely fast timestamp-based
file change detector.
Diffstat (limited to 'platform_methods.py')
-rw-r--r-- | platform_methods.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform_methods.py b/platform_methods.py index 92aefcc648..56115db4a4 100644 --- a/platform_methods.py +++ b/platform_methods.py @@ -66,7 +66,6 @@ def generate_export_icons(platform_path, platform_name): svg_str += '";\n' - # NOTE: It is safe to generate this file here, since this is still executed serially. wf = export_path + "/" + name + "_svg.gen.h" methods.write_file_if_needed(wf, svg_str) |