blob: c0bc97fa25537abde8e2d6f029569e30f6aae2b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
; 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=.
[Files]
Source: "..\botan.dll"; DestDir: "{app}"
Source: "..\botan.lib"; DestDir: "{app}"
Source: "include\botan\*"; DestDir: "{app}\include\botan"
|