Merge pull request #90858 from Repiteo/scons/show_progress-tweaks
SCons: Disable `show_progress` with Ninja
This commit is contained in:
commit
21140aad73
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue