1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00
serenity/Userland/Applications/MouseSettings/CMakeLists.txt
Daniël van de Burgt a106f852d3
WindowServer+MouseSettings: Add ability to configure double-click speed (#5876)
This adds a double-click speed slider control to the Mouse Settings
panel, and value labels for both the movement speed and double-click
speed sliders.

To allow for updating and persisting the configured double-click
speed through the WindowServer, two IPC calls - `SetDoubleClickSpeed`
and `GetDoubleClickSpeed` - have been added.
2021-04-02 16:08:18 +02:00

11 lines
287 B
CMake

compile_gml(MouseSettingsWindow.gml MouseSettingsWindowGML.h mouse_settings_window_gml)
set(SOURCES
main.cpp
MouseSettingsWindow.cpp
MouseSettingsWindow.h
MouseSettingsWindowGML.h
)
serenity_app(MouseSettings ICON app-mouse)
target_link_libraries(MouseSettings LibGUI)