serenity/Userland/Games/Snake/CMakeLists.txt
kleines Filmröllchen 1e67435ff5 Meta: Rename compile_gml to stringify_gml
This is what this function really does, it doesn't compile anything.
2023-08-11 21:33:48 +02:00

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