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

14 lines
239 B
CMake

add_compile_options(-Wvla)
set(SOURCES
Certificate.cpp
TLSv12.cpp
)
find_package(WolfSSL REQUIRED)
serenity_lib(LibTLS tls)
target_link_libraries(LibTLS PRIVATE LibCore LibCrypto wolfssl::wolfssl)
include(ca_certificates_data)