summaryrefslogtreecommitdiff
path: root/Userland/Applications/MouseSettings
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2022-10-12 15:46:13 +0330
committerSam Atkins <atkinssj@gmail.com>2022-10-12 15:55:15 +0100
commit166a905951023a4c183a196ef444e689fdfa9697 (patch)
treec1d51009d5dc6fdb6f208fc40fdbbf6ad957068b /Userland/Applications/MouseSettings
parentc88058cea293b0dc158a7e1599a041af0e014edb (diff)
downloadserenity-166a905951023a4c183a196ef444e689fdfa9697.zip
Userland: Properly populate GENERATED_SOURCES
We previously put the generated headers in SOURCES, which did not mark them as GENERATED (and did not produce a proper dependency). This commit moves all generated headers into GENERATED_SOURCES, and removes useless header SOURCES.
Diffstat (limited to 'Userland/Applications/MouseSettings')
-rw-r--r--Userland/Applications/MouseSettings/CMakeLists.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/Userland/Applications/MouseSettings/CMakeLists.txt b/Userland/Applications/MouseSettings/CMakeLists.txt
index 402121ff83..444adb145d 100644
--- a/Userland/Applications/MouseSettings/CMakeLists.txt
+++ b/Userland/Applications/MouseSettings/CMakeLists.txt
@@ -9,16 +9,17 @@ 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
+ main.cpp
+)
+
+set(GENERATED_SOURCES
+ HighlightWidgetGML.h
+ MouseWidgetGML.h
ThemeWidgetGML.h
)