mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2026-06-18 19:35:47 +00:00
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.
20 lines
522 B
CMake
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()
|
|
|