2014-02-08 09:14:15 +00:00
|
|
|
# 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',
|
|
|
|
]
|
|
|
|
|
2014-02-09 00:09:29 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.compiler.postlink += ['wsock32.lib', 'ws2_32.lib']
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|