summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-08-11 13:57:42 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2018-08-11 22:56:33 +0200
commit11085f91c24dd895dfd1e9d02a71f1a3346e3c00 (patch)
tree8e56a2f455e0a1335c912674759e8bf0c3ec7b6a /docs
parent4ef809a42f55adec9d32210867028aa502639a88 (diff)
downloaddconf-11085f91c24dd895dfd1e9d02a71f1a3346e3c00.tar.gz
build: Do not make heavy use of project_name
The current meson build files make heavy use of meson's `project_name` function. However this makes difficult for any developer to find for given program/library/file names. The project name is also never going to change. Due to this reason these calls have been changed for `dconf` itself.
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/meson.build b/docs/meson.build
index ed3e45a..46905fd 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -1,16 +1,16 @@
if get_option('gtk_doc')
gnome.gtkdoc(
- meson.project_name(),
- main_xml: meson.project_name() + '-docs.xml',
+ 'dconf',
+ main_xml: 'dconf-docs.xml',
src_dir: [
common_inc,
client_inc
],
dependencies: libdconf_dep,
scan_args: '--rebuild-types',
- gobject_typesfile: meson.project_name() + '.types',
+ gobject_typesfile: 'dconf.types',
install: true,
- install_dir: join_paths(dconf_prefix, gnome.gtkdoc_html_dir(meson.project_name()))
+ install_dir: join_paths(dconf_prefix, gnome.gtkdoc_html_dir('dconf'))
)
endif