mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
06d879251b
Fixes #29 Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
10 lines
375 B
Meson
10 lines
375 B
Meson
mans = ['compton.1', 'compton-trans.1']
|
|
if get_option('build_docs')
|
|
a2x = find_program('a2x')
|
|
foreach m : mans
|
|
custom_target(m, output: [m], input: [m+'.asciidoc'],
|
|
command: [a2x, '--format', 'manpage', '@INPUT@',
|
|
'-D', meson.current_build_dir()],
|
|
install: true, install_dir: 'share/man/man1/')
|
|
endforeach
|
|
endif
|