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 /methods.py | |
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 'methods.py')
-rw-r--r-- | methods.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/methods.py b/methods.py index d68316f0f0..7a7758e24b 100644 --- a/methods.py +++ b/methods.py @@ -96,9 +96,6 @@ def add_source_files_scu(self, sources, files, allow_gen=False): if section_name not in (_scu_folders): return False - if self["verbose"]: - print("SCU building " + section_name) - # Add all the gen.cpp files in the SCU directory add_source_files_orig(self, sources, subdir + "scu/scu_*.gen.cpp", True) return True |