waf/TODO

29 lines
448 B
Plaintext
Raw Normal View History

2015-02-25 16:46:27 +01:00
Waf 1.9
-------
* Reduce the key size in bld.task_sigs
* Provide a more efficient ConfigSet implementation
* Remove the split functions from Utils
* Ensure _cache.py are valid python files
2014-09-28 19:27:02 +02:00
Waf 1.8.x
2011-09-10 11:13:51 +02:00
---------
2014-09-28 19:27:02 +02:00
* Update the docs
Can be useful:
def bld_command(*k):
fun = k[0]
name = fun.__name__
from waflib.Build import BuildContext
class tmp(BuildContext):
cmd = name
fun = name
return fun
@bld_command
def foo(ctx):
print ctx.env