aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/node-ethash/binding.gyp
blob: 642c33cb333882e43e934fd1ca83def078879e29 (plain) (blame)
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
{
  "targets":
    [{
      "target_name": "ethash",
        "sources": [
            './ethash.cc',
            '../libethash/ethash.h',
            '../libethash/util.c',
            '../libethash/util.h',
            '../libethash/blum_blum_shub.h',
            '../libethash/blum_blum_shub.c',
            '../libethash/sha3.h',
            '../libethash/sha3.c',
            '../libethash/internal.h',
            '../libethash/internal.c'
          ],
        "include_dirs": [
          "../",
          "<!(node -e \"require('nan')\")"
        ],
        "cflags": [
        "-Wall",
        "-Wno-maybe-uninitialized",
        "-Wno-uninitialized",
        "-Wno-unused-function",
        "-Wextra"
          ]
    }]
}