-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbinding.gyp
148 lines (148 loc) · 5.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"algos/multihashing.cc",
"algos/allium.c",
"algos/bcrypt.c",
"algos/blake.c",
"algos/blake2s.c",
"algos/boolberry.cc",
"algos/c11.c",
"algos/cryptonote/cryptonight.c",
"algos/cryptonote/cryptonight_fast.c",
"algos/cryptonote/cryptonight_lite.c",
"algos/cryptonote/cryptonight_dark.c",
"algos/cryptonote/cryptonight_dark_lite.c",
"algos/cryptonote/cryptonight_soft_shell.c",
"algos/cryptonote/cryptonight_turtle.c",
"algos/cryptonote/cryptonight_turtle_lite.c",
"algos/fresh.c",
"algos/fugue.c",
"algos/gost.c",
"algos/gr.c",
"algos/groestl.c",
"algos/hefty1.c",
"algos/hsr14.c",
"algos/keccak.c",
"algos/lbry.c",
"algos/Lyra2.c",
"algos/Lyra2RE.c",
"algos/Lyra2REV2.c",
"algos/Lyra2REV3.c",
"algos/Lyra2Z.c",
"algos/lyra2z16m330.c",
"algos/lyra2z330.c",
"algos/m7.c",
"algos/magimath.c",
"algos/minotaur.c",
"algos/neoscrypt.c",
"algos/nist5.c",
"algos/odo.cc",
"algos/phi1612.c",
"algos/quark.c",
"algos/qubit.c",
"algos/scryptjane.c",
"algos/scryptn.c",
"algos/sha1.c",
"algos/sha256d.c",
"algos/shavite3.c",
"algos/skein.c",
"algos/skunk.c",
"algos/sm3.c",
"algos/Sponge.c",
"algos/tribus.c",
"algos/whirlpoolx.c",
"algos/x11.c",
"algos/x13.c",
"algos/x15.c",
"algos/x16r.c",
"algos/x16rt.c",
"algos/x17.c",
"algos/x21s.c",
"algos/xevan.c",
"algos/zr5.c",
"algos/sha3/aes_helper.c",
"algos/sha3/hamsi.c",
"algos/sha3/KeccakP-800-reference.c",
"algos/sha3/sph_haval.c",
"algos/sha3/sph_hefty1.c",
"algos/sha3/sph_fugue.c",
"algos/sha3/sph_blake.c",
"algos/sha3/sph_blake2s.c",
"algos/sha3/sph_bmw.c",
"algos/sha3/sph_cubehash.c",
"algos/sha3/sph_echo.c",
"algos/sha3/sph_gost.c",
"algos/sha3/sph_groestl.c",
"algos/sha3/sph_jh.c",
"algos/sha3/sph_keccak.c",
"algos/sha3/sph_luffa.c",
"algos/sha3/sph_shavite.c",
"algos/sha3/sph_simd.c",
"algos/sha3/sph_skein.c",
"algos/sha3/sph_whirlpool.c",
"algos/sha3/sph_shabal.c",
"algos/sha3/sph_ripemd.c",
"algos/sha3/sph_sha2.c",
"algos/sha3/sph_sha2big.c",
"algos/sha3/sph_tiger.c",
"algos/sph/sph_cubehash.h",
"algos/sph/sph_echo.h",
"algos/sph/sph_fungue.h",
"algos/sph/sph_gost.h",
"algos/sph/sph_jh.h",
"algos/sph/sph_skein.h",
"algos/yescrypt/sha256_Y.c",
"algos/yescrypt/yescrypt-best.c",
"algos/yescrypt/yescryptcommon.c",
"algos/crypto/aesb.c",
"algos/crypto/c_blake256.c",
"algos/crypto/c_groestl.c",
"algos/crypto/c_jh.c",
"algos/crypto/c_keccak.c",
"algos/crypto/c_skein.c",
"algos/crypto/hash.c",
"algos/crypto/oaes_lib.c",
"algos/crypto/odocrypt.cpp",
"algos/crypto/wild_keccak.cpp"
],
'conditions': [
['OS=="linux"',
{
'link_settings': {
'libraries': [
'-lgmp'
]
}
}
],
['OS=="mac"',
{
'link_settings': {
'libraries': [
'-lgmp'
]
}
}
],
['OS=="win"',
{
'link_settings': {
'libraries': [
'-lgmp.lib'
],
}
}
]
],
"include_dirs": [
"algos/crypto"
],
"cflags_cc": [
"-std=c++0x"
],
}
]
}