diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-22 18:41:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-22 20:55:03 +0900 |
commit | 5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90 (patch) | |
tree | f89cc49efc9ca1d0e1579ecb079ee7e7088ff8c8 /src/utilities/setup/Makefile.am | |
parent | 0bfbf616d9c1fd7abb1bd02732389ab35e5f8771 (diff) | |
download | digikam-5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90.tar.gz digikam-5bed6e4a4c916a97f8fe4d1b07f7eecf4d733b90.zip |
Rename 'digikam' folder to 'src'
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ee0d99607c14cb63d3ebdb3a970b508949fa8219)
Diffstat (limited to 'src/utilities/setup/Makefile.am')
-rw-r--r-- | src/utilities/setup/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/utilities/setup/Makefile.am b/src/utilities/setup/Makefile.am new file mode 100644 index 00000000..bd6fd66e --- /dev/null +++ b/src/utilities/setup/Makefile.am @@ -0,0 +1,29 @@ +METASOURCES = AUTO + +INCLUDES = -I$(top_srcdir)/src/digikam \ + -I$(top_srcdir)/src/utilities/cameragui \ + -I$(top_srcdir)/src/utilities/batch \ + -I$(top_srcdir)/src/utilities/imageeditor/canvas \ + -I$(top_srcdir)/src/libs/dialogs \ + -I$(top_srcdir)/src/libs/dimg \ + -I$(top_srcdir)/src/libs/dimg/loaders \ + -I$(top_srcdir)/src/libs/widgets/common \ + $(LIBKIPI_CFLAGS) $(LIBKDCRAW_CFLAGS) $(all_includes) + +noinst_LTLIBRARIES = libsetup.la libshowfotosetup.la + +libsetup_la_SOURCES = cameraselection.cpp setupcamera.cpp \ + setupmime.cpp setupplugins.cpp setupidentity.cpp \ + setupgeneral.cpp setup.cpp \ + setupcollections.cpp setupmetadata.cpp \ + setupeditor.cpp setupmisc.cpp setupicc.cpp \ + setupiofiles.cpp setupdcraw.cpp setupslideshow.cpp \ + setuptooltip.cpp setuplighttable.cpp + +libsetup_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_GPHOTO) + +libshowfotosetup_la_SOURCES = setupiofiles.cpp setupdcraw.cpp \ + setupicc.cpp setupslideshow.cpp + +libshowfotosetup_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor + |