addon: use absolute paths for the node include dirs
This fixes running gyp_addon from across filesystems on Windows. This is essentially a gyp bug where it's not relativizing properly across filesystems. See TooTallNate/node-gyp#15 for the gory details.
This commit is contained in:
parent
1520c7bf5b
commit
39ce94276a
@ -4,9 +4,9 @@
|
||||
'product_extension': 'node',
|
||||
'product_prefix': '',
|
||||
'include_dirs': [
|
||||
'../src',
|
||||
'../deps/uv/include',
|
||||
'../deps/v8/include'
|
||||
'<(node_root_dir)/src',
|
||||
'<(node_root_dir)/deps/uv/include',
|
||||
'<(node_root_dir)/deps/v8/include'
|
||||
],
|
||||
|
||||
'conditions': [
|
||||
|
Loading…
x
Reference in New Issue
Block a user