SCons: Disable show_progress with ninja

This commit is contained in:
Thaddeus Crews 2024-04-18 09:33:40 -05:00
parent 2efbc6bfb3
commit a7e7167a85
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

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