diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-06-15 15:16:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-17 11:03:51 +0200 |
commit | 631d36fd9821e48b3b3b53ac609e2e50b254d15b (patch) | |
tree | 48f8af868a0ff3a66bb8d8435aca497bef093113 /Userland/Applets | |
parent | 6e094b8dbe91bea983284c747eaba5c6083eb364 (diff) | |
download | serenity-631d36fd9821e48b3b3b53ac609e2e50b254d15b.zip |
Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
Diffstat (limited to 'Userland/Applets')
-rw-r--r-- | Userland/Applets/Audio/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Userland/Applets/ClipboardHistory/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Userland/Applets/Network/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Userland/Applets/ResourceGraph/CMakeLists.txt | 6 |
4 files changed, 24 insertions, 0 deletions
diff --git a/Userland/Applets/Audio/CMakeLists.txt b/Userland/Applets/Audio/CMakeLists.txt index fb83e95fd2..17375eff62 100644 --- a/Userland/Applets/Audio/CMakeLists.txt +++ b/Userland/Applets/Audio/CMakeLists.txt @@ -1,3 +1,9 @@ +serenity_component( + Audio.Applet + REQUIRED + TARGETS Audio.Applet +) + set(SOURCES main.cpp ) diff --git a/Userland/Applets/ClipboardHistory/CMakeLists.txt b/Userland/Applets/ClipboardHistory/CMakeLists.txt index 23948bf178..565d003c3c 100644 --- a/Userland/Applets/ClipboardHistory/CMakeLists.txt +++ b/Userland/Applets/ClipboardHistory/CMakeLists.txt @@ -1,3 +1,9 @@ +serenity_component( + ClipboardHistory.Applet + REQUIRED + TARGETS ClipboardHistory.Applet +) + set(SOURCES ClipboardHistoryModel.cpp main.cpp diff --git a/Userland/Applets/Network/CMakeLists.txt b/Userland/Applets/Network/CMakeLists.txt index 35a825317d..e0471f05a8 100644 --- a/Userland/Applets/Network/CMakeLists.txt +++ b/Userland/Applets/Network/CMakeLists.txt @@ -1,3 +1,9 @@ +serenity_component( + Network.Applet + REQUIRED + TARGETS Network.Applet +) + set(SOURCES main.cpp ) diff --git a/Userland/Applets/ResourceGraph/CMakeLists.txt b/Userland/Applets/ResourceGraph/CMakeLists.txt index e13d6c8560..6b77f6c439 100644 --- a/Userland/Applets/ResourceGraph/CMakeLists.txt +++ b/Userland/Applets/ResourceGraph/CMakeLists.txt @@ -1,3 +1,9 @@ +serenity_component( + ResourceGraph.Applet + REQUIRED + TARGETS ResourceGraph.Applet +) + set(SOURCES main.cpp ) |