1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00
serenity/Userland/Applications/MouseSettings/CMakeLists.txt
Andreas Kling 81e6560009 MouseSettings: Give this application a GUI facelift :^)
Note that the double-click "icon" adapts to the double-click speed
and also reacts to double-clicks. :^)
2021-07-20 21:50:06 +02:00

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)