You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gwenview/src/imageutils/Makefile.am

36 lines
871 B

# QT_CLEAN_NAMESPACE is needed when building with automake, otherwise
# compilation fails in jpegcontent.cpp
AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/.. $(LIBEXIF_CFLAGS) $(all_includes) \
-DQT_CLEAN_NAMESPACE
AM_CCASFLAGS = -I$(srcdir) $(GV_ASM_DEFS)
KDE_CXXFLAGS = $(USE_EXCEPTIONS)
noinst_LTLIBRARIES = libgvimageutils.la
libgvimageutils_la_SOURCES = \
imageutils.cpp \
jpegcontent.cpp \
scale.cpp \
transupp.c \
asm_scale.S \
croppedqimage.cpp
libgvimageutils_la_LIBADD = $(LIB_TDECORE) $(LIBQT) $(LIBJPEG) $(LIB_EXIV2)
noinst_HEADERS = \
orientation.h \
imageutils.h \
jpegcontent.h \
jinclude.h \
transupp.h \
jpegerrormanager.h \
croppedqimage.h
METASOURCES = AUTO
check_PROGRAMS = testjpegcontent
testjpegcontent_SOURCES = testjpegcontent.cpp
testjpegcontent_LDADD = $(LIB_TDEFILE) libgvimageutils.la
testjpegcontent_LDFLAGS = $(all_libraries)