mirror of https://gitlab.com/ita1024/waf
				
				
				
			
			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.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			515 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			515 B
		
	
	
	
		
			Python
		
	
top = '.'
 | 
						|
out = 'bin/waf'
 | 
						|
 | 
						|
def configure(ctx):
 | 
						|
    ctx.env.ROOT_INCLUDE_DIR = ctx.path.get_bld().make_node('src').make_node('main').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 = ctx.path.make_node('include').abspath()
 | 
						|
    ctx.recurse('src')
 | 
						|
    ctx.recurse('bin')
 | 
						|
 | 
						|
def build(ctx):
 | 
						|
    ctx.recurse('src')
 | 
						|
    ctx.recurse('bin')
 |