forked from vmngr/libvirt-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinding.gyp
More file actions
27 lines (27 loc) · 801 Bytes
/
binding.gyp
File metadata and controls
27 lines (27 loc) · 801 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
{
"targets": [
{
"target_name": "virt",
"product_prefix": "lib",
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"defines": [ "NAPI_DISABLE_CPP_EXCEPTIONS" ],
"sources": [
"src/libvirt.cc",
"src/worker.cc",
"src/hypervisor.cc",
"src/hypervisor-connect.cc",
"src/hypervisor-domain.cc",
"src/hypervisor-node.cc",
"src/domain.cc"
],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")",
"."
],
"link_settings": {
"libraries": [ "-lvirt" ]
}
}
]
}