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 /configure.py | |
parent | 23a86df38c11918997732aa2cb9ffc194a59d07a (diff) |
Add the first bits of support for packaging botan with InnoSetup.
Untested, almost certainly doesn't work.
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 3e95546a5..668d03986 100755 --- a/configure.py +++ b/configure.py @@ -1102,7 +1102,8 @@ def setup_build(build_config, options, template_vars): for (template, sink) in [('buildh.in', 'build.h'), ('botan-config.in', 'botan-config'), ('botan.pc.in', build_config.pkg_config_file()), - ('botan.doxy.in', 'botan.doxy')]: + ('botan.doxy.in', 'botan.doxy'), + ('botan.iss.in', 'botan.iss')]: templates_to_proc[os.path.join(options.build_data, template)] = \ os.path.join(build_config.build_dir, sink) |