1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:07:45 +00:00
serenity/Userland/Libraries/LibTLS/CMakeLists.txt

14 lines
240 B
CMake

add_compile_options(-Wvla)
set(SOURCES
Certificate.cpp
ClientHandshake.cpp
Exchange.cpp
Handshake.cpp
Record.cpp
Socket.cpp
TLSv12.cpp
)
serenity_lib(LibTLS tls)
target_link_libraries(LibTLS LibCore LibCrypto)