This repository was archived by the owner on Jul 3, 2020. It is now read-only.
File tree 5 files changed +613
-0
lines changed
5 files changed +613
-0
lines changed Original file line number Diff line number Diff line change @@ -12,5 +12,6 @@ This product includes software libraries:
12
12
- crc64 function by Salvatore Sanfilippo <antirez at gmail dot com>
13
13
- expect.js library by Guillermo Rauch (https://github.com/LearnBoost/expect.js/)
14
14
- concurrentqueue by Cameron Desrochers (https://github.com/cameron314/concurrentqueue)
15
+ - miniz (https://code.google.com/p/miniz/), located at deps/miniz
15
16
16
17
These libraries have their own licenses.
Original file line number Diff line number Diff line change @@ -115,13 +115,15 @@ config = {
115
115
'deps/concurrentqueue' ,
116
116
'deps/acpica/source/include' ,
117
117
'deps/printf' ,
118
+ 'deps/miniz' ,
118
119
'src' ,
119
120
'test' ,
120
121
],
121
122
"libs" : [
122
123
'v8' ,
123
124
'cxxrt' ,
124
125
'cxx' ,
126
+ 'miniz' ,
125
127
'acpica' ,
126
128
'printf' ,
127
129
'musl' ,
Original file line number Diff line number Diff line change @@ -1004,6 +1004,17 @@ libs_config = {
1004
1004
'printf/printf.cc' ,
1005
1005
],
1006
1006
},
1007
+ "miniz" : {
1008
+ "include" : [
1009
+ 'musl/src/internal' ,
1010
+ 'musl/include' ,
1011
+ 'musl/arch/x86_64' ,
1012
+ 'musl/arch/x86_64/bits' ,
1013
+ ],
1014
+ "source" : [
1015
+ 'miniz/tinfl.c' ,
1016
+ ],
1017
+ },
1007
1018
}
1008
1019
1009
1020
You can’t perform that action at this time.
0 commit comments