1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Fix regression causing --sdks ambuild option to be ignored

This commit is contained in:
Nick Hastings 2023-10-14 13:09:59 -04:00
parent 65ef24fe47
commit 3955c1b8fc

View File

@ -120,10 +120,11 @@ class MMSConfig(object):
print('Warning: hl2sdk-{} was not found, and will not be included in build.'.format(sdk))
for _, sdk in self.sdks.items():
for cxx in self.all_targets:
if not SdkHelpers.shouldBuildSdk(sdk, cxx):
continue
self.sdk_targets += [(sdk, cxx)]
if use_all or use_present or sdk.get('name', None) in sdk_list:
for cxx in self.all_targets:
if not SdkHelpers.shouldBuildSdk(sdk, cxx):
continue
self.sdk_targets += [(sdk, cxx)]
def configure(self):
builder.AddConfigureFile('pushbuild.txt')