1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 17:27:46 +00:00

Run: initial implementation of Run app

This commit is contained in:
Nick Vella 2021-01-13 23:10:00 +11:00 committed by Andreas Kling
parent 6536a9c79a
commit 40083444a0
8 changed files with 354 additions and 0 deletions

View file

@ -0,0 +1,11 @@
compile_gml(Run.gml RunGML.h run_gml)
set(SOURCES
main.cpp
RunWindow.cpp
RunWindow.h
RunGML.h
)
serenity_app(Run ICON app-run)
target_link_libraries(Run LibCore LibDesktop LibGUI)