ladybird/Userland/Libraries/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

14 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)