Welcome to mirror list, hosted at ThFree Co, Russian Federation.

public_release.cmd - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6e207154791d71ffb98c28ffda3e419181a1879 (plain)
1
2
3
4
5
6
7
8
9
10
11
@echo off
setlocal ENABLEEXTENSIONS & pushd .
call %~dp0common\setvcvars.cmd 2005
call %~dp0common\buildinc.cmd "%~dp0common"
echo %VCVER_FRIENDLY%
vcbuild.exe /time /rebuild /showenv /M4 /nologo ^
    "/htmllog:$(SolutionDir)build\buildlog32.html" "%~dp0\windirstat.vs8.sln" "Release|Win32"
vcbuild.exe /time /rebuild /showenv /M4 /nologo ^
    "/htmllog:$(SolutionDir)build\buildlog64.html" "%~dp0\windirstat.vs8.sln" "Release|x64"
popd & endlocal
goto :EOF