mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 11:51:20 +01:00
9 lines
110 B
Python
9 lines
110 B
Python
top = '.'
|
|
out = 'bin/waf'
|
|
|
|
def configure(ctx):
|
|
ctx.recurse('src')
|
|
|
|
def build(ctx):
|
|
ctx.recurse('src')
|