forked from victorenator/node-sd-daemon
-
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) · 765 Bytes
/
binding.gyp
File metadata and controls
27 lines (27 loc) · 765 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": "daemon",
"sources": [ "src/daemon.cc" ],
"libraries": [
"<!@(pkg-config --libs-only-l libsystemd-daemon)"
]
},
{
"target_name": "install_daemon_node",
"dependencies": ["daemon"],
"actions": [
{
"action_name": "install_daemon_node",
"inputs": [
"<@(PRODUCT_DIR)/daemon.node"
],
"outputs": [
"daemon.node"
],
"action": ["cp", "<@(PRODUCT_DIR)/daemon.node", "daemon.node"]
}
]
}
]
}