1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

17 lines
370 B
Plaintext
Raw Normal View History

# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
rvalue = {}
for arch in MMS.archs:
libname = 'version'
lib = MMS.StaticLibrary(builder, libname, arch)
lib.compiler.defines.remove('MMS_USE_VERSIONLIB')
lib.compiler.sourcedeps += MMS.generated_headers
lib.sources += [
'versionlib.cpp'
]
cmd = builder.Add(lib)
rvalue[arch] = cmd.binary