-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSConscript
More file actions
74 lines (69 loc) · 1.72 KB
/
Copy pathSConscript
File metadata and controls
74 lines (69 loc) · 1.72 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Import('env')
import os
env.Command('async_version.c', [],
"""echo 'const char *async_version_tag = \
"F-S_v:: async 1.0.%s";' >$TARGET""" % os.getenv("BUILD_NUMBER", "9999"))
env['CCFLAGS'] += ' -fPIC' # make objects usable for shared libs
env['CPPPATH'] += [
'#include',
]
env.ParseConfig(env['CONFIG_PARSER'])
env.StaticLibrary(
'async',
[
'action_1.c',
'alock.c',
'async.c',
'async_version.c',
'async_wakeup_bsd.c',
'async_wakeup_linux.c',
'async_wakeup_old_linux.c',
'base64decoder.c',
'base64encoder.c',
'blobstream.c',
'blockingstream.c',
'bytestream_1.c',
'chunkdecoder.c',
'chunkencoder.c',
'chunkframer.c',
'clobberstream.c',
'concatstream.c',
'deserializer.c',
'drystream.c',
'dryyield.c',
'emptystream.c',
'errorstream.c',
'farewellstream.c',
'fsadns.c',
'iconvstream.c',
'json_connection.c',
'jsondecoder.c',
'jsonencoder.c',
'jsonserver.c',
'jsonthreader.c',
'jsonyield.c',
'multipartdecoder.c',
'multipartdeserializer.c',
'naivedecoder.c',
'naiveencoder.c',
'naiveframer.c',
'nicestream.c',
'notification.c',
'pacer.c',
'pacerstream.c',
'pausestream.c',
'pipestream.c',
'probestream.c',
'queuestream.c',
'reservoir.c',
'stringstream.c',
'subprocess.c',
'substream.c',
'switchstream.c',
'tcp_client.c',
'tcp_connection.c',
'tricklestream.c',
'yield_1.c',
'zerostream.c',
],
)