forked from underdarkskies/node-x16r
-
Notifications
You must be signed in to change notification settings - Fork 3
/
binding.gyp
42 lines (42 loc) · 798 Bytes
/
binding.gyp
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
{
"targets": [
{
"target_name": "nodex21s",
"sources": [
"multihashing.cc",
"sph/aes_helper.c",
"sph/blake.c",
"sph/bmw.c",
"sph/cubehash.c",
"sph/echo.c",
"sph/extra.c",
"sph/fugue.c",
"sph/gost_streebog.c",
"sph/groestl.c",
"sph/hamsi.c",
"sph/haval.c",
"sph/jh.c",
"sph/keccak.c",
"sph/luffa.c",
"sph/lyra2.c",
"sph/sha2.c",
"sph/shabal.c",
"sph/shavite.c",
"sph/simd.c",
"sph/skein.c",
"sph/sph_sha2big.c",
"sph/sph_sha2.c",
"sph/sponge.c",
"sph/tiger.c",
"sph/whirlpool.c",
"x21s.c",
],
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++11"
],
}
]
}