Skip to content

Commit

Permalink
Add ARM platform (8)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed Dec 11, 2021
1 parent 14b58f4 commit ab98aba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions ShellExtension/BuildBin.vs2017.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" (
if "%1" == "" (
call :BuildBin
call :BuildBin x64
call :BuildBin ARM
call :BuildBin ARM64
) else (
call :BuildBin %1
Expand Down
5 changes: 3 additions & 2 deletions ShellExtension/BuildBin.vs2019.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" (
if "%1" == "" (
call :BuildBin
call :BuildBin x64
call :BuildBin ARM
call :BuildBin ARM64
) else (
call :BuildBin %1
Expand All @@ -31,8 +32,8 @@ MSBuild ShellExtension.vs2019.sln /t:Rebuild /p:Configuration="Release" /p:Platf
endlocal

if exist "%SIGNBAT_PATH%" (
call "%SIGNBAT_PATH%" "Build\%PLATFORM%\Release\%DLLFILENAME%"
call "%SIGNBAT_PATH%" "Build\%PLATFORM%\Release\WinMergeContextMenu.dll
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll
)

goto :eof
5 changes: 2 additions & 3 deletions ShellExtension/BuildBin.vs2022.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" (
if "%1" == "" (
call :BuildBin
call :BuildBin x64
call :BuildBin ARM
call :BuildBin ARM64
) else (
call :BuildBin %1
Expand All @@ -32,9 +33,7 @@ endlocal

if exist "%SIGNBAT_PATH%" (
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
if exist "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll" (
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
)
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
)

goto :eof

0 comments on commit ab98aba

Please sign in to comment.