diff options
author | lloyd <[email protected]> | 2009-11-23 16:57:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-23 16:57:03 +0000 |
commit | 2dd1b6bcf060ebdfadd9f040a72a2a13cb55e7cd (patch) | |
tree | e384ec85eef7b96dc44a32913bdfcfac867b10d7 /src/build-data/innosetup.in | |
parent | 18f859f63763eb3ab9b52da2e5d6b256f7075945 (diff) |
Fix minor errors in InnoSetup script
Diffstat (limited to 'src/build-data/innosetup.in')
-rw-r--r-- | src/build-data/innosetup.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/build-data/innosetup.in b/src/build-data/innosetup.in index fbcf95fb0..81482d53d 100644 --- a/src/build-data/innosetup.in +++ b/src/build-data/innosetup.in @@ -25,18 +25,18 @@ Name: "devel"; Description: "Developer" name: "dll"; Description: "Runtime DLLs"; Types: user devel; Flags: fixed name: "implib"; Description: "Import Library"; Types: devel name: "includes"; Description: "Include Files"; Types: devel -name: "docs"; Descrption: "Developer Documentation"; Types: devel +name: "docs"; Description: "Developer Documentation"; Types: devel [Files] -# License file is always included +; License file is always included Source: "..\botan.dll"; DestDir: "{app}"; Components: dll Source: "..\botan.dll.manifest"; DestDir: "{app}"; Components: dll -Source "..\doc\license.txt"; DestDir: "{app}"; Components: dll +Source: "..\doc\license.txt"; DestDir: "{app}"; Components: dll Source: "..\botan.exp"; DestDir: "{app}"; Components: implib Source: "..\botan.lib"; DestDir: "{app}"; Components: implib Source: "include\botan\*"; DestDir: "{app}\include\botan"; Components: includes -Source "..\readme.txt"; DestDir: "{app}\doc"; Components: docs -Source "..\doc\log.txt"; DestDir: "{app}\doc"; Components: docs +Source: "..\readme.txt"; DestDir: "{app}\doc"; Components: docs +Source: "..\doc\log.txt"; DestDir: "{app}\doc"; Components: docs |