parent
2f8910df06
commit
2568d14fd7
4 changed files with 1417 additions and 14 deletions
@ -1 +1 @@ |
||||
Subproject commit c579858dd23739aa6ed12928fd4f3c7c23d9130f |
||||
Subproject commit 36984104ec98aa4d03206d654746113c865e507d |
@ -0,0 +1,155 @@ |
||||
@echo off |
||||
|
||||
set libQtPath=c:\Qt\Qt5.12.9\5.12.9\msvc2017_64 |
||||
|
||||
if not exist "%libQtPath%" ( |
||||
echo "error: Unable to resolve Qt library. Make sure the 'libQtPath' variable is correct." |
||||
exit 1 |
||||
) |
||||
|
||||
rem https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line?view=vs-2019 |
||||
set vcvarsallCommand=c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat |
||||
|
||||
if not exist "%vcvarsallCommand%" ( |
||||
echo "error: Unable to resolve vcvarsall command file. Make sure the 'vcvarsallCommand' variable is correct." |
||||
exit 1 |
||||
) |
||||
|
||||
set upstreamURL=https://github.com/DEAKSoftware/Synergy-Binaries.git |
||||
|
||||
for /F "tokens=* USEBACKQ" %%F in (`git config --get remote.origin.url`) do ( |
||||
set queriedURL=%%F |
||||
) |
||||
|
||||
if "%upstreamURL%" NEQ "%queriedURL%" ( |
||||
echo "error: Unrecognised Git upstream URL. This script must run within the top-level directory of the Synergy-Binaries repository." |
||||
exit 1 |
||||
) |
||||
|
||||
for /F "tokens=* USEBACKQ" %%F in (`git rev-parse --show-toplevel`) do ( |
||||
set toplevelPath=%%F |
||||
) |
||||
|
||||
if "%toplevelPath%" EQU "" ( |
||||
echo "error: Unrecognised top-level directory. This script must run within the top-level directory of the Synergy-Binaries repository." |
||||
exit 1 |
||||
) |
||||
|
||||
set synergyCorePath=%toplevelPath%\Synergy-Core |
||||
set buildPath=%synergyCorePath%\build |
||||
set binariesPath=%toplevelPath%\Binaries |
||||
set toolsPath=%toplevelPath%\Tools |
||||
|
||||
call "%vcvarsallCommand%" x64 |
||||
|
||||
:main |
||||
|
||||
|
||||
call :configure |
||||
call :buildMSI |
||||
|
||||
|
||||
exit 0 |
||||
|
||||
:configureSubmodules |
||||
|
||||
git submodule update --init --remote --recursive |
||||
exit /b 0 |
||||
|
||||
:configureCMake |
||||
|
||||
cmake -S "%synergyCorePath%" -B "%buildPath%" -G "Visual Studio 16 2019" -D CMAKE_PREFIX_PATH="%libQtPath%" -D CMAKE_BUILD_TYPE=MINSIZEREL -D SYNERGY_ENTERPRISE=ON |
||||
if %errorlevel% equ 1 exit 1 |
||||
exit /b 0 |
||||
|
||||
:configureVersion |
||||
|
||||
call "%buildPath%\version.bat" |
||||
set synergyVersion=%SYNERGY_VERSION_MAJOR%.%SYNERGY_VERSION_MINOR%.%SYNERGY_VERSION_PATCH% |
||||
set synergyVersionStage=%SYNERGY_VERSION_STAGE% |
||||
exit /b 0 |
||||
|
||||
:configure |
||||
|
||||
call :configureSubmodules |
||||
call :configureCMake |
||||
call :configureVersion |
||||
exit /b 0 |
||||
|
||||
:buildMSBuild |
||||
|
||||
pushd "%buildPath%" |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
msbuild synergy-core.sln /p:Platform="x64" /p:Configuration=Release /m |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
popd |
||||
|
||||
exit /b 0 |
||||
|
||||
:buildZIP |
||||
|
||||
setlocal |
||||
|
||||
set inputPath=%buildPath%\bin\Release |
||||
set outputPath=%binariesPath%\Synergy-%synergyVersion%-%synergyVersionStage%-x64 |
||||
|
||||
mkdir "%outputPath%" |
||||
|
||||
copy "%inputPath%\libEGL.dll" "%outputPath%" |
||||
copy "%inputPath%\libGLESv2.dll" "%outputPath%" |
||||
copy "%inputPath%\Qt5Core.dll" "%outputPath%" |
||||
copy "%inputPath%\Qt5Gui.dll" "%outputPath%" |
||||
copy "%inputPath%\Qt5Network.dll" "%outputPath%" |
||||
copy "%inputPath%\Qt5Svg.dll" "%outputPath%" |
||||
copy "%inputPath%\Qt5Widgets.dll" "%outputPath%" |
||||
copy "%inputPath%\synergy.exe" "%outputPath%" |
||||
copy "%inputPath%\synergyc.exe" "%outputPath%" |
||||
copy "%inputPath%\synergyd.exe" "%outputPath%" |
||||
copy "%inputPath%\synergys.exe" "%outputPath%" |
||||
copy "%inputPath%\syntool.exe" "%outputPath%" |
||||
|
||||
mkdir "%outputPath%\Platforms" |
||||
copy "%inputPath%\Platforms" "%outputPath%\Platforms" |
||||
|
||||
mkdir "%outputPath%\OpenSSL" |
||||
copy "%synergyCorePath%\ext\openssl\windows\x64\bin\*" "%outputPath%\OpenSSL" |
||||
|
||||
endlocal |
||||
exit /b 0 |
||||
|
||||
:buildMSI |
||||
|
||||
pushd "%buildPath%\installer" |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
msbuild Synergy.sln /p:Configuration=Release |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
popd |
||||
|
||||
copy "%buildPath%\installer\bin\Release\Synergy.msi" "%binariesPath%" |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
ren "%binariesPath%\Synergy.msi" "Synergy-%synergyVersion%-%synergyVersionStage%-x64.msi" |
||||
|
||||
exit /b 0 |
||||
|
||||
:buildClean |
||||
|
||||
pushd "%synergyCorePath%" |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
git clean -fdx |
||||
|
||||
popd |
||||
|
||||
pushd "%toplevelPath%" |
||||
if %errorlevel% equ 1 exit 1 |
||||
|
||||
git clean -fdx |
||||
|
||||
popd |
||||
|
||||
exit /b 0 |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue