2014-02-08 09:14:15 +00:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
2014-07-30 07:51:01 +00:00
|
|
|
binary = AMXX.MetaModule(builder, 'geoip')
|
2014-02-08 09:14:15 +00:00
|
|
|
|
2019-10-20 21:21:57 +00:00
|
|
|
binary.compiler.includes += [
|
|
|
|
os.path.join(builder.currentSourcePath, '..', '..', 'amxmodx'),
|
2015-03-13 10:13:42 +00:00
|
|
|
os.path.join(builder.currentSourcePath, '..', '..', 'third_party', 'libmaxminddb')
|
|
|
|
]
|
|
|
|
|
2014-07-30 07:51:01 +00:00
|
|
|
binary.compiler.defines += [
|
|
|
|
'HAVE_STDINT_H'
|
|
|
|
]
|
2014-07-29 09:47:23 +00:00
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.sources = [
|
2014-08-09 18:59:21 +00:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2018-08-27 13:42:35 +00:00
|
|
|
'../../third_party/libmaxminddb/data-pool.c',
|
2015-03-13 10:13:42 +00:00
|
|
|
'../../third_party/libmaxminddb/maxminddb.c',
|
2014-07-31 21:08:58 +00:00
|
|
|
'geoip_main.cpp',
|
|
|
|
'geoip_natives.cpp',
|
|
|
|
'geoip_util.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']
|
2017-12-07 17:45:16 +00:00
|
|
|
binary.compiler.linkflags += [
|
|
|
|
'/EXPORT:GiveFnptrsToDll=_GiveFnptrsToDll@8,@1',
|
|
|
|
'/SECTION:.data,RW',
|
|
|
|
]
|
|
|
|
binary.compiler.postlink += ['ws2_32.lib']
|
2014-02-09 00:09:29 +00:00
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|