From 510f6834ea31875e8ed9af508ed9017a42c72c8d Mon Sep 17 00:00:00 2001 From: Scoopta Date: Tue, 25 Feb 2020 23:06:00 -0800 Subject: [PATCH] The man pages will now be installed when doing ninja install --- meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meson.build b/meson.build index 90bd2b8..b14e4d5 100644 --- a/meson.build +++ b/meson.build @@ -44,4 +44,14 @@ if get_option('enable_dmenu') sources += ['modes/dmenu.c'] endif +install_man('man/wofi.1', + 'man/wofi.3', + 'man/wofi.5', + 'man/wofi.7', + 'man/wofi-api.3', + 'man/wofi-config.3', + 'man/wofi-keys.7', + 'man/wofi-map.3', + 'man/wofi-utils.3') + executable(meson.project_name(), sources, include_directories : inc, dependencies : deps, install : true)