2014-02-08 09:14:15 +00:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
binary = AMXX.MetaModule(builder, 'fakemeta')
|
|
|
|
|
2014-08-09 18:50:45 +00:00
|
|
|
binary.compiler.defines += [
|
|
|
|
'HAVE_STDINT_H',
|
|
|
|
]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.sources = [
|
2014-08-09 18:50:45 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'dllfunc.cpp',
|
|
|
|
'engfunc.cpp',
|
|
|
|
'fakemeta_amxx.cpp',
|
|
|
|
'pdata.cpp',
|
|
|
|
'forward.cpp',
|
|
|
|
'fm_tr.cpp',
|
|
|
|
'pev.cpp',
|
|
|
|
'glb.cpp',
|
|
|
|
'fm_tr2.cpp',
|
|
|
|
'misc.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
AMXX.modules += [builder.Add(binary)]
|