mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:55:07 +00:00

Browser has a bunch of settings, but most are non-trivial to add here. So far, these are implemented: - Homepage URL - Whether to close download windows when they complete The others will be added in subsequent commits.
16 lines
382 B
CMake
16 lines
382 B
CMake
serenity_component(
|
|
BrowserSettings
|
|
RECOMMENDED
|
|
TARGETS BrowserSettings
|
|
)
|
|
|
|
compile_gml(BrowserSettingsWidget.gml BrowserSettingsWidgetGML.h browser_settings_widget_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
BrowserSettingsWidget.cpp
|
|
BrowserSettingsWidgetGML.h
|
|
)
|
|
|
|
serenity_app(BrowserSettings ICON app-browser)
|
|
target_link_libraries(BrowserSettings LibGUI LibConfig LibMain)
|