2017-06-10 16:58:42 -03:00
|
|
|
@echo off
|
|
|
|
setlocal
|
|
|
|
set D=%~dp0
|
2017-09-25 13:58:10 -03:00
|
|
|
set PCBUILD=%D%..\..\PCbuild\
|
2017-07-26 13:09:01 -03:00
|
|
|
if "%Py_OutDir%"=="" set Py_OutDir=%PCBUILD%
|
2017-06-10 16:58:42 -03:00
|
|
|
|
|
|
|
set BUILDX86=
|
|
|
|
set BUILDX64=
|
2019-04-12 13:36:38 -03:00
|
|
|
set BUILDARM32=
|
2017-06-10 16:58:42 -03:00
|
|
|
set REBUILD=
|
|
|
|
set OUTPUT=
|
|
|
|
set PACKAGES=
|
2019-04-12 13:36:38 -03:00
|
|
|
set PYTHON_EXE=
|
2017-06-10 16:58:42 -03:00
|
|
|
|
|
|
|
:CheckOpts
|
|
|
|
if "%~1" EQU "-h" goto Help
|
|
|
|
if "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts
|
|
|
|
if "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts
|
2019-04-12 13:36:38 -03:00
|
|
|
if "%~1" EQU "-arm32" (set BUILDARM32=1) && shift && goto CheckOpts
|
2017-06-10 16:58:42 -03:00
|
|
|
if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts
|
|
|
|
if "%~1" EQU "-o" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
|
|
|
|
if "%~1" EQU "--out" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
|
|
|
|
if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts
|
2019-04-12 13:36:38 -03:00
|
|
|
if "%~1" EQU "--python-exe" (set PYTHON_EXE="/p:PythonExe=%~2") && shift && shift && goto CheckOpts
|
2017-06-10 16:58:42 -03:00
|
|
|
|
2019-04-12 13:36:38 -03:00
|
|
|
if not defined BUILDX86 if not defined BUILDX64 if not defined BUILDARM32 (set BUILDX86=1) && (set BUILDX64=1) && (set BUILDARM32=1)
|
2017-06-10 16:58:42 -03:00
|
|
|
|
|
|
|
call "%D%..\msi\get_externals.bat"
|
2017-06-19 14:34:25 -03:00
|
|
|
call "%PCBUILD%find_msbuild.bat" %MSBUILD%
|
|
|
|
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
|
2017-06-10 16:58:42 -03:00
|
|
|
|
|
|
|
if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%"
|
|
|
|
|
|
|
|
if defined BUILDX86 (
|
|
|
|
if defined REBUILD ( call "%PCBUILD%build.bat" -e -r
|
2017-07-26 13:09:01 -03:00
|
|
|
) else if not exist "%Py_OutDir%win32\python.exe" call "%PCBUILD%build.bat" -e
|
2017-06-10 16:58:42 -03:00
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
|
2019-04-12 13:36:38 -03:00
|
|
|
%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% %PYTHON_EXE%
|
2017-06-10 16:58:42 -03:00
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
)
|
|
|
|
|
|
|
|
if defined BUILDX64 (
|
|
|
|
if defined REBUILD ( call "%PCBUILD%build.bat" -p x64 -e -r
|
2017-07-26 13:09:01 -03:00
|
|
|
) else if not exist "%Py_OutDir%amd64\python.exe" call "%PCBUILD%build.bat" -p x64 -e
|
2017-06-10 16:58:42 -03:00
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
|
2019-04-12 13:36:38 -03:00
|
|
|
%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES% %PYTHON_EXE%
|
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
)
|
|
|
|
|
|
|
|
if defined BUILDARM32 (
|
|
|
|
if defined REBUILD ( call "%PCBUILD%build.bat" -p ARM -e -r --no-tkinter
|
|
|
|
) else if not exist "%Py_OutDir%arm32\python.exe" call "%PCBUILD%build.bat" -p ARM -e --no-tkinter
|
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
|
|
|
|
%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=ARM %OUTPUT% %PACKAGES% %PYTHON_EXE%
|
2017-06-10 16:58:42 -03:00
|
|
|
if errorlevel 1 goto :eof
|
|
|
|
)
|
|
|
|
|
|
|
|
exit /B 0
|
|
|
|
|
|
|
|
:Help
|
|
|
|
echo build.bat [-x86] [-x64] [--out DIR] [-r] [-h]
|
|
|
|
echo.
|
|
|
|
echo -x86 Build x86 installers
|
|
|
|
echo -x64 Build x64 installers
|
|
|
|
echo -r Rebuild rather than incremental build
|
|
|
|
echo --out [DIR] Override output directory
|
|
|
|
echo -h Show usage
|