mirror of
https://github.com/RGBCube/serenity
synced 2025-08-18 16:57:51 +00:00
Userland: Rename *.MenuApplet => *.Applet
These are no longer displayed in the menu, so it doesn't make sense to call them menu applets. :^)
This commit is contained in:
parent
136588e240
commit
23cc88f83b
20 changed files with 40 additions and 40 deletions
6
Userland/Applets/Audio/CMakeLists.txt
Normal file
6
Userland/Applets/Audio/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(Audio.Applet ICON audio-volume-high)
|
||||
target_link_libraries(Audio.Applet LibGUI LibGfx LibAudio)
|
7
Userland/Applets/ClipboardHistory/CMakeLists.txt
Normal file
7
Userland/Applets/ClipboardHistory/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
set(SOURCES
|
||||
ClipboardHistoryModel.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(ClipboardHistory.Applet ICON edit-copy)
|
||||
target_link_libraries(ClipboardHistory.Applet LibGUI LibCore LibGfx)
|
6
Userland/Applets/Network/CMakeLists.txt
Normal file
6
Userland/Applets/Network/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(Network.Applet ICON network)
|
||||
target_link_libraries(Network.Applet LibGUI LibCore LibGfx)
|
6
Userland/Applets/ResourceGraph/CMakeLists.txt
Normal file
6
Userland/Applets/ResourceGraph/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(ResourceGraph.Applet)
|
||||
target_link_libraries(ResourceGraph.Applet LibGUI LibCore LibGfx)
|
6
Userland/Applets/UserName/CMakeLists.txt
Normal file
6
Userland/Applets/UserName/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(UserName.Applet)
|
||||
target_link_libraries(UserName.Applet LibGUI LibGfx)
|
|
@ -6,7 +6,7 @@ add_subdirectory(DevTools)
|
|||
add_subdirectory(DynamicLoader)
|
||||
add_subdirectory(Games)
|
||||
add_subdirectory(Libraries)
|
||||
add_subdirectory(MenuApplets)
|
||||
add_subdirectory(Applets)
|
||||
add_subdirectory(Services)
|
||||
add_subdirectory(Shell)
|
||||
add_subdirectory(Tests)
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(Audio.MenuApplet ICON audio-volume-high)
|
||||
target_link_libraries(Audio.MenuApplet LibGUI LibGfx LibAudio)
|
|
@ -1,7 +0,0 @@
|
|||
set(SOURCES
|
||||
ClipboardHistoryModel.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(ClipboardHistory.MenuApplet ICON edit-copy)
|
||||
target_link_libraries(ClipboardHistory.MenuApplet LibGUI LibCore LibGfx)
|
|
@ -1,6 +0,0 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_app(Network.MenuApplet ICON network)
|
||||
target_link_libraries(Network.MenuApplet LibGUI LibCore LibGfx)
|
|
@ -1,6 +0,0 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(ResourceGraph.MenuApplet)
|
||||
target_link_libraries(ResourceGraph.MenuApplet LibGUI LibCore LibGfx)
|
|
@ -1,6 +0,0 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(UserName.MenuApplet)
|
||||
target_link_libraries(UserName.MenuApplet LibGUI LibGfx)
|
Loading…
Add table
Add a link
Reference in a new issue