]> git.proxmox.com Git - mirror_lxc.git/blame - templates/meson.build
meson: Cleanup build configs
[mirror_lxc.git] / templates / meson.build
CommitLineData
7172b98c
CB
1# SPDX-License-Identifier: LGPL-2.1-or-later
2
3template_scripts = configure_file(
20b03401
SG
4 configuration: dummy_config_data,
5 input: 'lxc-busybox.in',
6 output: 'lxc-busybox')
7install_data(join_paths(project_build_root, 'templates/lxc-busybox'), install_dir: lxctemplatedir)
7172b98c
CB
8
9template_config_data = configuration_data()
10template_config_data.set_quoted('LXCHOOKDIR', lxchookdir)
11template_config_data.set_quoted('LXCTEMPLATECONFIG', lxctemplateconfig)
12template_config_data.set_quoted('LOCALSTATEDIR', localstatedir)
13template_config_data.set_quoted('PACKAGE_VERSION', meson.project_version())
14
15template_scripts = configure_file(
20b03401
SG
16 configuration: template_config_data,
17 input: 'lxc-download.in',
18 output: 'lxc-download')
19install_data(join_paths(project_build_root, 'templates/lxc-download'), install_dir: lxchookdir)
7172b98c
CB
20
21template_scripts = configure_file(
20b03401
SG
22 configuration: template_config_data,
23 input: 'lxc-local.in',
24 output: 'lxc-local')
25install_data(join_paths(project_build_root, 'templates/lxc-local'), install_dir: lxchookdir)
7172b98c
CB
26
27template_scripts = configure_file(
20b03401
SG
28 configuration: template_config_data,
29 input: 'lxc-oci.in',
30 output: 'lxc-oci')
31install_data(join_paths(project_build_root, 'templates/lxc-oci'), install_dir: lxchookdir)