2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-30 05:52:24 +01:00
waf/docs/book/examples/nodes_cache/wscript
2011-09-10 11:13:51 +02:00

19 lines
232 B
Python

#! /usr/bin/env python
"""
The node objects behave like singletons (one node <-> one path)
Try:
$ waf configure dosomething
"""
top = '.'
out = 'build'
def configure(ctx):
pass
def dosomething(ctx):
print(ctx.root.children)