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 /Meta/CMake | |
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 'Meta/CMake')
-rw-r--r-- | Meta/CMake/utils.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/CMake/utils.cmake b/Meta/CMake/utils.cmake index c8557c7f75..23c73122c0 100644 --- a/Meta/CMake/utils.cmake +++ b/Meta/CMake/utils.cmake @@ -166,9 +166,9 @@ function(embed_resource target section file) target_sources("${target}" PRIVATE "${asm_file}") endfunction() -function(link_with_unicode_data target) +function(link_with_locale_data target) if (ENABLE_UNICODE_DATABASE_DOWNLOAD) - target_link_libraries("${target}" LibUnicodeData) + target_link_libraries("${target}" LibLocaleData) endif() endfunction() |