1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:48:14 +00:00
serenity/Userland/Applications/KeyboardSettings/CMakeLists.txt
2024-01-19 17:03:30 +01:00

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)