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, 'engine')
|
|
|
|
|
2014-08-09 18:30:31 +00:00
|
|
|
binary.compiler.defines += [
|
|
|
|
'HAVE_STDINT_H',
|
|
|
|
]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.sources = [
|
2014-08-09 18:30:31 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'amxxapi.cpp',
|
|
|
|
'engine.cpp',
|
|
|
|
'entity.cpp',
|
|
|
|
'globals.cpp',
|
|
|
|
'forwards.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
AMXX.modules += [builder.Add(binary)]
|