-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinding.gyp
49 lines (48 loc) · 1.1 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"variables": {
"DN_DICT": "<!(node -e \"process.stdout.write(process.cwd() + '/build/Release')\")"
},
"targets": [
{
"target_name": "<(module_name)",
"sources": [ "addon.cc", "<(module_name).cc"],
"include_dirs": [
"<!(node -e \"require('nan')\")",
],
"dependencies": [
"deps/open_jtalk.gyp:open_jtalk_lib"
],
'cflags':[
],
"defines": [
"DN_DICT=\"<(DN_DICT)\""
],
"conditions": [
['OS=="mac"', {
'cflags':[
"-stdlib=stdlibc++",
],
'xcode_settings': {
'OTHER_CFLAGS': [
"-stdlib=libstdc++",
],
"CLANG_CXX_LIBRARY": "libstdc++",
"GCC_ENABLE_CPP_RTTI": "YES",
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
}
}],
]
},
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "<(module_name)" ],
"copies": [
{
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
"destination": "<(module_path)/"
}
]
},
]
}