diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-09-02 10:41:33 -0400 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-05 14:37:16 -0400 |
commit | fc8bf7ac3e0fd01e93c8f1d1544342e0f84d7641 (patch) | |
tree | 0b561e6161d7b35025400b03ff940ab2ad00d9a4 /Userland/Services | |
parent | 89d1813b5de9fdad9021d88116e25cf98b5d6ad2 (diff) | |
download | serenity-fc8bf7ac3e0fd01e93c8f1d1544342e0f84d7641.zip |
LibUnicode+Userland: Migrate generated CLDR data to LibLocaleData
Currently, LibUnicodeData contains the generated UCD and CLDR data. Move
the UCD data to the main LibUnicode library, and rename LibUnicodeData
to LibLocaleData. This is another prepatory change to migrate to
LibLocale.
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/WebContent/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/CMakeLists.txt b/Userland/Services/WebContent/CMakeLists.txt index c943b55c51..3ec41acdb5 100644 --- a/Userland/Services/WebContent/CMakeLists.txt +++ b/Userland/Services/WebContent/CMakeLists.txt @@ -19,4 +19,4 @@ set(SOURCES serenity_bin(WebContent) target_link_libraries(WebContent LibCore LibIPC LibGfx LibWebView LibWeb LibMain) -link_with_unicode_data(WebContent) +link_with_locale_data(WebContent) |