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