Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/wscript_build

    r30250de 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.