summaryrefslogtreecommitdiff
path: root/Userland/Applications/KeyboardSettings/CMakeLists.txt
blob: 65cbf3e3b59e6725164bca6cefc598a730461c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
serenity_component(
    KeyboardSettings
    REQUIRED
    TARGETS KeyboardSettings
)

compile_gml(Keyboard.gml KeyboardWidgetGML.h keyboard_widget_gml)
compile_gml(KeymapDialog.gml KeymapDialogGML.h keymap_dialog_gml)

set(SOURCES
    KeyboardSettingsWidget.cpp
    main.cpp
)

set(GENERATED_SOURCES
    KeyboardWidgetGML.h
    KeymapDialogGML.h
)

serenity_app(KeyboardSettings ICON app-keyboard-settings)
target_link_libraries(KeyboardSettings PRIVATE LibCore LibGfx LibGUI LibKeyboard LibConfig LibMain)