Welcome to mirror list, hosted at ThFree Co, Russian Federation.

addon.gypi « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7152afe4bf98ebab7fc89985b71b7948e961bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  'target_defaults': {
    'type': 'loadable_module',
    'product_extension': 'node',
    'product_prefix': '',
    'include_dirs': [
      '../src',
      '../deps/uv/include',
      '../deps/v8/include'
    ],

    'conditions': [
      [ 'OS=="mac"', {
        'libraries': [ '-undefined dynamic_lookup' ],
      }]
    ]
  }
}