tests: skip vulkan test if vulkan not found

pull/2803/head
Dylan Baker 7 years ago
parent f5458edff6
commit c61da9f4a9
  1. 5
      test cases/frameworks/18 vulkan/meson.build

@ -1,6 +1,9 @@
project('vulkan test', 'c')
vulkan_dep = dependency('vulkan')
vulkan_dep = dependency('vulkan', required : false)
if not vulkan_dep.found()
error('MESON_SKIP_TEST: vulkan not found.')
endif
e = executable('vulkanprog', 'vulkanprog.c', dependencies : vulkan_dep)

Loading…
Cancel
Save