blob: 19d504238d947db96a1284b9a403f3b569227c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
METASOURCES = AUTO
noinst_LTLIBRARIES = libdialog.la libdialogshowfoto.la
# Dialogs collection used by Showfoto.
libdialogshowfoto_la_SOURCES = iccprofileinfodlg.cpp imagedialog.cpp rawcameradlg.cpp
libdialogshowfoto_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
# Dialogs collection used by digiKam.
libdialog_la_SOURCES = deletedialogbase.ui imagedialog.cpp rawcameradlg.cpp \
iccprofileinfodlg.cpp deletedialog.cpp dprogressdlg.cpp
libdialog_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
INCLUDES = -I$(top_srcdir)/src/digikam \
-I$(top_srcdir)/src/libs/dimg \
-I$(top_srcdir)/src/libs/dmetadata \
-I$(top_srcdir)/src/libs/thumbbar \
-I$(top_srcdir)/src/libs/dimg/filters \
-I$(top_srcdir)/src/libs/widgets/common \
-I$(top_srcdir)/src/libs/widgets/metadata \
-I$(top_srcdir)/src/libs/widgets/iccprofiles \
-I$(top_srcdir)/src/libs/widgets/imageplugins \
-I$(top_srcdir)/src/utilities/imageeditor/canvas \
$(LIBKDCRAW_CFLAGS) \
$(LIBKEXIV2_CFLAGS) \
$(all_includes)
digikaminclude_HEADERS = iccprofileinfodlg.h dprogressdlg.h imagedialog.h rawcameradlg.h
digikamincludedir = $(includedir)/digikam
|