forked from sweetpi/nsutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinding.gyp
86 lines (84 loc) · 2.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"variables": {
"conditions": [
["OS=='mac'", {
"target_os%": "osx"
}],
["OS=='linux'", {
"target_os%": "linux"
}]
]
},
"conditions": [
[ "OS=='mac'", {
"targets": [
{
"target_name": "nsutil_osx",
'sources': [
'./src/sutil/sutil_common.cpp',
'./src/sutil/osx/process_info.cpp',
'./src/sutil/sutil_osx.cpp',
'./src/sutil/sutil_posix.cpp',
'./src/nsutil/nsutil_osx_funcs.cpp',
'./src/nsutil/nsutil_osx_funcs_async.cpp',
'./src/nsutil/nsutil_osx.cpp'
],
"cflags_cc": ["-std=c++11"]
},
{
"target_name": "nsutil_posix_osx",
"sources": [
'./src/sutil/sutil_posix.cpp',
'./src/nsutil/nsutil_posix_funcs.cpp',
'./src/nsutil/nsutil_posix.cpp'
],
"cflags_cc": ["-std=c++11"]
}
],
'xcode_settings': {
'OTHER_CPLUSPLUSFLAGS' : ['-std=c++11'],
'OTHER_LDFLAGS': [
'-framework CoreFoundation -framework IOKit'
]
}
}],
[ "OS=='linux'", {
"targets": [
{
"target_name": "nsutil_linux",
"sources": [
"./src/sutil/sutil_linux.cpp",
"./src/nsutil/nsutil_linux_funcs.cpp",
"./src/nsutil/nsutil_linux.cpp"
],
"cflags_cc": ["-std=c++0x"]
},
{
"target_name": "nsutil_posix_linux",
"sources": [
'./src/sutil/sutil_posix.cpp',
'./src/nsutil/nsutil_posix_funcs.cpp',
'./src/nsutil/nsutil_posix.cpp'
],
"cflags_cc": ["-std=c++0x"]
}
]
}]
],
"targets": [
{
"target_name": "action_after_build",
"type": "none",
"dependencies": [ "nsutil_<(target_os)", "nsutil_posix_<(target_os)" ],
"copies": [
{
"files": [
"<(module_root_dir)/build/Release/nsutil_<(target_os).node",
"<(module_root_dir)/build/Release/nsutil_posix_<(target_os).node"
],
"destination": "<(module_root_dir)/build/Release/<(target_arch)/"
}
]
}
]
}