mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
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:
parent
6b539c376a
commit
57f5fca41e
4
Makefile
4
Makefile
@ -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)" != ""
|
||||
|
Loading…
x
Reference in New Issue
Block a user