mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00

Otherwise, we end up propagating those dependencies into targets that link against that library, which creates unnecessary link-time dependencies. Also included are changes to readd now missing dependencies to tools that actually need them.
11 lines
218 B
CMake
11 lines
218 B
CMake
serenity_component(
|
|
Screensaver
|
|
TARGETS Screensaver
|
|
)
|
|
|
|
set(SOURCES
|
|
Screensaver.cpp
|
|
)
|
|
|
|
serenity_app(Screensaver ICON app-screensaver)
|
|
target_link_libraries(Screensaver PRIVATE LibGUI LibCore LibGfx LibMain)
|