Initial commit

This commit is contained in:
maxime1907
2021-07-12 02:30:37 +02:00
commit 080e0107bc
10 changed files with 2057 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os
if not "SM" in globals():
SM = Extension
projectName = 'sendsnapshotfixer'
project = SM.HL2Project(builder, projectName + '.ext')
project.sources += [
'ssf.cpp',
]
project.compiler.defines += ['HAVE_STRING_H'];
for sdk_name in SM.sdks:
sdk = SM.sdks[sdk_name]
binary = SM.HL2Config(project, projectName + '_mm_i486', sdk)
SM.extensions += builder.Add(project)