mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 19:44:58 +00:00
14 lines
334 B
CMake
14 lines
334 B
CMake
set(TEST_SOURCES
|
|
TestEmoji.cpp
|
|
TestIDNA.cpp
|
|
TestPunycode.cpp
|
|
TestSegmentation.cpp
|
|
TestUnicodeCharacterTypes.cpp
|
|
TestUnicodeNormalization.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibUnicode LIBS LibUnicode)
|
|
|
|
get_filename_component(target "${source}" NAME_WLE)
|
|
endforeach()
|