2018-07-25 09:53:51 +00:00
|
|
|
rem Run from Qt command prompt with working directory set to root of repo
|
|
|
|
|
|
|
|
setlocal enableDelayedExpansion
|
|
|
|
@echo off
|
|
|
|
|
|
|
|
set BUILD_CONFIG=%1
|
|
|
|
set ARCH=%2
|
|
|
|
|
2018-07-29 02:56:08 +00:00
|
|
|
rem Convert to lower case for windeployqt
|
|
|
|
if /I "%BUILD_CONFIG%"=="debug" (
|
|
|
|
set BUILD_CONFIG=debug
|
|
|
|
) else (
|
|
|
|
if /I "%BUILD_CONFIG%"=="release" (
|
|
|
|
set BUILD_CONFIG=release
|
|
|
|
) else (
|
2018-08-01 01:14:04 +00:00
|
|
|
if /I "%BUILD_CONFIG%"=="signed-release" (
|
|
|
|
set BUILD_CONFIG=release
|
|
|
|
set SIGN=1
|
2018-09-04 08:03:01 +00:00
|
|
|
set MUST_DEPLOY_SYMBOLS=1
|
2019-01-06 01:25:40 +00:00
|
|
|
|
|
|
|
rem Fail if there are unstaged changes
|
|
|
|
git diff-index --quiet HEAD --
|
|
|
|
if !ERRORLEVEL! NEQ 0 (
|
|
|
|
echo Signed release builds must not have unstaged changes!
|
|
|
|
exit /b 1
|
|
|
|
)
|
2018-08-01 01:14:04 +00:00
|
|
|
) else (
|
|
|
|
echo Invalid build configuration
|
|
|
|
exit /b 1
|
|
|
|
)
|
2018-07-25 09:53:51 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-07-29 02:43:40 +00:00
|
|
|
if /I "%ARCH%" NEQ "x86" (
|
|
|
|
if /I "%ARCH%" NEQ "x64" (
|
2018-07-25 09:53:51 +00:00
|
|
|
echo Invalid build architecture
|
2018-07-29 02:56:08 +00:00
|
|
|
exit /b 1
|
2018-07-25 09:53:51 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-07-26 02:52:58 +00:00
|
|
|
set VS_PATH=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community
|
2018-08-01 01:14:04 +00:00
|
|
|
set SIGNTOOL_PARAMS=sign /tr http://timestamp.digicert.com /td sha256 /fd sha256 /sha1 1B3C676E831A94EC0327C3347EB32C68C26B3A67 /v
|
2018-07-26 02:52:58 +00:00
|
|
|
|
|
|
|
call "%VS_PATH%\VC\Auxiliary\Build\vcvarsall.bat" %ARCH%
|
2018-07-25 09:53:51 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
|
|
|
set BUILD_ROOT=%cd%\build
|
|
|
|
set SOURCE_ROOT=%cd%
|
|
|
|
set BUILD_FOLDER=%BUILD_ROOT%\build-%ARCH%-%BUILD_CONFIG%
|
|
|
|
set DEPLOY_FOLDER=%BUILD_ROOT%\deploy-%ARCH%-%BUILD_CONFIG%
|
|
|
|
set INSTALLER_FOLDER=%BUILD_ROOT%\installer-%ARCH%-%BUILD_CONFIG%
|
2018-09-04 08:03:01 +00:00
|
|
|
set SYMBOLS_FOLDER=%BUILD_ROOT%\symbols-%ARCH%-%BUILD_CONFIG%
|
2018-07-25 09:53:51 +00:00
|
|
|
|
|
|
|
echo Cleaning output directories
|
|
|
|
rmdir /s /q %DEPLOY_FOLDER%
|
|
|
|
rmdir /s /q %BUILD_FOLDER%
|
|
|
|
rmdir /s /q %INSTALLER_FOLDER%
|
2018-09-04 08:03:01 +00:00
|
|
|
rmdir /s /q %SYMBOLS_FOLDER%
|
2018-07-25 09:53:51 +00:00
|
|
|
mkdir %BUILD_ROOT%
|
|
|
|
mkdir %DEPLOY_FOLDER%
|
|
|
|
mkdir %BUILD_FOLDER%
|
|
|
|
mkdir %INSTALLER_FOLDER%
|
2018-09-04 08:03:01 +00:00
|
|
|
mkdir %SYMBOLS_FOLDER%
|
2018-07-25 09:53:51 +00:00
|
|
|
|
|
|
|
echo Configuring the project
|
|
|
|
pushd %BUILD_FOLDER%
|
|
|
|
qmake %SOURCE_ROOT%\moonlight-qt.pro
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
popd
|
|
|
|
|
|
|
|
echo Compiling Moonlight in %BUILD_CONFIG% configuration
|
|
|
|
pushd %BUILD_FOLDER%
|
|
|
|
nmake %BUILD_CONFIG%
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
popd
|
|
|
|
|
2018-09-04 08:03:01 +00:00
|
|
|
echo Saving PDBs
|
|
|
|
for /r "%BUILD_FOLDER%" %%f in (*.pdb) do (
|
2018-09-15 02:32:23 +00:00
|
|
|
copy "%%f" %SYMBOLS_FOLDER%
|
2018-09-04 08:03:01 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
)
|
2018-09-15 02:32:23 +00:00
|
|
|
copy %SOURCE_ROOT%\libs\windows\lib\%ARCH%\*.pdb %SYMBOLS_FOLDER%
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
2018-09-04 08:03:01 +00:00
|
|
|
7z a %SYMBOLS_FOLDER%\MoonlightDebuggingSymbols.zip %SYMBOLS_FOLDER%\*.pdb
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
|
|
|
if "%ML_SYMBOL_STORE%" NEQ "" (
|
|
|
|
echo Publishing PDBs to symbol store: %ML_SYMBOL_STORE%
|
|
|
|
symstore add /f %SYMBOLS_FOLDER%\*.pdb /s %ML_SYMBOL_STORE% /t Moonlight
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
) else (
|
|
|
|
if "%MUST_DEPLOY_SYMBOLS%"=="1" (
|
|
|
|
echo "A symbol server must be specified in ML_SYMBOL_STORE for signed release builds"
|
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-07-25 09:53:51 +00:00
|
|
|
echo Copying DLL dependencies
|
|
|
|
copy %SOURCE_ROOT%\libs\windows\lib\%ARCH%\*.dll %DEPLOY_FOLDER%
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-10-14 02:35:21 +00:00
|
|
|
echo Copying AntiHooking.dll
|
|
|
|
copy %BUILD_FOLDER%\AntiHooking\%BUILD_CONFIG%\AntiHooking.dll %DEPLOY_FOLDER%
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-09-13 18:17:51 +00:00
|
|
|
echo Copying GC mapping list
|
2018-09-29 23:43:14 +00:00
|
|
|
copy %SOURCE_ROOT%\app\SDL_GameControllerDB\gamecontrollerdb.txt %DEPLOY_FOLDER%
|
2018-09-13 18:17:51 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-08-02 03:40:05 +00:00
|
|
|
echo Deploying Qt dependencies
|
|
|
|
windeployqt.exe --dir %DEPLOY_FOLDER% --%BUILD_CONFIG% --qmldir %SOURCE_ROOT%\app\gui --no-opengl-sw --no-compiler-runtime %BUILD_FOLDER%\app\%BUILD_CONFIG%\Moonlight.exe
|
2018-07-25 09:53:51 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
|
|
|
echo Harvesting files for WiX
|
2018-08-01 01:14:04 +00:00
|
|
|
"%WIX%\bin\heat" dir %DEPLOY_FOLDER% -srd -sfrag -ag -sw5150 -cg MoonlightDependencies -var var.SourceDir -dr INSTALLFOLDER -out %BUILD_FOLDER%\Dependencies.wxs
|
2018-07-25 09:53:51 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
|
|
|
echo Copying application binary to deployment directory
|
|
|
|
copy %BUILD_FOLDER%\app\%BUILD_CONFIG%\Moonlight.exe %DEPLOY_FOLDER%
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-08-01 01:14:04 +00:00
|
|
|
if "%SIGN%"=="1" (
|
|
|
|
echo Signing deployed binaries
|
2018-10-12 01:45:29 +00:00
|
|
|
set FILES_TO_SIGN=
|
2018-08-01 01:14:04 +00:00
|
|
|
for /r "%DEPLOY_FOLDER%" %%f in (*.dll *.exe) do (
|
2018-10-12 01:45:29 +00:00
|
|
|
set FILES_TO_SIGN=!FILES_TO_SIGN! %%f
|
2018-08-01 01:14:04 +00:00
|
|
|
)
|
2018-10-12 01:45:29 +00:00
|
|
|
signtool %SIGNTOOL_PARAMS% !FILES_TO_SIGN!
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
2018-08-01 01:14:04 +00:00
|
|
|
)
|
|
|
|
|
2018-08-16 03:29:59 +00:00
|
|
|
echo Building MSI
|
|
|
|
msbuild %SOURCE_ROOT%\wix\Moonlight\Moonlight.wixproj /p:Configuration=%BUILD_CONFIG% /p:Platform=%ARCH%
|
2018-07-25 09:53:51 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-08-16 03:29:59 +00:00
|
|
|
if "%SIGN%"=="1" (
|
|
|
|
echo Signing MSI
|
|
|
|
signtool %SIGNTOOL_PARAMS% %BUILD_FOLDER%\Moonlight.msi
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
)
|
|
|
|
|
|
|
|
echo Building bundle
|
2018-08-31 03:47:44 +00:00
|
|
|
set VCREDIST_INSTALLER=%VCToolsRedistDir%vcredist_%ARCH%.exe
|
2018-08-16 03:29:59 +00:00
|
|
|
rem Bundles are always x86 binaries
|
|
|
|
msbuild %SOURCE_ROOT%\wix\MoonlightSetup\MoonlightSetup.wixproj /p:Configuration=%BUILD_CONFIG% /p:Platform=x86
|
2018-08-11 21:12:55 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-08-01 01:14:04 +00:00
|
|
|
if "%SIGN%"=="1" (
|
2018-08-16 03:29:59 +00:00
|
|
|
echo Signing bundle
|
2018-08-01 01:14:04 +00:00
|
|
|
"%WIX%\bin\insignia" -ib %INSTALLER_FOLDER%\MoonlightSetup.exe -o %BUILD_FOLDER%\engine.exe
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
signtool %SIGNTOOL_PARAMS% %BUILD_FOLDER%\engine.exe
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
"%WIX%\bin\insignia" -ab %BUILD_FOLDER%\engine.exe %INSTALLER_FOLDER%\MoonlightSetup.exe -o %INSTALLER_FOLDER%\MoonlightSetup.exe
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
signtool %SIGNTOOL_PARAMS% %INSTALLER_FOLDER%\MoonlightSetup.exe
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
)
|
|
|
|
|
2018-08-16 03:29:59 +00:00
|
|
|
echo Building portable package
|
|
|
|
rem This must be done after WiX harvesting and signing, since the VCRT dlls are MS signed
|
|
|
|
rem and should not be harvested for inclusion in the full installer
|
2018-08-31 03:47:44 +00:00
|
|
|
copy "%VCToolsRedistDir%%ARCH%\Microsoft.VC141.CRT\*.dll" %DEPLOY_FOLDER%
|
2018-08-17 04:04:47 +00:00
|
|
|
rem This file tells Moonlight that it's a portable installation
|
|
|
|
echo. > %DEPLOY_FOLDER%\portable.dat
|
2018-08-16 03:29:59 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
7z a %INSTALLER_FOLDER%\MoonlightPortable.zip %DEPLOY_FOLDER%\*
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
|
|
|
|
2018-07-29 06:59:20 +00:00
|
|
|
if /i "%APPVEYOR%"=="true" (
|
|
|
|
echo Pushing artifacts
|
|
|
|
appveyor PushArtifact %INSTALLER_FOLDER%\MoonlightSetup.exe -FileName MoonlightSetup-%ARCH%-%BUILD_CONFIG%.exe
|
2018-08-01 01:14:04 +00:00
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
2018-08-11 21:12:55 +00:00
|
|
|
appveyor PushArtifact %INSTALLER_FOLDER%\MoonlightPortable.zip -FileName MoonlightPortable-%ARCH%-%BUILD_CONFIG%.zip
|
|
|
|
if !ERRORLEVEL! NEQ 0 goto Error
|
2018-09-04 08:09:10 +00:00
|
|
|
appveyor PushArtifact %SYMBOLS_FOLDER%\MoonlightDebuggingSymbols.zip -FileName MoonlightDebuggingSymbols-%ARCH%-%BUILD_CONFIG%.zip
|
2018-07-29 06:59:20 +00:00
|
|
|
)
|
|
|
|
|
2018-07-25 09:53:51 +00:00
|
|
|
echo Build successful!
|
|
|
|
exit /b 0
|
|
|
|
|
|
|
|
:Error
|
|
|
|
echo Build failed!
|
2018-09-13 18:17:51 +00:00
|
|
|
exit /b !ERRORLEVEL!
|