pipewire/spa/plugins/ffmpeg/meson.build
Peter Hutterer ebda71d489 spa: fix the indentation in the various meson.build files
Was all over the place using tabs and spaces, let's make this more
consistent.
2021-09-20 07:29:03 +00:00

10 lines
405 B
Meson

ffmpeg_sources = ['ffmpeg.c',
'ffmpeg-dec.c',
'ffmpeg-enc.c']
ffmpeglib = shared_library('spa-ffmpeg',
ffmpeg_sources,
include_directories : [spa_inc],
dependencies : [avcodec_dep],
install : true,
install_dir : spa_plugindir / 'ffmpeg')