aerothemeplasma/plasma/plasmoids/CMakeLists.txt
wackyideas 8d6fbd7bdb overhaul: prepare repo for Plasma 6.6 release
This commit overhauls the repository structure such that it separates
the project into multiple repositories, one for each subproject. This
repository will be moved to the AeroShell group, and most importantly,
the installation method changes from locally installed modifications, to
CMake-based installation, in preparation for AUR packages, and possibly
packages for other distros.

Migration details are in INSTALL.md, which are highly recommended, if
not required to uninstall any old instance of AeroThemePlasma.
2026-02-21 21:15:07 +01:00

20 lines
522 B
CMake

add_subdirectory(src)
set(plasmoids
io.gitgud.wackyideas.panel
io.gitgud.wackyideas.battery
io.gitgud.wackyideas.digitalclocklite
io.gitgud.wackyideas.win7showdesktop
io.gitgud.wackyideas.networkmanagement
io.gitgud.wackyideas.volume
io.gitgud.wackyideas.keyboardlayout
io.gitgud.wackyideas.SevenStart
io.gitgud.wackyideas.seventasks
io.gitgud.wackyideas.desktopcontainment
)
foreach(plasmoid IN LISTS plasmoids)
plasma_install_package(${plasmoid} ${plasmoid})
endforeach()