1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:37:47 +00:00

Escalator: Add new method to privilege escalate within GUI

This commit is contained in:
ne0ndrag0n 2022-10-01 00:40:28 -04:00 committed by Linus Groh
parent a143d666db
commit b4456ecdbb
9 changed files with 287 additions and 0 deletions

View file

@ -0,0 +1,19 @@
serenity_component(
Escalator
REQUIRED
TARGETS Escalator
)
compile_gml(Escalator.gml EscalatorGML.h escalator_gml)
set(SOURCES
main.cpp
EscalatorWindow.cpp
)
set(GENERATED_SOURCES
EscalatorGML.h
)
serenity_app(Escalator ICON app-escalator)
target_link_libraries(Escalator LibCore LibDesktop LibGUI LibMain)