mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-30 05:52:24 +01:00
19 lines
232 B
Python
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)
|
|
|