1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#(cd C; for i in *.{page,xml}; do echo " '$i',"; done;)
help_pages = [
'advanced-clipboard.page',
'advanced-marks.page',
'basics-create-new-file.page',
'basics-edit-file.page',
'basics-find-replace.page',
'basics-open-file.page',
'basics-save-file.page',
'conf-grouptype.page',
'conf-preferences.page',
'index.page',
'tools-chartable.page',
'tools-converter.page',
'legal.xml',
]
# TODO: figures
gnome.yelp(
meson.project_name(),
sources: help_pages,
)
if get_option('static-html-help')
custom_target('static-html-help',
output : 'HTML',
input : 'HTML.tar.gz',
command : [find_program('tar'), 'xvf', '@INPUT@', '-C', '@OUTDIR@'],
install : true,
install_dir : ghex_docdir)
endif
|