From becfe1233ff2b6b0c3e1b6a10048b55b68c2539f Mon Sep 17 00:00:00 2001 From: Rich Turner Date: Thu, 28 Jun 2018 15:25:00 -0700 Subject: curl: enabled Windows VT Support and UTF-8 output Enabled Console VT support (if running OS supports VT) in tool_main.c. Fixes #3008 Closes #3011 --- winbuild/makedebug.cmd | 12 ++++++++++++ winbuild/rundebug.cmd | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 winbuild/makedebug.cmd create mode 100644 winbuild/rundebug.cmd (limited to 'winbuild') diff --git a/winbuild/makedebug.cmd b/winbuild/makedebug.cmd new file mode 100644 index 000000000..b4a917c34 --- /dev/null +++ b/winbuild/makedebug.cmd @@ -0,0 +1,12 @@ +@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") +) + diff --git a/winbuild/rundebug.cmd b/winbuild/rundebug.cmd new file mode 100644 index 000000000..4b0241392 --- /dev/null +++ b/winbuild/rundebug.cmd @@ -0,0 +1,2 @@ +@echo off +start cmd /k ..\builds\libcurl-vc-x86-debug-static-ipv6-sspi-winssl\bin\curl.exe https://wttr.in/seattle \ No newline at end of file -- cgit v1.2.1