forked from lxe/node-ffi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding.gyp
37 lines (37 loc) · 789 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
37
{
'targets': [
{
'target_name': 'ffi_bindings',
'sources': [
'src/ffi.cc'
, 'src/callback_info.cc'
, 'src/threaded_callback_invokation.cc'
],
'include_dirs': [
'<!(node -e "require(\'nan\')")'
],
'dependencies': [
'deps/libffi/libffi.gyp:ffi'
],
'conditions': [
['OS=="win"', {
'sources': [
'src/win32-dlfcn.cc'
],
}],
['OS=="mac"', {
'xcode_settings': {
"MACOSX_DEPLOYMENT_TARGET":"10.9",
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'OTHER_CFLAGS': [
'-ObjC++'
]
},
'libraries': [
'-lobjc'
],
}]
]
}
]
}