1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-23 04:07:34 +00:00
serenity/Userland/Libraries/LibTLS/CMakeLists.txt
2021-05-13 17:53:32 +02:00

13 lines
220 B
CMake

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