forked from mongodb/mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConscript
51 lines (47 loc) · 1.74 KB
/
SConscript
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
# -*- mode: python; -*-
# NOTE: This file is auto-generated by "zstandard_get_sources.sh" - DO NOT EDIT
Import("env")
env = env.Clone()
env.Prepend(CPPPATH=[
'zstd/lib/common',
])
env.Library(
target="zstd",
source=[
'zstd/lib/common/entropy_common.c',
'zstd/lib/common/error_private.c',
'zstd/lib/common/fse_decompress.c',
'zstd/lib/common/pool.c',
'zstd/lib/common/threading.c',
'zstd/lib/common/xxhash.c',
'zstd/lib/common/zstd_common.c',
'zstd/lib/compress/fse_compress.c',
'zstd/lib/compress/hist.c',
'zstd/lib/compress/huf_compress.c',
'zstd/lib/compress/zstd_compress.c',
'zstd/lib/compress/zstd_compress_literals.c',
'zstd/lib/compress/zstd_compress_sequences.c',
'zstd/lib/compress/zstd_compress_superblock.c',
'zstd/lib/compress/zstd_double_fast.c',
'zstd/lib/compress/zstd_fast.c',
'zstd/lib/compress/zstd_lazy.c',
'zstd/lib/compress/zstd_ldm.c',
'zstd/lib/compress/zstd_opt.c',
'zstd/lib/compress/zstdmt_compress.c',
'zstd/lib/decompress/huf_decompress.c',
'zstd/lib/decompress/huf_decompress_amd64.S' if not env.TargetOSIs('windows') else [],
'zstd/lib/decompress/zstd_ddict.c',
'zstd/lib/decompress/zstd_decompress.c',
'zstd/lib/decompress/zstd_decompress_block.c',
'zstd/lib/deprecated/zbuff_common.c',
'zstd/lib/deprecated/zbuff_compress.c',
'zstd/lib/deprecated/zbuff_decompress.c',
'zstd/lib/dictBuilder/cover.c',
'zstd/lib/dictBuilder/divsufsort.c',
'zstd/lib/dictBuilder/fastcover.c',
'zstd/lib/dictBuilder/zdict.c',
],
LIBDEPS_TAGS=[
'init-no-global-side-effects',
],
)