Updates references from using underscore filenames to hyphen filenames for files...
[geeqie.git] / doc / meson.build
1 # This file is a part of Geeqie project (https://www.geeqie.org/).
2 # Copyright (C) 2008 - 2022 The Geeqie Team
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #
13
14 subdir('html')
15
16 guideindex_xml = files('docbook/GuideIndex.xml')
17 destdir = join_paths(meson.current_build_dir(), 'html/')
18 iconsdir = join_paths(meson.current_source_dir(), 'icons/')
19 guideindex_ln = join_paths(destdir, 'index.html')
20
21 # Not-found notification already handled by ../meson.build
22 if gnome_doc_tool.found()
23     run_command(gnome_doc_tool, 'html', '-o', destdir, '-p', iconsdir, guideindex_xml, check : false)
24     run_command(find_program('ln'), '-s', '-f', 'GuideIndex.html', guideindex_ln, check : false)
25 endif
26
27 install_subdir(destdir, install_dir : helpdir, exclude_directories : 'lua-api/latex')
28
29 doxygen = find_program('doxygen', required : false)
30 if doxygen.found()
31     srcdir = join_paths(meson.source_root())
32     destdir = join_paths(meson.build_root(), 'doc', 'html', 'lua-api')
33
34     run_command(find_program('create-doxygen-lua-api.sh'), srcdir, destdir, check : false)
35
36     summary({'lua-api' : ['lua-api help file created:', true]}, section : 'Documentation', bool_yn : true)
37 else
38     summary({'lua-api' : ['doxygen not found - lua-api help file created:', false]}, section : 'Documentation', bool_yn : true)
39 endif