mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 17:45:08 +00:00

The Unicode standard publishes a database known as the Common Locale Data Repository (CLDR). This is a massive set of data from which anyone implementing Unicode's Technical Standard #35 may generate their implementation: https://www.unicode.org/reports/tr35/ This commit updates LibUnicode to download the compressed database and extract a small subset. That subset is used to generate a list of available locales and the territories (AKA regions) associated with each locale.
5 lines
233 B
CMake
5 lines
233 B
CMake
add_executable(GenerateUnicodeData GenerateUnicodeData.cpp)
|
|
target_link_libraries(GenerateUnicodeData LagomCore)
|
|
|
|
add_executable(GenerateUnicodeLocale GenerateUnicodeLocale.cpp)
|
|
target_link_libraries(GenerateUnicodeLocale LagomCore)
|