Ignore:
Timestamp:
Jun 22, 2016, 1:00:10 PM (9 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
4b9443c4
Parents:
60fc05b (diff), 6769586 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into notes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tests/wscript_build ΒΆ

    r60fc05b rf264b17  
    11# vim:set syntax=python:
    22
    3 for target_name in ctx.path.ant_glob('src/**/*.c'):
    4     uselib = []
    5     uselib += ['FFTW3', 'FFTW3F']
    6     uselib += ['SAMPLERATE']
    7     uselib += ['SNDFILE']
    8     uselib += ['AVCODEC']
    9     uselib += ['AVFORMAT']
    10     uselib += ['AVRESAMPLE']
    11     uselib += ['AVUTIL']
    12     uselib += ['JACK']
    13     includes = ['../src', '.']
    14     extra_source = []
     3uselib = ['aubio']
    154
     5includes = ['../src', '.']
     6programs_sources = ctx.path.ant_glob('src/**/*.c')
     7
     8for source_file in programs_sources:
    169    bld(features = 'c cprogram test',
    17             lib = 'm',
    18             uselib = uselib,
    19             source = [target_name] + extra_source,
    20             target = str(target_name).split('.')[0],
     10            source = source_file,
     11            target = str(source_file).split('.')[0],
    2112            includes = includes,
     13            use = uselib,
    2214            install_path = None,
    2315            defines = 'AUBIO_UNSTABLE_API=1',
    24             cflags = ['-g'],
    25             use = 'aubio')
     16       )
Note: See TracChangeset for help on using the changeset viewer.