ladybird/Tests/LibUnicode/CMakeLists.txt
Timothy Flynn fc8bf7ac3e 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.
2022-09-05 14:37:16 -04:00

13 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()