Skip to content

Commit

Permalink
Merge pull request #100 from dontnod/tds/ue-cli/ddc-override
Browse files Browse the repository at this point in the history
unreal: allow to override DDC backend with UE-DDC envvar
  • Loading branch information
tdesveaux authored Aug 12, 2024
2 parents eda2d93 + fa1fbdc commit 6100ccb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nimp/unreal.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,9 @@ def get_default_args_for_cli(env):
#yield '-forcelogflush'
yield '-locallogtimes'

if (ddc_env_override := os.getenv("UE-DDC")) is not None:
yield f"-DDC={ddc_env_override}"


def get_p4_args_for_commandlet(env):
p4_args_for_commandlet = []
Expand Down

0 comments on commit 6100ccb

Please sign in to comment.