ladybird/Userland/Libraries/LibUnicode/CodeGenerators/CMakeLists.txt
Timothy Flynn ea21573ed8 LibUnicode: Download Unicode's CLDR database and generate locale data
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.
2021-08-26 22:04:09 +01:00

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)