serenity/Tests/LibIMAP/CMakeLists.txt
Valtteri Koskivuori 077a8058c3 LibIMAP+Mail: Implement RFC2047 message header encoding
This enables us to display email subject fields with non-ASCII
characters in Mail :^)
2023-08-12 11:45:52 -06:00

9 lines
185 B
CMake

set(TEST_SOURCES
TestQuotedPrintable.cpp
TestMessageHeaderEncoding.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibIMAP LIBS LibIMAP)
endforeach()