blob: aee002d8e4883edbc3b78bda5ca791e8988a296b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
add_compile_options(-Wvla)
set(SOURCES
Certificate.cpp
Handshake.cpp
HandshakeCertificate.cpp
HandshakeClient.cpp
HandshakeServer.cpp
Record.cpp
Socket.cpp
TLSv12.cpp
)
serenity_lib(LibTLS tls)
target_link_libraries(LibTLS LibCore LibCrypto)
|