summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-09-13 19:54:37 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-09-13 19:54:37 +0200
commit6d07bfe291edf7dc62bbf088f6002f604353b684 (patch)
treeef6b47ac8172c7a481101031fb54a740cc65841e /docs
parent18cc1ddcc6ca09df3b053efb01cc8f21b7e201f9 (diff)
downloadglibmm-6d07bfe291edf7dc62bbf088f6002f604353b684.tar.gz
Meson build: Add missing Glib::Value and Variant documentation
The value_basictypes.h and variant_basictypes.h files, which are generated from .m4 files, were not included in the input to Doxygen.
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/reference/meson.build b/docs/reference/meson.build
index 790d1434..2ea2cc71 100644
--- a/docs/reference/meson.build
+++ b/docs/reference/meson.build
@@ -3,7 +3,8 @@
# Input: built_files_root, project_source_root, glibmm_pcname, giomm_pcname,
# glibmm_hg_ccg_basenames, giomm_hg_ccg_basenames, build_documentation,
# glibmm_extra_h_files, giomm_extra_h_files, glibmm_built_h_file_targets,
-# giomm_built_h_file_targets, install_datadir,python3, doc_reference_py
+# giomm_built_h_file_targets, glibmm_h_m4_files, install_datadir,
+# python3, doc_reference_py
# Output: install_docdir, install_devhelpdir
tag_file_modules = [
@@ -71,6 +72,9 @@ built_h_files = []
foreach file : glibmm_hg_ccg_basenames
built_h_files += built_files_root / 'glib' / 'glibmm' / file + '.h'
endforeach
+foreach file : glibmm_h_m4_files
+ built_h_files += built_files_root / 'glib' / 'glibmm' / file
+endforeach
foreach file : giomm_hg_ccg_basenames
built_h_files += built_files_root / 'gio' / 'giomm' / file + '.h'
endforeach