mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
13 lines
493 B
Meson
13 lines
493 B
Meson
mans = ['picom.1', 'picom-trans.1']
|
|
if get_option('with_docs')
|
|
a2x = find_program('a2x')
|
|
foreach m : mans
|
|
custom_target(m, output: [m], input: [m+'.asciidoc'],
|
|
command: [a2x, '-a',
|
|
'picom-version='+version,
|
|
'--format', 'manpage', '@INPUT@', '-D',
|
|
meson.current_build_dir()],
|
|
install: true,
|
|
install_dir: join_paths(get_option('mandir'), 'man1'))
|
|
endforeach
|
|
endif
|