waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

wscript (426B)


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