- Timestamp:
- May 14, 2020, 11:38:03 AM (5 years ago)
- Location:
- trunk/Install/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install/win/GraphicTest.iss
r2 r3 3 3 4 4 #define MyAppName "GraphicTest" 5 #define MyAppVersion "1.0.0-alfa" 5 #define MyAppNameShort "GraphicTest" 6 #define MyAppVersion "1.0.0" 7 #define MyAppVersionSuffix "alfa" 6 8 #define MyAppPublisher "Chronosoft" 7 9 #define MyAppPublisherShort "Chronosoft" … … 17 19 AppId={{BABA230F-339F-450A-BA09-0310DCBAB3B5} 18 20 AppName={#MyAppName} 21 #ifdef MyAppVersionSuffix 22 AppVersion={#MyAppVersion}-{#MyAppVersionSuffix} 23 AppVerName={#MyAppName} {#MyAppVersion}-{#MyAppVersionSuffix} 24 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}-{#MyAppVersionSuffix} 25 #else 19 26 AppVersion={#MyAppVersion} 20 ;AppVerName={#MyAppName} {#MyAppVersion} 27 AppVerName={#MyAppName} {#MyAppVersion} 28 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion} 29 #endif 21 30 AppPublisher={#MyAppPublisher} 22 31 AppPublisherURL={#MyAppURL} 23 32 AppSupportURL={#MyAppURL} 24 33 AppUpdatesURL={#MyAppURL} 25 DefaultDirName={pf}\{#MyAppPublisherShort}\{#MyAppName} 34 UninstallDisplayName={#MyAppName} 35 UninstallDisplayIcon="{app}\{#MyAppExeName}" 36 VersionInfoVersion={#MyAppVersion} 37 VersionInfoCompany={#MyAppPublisher} 38 DefaultDirName={commonpf}\{#MyAppPublisherShort}\{#MyAppName} 26 39 DefaultGroupName={#MyAppPublisherShort}\{#MyAppName} 27 40 AllowNoIcons=yes 28 41 OutputDir=. 29 OutputBaseFilename=Install-{#MyAppName}-{#MyAppVersion}30 42 Compression=lzma 31 43 SolidCompression=yes 32 44 ChangesAssociations=yes 45 WizardStyle=modern 33 46 ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be 34 47 ; done in "64-bit mode" on x64, meaning it should use the native … … 48 61 49 62 [Registry] 50 Root: HK CU; Subkey: "Software\Chronosoft\GraphicTest"; Flags: uninsdeletekey63 Root: HKLM; Subkey: "Software\Chronosoft\GraphicTest"; Flags: uninsdeletekey 51 64 52 65 [Files] -
trunk/Install/win/build.bat
r2 r3 18 18 copy %MAIN_EXE% %WIN64_EXE% 19 19 20 "c:\Program Files (x86)\Inno Setup 5\ISCC.exe" "%PROJECTNAME%.iss"20 "c:\Program Files (x86)\Inno Setup 6\ISCC.exe" "%PROJECTNAME%.iss"
Note:
See TracChangeset
for help on using the changeset viewer.