~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to parts/fileview/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET(kdevfileview_PART_SRCS
 
2
fileviewpart.cpp
 
3
filetreewidget.cpp
 
4
partwidget.cpp
 
5
vcscolorsconfigwidget.cpp
 
6
stdfiletreewidgetimpl.cpp
 
7
filetreeviewwidgetimpl.cpp
 
8
vcsfiletreewidgetimpl.cpp
 
9
fileitemfactory.cpp
 
10
)
 
11
 
 
12
SET( kdevfileview_UI
 
13
vcscolorsconfigwidgetbase.ui
 
14
)
 
15
 
 
16
KDE_AUTOMOC(${kdevfileview_PART_SRCS})
 
17
 
 
18
KDE_ADD_UI_FILES(kdevfileview_PART_SRCS ${kdevfileview_UI} )
 
19
 
 
20
ADD_LIBRARY(kdevfileview MODULE ${kdevfileview_PART_SRCS})
 
21
 
 
22
KDE_CREATE_LIBTOOL_FILE(kdevfileview)
 
23
 
 
24
TARGET_LINK_LIBRARIES(kdevfileview ${KDEV_PART_LIBS})
 
25
 
 
26
SET(kdevfilegroups_PART_SRCS
 
27
filegroupswidget.cpp
 
28
addfilegroupdlg.cpp
 
29
filegroupsconfigwidget.cpp
 
30
filegroupspart.cpp
 
31
)
 
32
 
 
33
KDE_AUTOMOC(${kdevfilegroups_PART_SRCS})
 
34
 
 
35
SET( kdevfilegroups_UI
 
36
filegroupsconfigwidgetbase.ui
 
37
)
 
38
 
 
39
KDE_ADD_UI_FILES(kdevfilegroups_PART_SRCS ${kdevfilegroups_UI} )
 
40
 
 
41
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/lib/interfaces/extensions/ )
 
42
 
 
43
ADD_LIBRARY(kdevfilegroups MODULE ${kdevfilegroups_PART_SRCS})
 
44
 
 
45
TARGET_LINK_LIBRARIES(kdevfilegroups ${KDEV_PART_LIBS})
 
46
 
 
47
KDE_CREATE_LIBTOOL_FILE(kdevfilegroups)
 
48
 
 
49
INSTALL_TARGETS(/lib/kde3 kdevfilegroups kdevfileview)
 
50
 
 
51
INSTALL_FILES(/share/servicetypes FILES kdevfileview.desktop kdevfilegroups.desktop)
 
52
 
 
53
 
 
54
#original Makefile.am contents follow:
 
55
 
 
56
## Here resides the file view part.
 
57
#
 
58
#INCLUDES = -I$(top_srcdir)/lib/compat -I$(top_srcdir)/lib/interfaces \
 
59
#       -I$(top_srcdir)/lib/interfaces/extensions -I$(top_srcdir)/lib/util $(all_includes)
 
60
#
 
61
#kde_module_LTLIBRARIES = libkdevfileview.la libkdevfilegroups.la
 
62
#
 
63
#libkdevfileview_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
64
#libkdevfileview_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
 
65
#
 
66
#libkdevfilegroups_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
67
#libkdevfilegroups_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
 
68
#
 
69
#libkdevfileview_la_SOURCES = fileviewpart.cpp filetreewidget.cpp partwidget.cpp vcscolorsconfigwidgetbase.ui vcscolorsconfigwidget.cpp stdfiletreewidgetimpl.cpp filetreeviewwidgetimpl.cpp vcsfiletreewidgetimpl.cpp fileitemfactory.cpp
 
70
#
 
71
#libkdevfilegroups_la_SOURCES = filegroupswidget.cpp addfilegroupdlg.cpp filegroupsconfigwidget.cpp filegroupsconfigwidgetbase.ui filegroupspart.cpp
 
72
#
 
73
#METASOURCES = AUTO
 
74
#
 
75
#servicedir = $(kde_servicesdir)
 
76
#service_DATA = kdevfileview.desktop kdevfilegroups.desktop
 
77
#
 
78
## not used currently
 
79
##rcdir = $(kde_datadir)/kdevfileview
 
80
##rc_DATA = kdevfileview.rc
 
81
#noinst_HEADERS = vcscolorsconfigwidget.h stdfiletreewidgetimpl.h filetreeviewwidgetimpl.h vcsfiletreewidgetimpl.h fileitemfactory.h
 
82