1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00
curl/winbuild/makedebug.cmd
2019-05-05 19:55:55 +01:00

13 lines
309 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")
)