]> git.saurik.com Git - wxWidgets.git/blob - wxPython/scripts/CreateBatchFiles.py
new SWIGged files for wxGTK
[wxWidgets.git] / wxPython / scripts / CreateBatchFiles.py
1 #----------------------------------------------------------------------
2 # Name: CreateBatchFiles.py
3 # Purpose: Run by the InnoSetup installer to create a DOS batch
4 # file for each of the wxPython tool scripts.
5 #
6 # Author: Robin Dunn
7 #
8 # Created: 8-Aug-2002
9 # Copyright: (c) 2002 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------
12
13 import sys, os
14
15 python = sys.executable
16 scriptdir = os.getcwd()
17
18 scripts = [ "img2png",
19 "img2py",
20 "img2xpm",
21 "xrced",
22 ]
23
24 template = """\
25 @echo off
26 %(python)s %(scriptdir)s\\%(script)s %%1 %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9
27 """
28
29 for script in scripts:
30 batfile = os.path.join(scriptdir, script + '.bat')
31 print "Creating", batfile
32 f = open(batfile, 'w')
33 f.write(template % vars())
34 f.close()
35
36