mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:58:11 +00:00

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.
12 lines
319 B
CMake
12 lines
319 B
CMake
set(TEST_SOURCES
|
|
TestUnicodeCharacterTypes.cpp
|
|
TestUnicodeDateTimeFormat.cpp
|
|
TestUnicodeLocale.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibUnicode LIBS LibUnicode)
|
|
|
|
get_filename_component(target "${source}" NAME_WLE)
|
|
link_with_locale_data("${target}")
|
|
endforeach()
|