view python/apps/build.py @ 65:361f7d13adea

Fixes after movage
author windel
date Sun, 07 Oct 2012 17:21:08 +0200
parents 4a27c28c7d0f
children 654c5ac4f2c5
line wrap: on
line source

import sys, os
sys.path.insert(0, os.path.join('..','libs'))

# Compiler imports:
from 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)