ladybird/Userland/Libraries/LibLine/CMakeLists.txt
Ali Mohammad Pur 36f0499cc8 LibLine: Use grapheme clusters for cursor management
This makes using the line editor much nicer when multi-code-point
graphemes are present in the input (e.g. flag emojis, or some cjk
glyphs), and avoids messing up the buffer when deleting text, or
cursoring around.
2023-12-16 22:11:43 +01:00

11 lines
225 B
CMake

set(SOURCES
Editor.cpp
InternalFunctions.cpp
KeyCallbackMachine.cpp
SuggestionManager.cpp
XtermSuggestionDisplay.cpp
)
serenity_lib(LibLine line)
target_link_libraries(LibLine PRIVATE LibCore LibUnicode)