Skip to content

Commit

Permalink
Fix opensll path for windows build system.
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikDeak committed Jul 20, 2021
1 parent 212c5bf commit f5f4515
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Scripts/Build/BuildWindows.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
copy "%sourcePath%\Styles" "%productPath%\Styles" || exit 1

mkdir "%productPath%\OpenSSL"
copy "%productRepoPath%\ext\openssl\windows\x64\bin\*" "%productPath%\OpenSSL" || exit 1
copy "%productRepoPath%\ext\openssl\windows\x64\bin\*.dll" "%productPath%" || exit 1
copy "%openSSLPath%\bin\*" "%productPath%\OpenSSL" || exit 1
copy "%openSSLPath%\bin\*.dll" "%productPath%" || exit 1

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

Expand Down
1 change: 1 addition & 0 deletions Scripts/Detail/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def resolvePath( self, name, mustExist = True ):
resolvePath( self, "binariesPath" )
resolvePath( self, "toolsPath" )
resolvePath( self, "libQtPath" )
resolvePath( self, "openSSLPath" )
resolvePath( self, "vcvarsallPath" )

def configurePlatformVersion( self ):
Expand Down

0 comments on commit f5f4515

Please sign in to comment.