mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00

This adds a nice little tab, including a preview, for configuring the cursor highlighting. Which allows setting the color, size/radius, and opacity.
26 lines
616 B
CMake
26 lines
616 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)
|
|
compile_gml(Highlight.gml HighlightWidgetGML.h highlight_widget_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
DoubleClickArrowWidget.cpp
|
|
HighlightPreviewWidget.cpp
|
|
HighlightWidget.cpp
|
|
HighlightWidgetGML.h
|
|
MouseWidget.cpp
|
|
MouseWidget.h
|
|
MouseWidgetGML.h
|
|
ThemeWidget.cpp
|
|
ThemeWidget.h
|
|
ThemeWidgetGML.h
|
|
)
|
|
|
|
serenity_app(MouseSettings ICON app-mouse)
|
|
target_link_libraries(MouseSettings LibGUI LibMain)
|