-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAMBuilder
executable file
·48 lines (42 loc) · 1.51 KB
/
AMBuilder
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os
libyyjson = builder.Build('third_party/yyjson/AMBuilder')
ixwebsocket = builder.Build('third_party/ixwebsocket/AMBuilder')
libz = builder.Build('third_party/zlib/AMBuilder')
for cxx in builder.targets:
binary = Extension.Library(builder, cxx, 'websocket.ext')
arch = binary.compiler.target.arch
binary.sources += [
'src/extension.cpp',
'src/ws_client.cpp',
'src/ws_server.cpp',
'src/http_request.cpp',
'src/http_natives.cpp',
'src/json_natives.cpp',
'src/ws_natives.cpp',
'src/ws_natives_server.cpp',
os.path.join(Extension.sm_root, 'public', 'smsdk_ext.cpp'),
]
binary.compiler.includes += [
os.path.join(builder.sourcePath, 'src'),
os.path.join(builder.sourcePath, 'third_party', 'ixwebsocket'),
os.path.join(builder.sourcePath, 'third_party', 'yyjson'),
]
if binary.compiler.target.platform == 'linux':
binary.compiler.postlink += [
'-lz',
'-lssl',
ixwebsocket[arch].binary,
libyyjson[arch].binary,
]
elif binary.compiler.target.platform == 'windows':
binary.compiler.postlink += [
'ws2_32.lib',
'crypt32.lib',
ixwebsocket[arch].binary,
libyyjson[arch].binary,
libz[arch].binary,
os.path.join(builder.sourcePath, 'third_party', 'openssl', 'lib', 'libssl_static_{}.lib'.format(arch)),
os.path.join(builder.sourcePath, 'third_party', 'openssl', 'lib', 'libcrypto_static_{}.lib'.format(arch)),
]
Extension.extensions += [builder.Add(binary)]