-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbinding.gyp
More file actions
35 lines (35 loc) · 920 Bytes
/
binding.gyp
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"targets": [
{
"target_name": "libvirt",
'product_prefix': 'lib',
"sources": [
'generated/libvirt.c',
'generated/libvirt-exports.c',
'generated/libvirt-domain.c',
'generated/libvirt-connect.c',
'generated/libvirt-domain-snapshot.c',
'generated/libvirt-interface.c',
'generated/libvirt-network.c',
'generated/libvirt-nodedev.c',
'generated/libvirt-nwfilter.c',
'generated/libvirt-secret.c',
'generated/libvirt-storage-pool.c',
'generated/libvirt-storage-vol.c',
'generated/libvirt-stream.c',
],
'conditions': [
['OS!="win"', {
'link_settings': {
'libraries': [
'<!@(pkg-config --libs libvirt)'
]
},
'cflags': [
'<!@(pkg-config --cflags libvirt)'
],
}]
],
}
]
}