Browse Source

Fix typo in test/ wscript.

tags/v1.3.1000
Jonathan Moore Liles 13 years ago
parent
commit
bc5474d5c8
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      test/wscript

+ 4
- 1
test/wscript View File

@@ -1,6 +1,9 @@
#!/usr/bin/env python #!/usr/bin/env python
from waflib.Configure import conf from waflib.Configure import conf


top = '.'
out = 'build'

def options(opt): def options(opt):
pass pass


@@ -18,7 +21,7 @@ def example(bld,*k,**kw):


def build(bld): def build(bld):


if bld.env.ENABLE_TESTS:
if bld.env.ENABLE_TEST:
bld.example(source='hello.cxx', target='hello') bld.example(source='hello.cxx', target='hello')
bld.example(source='input_choice.cxx', target='input_choice') bld.example(source='input_choice.cxx', target='input_choice')
bld.example(source='label.cxx', target='label') bld.example(source='label.cxx', target='label')


Loading…
Cancel
Save