• Home
  • Raw
  • Download

Lines Matching +full:build +full:- +full:packages

10 set PACKAGES=  variable
13 if "%~1" EQU "-h" goto Help
14 if "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts
15 if "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts
16 if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts
17 if "%~1" EQU "-o" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
18 if "%~1" EQU "--out" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
19 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts variable
23 if not defined NUGET where nuget -q || echo Cannot find nuget.exe on PATH and NUGET is not set. && …
26 if not defined PYTHON set PYTHON=py -3
28 @%PYTHON% -c "" >nul 2>nul
30 %NUGET% install python -OutputDirectory "%D%obj" -ExcludeVersion -NonInteractive
35 if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%" variable
38 if defined REBUILD ( call "%PCBUILD%build.bat" -e -r
39 ) else if not exist "%PCBUILD%python.exe" call "%PCBUILD%build.bat" -e
42 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES%
47 if defined REBUILD ( call "%PCBUILD%build.bat" -p x64 -e -r
48 ) else if not exist "%PCBUILD%amd64\python.exe" call "%PCBUILD%build.bat" -p x64 -e
51 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
58 echo build.bat [-x86] [-x64] [--out DIR] [-r] [-h]
60 echo -x86 Build x86 installers
61 echo -x64 Build x64 installers
62 echo -r Rebuild rather than incremental build
63 echo --out [DIR] Override output directory
64 echo -h Show usage