[PATCH] CMakeLists.txt - Don't include quiet packages in the feature

Fixes:
```
Missing these optional packages:
 * Qt6QmlCompilerPlusPrivateTools (required version >= 6.8.2)
```
This commit is contained in:
Christian Schendel 2025-10-12 21:26:52 +02:00
parent 6c490a2db3
commit 2f2b706adb
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
6 changed files with 404 additions and 3 deletions

12
CMakeLists.txt.patch Normal file
View file

@ -0,0 +1,12 @@
--- a/CMakeLists.txt 2025-10-12 20:44:40.198195458 +0200
+++ b/CMakeLists.txt 2025-10-12 20:51:08.350120229 +0200
@@ -99,8 +99,7 @@
install(FILES io.github.ebonjaeger.bluejay.svg
DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps)
-feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES
- FATAL_ON_MISSING_REQUIRED_PACKAGES)
+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES src/*.cpp src/*.h)
kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})