forked from WinMerge/winmerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuildBin.vs2015.cmd
23 lines (19 loc) · 944 Bytes
/
BuildBin.vs2015.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cd /d "%~dp0"
call SetVersion.cmd
cscript /nologo ExpandEnvironmenStrings.vbs Version.in > Version.h
setlocal
set VisualStudioVersion=14.0
call "%VS140COMNTOOLS%vsvars32.bat"
MSBuild WinMerge.vs2015.sln /t:Rebuild /p:Configuration="Release Unicode" /p:Platform="Win32" || pause
MSBuild WinMerge.vs2015.sln /t:Rebuild /p:Configuration="Release Unicode" /p:Platform="x64" || pause
endlocal
if exist "%SIGNBAT_PATH%" (
call "%SIGNBAT_PATH%" Build\MergeUnicodeRelease\WinMergeU.exe
call "%SIGNBAT_PATH%" Build\MergeUnicodeRelease\MergeLang.dll
call "%SIGNBAT_PATH%" Build\x64\MergeUnicodeRelease\WinMergeU.exe
call "%SIGNBAT_PATH%" Build\x64\MergeUnicodeRelease\MergeLang.dll
)
mkdir Build\MergeUnicodeRelease\%APPVER% 2> NUL
mkdir Build\x64\MergeUnicodeRelease\%APPVER% 2> NUL
copy Build\MergeUnicodeRelease\*.pdb "Build\MergeUnicodeRelease\%APPVER%\"
copy Build\x64\MergeUnicodeRelease\*.pdb "Build\x64\MergeUnicodeRelease\%APPVER%\"