1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:57:35 +00:00

CharacterMap: Add new Character Map application :^)

This commit is contained in:
Sam Atkins 2022-01-10 15:59:42 +00:00 committed by Andreas Kling
parent 1d79e8cb0f
commit 2327ea8970
7 changed files with 278 additions and 0 deletions

View file

@ -0,0 +1,17 @@
serenity_component(
CharacterMap
REQUIRED
TARGETS CharacterMap
)
compile_gml(CharacterMapWindow.gml CharacterMapWindowGML.h character_map_window_gml)
set(SOURCES
CharacterMapWindowGML.h
CharacterMapWidget.cpp
main.cpp
)
serenity_app(CharacterMap ICON app-keyboard-settings)
target_link_libraries(CharacterMap LibGUI LibMain)
link_with_unicode_data(CharacterMap)