forked from node-inspector/v8-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
36 lines (36 loc) · 788 Bytes
/
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
{
'variables': {
'node_next': '<!(node -p -e "require(\'./tools/NODE_NEXT.js\')")'
},
'targets': [
{
'target_name': 'debug',
'win_delay_load_hook': 'true',
'sources': [
'src/debug.cc'
],
'include_dirs' : [
"<!(node -e \"require('nan')\")"
],
'conditions' : [
['node_next=="true"', {
'sources': [
'src/InjectedScriptHost.cc'
],
'defines': ['NODE_NEXT=1']
}]
]
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)"
}
]
}
]
}