40 lines
1.1 KiB
Diff
40 lines
1.1 KiB
Diff
From 61993aa96e49a72697ce6e6fe6b54d7758d60708 Mon Sep 17 00:00:00 2001
|
|
From: Christophe Marin <christophe@krop.fr>
|
|
Date: Thu, 26 Oct 2023 21:03:47 +0200
|
|
Subject: [PATCH] Disable some plugins
|
|
|
|
- The updateinfo plugin only works when using the installer
|
|
|
|
- The clangformat plugin requires a clang patch which was never accepted upstream [1]
|
|
|
|
[1] https://reviews.llvm.org/D53072
|
|
---
|
|
src/plugins/CMakeLists.txt | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
|
|
index 6564526..51a5fce 100644
|
|
--- a/src/plugins/CMakeLists.txt
|
|
+++ b/src/plugins/CMakeLists.txt
|
|
@@ -9,7 +9,7 @@ add_subdirectory(extensionmanager)
|
|
add_subdirectory(helloworld)
|
|
add_subdirectory(imageviewer)
|
|
add_subdirectory(screenrecorder)
|
|
-add_subdirectory(updateinfo)
|
|
+# add_subdirectory(updateinfo)
|
|
add_subdirectory(welcome)
|
|
|
|
# Level 2: (only depends on Level 1 and below)
|
|
@@ -74,7 +74,7 @@ add_subdirectory(copilot)
|
|
add_subdirectory(gitlab)
|
|
add_subdirectory(qmljseditor)
|
|
add_subdirectory(python)
|
|
-add_subdirectory(clangformat)
|
|
+# add_subdirectory(clangformat)
|
|
add_subdirectory(cmakeprojectmanager)
|
|
|
|
# Level 7:
|
|
--
|
|
2.49.0
|
|
|