diff options
author | lloyd <[email protected]> | 2009-11-19 23:09:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-19 23:09:12 +0000 |
commit | 5b4da417eafdfde3a8f1bf66fc4b6c680de3ea4b (patch) | |
tree | 01ba72316321afcc76e1b9b3b8c8c5d5a129c2f1 /src | |
parent | 23a86df38c11918997732aa2cb9ffc194a59d07a (diff) |
Add the first bits of support for packaging botan with InnoSetup.
Untested, almost certainly doesn't work.
Diffstat (limited to 'src')
-rw-r--r-- | src/build-data/botan.iss.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/build-data/botan.iss.in b/src/build-data/botan.iss.in new file mode 100644 index 000000000..4d8b10dc2 --- /dev/null +++ b/src/build-data/botan.iss.in @@ -0,0 +1,17 @@ +; A script for packaging botan with InnoSetup + +[Setup] +AppName=Botan +AppVerName=Botan %{version} +DefaultDirName={pf}\botan +DefaultGroupName=botan + +AppCopyright=Copyright (C) 1999-2009 Jack Lloyd and others + +SolidCompression=yes + +; Todo - add [Types] and select 'user' / 'developer' installs + +[Files] +Source: "libbotan.lib"; DestDir: "{app} +Source: "build\lib\botan\*" DestDir: "{app}\botan" |