summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/meson.build28
-rw-r--r--meson.build6
2 files changed, 16 insertions, 18 deletions
diff --git a/docs/meson.build b/docs/meson.build
index d74eedf..47f9062 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -1,16 +1,18 @@
-gnome.gtkdoc(
- meson.project_name(),
- main_xml: meson.project_name() + '-docs.xml',
- src_dir: [
- common_inc,
- client_inc
- ],
- dependencies: libdconf_dep,
- scan_args: '--rebuild-types',
- gobject_typesfile: meson.project_name() + '.types',
- install: true,
- install_dir: join_paths(dconf_datadir, 'gtk-doc', 'html', meson.project_name())
-)
+if get_option('enable-gtk-doc')
+ gnome.gtkdoc(
+ meson.project_name(),
+ main_xml: meson.project_name() + '-docs.xml',
+ src_dir: [
+ common_inc,
+ client_inc
+ ],
+ dependencies: libdconf_dep,
+ scan_args: '--rebuild-types',
+ gobject_typesfile: meson.project_name() + '.types',
+ install: true,
+ install_dir: join_paths(dconf_datadir, 'gtk-doc', 'html', meson.project_name())
+ )
+endif
if get_option('enable-man')
xsltproc = find_program('xsltproc', required: false)
diff --git a/meson.build b/meson.build
index cddf083..d123932 100644
--- a/meson.build
+++ b/meson.build
@@ -105,9 +105,5 @@ subdir('gdbus')
subdir('gsettings')
subdir('client')
subdir('bin')
-
-if get_option('enable-gtk-doc')
- subdir('docs')
-endif
-
+subdir('docs')
subdir('tests')