Changeset 0ec7113


Ignore:
Timestamp:
Dec 1, 2016, 11:27:23 PM (7 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, sampler, yinfft+
Children:
1b2669a
Parents:
7a1bbbd
Message:

src/wscript_build: honor --includedir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r7a1bbbd r0ec7113  
    2727elif ctx.env['DEST_OS'] in ['emscripten']:
    2828    build_features = ['cstlib']
    29 else: #linux, darwin, android, mingw, ...
     29elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']:
     30    # static in cflags, ...
     31    build_features = ['cstlib']
     32else:
     33    # linux, darwin, android, mingw, ...
    3034    build_features = ['cstlib', 'cshlib']
    3135
     
    4246
    4347# install headers, except _priv.h ones
    44 ctx.install_files('${PREFIX}/include/aubio/',
     48ctx.install_files('${INCLUDEDIR}/aubio/',
    4549        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    4650        relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.