Merge pull request #2824 from cmgustavo/bug/builder-windows-01

Fixes builder for windows
This commit is contained in:
Matias Alejo Garcia 2015-06-03 12:38:25 -03:00
commit 87a8f6c553
2 changed files with 6 additions and 4 deletions

5
webkitbuilds/setup-win32.iss Normal file → Executable file
View File

@ -8,7 +8,7 @@
#define MyAppExeName "copay.exe" #define MyAppExeName "copay.exe"
[Setup] [Setup]
AppId={804636ee-b017-4cad-8719-e58ac97ffa5c} AppId={{804636ee-b017-4cad-8719-e58ac97ffa5c}
AppName={#MyAppName} AppName={#MyAppName}
AppVersion={#MyAppVersion} AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion} ;AppVerName={#MyAppName} {#MyAppVersion}
@ -18,7 +18,8 @@ AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL} AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName} DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName} DefaultGroupName={#MyAppName}
OutputBaseFilename=copay-installer-32 OutputBaseFilename=copay-win32
OutputDir=./
Compression=lzma Compression=lzma
SolidCompression=yes SolidCompression=yes

5
webkitbuilds/setup-win64.iss Normal file → Executable file
View File

@ -8,7 +8,7 @@
#define MyAppExeName "copay.exe" #define MyAppExeName "copay.exe"
[Setup] [Setup]
AppId={804636ee-b017-4cad-8719-e58ac97ffa5c} AppId={{804636ee-b017-4cad-8719-e58ac97ffa5c}
AppName={#MyAppName} AppName={#MyAppName}
AppVersion={#MyAppVersion} AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion} ;AppVerName={#MyAppName} {#MyAppVersion}
@ -18,7 +18,8 @@ AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL} AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName} DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName} DefaultGroupName={#MyAppName}
OutputBaseFilename=copay-installer-64 OutputBaseFilename=copay-win64
OutputDir=./
Compression=lzma Compression=lzma
SolidCompression=yes SolidCompression=yes