1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 05:54:58 +00:00
serenity/Userland/DevTools/GMLPlayground/CMakeLists.txt
Linus Groh cc4bb59a7e Playground: Rename the application to GMLPlayground
Just "Playground" is too generic and doesn't match the general rule of
"application name equals display name minus spaces".
2022-06-28 21:10:10 +01:00

12 lines
226 B
CMake

serenity_component(
GMLPlayground
RECOMMENDED
TARGETS GMLPlayground
)
set(SOURCES
main.cpp
)
serenity_app(GMLPlayground ICON app-gml-playground)
target_link_libraries(GMLPlayground LibDesktop LibGUI LibMain)