summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2020-06-03 18:35:32 -0400
committerThibault Saunier <tsaunier@igalia.com>2020-06-03 18:35:32 -0400
commitf1cb5bf471db405c4ac5611387275bb0b760f908 (patch)
tree42e6aa1a2f718d63878cfef69c41840a8d956b33 /docs
parentbfb95d6b74a0a65280f8b45682199c88f982a524 (diff)
downloadgst-libav-f1cb5bf471db405c4ac5611387275bb0b760f908.tar.gz
doc: Require hotdoc >= 0.11.0
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/meson.build b/docs/meson.build
index cc0ee51..967c278 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -35,6 +35,17 @@ if not hotdoc_p.found()
subdir_done()
endif
+hotdoc_req = '>= 0.11.0'
+hotdoc_version = run_command(hotdoc_p, '--version').stdout()
+if not hotdoc_version.version_compare(hotdoc_req)
+ if get_option('doc').enabled()
+ error('Hotdoc version @0@ not found, got @1@'.format(hotdoc_req, hotdoc_version))
+ else
+ message('Hotdoc version @0@ not found, got @1@'.format(hotdoc_req, hotdoc_version))
+ subdir_done()
+ endif
+endif
+
build_hotdoc = true
hotdoc = import('hotdoc')
docconf = configuration_data()