-
Notifications
You must be signed in to change notification settings - Fork 12
/
binding.gyp
43 lines (43 loc) · 1.02 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
37
38
39
40
41
42
43
{
"targets": [
{
"target_name": "cryptonight",
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"xcode_settings": {
"OTHER_CFLAGS": [
"-maes",
"-Ofast",
"-fexceptions"
]
},
"cflags": [
"-maes",
"-Ofast",
"-fexceptions"
],
"sources": [
"lib/cryptonight.cc",
"lib/vendor/aesb.c",
"lib/vendor/blake256.c",
"lib/vendor/chacha.c",
"lib/vendor/crypto-ops-data.c",
"lib/vendor/crypto-ops.c",
"lib/vendor/groestl.c",
"lib/vendor/hash-extra-blake.c",
"lib/vendor/hash-extra-groestl.c",
"lib/vendor/hash-extra-jh.c",
"lib/vendor/hash-extra-skein.c",
"lib/vendor/hash.c",
"lib/vendor/hex.cpp",
"lib/vendor/jh.c",
"lib/vendor/keccak.c",
"lib/vendor/skein.c",
"lib/vendor/slow-hash.c",
"lib/vendor/CryptonightR_JIT.c",
"lib/vendor/CryptonightR_template.S"
]
}
]
}