X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=BuildBin.vs2017.cmd;h=2b0aa68c4444a71d2748038f5026fc439eaedb77;hb=6074f671072654ac6cfd972ecaf6e10907f63ff3;hp=459087f5279dc5c19fee0ec3254e66e583573dc1;hpb=584508331ecad62d0c2f08f5b1383301e7beb5ea;p=winmerge-jp%2Fwinmerge-jp.git diff --git a/BuildBin.vs2017.cmd b/BuildBin.vs2017.cmd index 459087f52..2b0aa68c4 100644 --- a/BuildBin.vs2017.cmd +++ b/BuildBin.vs2017.cmd @@ -12,7 +12,9 @@ if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" ( ) if "%1" == "" ( - call :BuildBin || goto :eof + call :BuildBin ARM || goto :eof + call :BuildBin ARM64 || goto :eof + call :BuildBin x86|| goto :eof call :BuildBin x64 || goto :eof ) else ( call :BuildBin %1 || goto :eof @@ -21,24 +23,13 @@ if "%1" == "" ( goto :eof :BuildBin -set PLATFORM=%1 -if "%1" == "" ( - set PLATFORM_VS=Win32 -) else ( - set PLATFORM_VS=%1 -) -if "%PLATFORM_VS%" == "Win32" ( - set PLATFORM_DIR= -) else ( - set PLATFORM_DIR=%PLATFORM_VS% -) -MSBuild WinMerge.vs2017.sln /t:Rebuild /p:Configuration="Release" /p:Platform="%PLATFORM_VS%" || goto :eof +MSBuild WinMerge.vs2017.sln /t:Rebuild /p:Configuration="Release" /p:Platform="%1" || goto :eof endlocal if exist "%SIGNBAT_PATH%" ( - call "%SIGNBAT_PATH%" Build\%PLATFORM_DIR%\Release\WinMergeU.exe + call "%SIGNBAT_PATH%" Build\%1\Release\WinMergeU.exe ) -mkdir Build\%PLATFORM_DIR%\Release\%APPVER% 2> NUL -copy Build\%PlATFORM_DIR%\Release\*.pdb "Build\%PLATFORM_DIR%\Release\%APPVER%\" +mkdir Build\%1\Release\%APPVER% 2> NUL +copy Build\%1\Release\*.pdb "Build\%1\Release\%APPVER%\" goto :eof