Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    rb712146 r30250de  
    1616# build libaubio
    1717from waflib import Options
    18 if Options.platform == 'ios':
    19     build_lib_func = ctx.stlib
    20 else:
    21     build_lib_func = ctx.shlib
    22 
     18if Options.platform == 'ios': build_lib_func = ctx.stlib
     19else: build_lib_func = ctx.shlib
    2320build_lib_func(
    2421    includes = ['.'],
     
    2724    lib = 'm',
    2825    uselib = uselib,
    29     install_path = '${PREFIX}/lib',
    3026    vnum = ctx.env['LIB_VERSION'])
    3127
    3228# install headers, except _priv.h ones
    3329ctx.install_files('${PREFIX}/include/aubio/',
     30
    3431    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    3532    relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.