summaryrefslogtreecommitdiff
path: root/Userland/Applications/Escalator/CMakeLists.txt
blob: e8a174931158b76c11fc8810680b87cfc94723ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)