mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-15 22:12:20 +00:00
Demos: Rename Screensaver to GradientScreensaver
This is to avoid naming conflicts with an upcoming Screensaver launcher application.
This commit is contained in:
parent
1f1b2f4d26
commit
10bf86de2c
Notes:
sideshowbarker
2024-07-17 04:10:16 +09:00
Author: https://github.com/trflynn89
Commit: 10bf86de2c
Pull-request: https://github.com/SerenityOS/serenity/pull/16777
Reviewed-by: https://github.com/gmta
6 changed files with 16 additions and 16 deletions
4
Base/res/apps/GradientScreensaver.af
Normal file
4
Base/res/apps/GradientScreensaver.af
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[App]
|
||||||
|
Name=Gradient Screensaver
|
||||||
|
Executable=/bin/GradientScreensaver
|
||||||
|
Category=Demos
|
|
@ -1,4 +0,0 @@
|
||||||
[App]
|
|
||||||
Name=Screensaver
|
|
||||||
Executable=/bin/Screensaver
|
|
||||||
Category=Demos
|
|
|
@ -1,10 +1,10 @@
|
||||||
add_subdirectory(CatDog)
|
add_subdirectory(CatDog)
|
||||||
add_subdirectory(Eyes)
|
add_subdirectory(Eyes)
|
||||||
|
add_subdirectory(GradientScreensaver)
|
||||||
add_subdirectory(LibGfxDemo)
|
add_subdirectory(LibGfxDemo)
|
||||||
add_subdirectory(LibGfxScaleDemo)
|
add_subdirectory(LibGfxScaleDemo)
|
||||||
add_subdirectory(Mandelbrot)
|
add_subdirectory(Mandelbrot)
|
||||||
add_subdirectory(ModelGallery)
|
add_subdirectory(ModelGallery)
|
||||||
add_subdirectory(Screensaver)
|
|
||||||
add_subdirectory(Starfield)
|
add_subdirectory(Starfield)
|
||||||
add_subdirectory(Tubes)
|
add_subdirectory(Tubes)
|
||||||
add_subdirectory(WidgetGallery)
|
add_subdirectory(WidgetGallery)
|
||||||
|
|
11
Userland/Demos/GradientScreensaver/CMakeLists.txt
Normal file
11
Userland/Demos/GradientScreensaver/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
serenity_component(
|
||||||
|
GradientScreensaver
|
||||||
|
TARGETS GradientScreensaver
|
||||||
|
)
|
||||||
|
|
||||||
|
set(SOURCES
|
||||||
|
GradientScreensaver.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
serenity_app(GradientScreensaver ICON app-screensaver)
|
||||||
|
target_link_libraries(GradientScreensaver PRIVATE LibDesktop LibGUI LibCore LibGfx LibMain)
|
|
@ -1,11 +0,0 @@
|
||||||
serenity_component(
|
|
||||||
Screensaver
|
|
||||||
TARGETS Screensaver
|
|
||||||
)
|
|
||||||
|
|
||||||
set(SOURCES
|
|
||||||
Screensaver.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
serenity_app(Screensaver ICON app-screensaver)
|
|
||||||
target_link_libraries(Screensaver PRIVATE LibDesktop LibGUI LibCore LibGfx LibMain)
|
|
Loading…
Add table
Add a link
Reference in a new issue