Files
flatpak/tests/test-keyring2/meson.build
Simon McVittie 435be4da14 meson: Depend on Meson 0.50.0
This sacrifices compatibility with Debian 10 to let us simplify how
tests are set up.

Signed-off-by: Simon McVittie <smcv@collabora.com>
2022-10-24 16:12:14 +01:00

18 lines
362 B
Meson

# Copyright 2022 Collabora Ltd.
# SPDX-License-Identifier: LGPL-2.1-or-later
foreach file : [
'README',
'pubring.gpg',
'secring.gpg',
]
configure_file(
input : file,
output : file,
copy : true,
install : get_option('installed_tests'),
install_dir : installed_testdir / 'test-keyring2',
install_mode : 'rw-r--r--',
)
endforeach