cpplint: fixed import. The version on pypi is now up to date and works with Python3.
[waf.git] / TODO
blobaa7e2b9aed45e30cb9dd256bdd4c2e53c73f3efb
1 Waf 1.9
2 -------
4 * Reduce the key size in bld.task_sigs
5 * Provide a more efficient ConfigSet implementation
6 * Remove the split functions from Utils
7 * Ensure _cache.py are valid python files
8 * Include the tool 'nobuild' by default
9 * Support for linkflags/cflags at the end of commands
11 Waf 1.8.x
12 ---------
14 * Update the docs
16 Can be useful:
18 def bld_command(*k):
19         fun = k[0]
20         name = fun.__name__
21         from waflib.Build import BuildContext
22         class tmp(BuildContext):
23                 cmd = name
24                 fun = name
25         return fun
27 @bld_command
28 def foo(ctx):
29         print ctx.env