mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
1e67435ff5
This is what this function really does, it doesn't compile anything.
22 lines
406 B
CMake
22 lines
406 B
CMake
serenity_component(
|
|
Snake
|
|
RECOMMENDED
|
|
TARGETS Snake
|
|
)
|
|
|
|
stringify_gml(Snake.gml SnakeGML.h snake_gml)
|
|
|
|
set(SOURCES
|
|
Game.cpp
|
|
main.cpp
|
|
Skins/ClassicSkin.cpp
|
|
Skins/ImageSkin.cpp
|
|
Skins/SnakeSkin.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
SnakeGML.h
|
|
)
|
|
|
|
serenity_app(Snake ICON app-snake)
|
|
target_link_libraries(Snake PRIVATE LibCore LibFileSystem LibGfx LibGUI LibConfig LibMain LibDesktop)
|