amxmodx/modules/geoip/AMBuilder
2015-03-13 15:18:47 +02:00

29 lines
656 B
Python

# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os.path
binary = AMXX.MetaModule(builder, 'geoip')
binary.compiler.cxxincludes += [
os.path.join(builder.currentSourcePath, '..', '..', 'third_party', 'libmaxminddb')
]
binary.compiler.defines += [
'HAVE_STDINT_H'
]
binary.sources = [
'../../public/sdk/amxxmodule.cpp',
'../../third_party/libmaxminddb/maxminddb.c',
'geoip_main.cpp',
'geoip_natives.cpp',
'geoip_util.cpp',
]
if builder.target_platform == 'windows':
binary.sources += ['version.rc']
if builder.target_platform == 'windows':
binary.compiler.postlink += ['ws2_32.lib']
AMXX.modules += [builder.Add(binary)]