mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 14:55:36 +03:00
13 lines
220 B
Python
13 lines
220 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
import os.path
|
|
|
|
binary = AMXX.Module(builder, 'geoip')
|
|
|
|
binary.sources = [
|
|
'sdk/amxxmodule.cpp',
|
|
'GeoIP.c',
|
|
'geoip_amxx.cpp',
|
|
]
|
|
|
|
AMXX.modules += [builder.Add(binary)]
|