mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 19:06:55 +02:00
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. (cherry picked from commit 72d0e3284b604c4c1373fb019250cdf5bd492300)
9 lines
183 B
CMake
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()
|