2014-02-08 01:14:15 -08:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
2014-12-10 15:05:47 +01:00
|
|
|
binary = AMXX.MetaModule(builder, 'sockets')
|
2014-02-08 01:14:15 -08:00
|
|
|
|
|
|
|
binary.sources = [
|
2014-08-10 18:38:24 +02:00
|
|
|
'../../public/sdk/amxxmodule.cpp',
|
2014-02-08 01:14:15 -08:00
|
|
|
'sockets.cpp',
|
|
|
|
]
|
|
|
|
|
2014-12-08 01:44:27 +01:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += ['version.rc']
|
|
|
|
|
2014-02-08 16:09:29 -08:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.compiler.postlink += ['wsock32.lib', 'ws2_32.lib']
|
|
|
|
|
2014-02-08 01:14:15 -08:00
|
|
|
AMXX.modules += [builder.Add(binary)]
|