diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-11-20 12:53:04 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-11-20 21:05:20 +0000 |
commit | 4bac30f737e07ac83260a4e7d91315b5eee99caa (patch) | |
tree | 40c0275339c63dbf97fda391c625a12b475b1992 /Userland/Applications/KeyboardSettings/CMakeLists.txt | |
parent | 1dd5c838cfe7f553da97bf449fc1ddf4504f08d7 (diff) | |
download | serenity-4bac30f737e07ac83260a4e7d91315b5eee99caa.zip |
KeyboardSettings: Migrate layout to GML
All other Settings applications use this, so let's match them!
Diffstat (limited to 'Userland/Applications/KeyboardSettings/CMakeLists.txt')
-rw-r--r-- | Userland/Applications/KeyboardSettings/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Applications/KeyboardSettings/CMakeLists.txt b/Userland/Applications/KeyboardSettings/CMakeLists.txt index 5edad16209..9111022f7f 100644 --- a/Userland/Applications/KeyboardSettings/CMakeLists.txt +++ b/Userland/Applications/KeyboardSettings/CMakeLists.txt @@ -4,8 +4,11 @@ serenity_component( TARGETS KeyboardSettings ) +compile_gml(Keyboard.gml KeyboardWidgetGML.h keyboard_widget_gml) + set(SOURCES main.cpp + KeyboardWidgetGML.h ) serenity_app(KeyboardSettings ICON app-keyboard-settings) |