Ignore:
Timestamp:
Oct 17, 2009, 12:43:00 AM (14 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:
858cfa7
Parents:
6107f4c
Message:

ext/, examples/, swig/, python/, tests/: remove libaubioext, make libsamplerate optional

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/wscript_build

    r6107f4c r740f06b  
    44defines += ['PACKAGE="' + bld.env['PACKAGE'] + '"']
    55
     6extra_source = ['utils.c', 'sndfileio.c', 'jackio.c']
     7
    68bld.new_task_gen(features = 'cc',
    7     includes = '../src ../ext',
    8     source = 'utils.c',
     9    includes = '../src',
     10    source = extra_source,
    911    uselib = ['LASH'],
    1012    defines = defines,
    11     target = 'utils')
     13    target = 'utils_io')
    1214
    1315# loop over all *.c filenames in examples to build them all
    1416for target_name in bld.path.ant_glob('*.c').split():
    1517  # ignore utils.c
    16   if target_name in ['utils.c']: continue
     18  if target_name in extra_source: continue
    1719  bld.new_task_gen(features = 'cc cprogram',
    18       add_objects = 'utils',
    19       includes = '../src ../ext',
     20      add_objects = 'utils_io',
     21      includes = '../src',
    2022      defines = defines,
    21       uselib = ['LASH'],
    22       uselib_local = ['aubio', 'aubioext'],
     23      uselib = ['LASH', 'JACK', 'SNDFILE'],
     24      uselib_local = ['aubio'],
    2325      source = target_name,
    2426      # program name is filename.c without the .c
Note: See TracChangeset for help on using the changeset viewer.