Changeset b712146 for src/wscript_build


Ignore:
Timestamp:
Mar 22, 2013, 4:26:22 PM (11 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:
54a2ca2
Parents:
5e1c04f
Message:

src/wscript_build: install lib anyway

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r5e1c04f rb712146  
    1616# build libaubio
    1717from waflib import Options
    18 if Options.platform == 'ios': build_lib_func = ctx.stlib
    19 else: build_lib_func = ctx.shlib
     18if Options.platform == 'ios':
     19    build_lib_func = ctx.stlib
     20else:
     21    build_lib_func = ctx.shlib
     22
    2023build_lib_func(
    2124    includes = ['.'],
     
    2427    lib = 'm',
    2528    uselib = uselib,
     29    install_path = '${PREFIX}/lib',
    2630    vnum = ctx.env['LIB_VERSION'])
    2731
    2832# install headers, except _priv.h ones
    2933ctx.install_files('${PREFIX}/include/aubio/',
    30 
    3134    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    3235    relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.