Mercurial > lcfOS
view applications/ide/runbuild.py @ 57:143ab220aa27
Cleanup
author | windel |
---|---|
date | Sun, 22 Apr 2012 23:10:38 +0200 |
parents | 600f48b74799 |
children |
line wrap: on
line source
import sys # Compiler imports: from compiler.compiler import Compiler from project import Project if __name__ == '__main__': if len(sys.argv) < 2: print('Use {0} projectfile'.format(sys.argv[0])) sys.exit(-1) filename = sys.argv[1] project = Project() project.load(filename) pc = Compiler() pc.compileProject(project)