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

16 lines
374 B
Plaintext
Raw Normal View History

# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
rvalue = {}
2020-08-19 13:34:12 -07:00
for cxx in MMS.all_targets:
libname = 'version'
2020-08-19 13:34:12 -07:00
lib = MMS.StaticLibrary(cxx, libname)
lib.compiler.defines.remove('MMS_USE_VERSIONLIB')
lib.compiler.sourcedeps += MMS.generated_headers
lib.sources += [
'versionlib.cpp'
]
cmd = builder.Add(lib)
2020-08-19 13:34:12 -07:00
rvalue[cxx.target.arch] = cmd.binary