mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 16:18:16 +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)
|
lxcglobalconfig = join_paths(sysconfdir, globalconfig)
|
||||||
lxcapparmorcachedir = join_paths(localstatedir, apparmorcachedir)
|
lxcapparmorcachedir = join_paths(localstatedir, apparmorcachedir)
|
||||||
lxcrootfsmount = join_paths(prefixdir, rootfsmount)
|
lxcrootfsmount = join_paths(prefixdir, rootfsmount)
|
||||||
|
lxcinclude = join_paths(includedir, 'lxc')
|
||||||
lxclibexec = join_paths(libexecdir, 'lxc')
|
lxclibexec = join_paths(libexecdir, 'lxc')
|
||||||
lxclogpath = join_paths(localstatedir, logpath)
|
lxclogpath = join_paths(localstatedir, logpath)
|
||||||
lxcpath = join_paths(localstatedir, lxcpathprefix)
|
lxcpath = join_paths(localstatedir, lxcpathprefix)
|
||||||
|
@ -1,9 +1,28 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# 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(
|
liblxcfs_version_file = configure_file(
|
||||||
configuration: version_data,
|
configuration: version_data,
|
||||||
input: 'version.h.in',
|
input: 'version.h.in',
|
||||||
output: 'version.h')
|
output: 'version.h',
|
||||||
|
install: true,
|
||||||
|
install_dir: lxcinclude
|
||||||
|
)
|
||||||
|
|
||||||
liblxc_sources = files(
|
liblxc_sources = files(
|
||||||
'cgroups/cgfsng.c',
|
'cgroups/cgfsng.c',
|
||||||
|
Loading…
Reference in New Issue
Block a user