mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:39:02 +02:00

* now I've used the right tool to hopefully find them all in one go: ../openembedded-core/scripts/contrib/patchreview.py . Total patches found: 70 Patches missing Signed-off-by: 17 (24%) Patches with malformed Signed-off-by: 0 (0%) Patches missing CVE: 1 (1%) Patches missing Upstream-Status: 32 (46%) Patches with malformed Upstream-Status: 0 (0%) Patches in Pending state: 8 (11%) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 5f4324a0008c2e8e1f511432f98bf85c9fffd35c Mon Sep 17 00:00:00 2001
|
|
From: Trevor Woerner <twoerner@gmail.com>
|
|
Date: Fri, 27 Nov 2020 03:18:50 -0500
|
|
Subject: [PATCH] hello_pi: optionally build wayland-specific app
|
|
|
|
Only build the wayland-specific hello_pi app when building for wayland.
|
|
|
|
Upstream-Status: Inappropriate [the wayland example is not part of upstream]
|
|
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
|
|
---
|
|
host_applications/linux/apps/hello_pi/CMakeLists.txt | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/host_applications/linux/apps/hello_pi/CMakeLists.txt b/host_applications/linux/apps/hello_pi/CMakeLists.txt
|
|
index 2849fad..7de3265 100644
|
|
--- a/host_applications/linux/apps/hello_pi/CMakeLists.txt
|
|
+++ b/host_applications/linux/apps/hello_pi/CMakeLists.txt
|
|
@@ -25,7 +25,9 @@ add_subdirectory(hello_encode)
|
|
add_subdirectory(hello_jpeg)
|
|
add_subdirectory(hello_videocube)
|
|
add_subdirectory(hello_teapot)
|
|
-add_subdirectory(hello_wayland)
|
|
+if (BUILD_WAYLAND)
|
|
+ add_subdirectory(hello_wayland)
|
|
+endif()
|
|
|
|
if(BUILD_FONT)
|
|
set(VGFONT_SRCS libs/vgfont/font.c libs/vgfont/vgft.c libs/vgfont/graphics.c)
|