Skip to content

Commit

Permalink
Fix build scripts, updated config.
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikDeak committed Jun 24, 2022
1 parent ef8f39a commit 526b3a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Scripts/Build/BuildWindows.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

set zipPath=%binariesPath%\%productPackageName%.zip

powershell.exe -nologo -noprofile -command "& { Compress-Archive -Force -Path '%productPath%' -DestinationPath '%zipPath%' }" || exit 1
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
8 changes: 4 additions & 4 deletions Scripts/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

[Windows]

libQtPath = C:\Qt\Qt5.12.9\5.12.9\msvc2017_64
openSSLPath = C:\Program Files\OpenSSL-Win64
vcvarsallPath = C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat
libQtPath = c:\Qt\Qt5.12.9\5.12.9\msvc2017_64
openSSLPath = c:\Program Files\OpenSSL-Win64
vcvarsallPath = c:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat

# Run cmake --help to choose a suitable generator
cmakeGenerator = Visual Studio 16 2019
cmakeGenerator = Visual Studio 17 2022

[Darwin]

Expand Down
2 changes: 1 addition & 1 deletion Synergy-Core

0 comments on commit 526b3a3

Please sign in to comment.