mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-02 14:24:16 +01:00
12 lines
235 B
Plaintext
12 lines
235 B
Plaintext
|
# vim: sts=2 ts=8 sw=2 tw=99 et ft=python:
|
||
|
|
||
|
lib = builder.compiler.StaticLibrary("version")
|
||
|
lib.compiler.sourcedeps += MMS.generated_headers
|
||
|
lib.sources += [
|
||
|
'versionlib.cpp'
|
||
|
]
|
||
|
cmd = builder.Add(lib)
|
||
|
|
||
|
rvalue = cmd.binary
|
||
|
|