blob: 3211d736e02addad8b30fafce7b1bcaeb0b8aeaf (
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
|
# Here resides the file view part.
INCLUDES = -I$(top_srcdir)/lib/compat -I$(top_srcdir)/lib/interfaces \
-I$(top_srcdir)/lib/interfaces/extensions -I$(top_srcdir)/lib/util $(all_includes)
kde_module_LTLIBRARIES = libkdevfileview.la libkdevfilegroups.la
libkdevfileview_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkdevfileview_la_LIBADD = $(top_builddir)/lib/libtdevelop.la
libkdevfilegroups_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
libkdevfilegroups_la_LIBADD = $(top_builddir)/lib/libtdevelop.la
libkdevfileview_la_SOURCES = fileviewpart.cpp filetreewidget.cpp partwidget.cpp vcscolorsconfigwidgetbase.ui vcscolorsconfigwidget.cpp stdfiletreewidgetimpl.cpp filetreeviewwidgetimpl.cpp vcsfiletreewidgetimpl.cpp fileitemfactory.cpp
libkdevfilegroups_la_SOURCES = filegroupswidget.cpp addfilegroupdlg.cpp filegroupsconfigwidget.cpp filegroupsconfigwidgetbase.ui filegroupspart.cpp
METASOURCES = AUTO
servicedir = $(kde_servicesdir)
service_DATA = kdevfileview.desktop kdevfilegroups.desktop
# not used currently
#rcdir = $(kde_datadir)/kdevfileview
#rc_DATA = kdevfileview.rc
noinst_HEADERS = vcscolorsconfigwidget.h stdfiletreewidgetimpl.h filetreeviewwidgetimpl.h vcsfiletreewidgetimpl.h fileitemfactory.h
|