Merge pull request #90858 from Repiteo/scons/show_progress-tweaks

SCons: Disable `show_progress` with Ninja
This commit is contained in:
Rémi Verschelde 2024-04-19 16:28:03 +02:00
commit 21140aad73
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -990,6 +990,10 @@ def using_emcc(env):
def show_progress(env):
if env["ninja"]:
# Has its own progress/tracking tool that clashes with ours
return
import sys
from SCons.Script import Progress, Command, AlwaysBuild