forked from ARyaskov/mmap-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
32 lines (32 loc) · 838 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
{
"targets": [{
"target_name": "mmap_io",
"sources": [ "src/mmap-io.cc" ],
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++17"
],
"conditions": [
[ 'OS=="mac"',
{ "xcode_settings": {
'OTHER_CPLUSPLUSFLAGS' : ['-std=c++17','-stdlib=libc++'],
'OTHER_LDFLAGS': ['-stdlib=libc++'],
'MACOSX_DEPLOYMENT_TARGET': '10.8'
}}
]
]
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)"
}
]
}]
}