mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
iqa: Add meson build support
This commit is contained in:
parent
087d9bc376
commit
2fb83ab641
2 changed files with 15 additions and 0 deletions
14
ext/iqa/meson.build
Normal file
14
ext/iqa/meson.build
Normal file
|
@ -0,0 +1,14 @@
|
|||
dssim_dep = dependency('dssim', required : false,
|
||||
fallback: ['dssim', 'dssim_dep'])
|
||||
|
||||
if dssim_dep.found()
|
||||
gstiqa = library('gstiqa',
|
||||
'iqa.c',
|
||||
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API', '-DHAVE_DSSIM'],
|
||||
include_directories : [configinc],
|
||||
dependencies : [gst_dep, gstbadvideo_dep, gstbadbase_dep, dssim_dep],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
)
|
||||
endif
|
||||
|
|
@ -20,6 +20,7 @@ subdir('gl')
|
|||
#subdir('gsm')
|
||||
subdir('gtk')
|
||||
subdir('hls')
|
||||
subdir('iqa')
|
||||
subdir('kate')
|
||||
#subdir('ladspa')
|
||||
subdir('libde265')
|
||||
|
|
Loading…
Reference in a new issue