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
|
2015-02-27 21:16:03 +01:00
|
|
|
* Include the tool 'nobuild' by default
|
2015-04-26 12:18:15 +02:00
|
|
|
* cflags in the beginning / cppflags at the end
|
2015-02-25 16:46:27 +01:00
|
|
|
|
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
|
2011-11-05 23:57:17 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|