-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinding.gyp
34 lines (34 loc) · 928 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
{
"variables": {
"openssl_fips" : "0"
},
"targets": [
{
"target_name": "NativeExtension",
"sources": [ ],
"include_dirs" : [
"<!(node -e \"require('nan')\")"
],
"link_settings": {
"conditions":[
['OS=="mac"', {
"sources": [
"NativeExtension.mm" ,
"functions_mac.mm"
],
"libraries": [
'Foundation.framework',
'AppKit.framework',
'ScriptingBridge.framework'
]
}
]]
},
"xcode_settings": {
"OTHER_CFLAGS": [
"-x objective-c++ -stdlib=libc++"
]
}
}
],
}