summaryrefslogtreecommitdiff
path: root/help/reference/libview
diff options
context:
space:
mode:
Diffstat (limited to 'help/reference/libview')
-rw-r--r--help/reference/libview/Makefile.am2
-rw-r--r--help/reference/libview/libatrilview-sections.txt1
-rw-r--r--help/reference/libview/meson.build31
3 files changed, 33 insertions, 1 deletions
diff --git a/help/reference/libview/Makefile.am b/help/reference/libview/Makefile.am
index 08164f10..a3e0cf3e 100644
--- a/help/reference/libview/Makefile.am
+++ b/help/reference/libview/Makefile.am
@@ -133,6 +133,8 @@ EXTRA_DIST += \
# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
#DISTCLEANFILES +=
+DISTCLEANFILES = $(DOC_MODULE).actions
+
# Comment this out if you want your docs-status tested during 'make check'
if ENABLE_GTK_DOC
#TESTS_ENVIRONMENT = cd $(srcsrc) &&
diff --git a/help/reference/libview/libatrilview-sections.txt b/help/reference/libview/libatrilview-sections.txt
index b888273f..394ec3be 100644
--- a/help/reference/libview/libatrilview-sections.txt
+++ b/help/reference/libview/libatrilview-sections.txt
@@ -314,7 +314,6 @@ EV_STOCK_RESIZE_SW
EV_STOCK_CLOSE
EV_STOCK_INVERTED_COLORS
ev_stock_icons_init
-ev_stock_icons_shutdown
ev_stock_icons_set_screen
</SECTION>
diff --git a/help/reference/libview/meson.build b/help/reference/libview/meson.build
new file mode 100644
index 00000000..776c13f4
--- /dev/null
+++ b/help/reference/libview/meson.build
@@ -0,0 +1,31 @@
+version_conf = configuration_data()
+version_conf.set('VERSION', version)
+
+version_xml = configure_file(
+ input: 'version.xml.in',
+ output: 'version.xml',
+ configuration: version_conf,
+)
+
+libview_doc_deps = declare_dependency(
+ include_directories: [include_root, libdoc_include, libview_include, include_directories('.')],
+ link_with: libview,
+ dependencies: libdoc_deps,
+)
+
+gnome.gtkdoc(
+ 'libview',
+ mode: 'xml',
+ main_xml: 'libview-docs.xml',
+ gobject_typesfile: files('libview.types'),
+ src_dir: [
+ join_paths(meson.source_root(), 'libview'),
+ ],
+ ignore_headers: [libview_private_headers],
+ dependencies: libview_doc_deps,
+ mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'],
+ cflags: '-DATRIL_COMPILATION',
+ fixxref_args: fixref_args,
+ install: true,
+ install_dir: 'libview-' + api_version,
+)