From: Thibault Saunier Date: Wed, 3 Jun 2020 22:38:28 +0000 (-0400) Subject: doc: Require hotdoc >= 0.11.0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4decfddda2a4462c6e413b64aa52870f4f38e94;p=platform%2Fupstream%2Fgst-plugins-ugly.git doc: Require hotdoc >= 0.11.0 --- diff --git a/docs/meson.build b/docs/meson.build index 07a0f12c..6c5bf419 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -28,6 +28,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 + hotdoc = import('hotdoc') foreach extension: required_hotdoc_extensions if not hotdoc.has_extensions(extension)