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

This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
220 B
CMake
14 lines
220 B
CMake
serenity_component(
|
|
Breakout
|
|
RECOMMENDED
|
|
TARGETS Breakout
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
Game.cpp
|
|
LevelSelectDialog.cpp
|
|
)
|
|
|
|
serenity_app(Breakout ICON app-breakout)
|
|
target_link_libraries(Breakout LibGUI)
|