forked from jbamlee/node-cryptonight
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding.gyp
52 lines (52 loc) · 1.17 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
44
45
46
47
48
49
50
51
52
{
"targets": [
{
"target_name": "cryptonight",
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
'conditions': [
[
'OS=="win"',
{
'include_dirs': [
"C:/boost"
]
}
]
],
"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/oaes_lib.c",
"lib/vendor/skein.c",
"lib/vendor/slow-hash.c"
]
}
]
}