diff --git a/test/wscript b/test/wscript index 5a8a3e2..8fd7e23 100644 --- a/test/wscript +++ b/test/wscript @@ -1,6 +1,9 @@ #!/usr/bin/env python from waflib.Configure import conf +top = '.' +out = 'build' + def options(opt): pass @@ -18,7 +21,7 @@ def example(bld,*k,**kw): def build(bld): - if bld.env.ENABLE_TESTS: + if bld.env.ENABLE_TEST: bld.example(source='hello.cxx', target='hello') bld.example(source='input_choice.cxx', target='input_choice') bld.example(source='label.cxx', target='label')