ladybird/Tests/LibTextCodec/CMakeLists.txt
BenJilks 72d0e3284b LibTextCodec+LibURL: Implement utf-8 and euc-jp encoders
Implements the corresponding encoders, selects the appropriate one when
encoding URL search params. If an encoder for the given encoding could
not be found, fallback to utf-8.
2024-08-08 17:49:58 +01:00

9 lines
183 B
CMake

set(TEST_SOURCES
TestTextDecoders.cpp
TestTextEncoders.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibTextCodec LIBS LibTextCodec)
endforeach()