mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 22:45:07 +00:00

The generator parses metaZones.json to form a mapping of meta zones to time zones (AKA "golden zone" in TR-35). This parser errantly assumed this was a 1-to-1 mapping.
12 lines
320 B
CMake
12 lines
320 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_unicode_data("${target}")
|
|
endforeach()
|