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