-
Notifications
You must be signed in to change notification settings - Fork 3
/
binding.gyp
33 lines (33 loc) · 940 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
{
"targets": [
{
"target_name": "cryptonighthashing",
"sources": [
"cryptonighthashing.cc",
"crypto/oaes_lib.c",
"crypto/keccak.c",
"crypto/hash-extra-groestl.c",
"crypto/groestl.c",
"crypto/hash-extra-blake.c",
"crypto/blake256.c",
"crypto/hash-extra-jh.c",
"crypto/jh.c",
"crypto/hash-extra-skein.c",
"crypto/skein.c",
"crypto/hash.c",
"cryptonight.c",
"cryptonight_light.c"
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")",
],
"cflags_c": [
"-std=gnu11 -march=native -fPIC -m64"
],
"cflags_cc": [
"-std=gnu++11 -fPIC -m64"
],
}
]
}