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

« back to all changes in this revision

Viewing changes to parts/replace/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(kdevreplace_PART_SRCS
 
2
replace_part.cpp
 
3
replace_widget.cpp
 
4
replaceitem.cpp
 
5
replaceview.cpp
 
6
replacedlgimpl.cpp
 
7
)
 
8
 
 
9
SET( kdevreplace_UI
 
10
replacedlg.ui
 
11
)
 
12
 
 
13
KDE_AUTOMOC(${kdevreplace_PART_SRCS})
 
14
 
 
15
KDE_ADD_UI_FILES(kdevreplace_PART_SRCS ${kdevreplace_UI} )
 
16
 
 
17
ADD_LIBRARY(kdevreplace MODULE ${kdevreplace_PART_SRCS})
 
18
 
 
19
TARGET_LINK_LIBRARIES(kdevreplace ${KDEV_PART_LIBS})
 
20
 
 
21
KDE_CREATE_LIBTOOL_FILE(kdevreplace)
 
22
 
 
23
INSTALL_TARGETS(/lib/kde3 kdevreplace)
 
24
 
 
25
INSTALL_FILES(/share/servicetypes FILES kdevreplace.desktop )
 
26
INSTALL_FILES(/share/apps/kdevreplace FILES kdevpart_replace.rc)
 
27
 
 
28
#original Makefile.am contents follow:
 
29
 
 
30
## Here resides the replace part (search and replace in the entire project)
 
31
#
 
32
#INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util $(all_includes)
 
33
#
 
34
#kde_module_LTLIBRARIES = libkdevreplace.la
 
35
#libkdevreplace_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
36
#libkdevreplace_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
 
37
#libkdevreplace_la_SOURCES = replace_part.cpp replace_widget.cpp replacedlg.ui replaceitem.cpp replaceview.cpp replacedlgimpl.cpp
 
38
#
 
39
#METASOURCES = AUTO
 
40
#
 
41
#servicedir = $(kde_servicesdir)
 
42
#service_DATA = kdevreplace.desktop
 
43
#
 
44
#rcdir = $(kde_datadir)/kdevreplace
 
45
#rc_DATA = kdevpart_replace.rc
 
46