blob: 9f5f50642e497f36910ba16f8004fe7abc3a331f (
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
34
35
36
37
38
39
40
41
42
|
SUBDIRS = setup
METASOURCES = AUTO
bin_PROGRAMS = showfoto
INCLUDES = -I$(top_srcdir)/src/showfoto/setup \
-I$(top_srcdir)/src/utilities/setup \
-I$(top_srcdir)/src/libs/thumbbar \
-I$(top_srcdir)/src/libs/widgets/common \
-I$(top_srcdir)/src/libs/imageproperties \
-I$(top_srcdir)/src/libs/histogram \
-I$(top_srcdir)/src/libs/dimg \
-I$(top_srcdir)/src/libs/dmetadata \
-I$(top_srcdir)/src/libs/threadimageio \
-I$(top_srcdir)/src/libs/themeengine \
-I$(top_srcdir)/src/libs/dialogs \
-I$(top_srcdir)/src/digikam \
-I$(top_srcdir)/src/utilities/slideshow \
-I$(top_srcdir)/src/utilities/imageeditor/canvas \
-I$(top_srcdir)/src/utilities/imageeditor/editor \
-I$(top_srcdir)/src/utilities/imageeditor/tools \
$(LIBKEXIV2_CFLAGS) $(LIBKDCRAW_CFLAGS) $(all_includes)
showfoto_SOURCES = main.cpp showfoto.cpp
showfoto_LDADD = $(top_builddir)/src/showfoto/setup/libsetup.la \
$(top_builddir)/src/libs/imageproperties/libimagepropertiesshowfoto.la \
$(top_builddir)/src/libs/thumbbar/libthumbbar.la \
$(top_builddir)/src/utilities/imageeditor/editor/libshowfoto.la \
$(top_builddir)/src/utilities/slideshow/libslideshow.la \
$(top_builddir)/src/libs/threadimageio/libthreadimageio.la \
$(top_builddir)/src/libs/themeengine/libthemeengine.la \
$(top_builddir)/src/libs/jpegutils/libjpegutils.la \
$(LIB_TDEUTILS) $(LIB_TDEPARTS) $(LIBJPEG)
showfoto_LDFLAGS = $(LIBKEXIV2_LIBS) $(LIBKDCRAW_LIBS) $(KDE_RPATH) $(all_libraries)
rcdir = $(kde_datadir)/showfoto
rc_DATA = showfotoui.rc
xdg_apps_DATA = showfoto.desktop
|