- Timestamp:
- Jul 10, 2012, 1:06:11 AM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- dbf47c6
- Parents:
- f4493f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
rf4493f4 rd41bc4d 3 3 uselib = ['SAMPLERATE'] 4 4 if 'HAVE_FFTW3' in conf.get_env(): 5 source = bld.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c'])5 source = ctx.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c']) 6 6 uselib += ['FFTW3', 'FFTW3F'] 7 7 else: 8 source = bld.path.ant_glob('*.c **/*.c')8 source = ctx.path.ant_glob('*.c **/*.c') 9 9 10 10 # build libaubio 11 bld.shlib(11 ctx.shlib( 12 12 includes = ['.'], 13 13 source = source, … … 15 15 lib = 'm', 16 16 uselib = uselib, 17 vnum = bld.env['LIB_VERSION'])17 vnum = ctx.env['LIB_VERSION']) 18 18 19 19 # install headers, except _priv.h ones 20 bld.install_files('${PREFIX}/include/aubio/',21 bld.path.ant_glob('**/*.h',20 ctx.install_files('${PREFIX}/include/aubio/', 21 ctx.path.ant_glob('**/*.h', 22 22 exclude = ['_priv.h', 'config.h']), 23 23 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.