summaryrefslogtreecommitdiff
path: root/Userland/Applications/KeyboardMapper/CMakeLists.txt
blob: 3a98f848c64d5eae13295c2a0321711665ea704f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
serenity_component(
    KeyboardMapper
    RECOMMENDED
    TARGETS KeyboardMapper
)

set(SOURCES
    KeyboardMapperWidget.cpp
    KeyButton.cpp
    main.cpp
)

serenity_app(KeyboardMapper ICON app-keyboard-mapper)
target_link_libraries(KeyboardMapper PRIVATE LibCore LibGfx LibGUI LibKeyboard LibMain)