summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-08-06 21:24:50 +0200
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2017-08-10 07:09:52 -0300
commitb51737387074356d9447e6aea4bc47e742a2ae6c (patch)
tree45fc502c438dc96767c3ce21c5e6bb7df7bba5a4 /doc
parent0e2f3db723f7008a0ba5f035b40a54afeb50a2d5 (diff)
downloadgnome-todo-b51737387074356d9447e6aea4bc47e742a2ae6c.tar.gz
project: Minor changes to meson port
This patch cleans a few things on the meson port which improves readibility. The list of changes is as follows: - Added configuration messages to the meson build file removing it from the configure_meson script. - Removed C99 as the C standard to be used, so the compiler's default will be used. - Moved some config.h definitions to an array list, which improves readibility. - Removed unnecessary array lists and commas. https://bugzilla.gnome.org/show_bug.cgi?id=785901
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/meson.build8
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/reference/meson.build b/doc/reference/meson.build
index bdc5bed5..2db0bf57 100644
--- a/doc/reference/meson.build
+++ b/doc/reference/meson.build
@@ -29,9 +29,7 @@ private_headers = [
'gtd-types.h'
]
-html_images = [
- 'images/notification.png'
-]
+html_images = 'images/notification.png'
version_conf = configuration_data()
version_conf.set('VERSION', gnome_todo_version)
@@ -59,7 +57,7 @@ gnome.gtkdoc(
dependencies: libgtd_dep,
scan_args: [
'--rebuild-types',
- '--ignore-headers=' + ' '.join(private_headers),
+ '--ignore-headers=' + ' '.join(private_headers)
],
mkdb_args: [
'--sgml-mode',
@@ -73,7 +71,7 @@ gnome.gtkdoc(
'--extra-dir=@0@'.format(join_paths(glib_doc_path, 'gio')),
'--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gdk')),
'--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gtk')),
- '--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gtksourceview-3.0')),
+ '--extra-dir=@0@'.format(join_paths(gtk_doc_path, 'gtksourceview-3.0'))
],
html_assets: html_images,
install: true,