mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:55:07 +00:00
22 lines
467 B
CMake
22 lines
467 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
|
|
MouseWidget.cpp
|
|
MouseWidget.h
|
|
MouseWidgetGML.h
|
|
ThemeWidget.cpp
|
|
ThemeWidget.h
|
|
ThemeWidgetGML.h
|
|
)
|
|
|
|
serenity_app(MouseSettings ICON app-mouse)
|
|
target_link_libraries(MouseSettings LibGUI LibMain)
|