From a7820e1db71e5575170602834695283b492a5d7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 25 Jul 2020 09:08:11 +0200 Subject: [PATCH] meson: install LICENSE and README.md --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index e8b5128..f4c6780 100644 --- a/meson.build +++ b/meson.build @@ -122,6 +122,9 @@ yambar = executable( install: true, install_rpath: '$ORIGIN/../' + get_option('libdir') + '/yambar') +install_data( + 'LICENSE', 'README.md', + install_dir: join_paths(get_option('datadir'), 'doc', 'yambar')) install_data('yambar.desktop', install_dir: join_paths(get_option('datadir'), 'applications')) subdir('test')