Compare commits
1 Commits
0.1.0
..
1b837c97e5
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b837c97e5 |
@@ -0,0 +1,77 @@
|
||||
; Script generated by the Inno Setup Script Wizard.
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
; Non-commercial use only
|
||||
|
||||
#define MyAppName "Haul"
|
||||
#define MyAppVersion "0.1.0"
|
||||
#define MyAppPublisher "A Apointless Space"
|
||||
#define MyAppURL "https://gitea.apointless.space/"
|
||||
#define MyAppExeName "MyProg-x64.exe"
|
||||
|
||||
[Setup]
|
||||
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
|
||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||
AppId={{E7059C44-7B67-430F-BF2E-6BED87C720B6}
|
||||
AppName={#MyAppName}
|
||||
AppVersion={#MyAppVersion}
|
||||
;AppVerName={#MyAppName} {#MyAppVersion}
|
||||
AppPublisher={#MyAppPublisher}
|
||||
AppPublisherURL={#MyAppURL}
|
||||
AppSupportURL={#MyAppURL}
|
||||
AppUpdatesURL={#MyAppURL}
|
||||
DefaultDirName=%LOCALAPPDATA%\{#MyAppName}
|
||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||
; "ArchitecturesAllowed=x64compatible" specifies that Setup cannot run
|
||||
; on anything but x64 and Windows 11 on Arm.
|
||||
ArchitecturesAllowed=x64compatible
|
||||
; "ArchitecturesInstallIn64BitMode=x64compatible" requests that the
|
||||
; install be done in "64-bit mode" on x64 or Windows 11 on Arm,
|
||||
; meaning it should use the native 64-bit Program Files directory and
|
||||
; the 64-bit view of the registry.
|
||||
ArchitecturesInstallIn64BitMode=x64compatible
|
||||
; Uncomment the following line to use a 64-bit installer.
|
||||
;SetupArchitecture=x64
|
||||
DisableProgramGroupPage=yes
|
||||
; Remove the following line to run in administrative install mode (install for all users).
|
||||
PrivilegesRequired=lowest
|
||||
OutputBaseFilename=mysetup
|
||||
SolidCompression=yes
|
||||
WizardStyle=modern
|
||||
|
||||
[Languages]
|
||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
[Tasks]
|
||||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||
|
||||
[Files]
|
||||
Source: "C:\Users\Ben\AppData\Local\Programs\Inno Setup 7\Examples\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\clon12compiler.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\d3d10warp.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\dxil.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\haul.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libdlclose-skip.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libEGL.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libgallium_wgl.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libGLESv1_CM.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libGLESv2.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libspirv_to_dxil.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libVkLayer_MESA_anti_lag.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libVkLayer_MESA_overlay.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\libVkLayer_MESA_vram_report_limit.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\openclon12.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\opengl32.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\va.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\va_win32.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\vaon12_drv_video.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\vulkan_dzn.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "C:\Users\Ben\git\haul\bin\vulkan_lvp.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||
|
||||
[Icons]
|
||||
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||
|
||||
[Run]
|
||||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user