1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:27:34 +00:00

LibKeyboard: Add new library for keyboard applications

Move shared code base from keymap and KeyboardMapper to this library.
This commit is contained in:
Hüseyin ASLITÜRK 2020-05-31 16:23:55 +03:00 committed by Andreas Kling
parent 9ec6ac31b8
commit 3bf5602521
7 changed files with 281 additions and 0 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
CharacterMap.cpp
CharacterMapFile.cpp
)
serenity_lib(LibKeyboard keyboard)
target_link_libraries(LibKeyboard LibCore)