From 58f59e24b9e721596d58eb582ecedd77c198efce Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Thu, 23 Dec 2021 11:17:03 -0500 Subject: [PATCH] Move mmplugin to components folder --- CMakeLists.txt | 1 - components/CMakeLists.txt | 1 + {mmplugin => components/mmplugin}/CMakeLists.txt | 0 {mmplugin => components/mmplugin}/mmqmlplugin.cpp | 0 {mmplugin => components/mmplugin}/mmqmlplugin.h | 0 {mmplugin => components/mmplugin}/qmldir | 0 {mmplugin => components/mmplugin}/signalindicator.cpp | 0 {mmplugin => components/mmplugin}/signalindicator.h | 0 8 files changed, 1 insertion(+), 1 deletion(-) rename {mmplugin => components/mmplugin}/CMakeLists.txt (100%) rename {mmplugin => components/mmplugin}/mmqmlplugin.cpp (100%) rename {mmplugin => components/mmplugin}/mmqmlplugin.h (100%) rename {mmplugin => components/mmplugin}/qmldir (100%) rename {mmplugin => components/mmplugin}/signalindicator.cpp (100%) rename {mmplugin => components/mmplugin}/signalindicator.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index dd5a8ba9..ec8ec924 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,6 @@ add_subdirectory(bin) add_subdirectory(applets) add_subdirectory(containments) add_subdirectory(components) -add_subdirectory(mmplugin) find_program(PlasmaOpenSettings plasma-open-settings) set_package_properties(PlasmaOpenSettings PROPERTIES diff --git a/components/CMakeLists.txt b/components/CMakeLists.txt index c196bedd..1668a18c 100644 --- a/components/CMakeLists.txt +++ b/components/CMakeLists.txt @@ -2,5 +2,6 @@ # SPDX-FileCopyrightText: 2017-2021 Marco Martin # SPDX-License-Identifier: GPL-2.0-or-later +add_subdirectory(mmplugin) add_subdirectory(mobilehomescreencomponents) add_subdirectory(mobileshell) diff --git a/mmplugin/CMakeLists.txt b/components/mmplugin/CMakeLists.txt similarity index 100% rename from mmplugin/CMakeLists.txt rename to components/mmplugin/CMakeLists.txt diff --git a/mmplugin/mmqmlplugin.cpp b/components/mmplugin/mmqmlplugin.cpp similarity index 100% rename from mmplugin/mmqmlplugin.cpp rename to components/mmplugin/mmqmlplugin.cpp diff --git a/mmplugin/mmqmlplugin.h b/components/mmplugin/mmqmlplugin.h similarity index 100% rename from mmplugin/mmqmlplugin.h rename to components/mmplugin/mmqmlplugin.h diff --git a/mmplugin/qmldir b/components/mmplugin/qmldir similarity index 100% rename from mmplugin/qmldir rename to components/mmplugin/qmldir diff --git a/mmplugin/signalindicator.cpp b/components/mmplugin/signalindicator.cpp similarity index 100% rename from mmplugin/signalindicator.cpp rename to components/mmplugin/signalindicator.cpp diff --git a/mmplugin/signalindicator.h b/components/mmplugin/signalindicator.h similarity index 100% rename from mmplugin/signalindicator.h rename to components/mmplugin/signalindicator.h