Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r0c77921 r0318cc1  
    1212# build libaubio
    1313from waflib import Options
    14 if Options.platform in ['ios', 'iosimulator']:
    15     build_lib_func = ctx.stlib
    16 else:
    17     build_lib_func = ctx.shlib
    18 
     14if Options.platform == 'ios': build_lib_func = ctx.stlib
     15else: build_lib_func = ctx.shlib
    1916build_lib_func(
    2017    includes = ['.'],
     
    2320    lib = 'm',
    2421    uselib = uselib,
    25     install_path = '${PREFIX}/lib',
    2622    vnum = ctx.env['LIB_VERSION'])
    2723
    2824# install headers, except _priv.h ones
    2925ctx.install_files('${PREFIX}/include/aubio/',
     26
    3027    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    3128    relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.