You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 line
283 B

  1. verbose = True
  2. force_rebuild = False
  3. no_minify = False
  4. def run():
  5. """
  6. Run the builder
  7. """
  8. global verbose
  9. import sys, os
  10. sys.path.append('py')
  11. sys.path.append('lib/py')
  12. from build.project import Project
  13. verbose = True
  14. Project().build()
  15. if __name__=='__main__':
  16. run()