mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00

ECMA-402 requires validating user input against the EBNF grammar for Unicode locales described in TR-35: https://www.unicode.org/reports/tr35 This commit adds validators for that grammar, as well as other helper to e.g. canonicalize a locale string.
10 lines
185 B
CMake
10 lines
185 B
CMake
include(unicode_data.cmake)
|
|
|
|
SET(SOURCES
|
|
${UNICODE_DATA_SOURCES}
|
|
CharacterTypes.cpp
|
|
Locale.cpp
|
|
)
|
|
|
|
serenity_lib(LibUnicode unicode)
|
|
target_link_libraries(LibUnicode LibCore)
|