wscript 426 B

1234567891011121314151617181920212223
  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. # Thomas Nagy, 2008 (ita)
  4. VERSION='0.0.2'
  5. APPNAME='gcj_test'
  6. top = '.'
  7. out = 'out'
  8. def configure(conf):
  9. conf.load('gcj', tooldir='.')
  10. conf.env.FIX_DUMMY = True
  11. def build(bld):
  12. bld(
  13. features = 'gcj gcj_program',
  14. srcdir = 'src more',
  15. target = 'test',
  16. gcjlinkflags = '--main=es.Hello',
  17. classpath = [bld.path.find_dir(x) for x in ('src', 'more')],
  18. )