mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00: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.
21 lines
556 B
CMake
21 lines
556 B
CMake
serenity_component(
|
|
TerminalSettings
|
|
REQUIRED
|
|
TARGETS TerminalSettings
|
|
)
|
|
|
|
compile_gml(TerminalSettingsMain.gml TerminalSettingsMainGML.h terminal_settings_main_gml)
|
|
compile_gml(TerminalSettingsView.gml TerminalSettingsViewGML.h terminal_settings_view_gml)
|
|
|
|
set(SOURCES
|
|
TerminalSettingsWidget.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
TerminalSettingsMainGML.h
|
|
TerminalSettingsViewGML.h
|
|
)
|
|
|
|
serenity_app(TerminalSettings ICON app-terminal)
|
|
target_link_libraries(TerminalSettings PRIVATE LibCore LibGfx LibGUI LibConfig LibMain LibVT)
|