summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2017-09-19 23:59:39 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2017-09-19 23:59:39 -0300
commit5b7ded8279e89d875d7111ff87d2b1340e909b42 (patch)
treebff57f7c91c830e7ef93c837df6f5d027c05c093 /doc
parent450876ff23623397ae0485ad34dd74ff1e9dd140 (diff)
downloadgnome-todo-5b7ded8279e89d875d7111ff87d2b1340e909b42.tar.gz
project: fix build
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/meson.build27
1 files changed, 12 insertions, 15 deletions
diff --git a/doc/reference/meson.build b/doc/reference/meson.build
index 2db0bf57..1e59f143 100644
--- a/doc/reference/meson.build
+++ b/doc/reference/meson.build
@@ -37,8 +37,8 @@ version_conf.set('VERSION', gnome_todo_version)
version_xml = 'version.xml'
configure_file(
- input: version_xml + '.in',
- output: version_xml,
+ input: version_xml + '.in',
+ output: version_xml,
configuration: version_conf
)
@@ -52,19 +52,19 @@ doc_path = join_paths(gnome_todo_datadir, 'gtk-doc', 'html', meson.project_name(
gnome.gtkdoc(
meson.project_name(),
- main_sgml: meson.project_name() + '-docs.sgml',
- src_dir: src_inc,
- dependencies: libgtd_dep,
- scan_args: [
+ main_sgml: meson.project_name() + '-docs.sgml',
+ src_dir: src_inc,
+ dependencies: libgtd_dep,
+ mkdb_args: [ '--sgml-mode', '--output-format=xml' ],
+ html_assets: html_images,
+ install: true,
+ install_dir: doc_path
+ gobject_typesfile: meson.project_name() + '.types',
+ scan_args: [
'--rebuild-types',
'--ignore-headers=' + ' '.join(private_headers)
],
- mkdb_args: [
- '--sgml-mode',
- '--output-format=xml'
- ],
- gobject_typesfile: meson.project_name() + '.types',
- fixxref_args: [
+ fixxref_args: [
'--extra-dir=@0@'.format(join_paths(glib_doc_path, 'glib')),
'--extra-dir=@0@'.format(join_paths(glib_doc_path, 'gmodule')),
'--extra-dir=@0@'.format(join_paths(glib_doc_path, 'gobject')),
@@ -73,7 +73,4 @@ gnome.gtkdoc(
'--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gtk')),
'--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gtksourceview-3.0'))
],
- html_assets: html_images,
- install: true,
- install_dir: doc_path
)