mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 03:25:09 +00:00

Currently, LibUnicodeData contains the generated UCD and CLDR data. Move the UCD data to the main LibUnicode library, and rename LibUnicodeData to LibLocaleData. This is another prepatory change to migrate to LibLocale.
37 lines
965 B
CMake
37 lines
965 B
CMake
serenity_component(
|
|
Browser
|
|
RECOMMENDED
|
|
TARGETS Browser
|
|
DEPENDS BrowserSettings ImageDecoder RequestServer WebContent WebSocket
|
|
)
|
|
|
|
compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
|
|
compile_gml(EditBookmark.gml EditBookmarkGML.h edit_bookmark_gml)
|
|
compile_gml(StorageWidget.gml StorageWidgetGML.h storage_widget_gml)
|
|
compile_gml(Tab.gml TabGML.h tab_gml)
|
|
|
|
set(SOURCES
|
|
BookmarksBarWidget.cpp
|
|
BrowserWindow.cpp
|
|
BrowserWindowGML.h
|
|
ConsoleWidget.cpp
|
|
CookieJar.cpp
|
|
CookiesModel.cpp
|
|
DownloadWidget.cpp
|
|
EditBookmarkGML.h
|
|
ElementSizePreviewWidget.cpp
|
|
History.cpp
|
|
IconBag.cpp
|
|
InspectorWidget.cpp
|
|
StorageModel.cpp
|
|
StorageWidget.cpp
|
|
StorageWidgetGML.h
|
|
Tab.cpp
|
|
TabGML.h
|
|
WindowActions.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(Browser ICON app-browser)
|
|
target_link_libraries(Browser LibWebView LibWeb LibProtocol LibGUI LibDesktop LibConfig LibMain)
|
|
link_with_locale_data(Browser)
|