mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 22:35:37 +03:00
922b4802f1
Former-commit-id: 9af9b5f205
15 lines
308 B
Python
15 lines
308 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
import os.path
|
|
|
|
binary = AMXX.Module(builder, 'sockets')
|
|
|
|
binary.sources = [
|
|
'sdk/amxxmodule.cpp',
|
|
'sockets.cpp',
|
|
]
|
|
|
|
if builder.target_platform == 'windows':
|
|
binary.compiler.postlink += ['wsock32.lib', 'ws2_32.lib']
|
|
|
|
AMXX.modules += [builder.Add(binary)]
|