mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-16 16:12:53 +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)
|