2014-02-08 13:14:15 +04:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
2014-07-30 11:51:01 +04:00
|
|
|
binary = AMXX.MetaModule(builder, 'geoip')
|
2014-02-08 13:14:15 +04:00
|
|
|
|
2014-07-30 11:51:01 +04:00
|
|
|
binary.compiler.defines += [
|
|
|
|
'HAVE_STDINT_H'
|
|
|
|
]
|
2014-07-29 13:47:23 +04:00
|
|
|
|
2014-02-08 13:14:15 +04:00
|
|
|
binary.sources = [
|
2014-08-09 22:59:21 +04:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2015-01-14 14:10:29 +03:00
|
|
|
'GeoIP2/maxminddb.c',
|
2014-08-01 01:08:58 +04:00
|
|
|
'geoip_main.cpp',
|
|
|
|
'geoip_natives.cpp',
|
|
|
|
'geoip_util.cpp',
|
2014-02-08 13:14:15 +04:00
|
|
|
]
|
|
|
|
|
2014-12-08 03:44:27 +03:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += ['version.rc']
|
|
|
|
|
2014-02-09 04:09:29 +04:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.compiler.postlink += ['ws2_32.lib']
|
2014-07-30 11:51:01 +04:00
|
|
|
binary.compiler.includes += [os.path.join(builder.sourcePath, 'dlls', 'geoip', 'GeoIP2')]
|
2014-02-09 04:09:29 +04:00
|
|
|
|
2014-02-08 13:14:15 +04:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|