You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waf/playground/haxe/executable/wscript

16 lines
494 B
Python

top = '.'
out = 'bin/waf'
def configure(ctx):
ctx.env.ROOT_INCLUDE_DIR = ctx.path.get_bld().make_node('src').abspath()
ctx.env.ROOT_RES_DIR = ctx.path.make_node('res').abspath()
ctx.env.LIBPATH_HAXE = ctx.path.make_node('haxe_libraries').abspath()
ctx.env.LIBPATH_HL = ctx.path.make_node('lib').abspath()
ctx.env.INCLUDES_HL = ['%hashlink%/hl-1.11.0-win/include']
ctx.recurse('src')
ctx.recurse('bin')
def build(ctx):
ctx.recurse('src')
ctx.recurse('bin')