mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
23 lines
487 B
CMake
23 lines
487 B
CMake
serenity_component(
|
|
MouseSettings
|
|
REQUIRED
|
|
TARGETS MouseSettings
|
|
)
|
|
|
|
compile_gml(Mouse.gml MouseWidgetGML.h mouse_widget_gml)
|
|
compile_gml(Theme.gml ThemeWidgetGML.h theme_widget_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
DoubleClickArrowWidget.cpp
|
|
MouseSettingsWindow.cpp
|
|
MouseWidget.cpp
|
|
MouseWidget.h
|
|
MouseWidgetGML.h
|
|
ThemeWidget.cpp
|
|
ThemeWidget.h
|
|
ThemeWidgetGML.h
|
|
)
|
|
|
|
serenity_app(MouseSettings ICON app-mouse)
|
|
target_link_libraries(MouseSettings LibGUI)
|