waf

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

wscript (494B)


      1 top = '.'
      2 out = 'bin/waf'
      3 
      4 def configure(ctx):
      5     ctx.env.ROOT_INCLUDE_DIR = ctx.path.get_bld().make_node('src').abspath()
      6     ctx.env.ROOT_RES_DIR = ctx.path.make_node('res').abspath()
      7     ctx.env.LIBPATH_HAXE = ctx.path.make_node('haxe_libraries').abspath()
      8     ctx.env.LIBPATH_HL = ctx.path.make_node('lib').abspath()
      9     ctx.env.INCLUDES_HL = ['%hashlink%/hl-1.11.0-win/include']
     10     ctx.recurse('src')
     11     ctx.recurse('bin')
     12 
     13 def build(ctx):
     14     ctx.recurse('src')
     15     ctx.recurse('bin')