mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
ce2f1b845f
Otherwise, we end up propagating those dependencies into targets that link against that library, which creates unnecessary link-time dependencies. Also included are changes to readd now missing dependencies to tools that actually need them.
23 lines
616 B
CMake
23 lines
616 B
CMake
serenity_component(
|
|
BrowserSettings
|
|
RECOMMENDED
|
|
TARGETS BrowserSettings
|
|
)
|
|
|
|
compile_gml(BrowserSettingsWidget.gml BrowserSettingsWidgetGML.h browser_settings_widget_gml)
|
|
compile_gml(ContentFilterSettingsWidget.gml ContentFilterSettingsWidgetGML.h content_filter_settings_widget_gml)
|
|
|
|
set(SOURCES
|
|
BrowserSettingsWidget.cpp
|
|
ContentFilterSettingsWidget.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
BrowserSettingsWidgetGML.h
|
|
ContentFilterSettingsWidgetGML.h
|
|
)
|
|
|
|
serenity_app(BrowserSettings ICON app-browser)
|
|
target_link_libraries(BrowserSettings PRIVATE LibCore LibGfx LibGUI LibConfig LibMain)
|