Document in the --bindings-type waf option that modular bindings are experimental
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Tue Mar 08 15:33:55 2011 +0000 (14 months ago)
changeset 6879fdb88975069a
parent 6878 11a009e0c08e
child 6880 4ea22fe9e5ee
Document in the --bindings-type waf option that modular bindings are experimental
bindings/python/wscript
     1.1 --- a/bindings/python/wscript	Tue Mar 08 15:32:31 2011 +0000
     1.2 +++ b/bindings/python/wscript	Tue Mar 08 15:33:55 2011 +0000
     1.3 @@ -52,9 +52,11 @@
     1.4  
     1.5  def set_options(opt):
     1.6      opt.tool_options('python')
     1.7 +    c = ("monolithic", "modular", "both")
     1.8      opt.add_option('--bindings-type', type="choice",
     1.9 -                   choices=("monolithic", "modular", "both"),
    1.10 -                   help=("Type of Python bindings to build"),
    1.11 +                   choices=c,
    1.12 +                   help=("Type of Python bindings to build %r.  "
    1.13 +                         "Warning: the modular bindings are still experimental." % (c,)),
    1.14                     default="monolithic",
    1.15                     dest='bindings_type')
    1.16      opt.add_option('--disable-python',