ladybird/Userland/Games/MasterWord/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

20 lines
368 B
CMake

serenity_component(
MasterWord
RECOMMENDED
TARGETS MasterWord
)
stringify_gml(MasterWord.gml MasterWordGML.h master_word_gml)
set(SOURCES
main.cpp
WordGame.cpp
)
set(GENERATED_SOURCES
MasterWordGML.h
)
serenity_app(MasterWord ICON app-masterword)
target_link_libraries(MasterWord PRIVATE LibCore LibGfx LibGUI LibConfig LibMain LibDesktop)