mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
31 lines
542 B
Plaintext
31 lines
542 B
Plaintext
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
|
|
* Include the tool 'nobuild' by default
|
|
* Support for linkflags/cflags at the end of commands
|
|
|
|
Waf 1.8.x
|
|
---------
|
|
|
|
* 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
|
|
|