forked from ianshade/grandiose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding.gyp
53 lines (53 loc) · 1.29 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
{
"targets": [
{
"target_name": "grandiose",
"sources": [
"src/grandiose_util.cc",
"src/grandiose_find.cc",
"src/grandiose_send.cc",
"src/grandiose_receive.cc",
"src/grandiose.cc"
],
"include_dirs": [ "include" ],
"conditions":[
["OS=='win'", {
"copies":[
{
"destination": "build/Release",
"files": [
"lib/win_x64/Processing.NDI.Lib.x64.dll"
]
}
],
"link_settings": {
"libraries": [ "Processing.NDI.Lib.x64.lib" ],
"library_dirs": [ "lib/win_x64" ]
},
}],
["OS=='linux'", {
"copies":[
{
"destination": "build/Release",
"files": [
"lib/linux_x64/libndi.so",
"lib/linux_x64/libndi.so.4",
"lib/linux_x64/libndi.so.4.5.3",
]
}
],
}],
["OS=='mac'", {
"copies":[
{
"destination": "build/Release",
"files": [
"lib/mac_x64/libndi.4.dylib"
]
}
],
}]
]
}
]
}