Download this file
16 lines (10 with data), 379 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | import os
#Inno Setup Preprocessor Extended Command Line Compiler
INNO_CC = "D:\\Ohjelmat\\Inno Setup 5\\ISCC.exe"
PYVERSIONS = ["2.6", "2.7", "3.1", "3.2"]
for ver in PYVERSIONS:
value = os.system('"%s" DirectPython11.iss /dPYVER=%s' % (INNO_CC, ver))
if int(value) != 0:
print("BUILD ERROR: %i" % value)
break
os.system("pause")
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.