mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
19 lines
459 B
CMake
19 lines
459 B
CMake
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
|
|
main.cpp
|
|
KeyboardSettingsWidget.cpp
|
|
KeyboardWidgetGML.h
|
|
KeymapDialogGML.h
|
|
)
|
|
|
|
serenity_app(KeyboardSettings ICON app-keyboard-settings)
|
|
target_link_libraries(KeyboardSettings LibGUI LibKeyboard LibConfig LibMain)
|