mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 20:06:59 -06:00
Move SUBSYS variable to appveyor.cmd
This commit is contained in:
@@ -51,6 +51,7 @@ goto build_vc
|
||||
|
||||
:build_sdk
|
||||
set PATH=%OPATH%
|
||||
set SUBSYS="5.01"
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
|
||||
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /ia64 /xp
|
||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-ia64
|
||||
@@ -60,14 +61,17 @@ goto %NEXT%
|
||||
:build_vc
|
||||
FOR /R .\ %%d IN (ARM X64 O) DO rd /S /Q %%d 2>NUL
|
||||
set PATH=%OPATH%
|
||||
set SUBSYS="5.01"
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio %VC%\VC\vcvarsall.bat" x86
|
||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x32
|
||||
call build-x32.cmd
|
||||
set PATH=%OPATH%
|
||||
set SUBSYS="5.02"
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio %VC%\VC\vcvarsall.bat" x86_amd64
|
||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x64
|
||||
call build-x64.cmd
|
||||
set PATH=%OPATH%
|
||||
set SUBSYS="6.02"
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio %VC%\VC\vcvarsall.bat" x86_arm
|
||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-arm
|
||||
call build-arm.cmd
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@echo off
|
||||
|
||||
set ROOT=%cd%\7zip
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\binArm
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\binArm
|
||||
if not defined ERRFILE set ERRFILE=%cd%\error.txt
|
||||
mkdir %OUTDIR%
|
||||
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
@echo off
|
||||
|
||||
set ROOT=%cd%\7zip
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\bin32
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\bin32
|
||||
if not defined ERRFILE set ERRFILE=%cd%\error.txt
|
||||
if not defined SUBSYS set SUBSYS="5.01"
|
||||
mkdir %OUTDIR%
|
||||
|
||||
set OPTS=MY_STATIC_LINK=1 /NOLOGO
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
@echo off
|
||||
|
||||
set ROOT=%cd%\7zip
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\bin64
|
||||
if not defined OUTDIR set OUTDIR=%ROOT%\bin64
|
||||
if not defined ERRFILE set ERRFILE=%cd%\error.txt
|
||||
if not defined SUBSYS set SUBSYS="5.02"
|
||||
mkdir %OUTDIR%
|
||||
|
||||
set OPTS=PLATFORM=x64 MY_STATIC_LINK=1 /NOLOGO
|
||||
|
||||
Reference in New Issue
Block a user