Staging
v0.8.1
Revision b4cd77de05e5bbaa6a4be90f710b787e0790c36f authored by Miss Islington (bot) on 14 July 2020, 01:49:44 UTC, committed by GitHub on 14 July 2020, 01:49:44 UTC

The phrase "At any time during execution," was repeated twice.

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 4f28f75deefc6e8f65694f96f1a40b0a26fc385d)

Co-authored-by: Paul McMillan <paul@mcmillan.ws>
1 parent 73f2018
Raw File
build.bat
@echo off
setlocal

set D=%~dp0
set PCBUILD=%~dp0..\..\PCbuild\


echo Building Lib\distutils\command\wininst-xx.0.exe

call "%PCBUILD%find_msbuild.bat" %MSBUILD%
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)

%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=Win32
if errorlevel 1 goto :eof


echo Building Lib\distutils\command\wininst-xx.0-amd64.exe

%MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platform=x64
back to top