Last change
on this file since 759 was 660, checked in by dai_9181, 16 years ago |
バージョンを5.0.0.5に上げた(CP5としてリリース用)。
|
File size:
847 bytes
|
Line | |
---|
1 | ; -- Example1.iss --
|
---|
2 | ; Demonstrates copying 3 files and creating an icon.
|
---|
3 |
|
---|
4 | #define AppName "ActiveBasic 5.0"
|
---|
5 | #define CampanyName "activebasic.com"
|
---|
6 | #define DestDir ".\dest"
|
---|
7 | #define Version "5.0.0.5"
|
---|
8 | #define VersionSubText "(CP5)"
|
---|
9 |
|
---|
10 | [Setup]
|
---|
11 | AppName={#AppName}
|
---|
12 | AppVerName={#AppName}
|
---|
13 | DefaultDirName={pf}\{#AppName}
|
---|
14 | DefaultGroupName={#AppName}
|
---|
15 | Compression=lzma/fast
|
---|
16 | SolidCompression=yes
|
---|
17 | OutputDir={#DestDir}
|
---|
18 |
|
---|
19 | AppComments={#AppName}
|
---|
20 | AppPublisher={#CampanyName}
|
---|
21 | AppVersion={#Version}{#VersionSubText}
|
---|
22 |
|
---|
23 | ; version info
|
---|
24 | VersionInfoCopyright=Copyright (C) 2008 {#CampanyName}
|
---|
25 | VersionInfoVersion={#Version}
|
---|
26 | VersionInfoTextVersion={#Version}{#VersionSubText}
|
---|
27 | VersionInfoCompany={#CampanyName}
|
---|
28 |
|
---|
29 | [Files]
|
---|
30 | Source: {#DestDir}\ab5.0\*; DestDir: {app}; Flags: recursesubdirs
|
---|
31 |
|
---|
32 | [Icons]
|
---|
33 | Name: {group}\abdev.exe; Filename: {app}\abdev.exe
|
---|
Note:
See
TracBrowser
for help on using the repository browser.