summaryrefslogtreecommitdiff
path: root/Userland/Applications/Welcome/CMakeLists.txt
blob: 99a08fb01f0f29972ee101be99b80850230b7d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
serenity_component(
    Welcome
    TARGETS Welcome
    DEPENDS Help WebContent
)

compile_gml(WelcomeWindow.gml WelcomeWindowGML.h welcome_window_gml)

set(SOURCES
    WelcomeWidget.cpp
    main.cpp
)

set(GENERATED_SOURCES
    WelcomeWindowGML.h
)

serenity_app(Welcome ICON app-welcome)
target_link_libraries(Welcome LibGUI LibWebView LibWeb LibMain)