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

« back to all changes in this revision

Viewing changes to parts/fileselector/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(kdevfileselector_PART_SRCS
 
2
fileselector_part.cpp
 
3
fileselector_widget.cpp
 
4
kactionselector.cpp
 
5
kbookmarkhandler.cpp
 
6
)
 
7
 
 
8
KDE_AUTOMOC(${kdevfileselector_PART_SRCS})
 
9
 
 
10
ADD_LIBRARY(kdevfileselector MODULE ${kdevfileselector_PART_SRCS})
 
11
 
 
12
TARGET_LINK_LIBRARIES(kdevfileselector ${KDEV_PART_LIBS})
 
13
 
 
14
KDE_CREATE_LIBTOOL_FILE(kdevfileselector)
 
15
 
 
16
INSTALL_TARGETS(/lib/kde3 kdevfileselector)
 
17
 
 
18
INSTALL_FILES(/share/services FILES kdevfileselector.desktop)
 
19
INSTALL_FILES(/share/apps/kdevfileselector FILES kdevpart_fileselector.rc)
 
20
 
 
21
#original Makefile.am contents follow:
 
22
 
 
23
## Here resides the file selector part.
 
24
#
 
25
#INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util -I$(top_srcdir)/lib/sourceinfo $(all_includes)
 
26
#
 
27
#kde_module_LTLIBRARIES = libkdevfileselector.la
 
28
#libkdevfileselector_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
29
#libkdevfileselector_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
 
30
#
 
31
#libkdevfileselector_la_SOURCES = fileselector_part.cpp fileselector_widget.cpp kactionselector.cpp kbookmarkhandler.cpp
 
32
#
 
33
#METASOURCES = AUTO
 
34
#
 
35
#servicedir = $(kde_servicesdir)
 
36
#service_DATA = kdevfileselector.desktop
 
37
#
 
38
## not used currently
 
39
##rcdir = $(kde_datadir)/kdevfileselector
 
40
##rc_DATA = kdevfileselector.rc
 
41