pipewire/spa/plugins/ffmpeg/meson.build

12 lines
493 B
Meson
Raw Normal View History

ffmpeg_sources = ['ffmpeg.c',
'ffmpeg-dec.c',
'ffmpeg-enc.c']
ffmpeglib = shared_library('spa-ffmpeg',
ffmpeg_sources,
include_directories : [spa_inc, spa_libinc],
dependencies : [ avcodec_dep, avformat_dep ],
link_with : spalib,
2016-09-26 12:15:52 +02:00
install : true,
install_dir : '@0@/spa'.format(get_option('libdir')))