Changeset ba0ba10
- Timestamp:
- Dec 5, 2013, 3:40:44 AM (11 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:
- 2e50800
- Parents:
- 3d1ca81
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r3d1ca81 rba0ba10 6 6 uselib += ['SAMPLERATE'] 7 7 uselib += ['SNDFILE'] 8 uselib += ['AVCODEC'] 9 uselib += ['AVFORMAT'] 10 uselib += ['AVRESAMPLE'] 11 uselib += ['AVUTIL'] 8 12 uselib += ['JACK'] 9 13 uselib += ['LASH'] -
wscript
r3d1ca81 rba0ba10 57 57 add_option_enable_disable(ctx, 'sndfile', default = None, 58 58 help_str = 'compile with sndfile (auto)', help_disable_str = 'disable sndfile') 59 add_option_enable_disable(ctx, 'avcodec', default = None, 60 help_str = 'compile with libavcodec (auto)', help_disable_str = 'disable libavcodec') 59 61 add_option_enable_disable(ctx, 'samplerate', default = None, 60 62 help_str = 'compile with samplerate (auto)', help_disable_str = 'disable samplerate') … … 200 202 args = '--cflags --libs', uselib_store = 'LASH', mandatory = False) 201 203 204 if (ctx.options.enable_avcodec != False): 205 ctx.check_cfg(package = 'libavcodec', atleast_version = '54.35.0', 206 args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = False) 207 ctx.check_cfg(package = 'libavformat', atleast_version = '52.3.0', 208 args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = False) 209 ctx.check_cfg(package = 'libavutil', atleast_version = '52.3.0', 210 args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = False) 211 ctx.check_cfg(package = 'libavresample', atleast_version = '1.0.1', 212 args = '--cflags --libs', uselib_store = 'AVRESAMPLE', mandatory = False) 213 202 214 # write configuration header 203 215 ctx.write_config_header('src/config.h')
Note: See TracChangeset
for help on using the changeset viewer.