forked from hooklift/node-libvirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
35 lines (35 loc) · 751 Bytes
/
binding.gyp
File metadata and controls
35 lines (35 loc) · 751 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': [
'src/node_libvirt.cc',
'src/event_impl.cc',
'src/domain.cc',
'src/error.cc',
'src/hypervisor.cc',
'src/interface.cc',
'src/network.cc',
'src/network_filter.cc',
'src/node_device.cc',
'src/secret.cc',
'src/storage_pool.cc',
'src/storage_volume.cc',
'src/stream.cc',
],
'conditions': [
['OS!="win"', {
'link_settings': {
'libraries': [
'<!@(pkg-config --libs libvirt)'
]
},
'cflags': [
'<!@(pkg-config --cflags libvirt)'
],
}]
]
}
]
}