mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 10:47:34 +00:00
BrowserSettings: Create a BrowserSettings application :^)
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.
This commit is contained in:
parent
16ee8ebc04
commit
8a284be5c7
8 changed files with 272 additions and 0 deletions
16
Userland/Applications/BrowserSettings/CMakeLists.txt
Normal file
16
Userland/Applications/BrowserSettings/CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue