Browse Source

wscript: fix game_launch not being included

pull/2/head
Alibek Omarov 2 years ago
parent
commit
e6c55107c7
  1. 2
      wscript

2
wscript

@ -44,7 +44,7 @@ SUBDIRS = [ @@ -44,7 +44,7 @@ SUBDIRS = [
Subproject('mainui', lambda x: not x.env.DEDICATED),
Subproject('vgui_support', lambda x: not x.env.DEDICATED),
Subproject('stub/client', lambda x: not x.env.DEDICATED),
Subproject('game_launch', lambda x: not x.env.SINGLE_BINARY and not x.env.DEST_OS != 'android'),
Subproject('game_launch', lambda x: not x.env.SINGLE_BINARY and x.env.DEST_OS != 'android'),
# disable only by external dependency presense
Subproject('3rdparty/opus', lambda x: not x.env.HAVE_SYSTEM_OPUS),

Loading…
Cancel
Save