summaryrefslogtreecommitdiff
path: root/Userland/Applications/Calendar/CMakeLists.txt
blob: ebe137613eadf611bf9d22ad2516ef230e22f152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
serenity_component(
    Calendar
    TARGETS Calendar
)

compile_gml(CalendarWindow.gml CalendarWindowGML.h calendar_window_gml)

set(SOURCES
    AddEventDialog.cpp
    main.cpp
)

set(GENERATED_SOURCES
    CalendarWindowGML.h
)

serenity_app(Calendar ICON app-calendar)
target_link_libraries(Calendar LibGUI LibMain)