mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
33 lines
868 B
Meson
33 lines
868 B
Meson
|
ronn = find_program('ronn', required: false)
|
||
|
if ronn.found()
|
||
|
run_target('update-manpage',
|
||
|
command: [ ronn, files(
|
||
|
'rofi-manpage.markdown',
|
||
|
'rofi-theme-manpage.markdown',
|
||
|
)]
|
||
|
)
|
||
|
endif
|
||
|
|
||
|
doxy_conf = configuration_data()
|
||
|
doxy_conf.set('PACKAGE', meson.project_name())
|
||
|
doxy_conf.set('VERSION', meson.project_version())
|
||
|
doxy_conf.set('abs_builddir', join_paths(meson.build_root(), meson.current_build_dir()))
|
||
|
doxy_conf.set('abs_top_srcdir', meson.source_root())
|
||
|
|
||
|
doxyfile = configure_file(
|
||
|
input: 'rofi.doxy.in',
|
||
|
output: 'rofi.doxy',
|
||
|
configuration: doxy_conf,
|
||
|
install: false,
|
||
|
)
|
||
|
|
||
|
doxygen = find_program('doxygen', required: false)
|
||
|
if doxygen.found()
|
||
|
html_target = custom_target('doxy',
|
||
|
input: doxyfile,
|
||
|
output: 'html',
|
||
|
command: [doxygen, doxyfile],
|
||
|
install: false,
|
||
|
)
|
||
|
endif
|