forked from WinMerge/frhed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuildBin.vs2019.cmd
26 lines (21 loc) · 1.06 KB
/
BuildBin.vs2019.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cd /d "%~dp0"
del /s Build\*.exe
del /s BuildTmp\*.res
setlocal
for /f "usebackq tokens=*" %%i in (`"%programfiles(x86)%\microsoft visual studio\installer\vswhere.exe" -version [16.0^,17.0^) -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do (
set InstallDir=%%i
)
if exist "%InstallDir%\Common7\Tools\vsdevcmd.bat" (
call "%InstallDir%\Common7\Tools\vsdevcmd.bat %*
)
MSBuild FRHED.vs2019.sln /t:rebuild /p:Configuration=UnicodeRelease /p:Platform="Win32" || pause
MSBuild FRHED.vs2019.sln /t:rebuild /p:Configuration=UnicodeRelease /p:Platform="x64" || pause
if exist "%SIGNBAT_PATH%" (
"%SIGNBAT_PATH%" Build\FRHED\Win32\UnicodeRelease\frhed.exe
"%SIGNBAT_PATH%" Build\FRHED\Win32\UnicodeRelease\hekseditU.dll
"%SIGNBAT_PATH%" Build\FRHED\Win32\UnicodeRelease\Languages\heksedit.lng
"%SIGNBAT_PATH%" Build\FRHED\x64\UnicodeRelease\frhed.exe
"%SIGNBAT_PATH%" Build\FRHED\x64\UnicodeRelease\hekseditU.dll
"%SIGNBAT_PATH%" Build\FRHED\x64\UnicodeRelease\Languages\heksedit.lng
)
endlocal