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, 'hamsandwich')
|
|
|
|
|
2014-07-03 09:26:50 +00:00
|
|
|
binary.compiler.defines += [
|
|
|
|
'HAVE_STDINT_H',
|
|
|
|
]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.sources = [
|
2014-08-10 09:48:06 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2015-10-07 15:31:28 +00:00
|
|
|
'../../public/memtools/MemoryUtils.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'amxx_api.cpp',
|
|
|
|
'config_parser.cpp',
|
|
|
|
'hook_callbacks.cpp',
|
|
|
|
'hook_native.cpp',
|
|
|
|
'srvcmd.cpp',
|
|
|
|
'call_funcs.cpp',
|
|
|
|
'hook_create.cpp',
|
|
|
|
'DataHandler.cpp',
|
|
|
|
'pdata.cpp',
|
2014-05-01 08:21:46 +00:00
|
|
|
'hook_specialbot.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
|
2014-12-08 00:44:27 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += ['version.rc']
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|