diff options
Diffstat (limited to 'utils/common/deploy-themeeditor.py')
| -rwxr-xr-x | utils/common/deploy-themeeditor.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/common/deploy-themeeditor.py b/utils/common/deploy-themeeditor.py index 5279766..566c04d 100755 --- a/utils/common/deploy-themeeditor.py +++ b/utils/common/deploy-themeeditor.py @@ -24,7 +24,8 @@ deploy.project = "utils/themeeditor/themeeditor.pro" deploy.svnserver = "svn://svn.rockbox.org/rockbox/" deploy.svnpaths = \ [ "utils/themeeditor/", - "lib/skin_parser/" ] + "lib/skin_parser/", + "docs/COPYING" ] deploy.useupx = False deploy.bundlecopy = { "resources/windowicon.icns" : "Contents/Resources/", @@ -46,6 +47,8 @@ else: # all files of the program. Will get put into an archive after building # (zip on w32, tar.bz2 on Linux). Does not apply on Mac which uses dmg. deploy.programfiles = [ deploy.progexe ] +deploy.nsisscript = "utils/themeeditor/themeeditor.nsi" +deploy.nsissetup = "utils/themeeditor/rbthemeeditor-setup.exe" deploy.deploy() |