mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-01 13:24:25 +01:00
14 lines
283 B
Python
14 lines
283 B
Python
# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
lib = builder.cxx.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
|
|
|