Skip to content

Commit

Permalink
Fix using updated SdkTarget in core/AMBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
KitRifty authored and psychonic committed Feb 8, 2024
1 parent 8cde5e0 commit 837fa2c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/AMBuilder
@@ -1,7 +1,10 @@
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os

for sdk, cxx in MMS.sdk_targets:
for sdk_target in MMS.sdk_targets:
sdk = sdk_target.sdk
cxx = sdk_target.cxx

name = 'metamod.' + sdk['extension']
binary = MMS.HL2Library(builder, cxx, name, sdk)

Expand Down

0 comments on commit 837fa2c

Please sign in to comment.