mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-03 17:30:19 +01:00
The convenience library provides a pdiff_compare function with a cairo interface into the perceptual diff algorithm.
19 lines
366 B
Makefile
19 lines
366 B
Makefile
EXTRA_PROGRAMS = perceptualdiff
|
|
|
|
noinst_LTLIBRARIES = libpdiff.la
|
|
libpdiff_la_SOURCES = \
|
|
pdiff.h \
|
|
LPyramid.cpp \
|
|
LPyramid.h \
|
|
Metric.cpp \
|
|
Metric.h \
|
|
RGBAImage.cpp \
|
|
RGBAImage.h
|
|
|
|
perceptualdiff_SOURCES = \
|
|
CompareArgs.cpp \
|
|
CompareArgs.h \
|
|
PerceptualDiff.cpp
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|
|
LDADD = libpdiff.la $(top_builddir)/src/libcairo.la
|