meson: Add lxc-attach

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2022-05-01 10:21:50 +02:00
parent 2f1bf5f58b
commit 0940e81168
No known key found for this signature in database
GPG Key ID: C638974D64792D67

View File

@ -109,6 +109,9 @@ tools_common_sources = files(
'../log.h',
'../log.c') + include_sources + netns_ifaddrs_sources
tools_lxc_attach_sources = files(
'lxc_attach.c') + tools_common_sources
tools_lxc_autostart_sources = files(
'lxc_autostart.c') + tools_common_sources
@ -172,6 +175,13 @@ tools_lxc_unshare_sources = files(
tools_lxc_wait_sources = files(
'lxc_wait.c') + tools_common_sources
public_programs += executable(
'lxc-attach',
tools_lxc_attach_sources,
include_directories: tools_liblxc_includes,
dependencies: liblxc_dep,
install: true)
public_programs += executable(
'lxc-autostart',
tools_lxc_autostart_sources,