2013-12-30 23:50:56 +01:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
2009-08-30 09:46:56 +02:00
|
|
|
import os
|
|
|
|
|
2013-12-30 23:50:56 +01:00
|
|
|
if 'tf2' in SM.sdks:
|
|
|
|
sdk = SM.sdks['tf2']
|
|
|
|
|
|
|
|
binary = SM.HL2Library(builder, 'game.tf2.ext.' + sdk.ext, sdk)
|
|
|
|
binary.sources += [
|
2013-02-12 18:26:10 +01:00
|
|
|
'extension.cpp',
|
|
|
|
'natives.cpp',
|
|
|
|
'RegNatives.cpp',
|
|
|
|
'util.cpp',
|
|
|
|
'criticals.cpp',
|
|
|
|
'holiday.cpp',
|
|
|
|
'teleporter.cpp',
|
|
|
|
'gameplayrules.cpp',
|
|
|
|
'conditions.cpp',
|
2014-04-24 04:19:28 +02:00
|
|
|
'../../public/smsdk_ext.cpp',
|
|
|
|
'../../public/CDetour/detours.cpp',
|
|
|
|
'../../public/asm/asm.c'
|
2013-12-30 23:50:56 +01:00
|
|
|
]
|
2013-12-30 23:50:59 +01:00
|
|
|
SM.extensions += [builder.Add(binary)]
|