17 lines
289 B
Plaintext
17 lines
289 B
Plaintext
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
||
|
import os.path
|
||
|
|
||
|
binary = AMXX.MetaModule(builder, 'dodfun')
|
||
|
|
||
|
binary.sources = [
|
||
|
'sdk/amxxmodule.cpp',
|
||
|
'NBase.cpp',
|
||
|
'CMisc.cpp',
|
||
|
'NPD.cpp',
|
||
|
'Utils.cpp',
|
||
|
'usermsg.cpp',
|
||
|
'moduleconfig.cpp',
|
||
|
]
|
||
|
|
||
|
AMXX.modules += [builder.Add(binary)]
|