1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

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

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