Do not use dot in doxygen even if it is installed so list of generated files is always the same.

pull/2145/merge
Jussi Pakkanen 7 years ago
parent 6fab0430be
commit 0a5bba1937
  1. 6
      test cases/frameworks/14 doxygen/meson.build

@ -9,7 +9,11 @@ cdata = configuration_data()
cdata.set('VERSION', meson.project_version())
if find_program('dot', required : false).found()
cdata.set('HAVE_DOT', 'YES')
# In the real world this would set the variable
# to YES. However we set it to NO so that the
# list of generated files is always the same
# so tests always pass.
cdata.set('HAVE_DOT', 'NO')
else
cdata.set('HAVE_DOT', 'NO')
endif

Loading…
Cancel
Save