comparison ide/runbuild.py @ 15:de004f808e56

Fixup in multidocument area stuff
author windel
date Tue, 15 Nov 2011 07:35:00 +0100
parents
children
comparison
equal deleted inserted replaced
11:607898120eb1 15:de004f808e56
1 import sys
2
3 # Compiler imports:
4 from compiler.compiler import Compiler
5 from project import Project
6
7 if __name__ == '__main__':
8 if len(sys.argv) < 2:
9 print('Use {0} projectfile'.format(sys.argv[0]))
10 sys.exit(-1)
11 filename = sys.argv[1]
12 project = Project()
13 project.load(filename)
14 pc = Compiler()
15 pc.compileProject(project)
16