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)
15 lines
193 B
CMake
15 lines
193 B
CMake
include(libtextcodec_generators)
|
|
|
|
set(SOURCES
|
|
Decoder.cpp
|
|
Encoder.cpp
|
|
)
|
|
|
|
generate_encoding_indexes()
|
|
|
|
set(GENERATED_SOURCES
|
|
LookupTables.cpp
|
|
)
|
|
|
|
serenity_lib(LibTextCodec textcodec)
|