mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:08:13 +00:00
18 lines
452 B
CMake
18 lines
452 B
CMake
serenity_component(
|
|
KeyboardSettings
|
|
REQUIRED
|
|
TARGETS KeyboardSettings
|
|
)
|
|
|
|
compile_gml(Keyboard.gml KeyboardWidgetGML.cpp)
|
|
compile_gml(KeymapDialog.gml KeymapDialogGML.cpp)
|
|
|
|
set(SOURCES
|
|
KeyboardSettingsWidget.cpp
|
|
main.cpp
|
|
KeyboardWidgetGML.cpp
|
|
KeymapDialogGML.cpp
|
|
)
|
|
|
|
serenity_app(KeyboardSettings ICON app-keyboard-settings)
|
|
target_link_libraries(KeyboardSettings PRIVATE LibCore LibGfx LibGUI LibKeyboard LibConfig LibMain)
|