From 6c8a8c1a81107c45e887b1727e1964e8e936c156 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Thu, 14 Apr 2022 14:24:55 +0200 Subject: scripts/meson.build: install code coverage scripts Those scripts are needed at runtime. So, place them under bindir. Reviewed-by: Andrzej Hajda Signed-off-by: Mauro Carvalho Chehab --- scripts/meson.build | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 scripts/meson.build (limited to 'scripts') diff --git a/scripts/meson.build b/scripts/meson.build new file mode 100644 index 00000000..342972e6 --- /dev/null +++ b/scripts/meson.build @@ -0,0 +1,13 @@ +scripts = [ + 'code_cov_capture', + 'code_cov_gather_on_build', + 'code_cov_gather_on_test', + 'code_cov_gen_report', + 'code_cov_parse_info', +] + +if build_tests + foreach prog : scripts + install_data(prog, install_dir : bindir, install_mode : 'r-xr-xr-x') + endforeach +endif -- cgit v1.2.3