aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch
blob: 02ef3cce76e910eeb05ff5ea5c7e7b3bd294b0e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
From 2b74a5b160c0500291c554ab5c0944f502e72a42 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linaro.org>
Date: Thu, 9 Jul 2020 20:00:53 +0200
Subject: [PATCH] meson.build: WORKAROUND Remove vulkan dependency
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

We need a patch in the source code to allow enable when DISTRO_FEATURES
contains vulkan.

Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
---
Upstream-Status: Pending

 meson.build | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/meson.build b/meson.build
index db97c26..4c1b865 100644
--- a/meson.build
+++ b/meson.build
@@ -3,21 +3,15 @@ project('parallel-deqp-runner', ['c', 'cpp'],
 cpp = meson.get_compiler('cpp')
 
 thread_dep = dependency('threads')
-vulkan_dep = dependency('vulkan')
 
 fs_dep = cpp.find_library('stdc++fs', required : false)
 if not fs_dep.found()
     fs_dep = cpp.find_library('c++fs')
 endif
 
-
 deqp_runner = executable('deqp-runner',
            'src/deqp-runner.cc',
            dependencies : [thread_dep, fs_dep],
            install : true)
 
-executable('hang-detection',
-           'src/hang_detection.c',
-           dependencies: [vulkan_dep])
-
 subdir('test')