Skip to content

Commit

Permalink
SCons: Disable show_progress with ninja
Browse files Browse the repository at this point in the history
  • Loading branch information
Repiteo authored and Your Name committed May 8, 2024
1 parent 48b6d37 commit 045ff7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 045ff7f

Please sign in to comment.