comparison mupdf-source/thirdparty/curl/winbuild/makedebug.cmd @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 @echo off
2 rem ***************************************************************************
3 rem * _ _ ____ _
4 rem * Project ___| | | | _ \| |
5 rem * / __| | | | |_) | |
6 rem * | (__| |_| | _ <| |___
7 rem * \___|\___/|_| \_\_____|
8 rem *
9 rem * Copyright (C) 2018 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
10 rem *
11 rem * This software is licensed as described in the file COPYING, which
12 rem * you should have received as part of this distribution. The terms
13 rem * are also available at https://curl.haxx.se/docs/copyright.html.
14 rem *
15 rem * You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 rem * copies of the Software, and permit persons to whom the Software is
17 rem * furnished to do so, under the terms of the COPYING file.
18 rem *
19 rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 rem * KIND, either express or implied.
21 rem *
22 rem ***************************************************************************
23
24 where.exe nmake.exe >nul 2>&1
25
26 IF %ERRORLEVEL% == 1 (
27 ECHO Error: Can't find `nmake.exe` - be sure to run this script from within a Developer Command-Prompt
28 ECHO.
29 ) ELSE (
30 nmake /f Makefile.vc mode=static DEBUG=yes GEN_PDB=yes
31 IF %ERRORLEVEL% NEQ 0 (
32 ECHO "Error: Build Failed"
33 )
34 )