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

Maps: Add new basic maps application and map widget

This commit is contained in:
Bastiaan van der Plaat 2023-09-03 13:13:58 +02:00 committed by Jelle Raaijmakers
parent 50d72f0d8c
commit f9f9c38de3
6 changed files with 503 additions and 0 deletions

View file

@ -0,0 +1,13 @@
serenity_component(
Maps
REQUIRED
TARGETS Maps
)
set(SOURCES
main.cpp
MapWidget.cpp
)
serenity_app(Maps ICON app-hello-world) # FIXME: Create Maps icon
target_link_libraries(Maps PRIVATE LibConfig LibCore LibDesktop LibGfx LibGUI LibMain LibProtocol)