From f77135f30729eca3da9a67b79c20453bbc5b05a6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Oct 2018 15:54:14 +0200 Subject: [PATCH] meson.build: install README, NEWS etc. --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index 09a139278..ab4afecf8 100644 --- a/meson.build +++ b/meson.build @@ -442,6 +442,11 @@ if systemd_dep.found() subdir('systemd') endif +install_data( + 'AUTHORS', 'COPYING', 'NEWS', 'README.md', + install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()), +) + if get_option('documentation') subdir('doc') endif