29 lines
957 B
Plaintext
29 lines
957 B
Plaintext
|
|
#define MyAppName "mpv.net"
|
|
#define MyAppExeName "mpvnet.exe"
|
|
#define MyAppSourceDir "..\..\MpvNet.Windows\bin\Debug"
|
|
#define MyAppVersion GetFileVersion("..\..\MpvNet.Windows\bin\Debug\mpvnet.exe")
|
|
|
|
[Setup]
|
|
AppId={{9AA2B100-BEF3-44D0-B819-D8FC3C4D557D}}
|
|
AppName={#MyAppName}
|
|
AppVersion={#MyAppVersion}
|
|
AppPublisher=Frank Skare (stax76)
|
|
ArchitecturesInstallIn64BitMode=x64
|
|
Compression=lzma2
|
|
DefaultDirName={autopf}\{#MyAppName}
|
|
OutputBaseFilename=mpv.net-v{#MyAppVersion}-setup
|
|
OutputDir=E:\Desktop
|
|
DefaultGroupName={#MyAppName}
|
|
SetupIconFile=..\..\MpvNet.Windows\mpv-icon.ico
|
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
|
PrivilegesRequired=admin
|
|
PrivilegesRequiredOverridesAllowed=dialog
|
|
|
|
[Icons]
|
|
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
|
[Files]
|
|
Source: "{#MyAppSourceDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
|
Source: "{#MyAppSourceDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs;
|