Fix MSVC Makefile unrecognized NO_SSL

Fix :
```
cl : Command line warning D9024 : unrecognized source file type 'NO_SSL', object file assumed
cl : Command line warning D9027 : source file 'NO_SSL' ignored
webui.c
```
This commit is contained in:
Hassan DRAGA 2024-06-25 11:22:23 -04:00
parent 6b539c376a
commit 57f5fca41e

View File

@ -4,13 +4,13 @@
# == 1. VARIABLES =============================================================
WEBUI_OUT_LIB_NAME = webui-2
TLS_CFLAG = /D NO_SSL
TLS_CFLAG = /DNO_SSL
# TLS Enabled
!IF "$(WEBUI_USE_TLS)" == "1"
WEBUI_OUT_LIB_NAME = webui-2-secure
TLS_CFLAG = /D WEBUI_TLS /D NO_SSL_DL /D OPENSSL_API_1_1
TLS_CFLAG = /DWEBUI_TLS /DNO_SSL_DL /DOPENSSL_API_1_1
TLS_LDFLAG_DYNAMIC = libssl.lib libcrypto.lib
!IF "$(WEBUI_TLS_INCLUDE)" != ""