weston/libweston/color-lcms/meson.build
Leandro Ribeiro 686f0d4f2b color-lcms: print curve sets on pipeline optimizer debug scope
We were printing only the matrices (cmsSigMatrixElemType) up to now.
Start printing the curve sets (cmsSigCurveSetElemType) as well.

Signed-off-by: Leandro Ribeiro <leandro.ribeiro@collabora.com>
2023-05-26 10:31:34 +00:00

34 lines
771 B
Meson

if not get_option('color-management-lcms')
subdir_done()
endif
if not dep_lcms2.found()
error('color-lcms plugin requires lcms2 which was not found. Or, you can use \'-Dcolor-management-lcms=false\'.')
endif
config_h.set10('HAVE_CMS_GET_TONE_CURVE_SEGMENT',
cc.has_function('cmsGetToneCurveSegment', dependencies : dep_lcms2))
srcs_color_lcms = [
'color-lcms.c',
'color-profile.c',
'color-transform.c',
]
deps_color_lcms = [
dep_libm,
dep_libweston_private,
dep_lcms2,
]
plugin_color_lcms = shared_library(
'color-lcms',
srcs_color_lcms,
include_directories: common_inc,
dependencies: deps_color_lcms,
name_prefix: '',
install: true,
install_dir: dir_module_libweston
)
env_modmap += 'color-lcms.so=@0@;'.format(plugin_color_lcms.full_path())