source:
tests/wscript_build
@
1e4d90f
Last change on this file since 1e4d90f was 09fab95, checked in by , 9 years ago | |
---|---|
|
|
File size: 434 bytes |
Rev | Line | |
---|---|---|
[6ed0f4e] | 1 | # vim:set syntax=python: |
2 | ||
[21def97] | 3 | uselib = ['aubio'] |
[58cffee] | 4 | |
5 | includes = ['../src', '.'] | |
[21def97] | 6 | programs_sources = ctx.path.ant_glob('src/**/*.c') |
[58cffee] | 7 | |
[21def97] | 8 | for source_file in programs_sources: |
[dc0e759] | 9 | bld(features = 'c cprogram test', |
[21def97] | 10 | source = source_file, |
11 | target = str(source_file).split('.')[0], | |
[dc0e759] | 12 | includes = includes, |
[21def97] | 13 | use = uselib, |
[09fab95] | 14 | install_path = None, |
[dc0e759] | 15 | defines = 'AUBIO_UNSTABLE_API=1', |
[21def97] | 16 | ) |
Note: See TracBrowser
for help on using the repository browser.