Andrew Geissler | 26e4bea | 2020-11-30 19:54:03 -0600 | [diff] [blame] | 1 | From 451e8458e45926e4e1c0433864ac4cf8b05d792b Mon Sep 17 00:00:00 2001 |
| 2 | From: Trevor Woerner <twoerner@gmail.com> |
| 3 | Date: Fri, 27 Nov 2020 03:12:26 -0500 |
| 4 | Subject: [PATCH] all host_applications: remove non-existent projects |
| 5 | |
| 6 | The ALL_APPS symbol will optionally build an additional set of projects, |
| 7 | however, several of them don't exist anymore. Remove them from the list of |
| 8 | ALL_APPS. |
| 9 | |
Patrick Williams | 864cc43 | 2023-02-09 14:54:44 -0600 | [diff] [blame] | 10 | Upstream-Status: Submitted [https://github.com/raspberrypi/userland/pull/661] |
Andrew Geissler | 26e4bea | 2020-11-30 19:54:03 -0600 | [diff] [blame] | 11 | Signed-off-by: Trevor Woerner <twoerner@gmail.com> |
| 12 | --- |
| 13 | host_applications/linux/CMakeLists.txt | 4 ---- |
| 14 | 1 file changed, 4 deletions(-) |
| 15 | |
| 16 | diff --git a/host_applications/linux/CMakeLists.txt b/host_applications/linux/CMakeLists.txt |
| 17 | index 928b637..554ae46 100644 |
| 18 | --- a/host_applications/linux/CMakeLists.txt |
| 19 | +++ b/host_applications/linux/CMakeLists.txt |
| 20 | @@ -14,10 +14,6 @@ add_subdirectory(apps/dtoverlay) |
| 21 | add_subdirectory(apps/dtmerge) |
| 22 | |
| 23 | if(ALL_APPS) |
| 24 | - add_subdirectory(apps/vcdbg) |
| 25 | - add_subdirectory(libs/elftoolchain) |
| 26 | - # add_subdirectory(apps/smct) |
| 27 | - add_subdirectory(apps/edid_parser) |
| 28 | add_subdirectory(apps/hello_pi) |
| 29 | endif() |
| 30 | |