summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2019-07-09 10:03:35 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-10 09:56:22 +0100
commit17dab685206b6a7582520f037943800709e36b1c (patch)
treeb797fe158fb4c38d6edae26409ad68f0b4aac7d3 /meta/recipes-graphics
parente8131220eccce28dfa57287a43cf366bcdfb6677 (diff)
downloadpoky-17dab685206b6a7582520f037943800709e36b1c.tar.gz
vulkan-tools: add recipe
Vulkan tools and utilities that can assist development by enabling developers to verify their applications correct use of the Vulkan API. DEPENDS on vulkan-headers and vulkan-loader. (From OE-Core rev: c4db69fc0d8d46a396ee744fddad0300ec730f46) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/vulkan/vulkan-tools_1.1.108.bb31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-tools_1.1.108.bb b/meta/recipes-graphics/vulkan/vulkan-tools_1.1.108.bb
new file mode 100644
index 0000000000..26cdee3c14
--- /dev/null
+++ b/meta/recipes-graphics/vulkan/vulkan-tools_1.1.108.bb
@@ -0,0 +1,31 @@
1SUMMARY = "Vulkan Utilities and Tools"
2HOMEPAGE = "https://www.khronos.org/vulkan/"
3BUGTRACKER = "https://github.com/KhronosGroup/Vulkan-Tools"
4SECTION = "libs"
5
6LICENSE = "Apache-2.0"
7LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
8SRC_URI = "git://github.com/KhronosGroup/Vulkan-Tools.git;branch=sdk-${PV}"
9SRCREV = "3ccd7f6ebae3e1919adf837718c04feb6c2acc61"
10
11S = "${WORKDIR}/git"
12
13inherit cmake distro_features_check
14ANY_OF_DISTRO_FEATURES = "x11 wayland"
15REQUIRED_DISTRO_FEATURES = "vulkan"
16
17DEPENDS += "vulkan-headers vulkan-loader"
18
19EXTRA_OECMAKE = "\
20 -DBUILD_TESTS=OFF \
21 -DBUILD_CUBE=OFF \
22 -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 \
23 "
24
25# must choose x11 or wayland or both
26PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
27
28PACKAGECONFIG[x11] = "-DBUILD_WSI_XLIB_SUPPORT=ON -DBUILD_WSI_XCB_SUPPORT=ON, -DBUILD_WSI_XLIB_SUPPORT=OFF -DBUILD_WSI_XCB_SUPPORT=OFF, libxcb libx11 libxrandr"
29PACKAGECONFIG[wayland] = "-DBUILD_WSI_WAYLAND_SUPPORT=ON, -DBUILD_WSI_WAYLAND_SUPPORT=OFF, wayland"
30
31UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)"