Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKonstantin Pavlov <thresh@videolan.org>2020-03-06 17:05:50 +0300
committerKonstantin Pavlov <thresh@videolan.org>2020-03-06 21:51:55 +0300
commitc4dea948cb87cab375a4c54859ad75442a388b7d (patch)
treeba08b2379c4d4bdc2c980435dc8b9625b3f5f10d /doc
parente04227c5f6729b460e0b8e5fb52eae2d5acd15ef (diff)
doc: search for dot as it's needed to build doxygen documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index ed826a5..4badbf6 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -23,8 +23,9 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
doxygen = find_program('doxygen', required: false)
+dot = find_program('dot', required: false)
-if doxygen.found()
+if doxygen.found() and dot.found()
conf_data = configuration_data()
conf_data.set('DOXYGEN_INPUT', join_paths(meson.source_root(), 'include/dav1d'))
conf_data.set('DOXYGEN_STRIP', join_paths(meson.source_root(), 'include'))