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
|
|
|
|
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 = [
|
|
|
|
'sdk/amxxmodule.cpp',
|
2014-07-29 09:47:23 +00:00
|
|
|
'GeoIP2/maxminddb.cpp',
|
2014-02-08 09:14:15 +00:00
|
|
|
'geoip_amxx.cpp',
|
|
|
|
]
|
|
|
|
|
2014-02-09 00:09:29 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.compiler.postlink += ['ws2_32.lib']
|
2014-07-30 07:51:01 +00:00
|
|
|
binary.compiler.includes += [os.path.join(builder.sourcePath, 'dlls', 'geoip', 'GeoIP2')]
|
2014-02-09 00:09:29 +00:00
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|