forked from chuanwc/node-multi-hashing-1
-
Notifications
You must be signed in to change notification settings - Fork 8
/
binding.gyp
36 lines (36 loc) · 1 KB
/
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
{
"targets": [
{
"target_name": "nodex16r",
"sources": [
"multihashing.cc",
"sha3/sph_hefty1.c",
"sha3/sph_fugue.c",
"sha3/aes_helper.c",
"sha3/sph_blake.c",
"sha3/sph_bmw.c",
"sha3/sph_cubehash.c",
"sha3/sph_echo.c",
"sha3/sph_groestl.c",
"sha3/sph_jh.c",
"sha3/sph_keccak.c",
"sha3/sph_luffa.c",
"sha3/sph_shavite.c",
"sha3/sph_simd.c",
"sha3/sph_skein.c",
"sha3/sph_whirlpool.c",
"sha3/sph_shabal.c",
"sha3/hamsi.c",
"sha3/sha2.c",
"sha3/sph_sha2big.c",
"x16r.c",
],
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++11"
],
}
]
}