mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
becfe1233f
Enabled Console VT support (if running OS supports VT) in tool_main.c. Fixes #3008 Closes #3011
13 lines
308 B
Batchfile
13 lines
308 B
Batchfile
@echo off
|
|
|
|
where.exe nmake.exe >nul 2>&1
|
|
|
|
IF %ERRORLEVEL == 1 (
|
|
ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt
|
|
ECHO.
|
|
) ELSE (
|
|
nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes
|
|
IF %ERRORLEVEL% NEQ 0 (ECHO "Error: Build Failed")
|
|
)
|
|
|