mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 08:12:20 +00:00
meson: Include headers
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
parent
31985a040d
commit
1a9afaccbf
@ -70,6 +70,7 @@ lxcdefaultconfig = join_paths(sysconfdir, 'lxc/default.conf')
|
||||
lxcglobalconfig = join_paths(sysconfdir, globalconfig)
|
||||
lxcapparmorcachedir = join_paths(localstatedir, apparmorcachedir)
|
||||
lxcrootfsmount = join_paths(prefixdir, rootfsmount)
|
||||
lxcinclude = join_paths(includedir, 'lxc')
|
||||
lxclibexec = join_paths(libexecdir, 'lxc')
|
||||
lxclogpath = join_paths(localstatedir, logpath)
|
||||
lxcpath = join_paths(localstatedir, lxcpathprefix)
|
||||
|
@ -1,9 +1,28 @@
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
liblxcfs_attach_file = configure_file(
|
||||
configuration: dummy_config_data,
|
||||
input: 'attach_options.h',
|
||||
output: 'attach_options.h',
|
||||
install: true,
|
||||
install_dir: lxcinclude
|
||||
)
|
||||
|
||||
liblxcfs_header_file = configure_file(
|
||||
configuration: dummy_config_data,
|
||||
input: 'lxccontainer.h',
|
||||
output: 'lxccontainer.h',
|
||||
install: true,
|
||||
install_dir: lxcinclude
|
||||
)
|
||||
|
||||
liblxcfs_version_file = configure_file(
|
||||
configuration: version_data,
|
||||
input: 'version.h.in',
|
||||
output: 'version.h')
|
||||
output: 'version.h',
|
||||
install: true,
|
||||
install_dir: lxcinclude
|
||||
)
|
||||
|
||||
liblxc_sources = files(
|
||||
'cgroups/cgfsng.c',
|
||||
|
Loading…
Reference in New Issue
Block a user