Changeset 1ba359c
- Timestamp:
- Dec 12, 2018, 11:26:35 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/crepe, fix/ffmpeg5, master
- Children:
- 7436353
- Parents:
- 6031419
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r6031419 r1ba359c 13 13 uselib += ['AVUTIL'] 14 14 uselib += ['VORBISENC'] 15 uselib += ['FLAC'] 15 16 uselib += ['BLAS'] 16 17 -
wscript
r6031419 r1ba359c 70 70 help_str = 'compile with libvorbis (auto)', 71 71 help_disable_str = 'disable libvorbis') 72 add_option_enable_disable(ctx, 'flac', default = None, 73 help_str = 'compile with libFLAC (auto)', 74 help_disable_str = 'disable libflac') 72 75 add_option_enable_disable(ctx, 'samplerate', default = None, 73 76 help_str = 'compile with samplerate (auto)', … … 439 442 uselib_store = 'VORBISENC', 440 443 mandatory = ctx.options.enable_vorbis) 444 445 # check for flac 446 if (ctx.options.enable_flac != False): 447 ctx.check_cfg(package = 'flac', 448 args = '--cflags --libs', 449 uselib_store = 'FLAC', 450 mandatory = ctx.options.enable_flac) 441 451 442 452 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.