From 4e998cea15cf3d962473aa5faab99f939d9dc0dd Mon Sep 17 00:00:00 2001 From: Ricardo Ribalda Date: Thu, 24 Sep 2020 09:19:19 +0200 Subject: Documentation: Search for dot binary Doxygen depends on dot to generate the documentation. Make this dependency explicit on the meson file. Reviewed-by: Kieran Bingham Signed-off-by: Ricardo Ribalda Signed-off-by: Laurent Pinchart --- Documentation/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Documentation') diff --git a/Documentation/meson.build b/Documentation/meson.build index a09c7f27..7b497aee 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -8,8 +8,9 @@ doc_install_dir = join_paths(get_option('datadir'), 'doc', # doxygen = find_program('doxygen', required : false) +dot = find_program('dot', required : false) -if doxygen.found() +if doxygen.found() and dot.found() cdata = configuration_data() cdata.set('VERSION', 'v@0@'.format(libcamera_git_version)) cdata.set('TOP_SRCDIR', meson.source_root()) -- cgit v1.2.1