You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

95 lines
2.8 KiB

@echo off
:main
if [%vcvarsallPath] equ [] (
echo error: The required environment variables were not configured.
exit 1
)
call "%vcvarsallPath%" x64 || exit 1
call :configureCMake
call :buildBinaries
call :buildMSI
call :buildZIP
exit 0
:configureCMake
mkdir -p "%productRepoPath%\ext\openssl\windows\x64"
xcopy "%openSSLPath%" "%productRepoPath%\ext\openssl\windows\x64" /e /y || exit 1
cmake -S "%productRepoPath%" -B "%productBuildPath%"^
-G "%cmakeGenerator%"^
-D CMAKE_PREFIX_PATH="%libQtPath%;%openSSLPath%"^
-D CMAKE_BUILD_TYPE=Release^
-D SYNERGY_ENTERPRISE=ON^
-D SYNERGY_REVISION="%productRevision%"^
|| exit 1
exit /b 0
:buildBinaries
pushd "%productBuildPath%" || exit 1
msbuild synergy-core.sln /p:Platform="x64" /p:Configuration=Release /m || exit 1
popd
exit /b 0
:buildMSI
pushd "%productBuildPath%\installer" || exit 1
msbuild Synergy.sln /p:Configuration=Release || exit 1
popd
copy "%productBuildPath%\installer\bin\Release\Synergy.msi" "%binariesPath%" || exit 1
del "%binariesPath%\%productPackageName%.msi"
ren "%binariesPath%\Synergy.msi" "%productPackageName%.msi" || exit 1
exit /b 0
:buildZIP
setlocal
set sourcePath=%productBuildPath%\bin\Release
set productPath=%productBuildPath%\bin\%productPackageName%
mkdir "%productPath%"
copy "%sourcePath%\libEGL.dll" "%productPath%" || exit 1
copy "%sourcePath%\libGLESv2.dll" "%productPath%" || exit 1
copy "%sourcePath%\Qt5Core.dll" "%productPath%" || exit 1
copy "%sourcePath%\Qt5Gui.dll" "%productPath%" || exit 1
copy "%sourcePath%\Qt5Network.dll" "%productPath%" || exit 1
copy "%sourcePath%\Qt5Svg.dll" "%productPath%" || exit 1
copy "%sourcePath%\Qt5Widgets.dll" "%productPath%" || exit 1
copy "%sourcePath%\synergy.exe" "%productPath%" || exit 1
copy "%sourcePath%\synergyc.exe" "%productPath%" || exit 1
copy "%sourcePath%\synergyd.exe" "%productPath%" || exit 1
copy "%sourcePath%\synergys.exe" "%productPath%" || exit 1
copy "%sourcePath%\syntool.exe" "%productPath%" || exit 1
mkdir "%productPath%\Platforms"
copy "%sourcePath%\Platforms" "%productPath%\Platforms" || exit 1
mkdir "%productPath%\Styles"
copy "%sourcePath%\Styles" "%productPath%\Styles" || exit 1
mkdir "%productPath%\OpenSSL"
copy "%openSSLPath%\bin\*" "%productPath%\OpenSSL" || exit 1
copy "%openSSLPath%\bin\*.dll" "%productPath%" || exit 1
set zipPath=%binariesPath%\%productPackageName%.zip
powershell.exe -ExecutionPolicy Bypass -nologo -noprofile -command "& { Import-Module Microsoft.PowerShell.Archive; Compress-Archive -Force -Path '%productPath%' -DestinationPath '%zipPath%' }" || exit 1
endlocal
exit /b 0