-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTWIMExtract_Setup.iss
80 lines (71 loc) · 3.77 KB
/
TWIMExtract_Setup.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "TWIMExtract"
#define MyAppVersion "1.6.1"
#define MyAppPublisher "University of Michigan"
#define MyAppURL "https://github.com/RuotoloLab/TWIMExtract"
#define MyAppExeName "runTWIMExtract.bat"
#define SourceDir "C:\Users\caror\TWIMExtract"
#define OutputDir "C:\Users\caror\TWIMExtract\TWIMExtract_build"
[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={{867CAA5D-ACDE-4CAB-8D91-228D780850AE}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName=C:\TWIMExtract
DisableDirPage=yes
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputBaseFilename=TWIMExtract_Setup
Compression=lzma
SolidCompression=yes
UsePreviousAppDir=False
OutputDir={#OutputDir}
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
Source: "{#SourceDir}\TWIMExtract_Help.txt"; DestDir: "{app}"; Flags: isreadme
Source: "{#SourceDir}\root\*"; DestDir: "{app}\root"
Source: "{#SourceDir}\_EXAMPLES\Batches\ExampleBatchCSV.csv"; DestDir: "{app}\_EXAMPLES\Batches"
Source: "{#SourceDir}\lib\*"; DestDir: "{app}\lib"
Source: "{#SourceDir}\jars\TWIMExtract.jar"; DestDir: "{app}\jars"
Source: "{#SourceDir}\runTWIMExtract.bat"; DestDir: "{app}"
Source: "{#SourceDir}\config\config.txt"; DestDir: "{app}\config"
Source: "{#SourceDir}\_EXAMPLES\Range_and_Rule_Examples\Making Selection Rule Files.docx"; DestDir: "{app}\_EXAMPLES\Range_and_Rule_Examples"
Source: "{#SourceDir}\_EXAMPLES\Range_and_Rule_Examples\RangeExample.txt"; DestDir: "{app}\_EXAMPLES\Range_and_Rule_Examples"
Source: "{#SourceDir}\_EXAMPLES\Range_and_Rule_Examples\RuleExample.txt"; DestDir: "{app}\_EXAMPLES\Range_and_Rule_Examples"
Source: "{#SourceDir}\_EXAMPLES\Range_and_Rule_Examples\Legacy format (advanced only)\TWIMExtract_Legacy_RangeExample.txt"; DestDir: "{app}\_EXAMPLES\Range_and_Rule_Examples\Legacy format (advanced only)"
Source: "{#SourceDir}\_EXAMPLES\Batches\ExampleRangeFolder\RangeExample.txt"; DestDir: "{app}\_EXAMPLES\Batches\ExampleRangeFolder"
Source: "{#SourceDir}\_EXAMPLES\Batches\ExampleRangeFolder\RangeExample2.txt"; DestDir: "{app}\_EXAMPLES\Batches\ExampleRangeFolder"
Source: "{#SourceDir}\_EXAMPLES\Batches\ExampleRangeFolder2\RangeExample3.txt"; DestDir: "{app}\_EXAMPLES\Batches\ExampleRangeFolder2"
[Icons]
Name: "{group}\{#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
[Dirs]
Name: "{app}\lib"
Name: "{app}\root"
Name: "{app}\jars"
Name: "{app}\config"
Name: "{app}\_EXAMPLES"
Name: "{app}\_EXAMPLES\Batches"
Name: "{app}\_EXAMPLES\Range_and_Rule_Examples"
Name: "{app}\_EXAMPLES\Range_and_Rule_Examples\Legacy format (advanced only)"
Name: "{app}\_EXAMPLES\Batches\ExampleRangeFolder"
Name: "{app}\_EXAMPLES\Batches\ExampleRangeFolder2"
Name: "{app}\_EXAMPLES\Batches\ExampleRawFolder"
Name: "{app}\_EXAMPLES\Batches\ExampleRawFolder2"
Name: "{app}\_EXAMPLES\Batches\ExampleRawFolder\ExampleData1.raw"
Name: "{app}\_EXAMPLES\Batches\ExampleRawFolder\ExampleData2.raw"
Name: "{app}\_EXAMPLES\Batches\ExampleRawFolder2\ExampleData3.raw"