mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
11 lines
192 B
CMake
11 lines
192 B
CMake
serenity_component(
|
|
Starfield
|
|
TARGETS Starfield
|
|
)
|
|
|
|
set(SOURCES
|
|
Starfield.cpp
|
|
)
|
|
|
|
serenity_app(Starfield ICON app-screensaver)
|
|
target_link_libraries(Starfield LibGUI LibCore LibGfx)
|