1From 2b74a5b160c0500291c554ab5c0944f502e72a42 Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linaro.org> 3Date: Thu, 9 Jul 2020 20:00:53 +0200 4Subject: [PATCH] meson.build: WORKAROUND Remove vulkan dependency 5MIME-Version: 1.0 6Content-Type: text/plain; charset=UTF-8 7Content-Transfer-Encoding: 8bit 8 9We need a patch in the source code to allow enable when DISTRO_FEATURES 10contains vulkan. 11 12Signed-off-by: Aníbal Limón <anibal.limon@linaro.org> 13--- 14 meson.build | 6 ------ 15 1 file changed, 6 deletions(-) 16 17diff --git a/meson.build b/meson.build 18index db97c26..4c1b865 100644 19--- a/meson.build 20+++ b/meson.build 21@@ -3,21 +3,15 @@ project('parallel-deqp-runner', ['c', 'cpp'], 22 cpp = meson.get_compiler('cpp') 23 24 thread_dep = dependency('threads') 25-vulkan_dep = dependency('vulkan') 26 27 fs_dep = cpp.find_library('stdc++fs', required : false) 28 if not fs_dep.found() 29 fs_dep = cpp.find_library('c++fs') 30 endif 31 32- 33 deqp_runner = executable('deqp-runner', 34 'src/deqp-runner.cc', 35 dependencies : [thread_dep, fs_dep], 36 install : true) 37 38-executable('hang-detection', 39- 'src/hang_detection.c', 40- dependencies: [vulkan_dep]) 41- 42 subdir('test') 43