Got test suite building, most of the c++ bindings are implemented. Let's see if they work

This commit is contained in:
TQ Hirsch 2014-01-16 11:24:15 -05:00 committed by Meredith L. Patterson
parent 9e0c0efd77
commit 270dc3f1b8
185 changed files with 141218 additions and 91 deletions

View file

@ -7,7 +7,7 @@ import sys
vars = Variables(None, ARGUMENTS)
vars.Add(PathVariable('DESTDIR', "Root directory to install in (useful for packaging scripts)", None, PathVariable.PathIsDirCreate))
vars.Add(PathVariable('prefix', "Where to install in the FHS", "/usr/local", PathVariable.PathAccept))
vars.Add(ListVariable('bindings', 'Language bindings to build', 'none', ['dotnet', 'perl', 'php', 'python', 'ruby']))
vars.Add(ListVariable('bindings', 'Language bindings to build', 'none', ['cpp', 'dotnet', 'perl', 'php', 'python', 'ruby']))
env = Environment(ENV = {'PATH' : os.environ['PATH']},
variables = vars,