diff options
author | Karol Kosek <krkk@serenityos.org> | 2022-05-25 22:35:44 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-26 21:54:58 +0100 |
commit | d8862853bb0ce590c1c7fad6074f8051f3203560 (patch) | |
tree | 619865b38b42ab20a7ca3ff847d0d560a7b82628 /Userland/Applications/Browser | |
parent | 3dfa2151743a16f3f3bded76eaef32d8988e95e5 (diff) | |
download | serenity-d8862853bb0ce590c1c7fad6074f8051f3203560.zip |
Browser: Depend on BrowserSettings
The app refused to run in the Required+Browser system configuration,
because unveil was angry that BrowserSettings wasn't being installed.
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/CMakeLists.txt b/Userland/Applications/Browser/CMakeLists.txt index f703909a6e..b4d2b20df9 100644 --- a/Userland/Applications/Browser/CMakeLists.txt +++ b/Userland/Applications/Browser/CMakeLists.txt @@ -2,7 +2,7 @@ serenity_component( Browser RECOMMENDED TARGETS Browser - DEPENDS ImageDecoder RequestServer WebContent WebSocket + DEPENDS BrowserSettings ImageDecoder RequestServer WebContent WebSocket ) compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml) |