mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 14:55:36 +03:00
94552e5503
Update project files.
19 lines
456 B
Python
19 lines
456 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
import os.path
|
|
|
|
binary = AMXX.Module(builder, 'geoip')
|
|
|
|
binary.compiler.defines += ['HAVE_STDINT_H']
|
|
binary.compiler.includes += [os.path.join(builder.sourcePath, 'dlls', 'geoip', 'GeoIP2')]
|
|
|
|
binary.sources = [
|
|
'sdk/amxxmodule.cpp',
|
|
'GeoIP2/maxminddb.cpp',
|
|
'geoip_amxx.cpp',
|
|
]
|
|
|
|
if builder.target_platform == 'windows':
|
|
binary.compiler.postlink += ['ws2_32.lib']
|
|
|
|
AMXX.modules += [builder.Add(binary)]
|