diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index f125946..603b696 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt @@ -39,8 +39,10 @@ set( t1_lib.c tls13_buffer.c tls13_handshake.c + tls13_handshake_msg.c tls13_key_schedule.c tls13_record.c + tls13_record_layer.c ) add_library(ssl ${SSL_SRC}) diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 992dc86..1f77193 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am @@ -48,8 +48,10 @@ libssl_la_SOURCES += t1_hash.c libssl_la_SOURCES += t1_lib.c libssl_la_SOURCES += tls13_buffer.c libssl_la_SOURCES += tls13_handshake.c +libssl_la_SOURCES += tls13_handshake_msg.c libssl_la_SOURCES += tls13_key_schedule.c libssl_la_SOURCES += tls13_record.c +libssl_la_SOURCES += tls13_record_layer.c noinst_HEADERS = bytestring.h noinst_HEADERS += srtp.h