The man pages will now be installed when doing ninja install

This commit is contained in:
Scoopta 2020-02-25 23:06:00 -08:00
parent ab974be7ef
commit 510f6834ea

View File

@ -44,4 +44,14 @@ if get_option('enable_dmenu')
sources += ['modes/dmenu.c'] sources += ['modes/dmenu.c']
endif 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) executable(meson.project_name(), sources, include_directories : inc, dependencies : deps, install : true)