diff options
author | lloyd <[email protected]> | 2009-11-19 23:24:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-19 23:24:27 +0000 |
commit | f82384ceb442be6204b76e765de3ae26b41d70bd (patch) | |
tree | 129c30f05651b2d5c0ac0ac698f5f5191aac2eed /src/build-data | |
parent | 5b4da417eafdfde3a8f1bf66fc4b6c680de3ea4b (diff) |
Fix typos, set other fields in InnoSetup script
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/botan.iss.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/build-data/botan.iss.in b/src/build-data/botan.iss.in index 4d8b10dc2..a625697f7 100644 --- a/src/build-data/botan.iss.in +++ b/src/build-data/botan.iss.in @@ -3,6 +3,11 @@ [Setup] AppName=Botan AppVerName=Botan %{version} + +AppPublisher=Jack Lloyd +AppPublisherURL=http://botan.randombit.net/ +AppVersion=%{version} + DefaultDirName={pf}\botan DefaultGroupName=botan @@ -10,8 +15,8 @@ AppCopyright=Copyright (C) 1999-2009 Jack Lloyd and others SolidCompression=yes -; Todo - add [Types] and select 'user' / 'developer' installs +OutputDir=. [Files] -Source: "libbotan.lib"; DestDir: "{app} -Source: "build\lib\botan\*" DestDir: "{app}\botan" +Source: "..\libbotan.lib"; DestDir: "{app}" +Source: "lib\botan\*"; DestDir: "{app}\botan" |