mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-24 10:49:42 +01:00
docs
This commit is contained in:
parent
5bf2132211
commit
0970eb86cb
3
TODO
3
TODO
@ -1,11 +1,10 @@
|
||||
Waf 1.9
|
||||
-------
|
||||
|
||||
* Fix the vala detection
|
||||
* Better consistency between check_cfg and check_cc variables
|
||||
* Let more context commands depend on the configuration
|
||||
* Rework qt5
|
||||
* Use relative paths in apply_incpaths (and absolute ones when paths cross drives)
|
||||
* Provide a more efficient ConfigSet implementation
|
||||
* Regexps for extension-based processing
|
||||
* Other issues listed on https://github.com/waf-project/waf/issues
|
||||
|
||||
|
@ -162,8 +162,6 @@ class task_gen(object):
|
||||
#. The methods are then executed in order
|
||||
#. The tasks created are added to :py:attr:`waflib.TaskGen.task_gen.tasks`
|
||||
"""
|
||||
|
||||
# we could add a decorator to let the task run once, but then python 2.3 will be difficult to support
|
||||
if getattr(self, 'posted', None):
|
||||
#error("OBJECT ALREADY POSTED" + str( self))
|
||||
return False
|
||||
|
@ -340,7 +340,7 @@ def options(opt):
|
||||
"""
|
||||
opt.load('gnu_dirs')
|
||||
valaopts = opt.add_option_group('Vala Compiler Options')
|
||||
valaopts.add_option ('--vala-target-glib', default=None,
|
||||
valaopts.add_option('--vala-target-glib', default=None,
|
||||
dest='vala_target_glib', metavar='MAJOR.MINOR',
|
||||
help='Target version of glib for Vala GObject code generation')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user