pipewire/spa/plugins/videoconvert/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

16 lines
365 B
Meson

videoconvert_sources = [
'videoadapter.c',
'plugin.c'
]
simd_cargs = []
simd_dependencies = []
videoconvertlib = shared_library('spa-videoconvert',
videoconvert_sources,
c_args : simd_cargs,
include_directories : [spa_inc],
dependencies : [ mathlib ],
link_with : simd_dependencies,
install : true,
install_dir : spa_plugindir / 'videoconvert')