mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
7853700b50
Makes sure their path gets added to the uninstalled environment and makes sure they get included in the docs.
14 lines
564 B
Meson
14 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
|