Changes in src/wscript_build [b712146:30250de]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
rb712146 r30250de 16 16 # build libaubio 17 17 from waflib import Options 18 if Options.platform == 'ios': 19 build_lib_func = ctx.stlib 20 else: 21 build_lib_func = ctx.shlib 22 18 if Options.platform == 'ios': build_lib_func = ctx.stlib 19 else: build_lib_func = ctx.shlib 23 20 build_lib_func( 24 21 includes = ['.'], … … 27 24 lib = 'm', 28 25 uselib = uselib, 29 install_path = '${PREFIX}/lib',30 26 vnum = ctx.env['LIB_VERSION']) 31 27 32 28 # install headers, except _priv.h ones 33 29 ctx.install_files('${PREFIX}/include/aubio/', 30 34 31 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 35 32 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.