ladybird/Userland/Games/Snake/CMakeLists.txt
Pedro Pereira c4e49e1955 Snake: Port to LibMain
Simplified two pledge() and two unveil() by using TRY().
2021-11-23 22:55:44 +01:00

14 lines
202 B
CMake

serenity_component(
Snake
RECOMMENDED
TARGETS Snake
)
set(SOURCES
main.cpp
SnakeGame.cpp
)
serenity_app(Snake ICON app-snake)
target_link_libraries(Snake LibGUI LibConfig LibMain)