-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBuildAllTargets.cmd
More file actions
35 lines (27 loc) · 1.16 KB
/
BuildAllTargets.cmd
File metadata and controls
35 lines (27 loc) · 1.16 KB
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
27
28
29
30
31
32
33
34
35
@setlocal
@echo off
rem Change to the current folder.
cd "%~dp0"
rem Remove the output folder for a fresh compile.
rd /s /q Output
rem Initialize Visual Studio environment
set VisualStudioInstallerFolder="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer"
if %PROCESSOR_ARCHITECTURE%==x86 set VisualStudioInstallerFolder="%ProgramFiles%\Microsoft Visual Studio\Installer"
pushd %VisualStudioInstallerFolder%
for /f "usebackq tokens=*" %%i in (`vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do (
set VisualStudioInstallDir=%%i
)
popd
call "%VisualStudioInstallDir%\VC\Auxiliary\Build\vcvarsall.bat" x86
rem Build all targets
MSBuild -binaryLogger:Output\BuildAllTargets.binlog -m BuildAllTargets.proj
rem Extract files from NuGet package to folder
7z x Output\Mile.Aria2.nupkg "-o.\Output\Mile.Aria2"
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL%
rem Copy Documents
copy .\Output\Mile.Aria2\*.md .\Output\Mile.Aria2\Redist\
rename .\Output\Mile.Aria2\Redist\*.md *.txt
if %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL%
rem Build SDK Package
7z a -r Output\Mile.Aria2.zip .\Output\Mile.Aria2\Redist\*.*
@endlocal