annotate ide/runbuild.py @ 27:7f74363f4c82
Added some files for the python port
author |
windel |
date |
Tue, 27 Dec 2011 18:59:02 +0100 |
parents |
de004f808e56 |
children |
|
rev |
line source |
15
|
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
|