meson: docs is not an option of gst-docs

Simply error out if hotdoc's version isn't recent enough
parent project can then decide whether gst-docs was required.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/98>
This commit is contained in:
Mathieu Duponchelle 2020-06-24 14:27:27 +02:00
parent 059f092ca4
commit 09d81b517e

View file

@ -11,12 +11,7 @@ endif
hotdoc_req = '>= 0.12.2'
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
error('Hotdoc version @0@ not found, got @1@'.format(hotdoc_req, hotdoc_version))
endif
hotdoc = import('hotdoc')
@ -137,4 +132,4 @@ run_target('release',
meson.project_version(),
meson.current_build_dir()],
depends: [gstreamer_doc]
)
)