diff options
author | lloyd <[email protected]> | 2009-11-20 01:53:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-20 01:53:37 +0000 |
commit | c5109ab90e958f4a385f257b5e3ff0f8d34a82b2 (patch) | |
tree | c723fcb96ba4c48d56b47ef0864fbb79e03c2976 /src/build-data/innosetup.in | |
parent | 7b3ed530a124f4dc47fafe98af3d76f430df878a (diff) |
Create installer file as botan-VERSION.exe
Diffstat (limited to 'src/build-data/innosetup.in')
-rw-r--r-- | src/build-data/innosetup.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/build-data/innosetup.in b/src/build-data/innosetup.in new file mode 100644 index 000000000..1054507ac --- /dev/null +++ b/src/build-data/innosetup.in @@ -0,0 +1,23 @@ +; A script for packaging botan with InnoSetup + +[Setup] +AppName=Botan +AppVerName=Botan %{version} + +AppPublisher=Jack Lloyd +AppCopyright=Copyright (C) 1999-2009 Jack Lloyd and others +AppPublisherURL=http://botan.randombit.net/ +AppVersion=%{version} + +DefaultDirName={pf}\botan +DefaultGroupName=botan + +SolidCompression=yes + +OutputDir=. +OutputBaseFilename=botan-%{version} + +[Files] +Source: "..\botan.dll"; DestDir: "{app}" +Source: "..\botan.lib"; DestDir: "{app}" +Source: "include\botan\*"; DestDir: "{app}\include\botan" |