Changeset 46378b3 for src


Ignore:
Timestamp:
Sep 26, 2011, 8:21:00 AM (13 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:
2a6e672
Parents:
20ae690
Message:

wscript: update to waf 1.6.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r20ae690 r46378b3  
    11# build libaubio
    22libaubio = bld.new_task_gen(
    3     features = 'cc cshlib',
     3    features = 'c cshlib',
    44    includes = ['.'],
    55    source = bld.path.ant_glob('*.c **/*.c'),
     
    99
    1010# install headers, except _priv.h ones
    11 for file in bld.path.ant_glob('**/*.h').split():
    12   if '_priv.h' in file or file == 'config.h': continue
    13   bld.install_as('${PREFIX}/include/aubio/' + file, file)
     11bld.install_files('${PREFIX}/include/aubio/',
     12        bld.path.ant_glob('**/*.h',
     13        exclude = ['_priv.h', 'config.h']),
     14        relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.