diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kresources/Makefile.am | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/Makefile.am')
-rw-r--r-- | kresources/Makefile.am | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/kresources/Makefile.am b/kresources/Makefile.am new file mode 100644 index 000000000..c30d108a7 --- /dev/null +++ b/kresources/Makefile.am @@ -0,0 +1,49 @@ +INCLUDES = $(all_includes) + +METASOURCES = AUTO + +lib_LTLIBRARIES = libkresources.la + +libkresources_la_SOURCES = resource.cpp \ + factory.cpp \ + manageriface.skel \ + manageriface.stub \ + managerimpl.cpp \ + configwidget.cpp \ + configdialog.cpp \ + selectdialog.cpp \ + configpage.cpp + +libkresources_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 3:0:2 +libkresources_la_LIBADD = $(LIB_KDEUI) $(LIB_KIO) + +kresincludedir = $(includedir)/kresources +kresinclude_HEADERS = resource.h \ + configwidget.h \ + factory.h \ + manageriface.h \ + managerimpl.h \ + manager.h \ + selectdialog.h \ + configdialog.h \ + configpage.h + +kde_module_LTLIBRARIES = kcm_kresources.la + +kcm_kresources_la_SOURCES = kcmkresources.cpp +kcm_kresources_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined +kcm_kresources_la_LIBADD = libkresources.la + + +check_PROGRAMS = testresources + +testresources_LDFLAGS = $(all_libraries) $(KDE_RPATH) +testresources_LDADD = libkresources.la +testresources_SOURCES = testresources.cpp + +xdg_apps_DATA = kresources.desktop + +servicetypedir = $(kde_servicetypesdir) +servicetype_DATA = kresources_plugin.desktop kresources_manager.desktop + +include ../admin/Doxyfile.am |