Changeset dc0e759 for src


Ignore:
Timestamp:
Mar 6, 2014, 6:03:49 PM (10 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:
e794a80
Parents:
584016f
Message:

{tests,src,examples}/wscript_build: indent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r584016f rdc0e759  
    11# vim:set syntax=python:
    22
    3 source = ctx.path.ant_glob('*.c **/*.c')
    43uselib = []
    54uselib += ['FFTW3', 'FFTW3F']
     
    1110uselib += ['AVUTIL']
    1211
     12# build each source files
     13source = ctx.path.ant_glob('*.c **/*.c')
    1314ctx(features = 'c',
    14       source = source,
    15       includes = ['.'],
    16       uselib = uselib,
    17       lib = 'm',
    18       target = 'lib_objects')
     15        source = source,
     16        includes = ['.'],
     17        uselib = uselib,
     18        lib = 'm',
     19        target = 'lib_objects')
    1920
    2021# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
     
    2728
    2829for target in build_features:
    29   ctx(features = 'c ' + target,
    30       use = ['lib_objects'], #source = source,
    31       lib = 'm',
    32       target = 'aubio',
    33       install_path = '${PREFIX}/lib',
    34       vnum = ctx.env['LIB_VERSION'])
     30    ctx(features = 'c ' + target,
     31            use = ['lib_objects'],
     32            lib = 'm',
     33            target = 'aubio',
     34            install_path = '${PREFIX}/lib',
     35            vnum = ctx.env['LIB_VERSION'])
    3536
    3637# install headers, except _priv.h ones
    3738ctx.install_files('${PREFIX}/include/aubio/',
    38     ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    39     relative_trick=True)
     39        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
     40        relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.