gstreamer/ext/colormanagement/meson.build
Tim-Philipp Müller 7853700b50 meson: add more plugins to plugins list
Makes sure their path gets added to the uninstalled environment
and makes sure they get included in the docs.
2019-05-30 20:41:57 +02:00

15 lines
564 B
Meson

lcms2_dep = dependency('lcms2', version : '>= 2.7', required : get_option('colormanagement'))
if lcms2_dep.found()
gstcolormanagement = library('gstcolormanagement',
'gstcolormanagement.c', 'gstlcms.c',
c_args : gst_plugins_bad_args,
link_args : noseh_link_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep, lcms2_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstcolormanagement, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstcolormanagement]
endif