mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
49c388b891
By moving `Certificate` to `LibCrypto` it is possible to reuse a bunch of code from in `LibCrypto` itself. It also moves some constants and pieces of code to a more appropriate place than `LibTLS`. This also makes future work on WebCryptoAPI easier.
16 lines
313 B
CMake
16 lines
313 B
CMake
add_cxx_compile_options(-Wvla)
|
|
|
|
set(SOURCES
|
|
Handshake.cpp
|
|
HandshakeCertificate.cpp
|
|
HandshakeClient.cpp
|
|
HandshakeServer.cpp
|
|
Record.cpp
|
|
Socket.cpp
|
|
TLSv12.cpp
|
|
)
|
|
|
|
serenity_lib(LibTLS tls)
|
|
target_link_libraries(LibTLS PRIVATE LibCore LibCrypto LibFileSystem)
|
|
|
|
include(ca_certificates_data)
|