From f246d20fa6b60e1512e1911e8984b299162cd53e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20M=C3=ADchal?= Date: Thu, 23 Jul 2020 17:17:38 +0200 Subject: [PATCH] build: Install the tests Installing the tests will let downstream distributors like Fedora run them as part of their build and CI systems. https://github.com/containers/toolbox/pull/511 --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index 45b14573f..79443130d 100644 --- a/meson.build +++ b/meson.build @@ -28,6 +28,11 @@ if bash_completion.found() ) endif +install_subdir( + 'test', + install_dir: join_paths(get_option('datadir'), meson.project_name()) +) + subdir('data') subdir('doc') subdir('profile.d')