From c93630f9b7c43f6533f4b5e6c8223c580c4449ef Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Sat, 22 Jan 2022 17:41:31 +0100 Subject: [PATCH] Don't install base_size wallpaper source files base_size.jpg/vertical_base_size.jpg are not considered by Plasma as they don't follow the WIDTHxHEIGHT pattern. Not installing those reduces the installed size from 39M to 6.7M! --- wallpapers/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallpapers/CMakeLists.txt b/wallpapers/CMakeLists.txt index a04af80b..f638d0d1 100644 --- a/wallpapers/CMakeLists.txt +++ b/wallpapers/CMakeLists.txt @@ -1,2 +1,2 @@ -install(DIRECTORY Next DESTINATION ${KDE_INSTALL_WALLPAPERDIR}) +install(DIRECTORY Next DESTINATION ${KDE_INSTALL_WALLPAPERDIR} PATTERN "*base_size*" EXCLUDE)