|
|
@@ -0,0 +1,45 @@
|
|
|
+; Script generated by the Inno Setup Script Wizard.
|
|
|
+; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
|
|
+
|
|
|
+#define MyAppName "device-client"
|
|
|
+#define MyAppVersion "1.0.0.0"
|
|
|
+#define MyAppPublisher "usoftchina.com"
|
|
|
+#define MyAppURL "https://www.usoftchina.com/"
|
|
|
+#define MyAppExeName "device-client.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={{B53F1479-C51D-4EC5-9E67-C6A0D6705E75}
|
|
|
+AppName={#MyAppName}
|
|
|
+AppVersion={#MyAppVersion}
|
|
|
+;AppVerName={#MyAppName} {#MyAppVersion}
|
|
|
+AppPublisher={#MyAppPublisher}
|
|
|
+AppPublisherURL={#MyAppURL}
|
|
|
+AppSupportURL={#MyAppURL}
|
|
|
+AppUpdatesURL={#MyAppURL}
|
|
|
+DefaultDirName={pf}\{#MyAppName}
|
|
|
+DisableProgramGroupPage=yes
|
|
|
+OutputBaseFilename=setup
|
|
|
+SetupIconFile=F:\workspace\smartschool-platform\applications\device\device-client\src\main\resources\icon.ico
|
|
|
+Compression=lzma
|
|
|
+SolidCompression=yes
|
|
|
+
|
|
|
+[Languages]
|
|
|
+Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
|
+
|
|
|
+[Tasks]
|
|
|
+Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
|
|
+
|
|
|
+[Files]
|
|
|
+Source: "F:\workspace\smartschool-platform\applications\device\device-client\target\device-client.exe"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
+; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
|
|
+
|
|
|
+[Icons]
|
|
|
+Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
+Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
|
|
+
|
|
|
+[Run]
|
|
|
+Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
|
|
+
|