blob: ab9f29130ea5fa168af484b596f2eb0e16bf887b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
project('vulkan test', 'c')
method = get_option('method')
vulkan_dep = dependency('vulkan', required : false, method : method)
if not vulkan_dep.found()
error('MESON_SKIP_TEST: vulkan not found.')
endif
e = executable('vulkanprog', 'vulkanprog.c', dependencies : vulkan_dep)
test('vulkantest', e)
# Check we can apply a version constraint
dependency('vulkan', version: '>=@0@'.format(vulkan_dep.version()))
|