Update Makefile, CMake, and VisualC project file

This commit is contained in:
Hanno Becker 2020-01-31 14:14:51 +00:00
parent b769db8c66
commit b5cbebe91a
3 changed files with 12 additions and 2 deletions

View File

@ -83,10 +83,14 @@ set(src_x509
set(src_tls
debug.c
net_sockets.c
ssl_12_cli.c
ssl_12_gen.c
ssl_12_srv.c
ssl_cache.c
ssl_ciphersuites.c
ssl_cli.c
ssl_cookie.c
ssl_msg.c
ssl_srv.c
ssl_ticket.c
ssl_tls.c

View File

@ -75,10 +75,12 @@ OBJS_X509= certs.o pkcs11.o x509.o \
x509_csr.o x509write_crt.o x509write_csr.o
OBJS_TLS= debug.o net_sockets.o \
ssl_12_cli.o ssl_12_gen.o \
ssl_12_srv.o \
ssl_cache.o ssl_ciphersuites.o \
ssl_cli.o ssl_cookie.o \
ssl_srv.o ssl_ticket.o \
ssl_tls.o
ssl_msg.o ssl_srv.o \
ssl_ticket.o ssl_tls.o
INCLUDING_FROM_MBEDTLS:=1
include ../crypto/3rdparty/Makefile.inc

View File

@ -257,10 +257,14 @@
<ClCompile Include="..\..\library\debug.c" />
<ClCompile Include="..\..\library\net_sockets.c" />
<ClCompile Include="..\..\library\pkcs11.c" />
<ClCompile Include="..\..\library\ssl_12_cli.c" />
<ClCompile Include="..\..\library\ssl_12_gen.c" />
<ClCompile Include="..\..\library\ssl_12_srv.c" />
<ClCompile Include="..\..\library\ssl_cache.c" />
<ClCompile Include="..\..\library\ssl_ciphersuites.c" />
<ClCompile Include="..\..\library\ssl_cli.c" />
<ClCompile Include="..\..\library\ssl_cookie.c" />
<ClCompile Include="..\..\library\ssl_msg.c" />
<ClCompile Include="..\..\library\ssl_srv.c" />
<ClCompile Include="..\..\library\ssl_ticket.c" />
<ClCompile Include="..\..\library\ssl_tls.c" />