wscript (290B)
1 def configure(ctx): 2 ctx.load('haxe') 3 ctx.ensure_lix_pkg( 4 compiler='hx', 5 libs=['hashlink'], 6 uselib_store='HLR') 7 8 def build(ctx): 9 ctx.haxe( 10 source = 'main.hxml', 11 res = ctx.env.ROOT_RES_DIR, 12 target = 'main.c', 13 use = ['HLR'])