Files
ladybird/Tests/LibTLS/CMakeLists.txt
Ali Mohammad Pur 8bb610b97a LibTLS+Everywhere: Switch to using WolfSSL
This commit replaces all TLS connection code with wolfssl.
The certificate parsing code has to remain for now, as wolfssl does not
seem to have any exposed API for that.
2024-07-06 22:15:19 +02:00

8 lines
164 B
CMake

set(TEST_SOURCES
TestTLSCertificateParser.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibTLS LIBS LibTLS LibCrypto)
endforeach()