mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-11-29 11:24:19 +01:00
13 lines
286 B
Python
13 lines
286 B
Python
# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
lib = builder.compiler.StaticLibrary("version")
|
|
lib.compiler.defines.remove('MMS_USE_VERSIONLIB')
|
|
lib.compiler.sourcedeps += MMS.generated_headers
|
|
lib.sources += [
|
|
'versionlib.cpp'
|
|
]
|
|
cmd = builder.Add(lib)
|
|
|
|
rvalue = cmd.binary
|
|
|