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/Applications/Spreadsheet | |
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/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/CMakeLists.txt b/Userland/Applications/Spreadsheet/CMakeLists.txt index 17d66eb4af..9ba6517162 100644 --- a/Userland/Applications/Spreadsheet/CMakeLists.txt +++ b/Userland/Applications/Spreadsheet/CMakeLists.txt @@ -43,7 +43,6 @@ set(GENERATED_SOURCES serenity_app(Spreadsheet ICON app-spreadsheet) target_link_libraries(Spreadsheet LibFileSystemAccessClient LibGUI LibJS LibMain LibWebView LibWeb) -link_with_unicode_data(Spreadsheet) serenity_test(Writers/Test/TestXSVWriter.cpp Spreadsheet) |