node/tools/addon.gypi

24 lines
509 B
Plaintext
Raw Normal View History

2011-12-21 14:03:32 +08:00
{
'target_defaults': {
'type': 'loadable_module',
'product_extension': 'node',
'product_prefix': '',
2011-12-21 14:03:32 +08:00
'conditions': [
[ 'OS=="mac"', {
2012-01-17 02:17:45 +08:00
'libraries': [ '-undefined dynamic_lookup' ]
}],
[ 'OS=="win"', {
'include_dirs': [
'../src',
'../deps/uv/include',
'../deps/v8/include'
],
'libraries': [ '-l<(node_root_dir>/Debug/node.lib' ],
}, {
'include_dirs': ['../../../include/node']
2011-12-21 14:03:32 +08:00
}]
]
}
}