-
Notifications
You must be signed in to change notification settings - Fork 4
/
binding.gyp
44 lines (41 loc) · 1.27 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
{
"targets": [
{
"target_name": "kawpow-light-verifier",
"sources": [
"light_verify.cc",
"ethash/ethash.h",
"ethash/ethash.hpp",
"ethash/hash_types.h",
"ethash/hash_types.hpp",
"ethash/keccak.h",
"ethash/keccak.hpp",
"ethash/progpow.hpp",
"ethash/version.h",
"ethash/bit_manipulation.h",
"ethash/builtins.h",
"ethash/endianness.hpp",
"ethash/ethash.cpp",
"ethash/ethash-internal.hpp",
"ethash/kiss99.hpp",
"ethash/managed.cpp",
"ethash/primes.c",
"ethash/primes.h",
"ethash/progpow.cpp",
"ethash/keccak.c",
"ethash/keccakf1600.c",
"ethash/keccakf800.c",
"ethash/attributes.h",
"ethash/helpers.hpp",
"ethash/progpow_test_vectors.hpp",
],
"include_dirs": [
"<!(node -e \"require('nan')\")",
'ethash/',
],
"cflags_cc": [
"-std=c++11"
],
}
]
}