ladybird/Userland/Games/Breakout/CMakeLists.txt
Gunnar Beutner 631d36fd98 Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
2021-06-17 11:03:51 +02:00

15 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)