forked from Snirpo/node-vad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
26 lines (26 loc) · 752 Bytes
/
binding.gyp
File metadata and controls
26 lines (26 loc) · 752 Bytes
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
{
'targets': [
{
'target_name': 'vad',
'product_extension': 'node',
'type': 'loadable_module',
'defines': [],
'include_dirs': ["<!(node -e \"require('nan')\")", "./src"],
'sources': [
'src/simplevad.c',
'src/vad_bindings.cc'
],
'dependencies': [
'./vendor/webrtc_vad/webrtc_vad.gyp:webrtc_vad'
],
'conditions': [
['OS=="mac"', {
"xcode_settings": {
"MACOSX_DEPLOYMENT_TARGET": "10.9",
"CLANG_CXX_LIBRARY": "libc++"
}
}]
]
}
]
}