diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-26 13:17:27 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-26 15:13:48 +0200 |
commit | 495245ed89fe6931387b3821270cdff19c49238e (patch) | |
tree | 1890a628acfd087e07b19c0f2af34204b63dda7e /SConstruct | |
parent | 46cb7f94f755d452b146aca52c36e3d3523ad807 (diff) | |
download | redot-engine-495245ed89fe6931387b3821270cdff19c49238e.tar.gz |
SCons: Reduce and cleanup verbose output for SCU builds
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.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 031f421a63..534d5bd95d 100644 --- a/SConstruct +++ b/SConstruct @@ -565,7 +565,7 @@ if selected_platform in platform_list: if read_scu_limit != 0: max_includes_per_scu = read_scu_limit - methods.set_scu_folders(scu_builders.generate_scu_files(env["verbose"], max_includes_per_scu)) + methods.set_scu_folders(scu_builders.generate_scu_files(max_includes_per_scu)) # Must happen after the flags' definition, as configure is when most flags # are actually handled to change compile options, etc. |