serenity/Userland/Applications/Calendar/CMakeLists.txt

26 lines
668 B
CMake
Raw Normal View History

serenity_component(
Calendar
TARGETS Calendar
)
2023-05-26 19:32:20 +00:00
compile_gml(CalendarWidget.gml CalendarWidgetGML.cpp)
compile_gml(AddEventDialog.gml AddEventDialogGML.cpp)
2024-02-04 12:16:11 +00:00
compile_gml(ViewEventDialog.gml ViewEventDialogGML.cpp)
set(SOURCES
AddEventDialog.cpp
2023-05-26 19:32:20 +00:00
AddEventDialogGML.cpp
AddEventWidget.cpp
CalendarWidget.cpp
2023-05-26 19:32:20 +00:00
CalendarWidgetGML.cpp
EventCalendar.cpp
EventManager.cpp
main.cpp
2024-02-04 12:16:11 +00:00
ViewEventDialog.cpp
ViewEventDialogGML.cpp
ViewEventWidget.cpp
)
serenity_app(Calendar ICON app-calendar)
target_link_libraries(Calendar PRIVATE LibConfig LibCore LibFileSystem LibFileSystemAccessClient LibGfx LibGUI LibMain LibDesktop LibURL)