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

Note that the double-click "icon" adapts to the double-click speed and also reacts to double-clicks. :^)
18 lines
398 B
CMake
18 lines
398 B
CMake
serenity_component(
|
|
MouseSettings
|
|
REQUIRED
|
|
TARGETS MouseSettings
|
|
)
|
|
|
|
compile_gml(MouseSettingsWindow.gml MouseSettingsWindowGML.h mouse_settings_window_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
DoubleClickArrowWidget.cpp
|
|
MouseSettingsWindow.cpp
|
|
MouseSettingsWindow.h
|
|
MouseSettingsWindowGML.h
|
|
)
|
|
|
|
serenity_app(MouseSettings ICON app-mouse)
|
|
target_link_libraries(MouseSettings LibGUI)
|