Changes in src/wscript_build [0c77921:0318cc1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r0c77921 r0318cc1 12 12 # build libaubio 13 13 from 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 14 if Options.platform == 'ios': build_lib_func = ctx.stlib 15 else: build_lib_func = ctx.shlib 19 16 build_lib_func( 20 17 includes = ['.'], … … 23 20 lib = 'm', 24 21 uselib = uselib, 25 install_path = '${PREFIX}/lib',26 22 vnum = ctx.env['LIB_VERSION']) 27 23 28 24 # install headers, except _priv.h ones 29 25 ctx.install_files('${PREFIX}/include/aubio/', 26 30 27 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 31 28 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.