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

« back to all changes in this revision

Viewing changes to parts/openwith/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(kdevopenwith_PART_SRCS
 
2
openwithpart.cpp
 
3
)
 
4
 
 
5
KDE_AUTOMOC(${kdevopenwith_PART_SRCS})
 
6
 
 
7
ADD_LIBRARY(kdevopenwith MODULE ${kdevopenwith_PART_SRCS})
 
8
 
 
9
TARGET_LINK_LIBRARIES(kdevopenwith ${KDEV_PART_LIBS})
 
10
 
 
11
KDE_CREATE_LIBTOOL_FILE(kdevopenwith)
 
12
 
 
13
INSTALL_TARGETS(/lib/kde3 kdevopenwith)
 
14
 
 
15
INSTALL_FILES(/share/servicetypes FILES kdevopenwith.desktop)
 
16
 
 
17
#original Makefile.am contents follow:
 
18
 
 
19
## Here resides the openwith part.
 
20
#
 
21
#INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util $(all_includes)
 
22
#
 
23
#kde_module_LTLIBRARIES = libkdevopenwith.la
 
24
#libkdevopenwith_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
 
25
#libkdevopenwith_la_LIBADD = $(top_builddir)/lib/libkdevelop.la
 
26
#
 
27
#libkdevopenwith_la_SOURCES = openwithpart.cpp
 
28
#
 
29
#METASOURCES = AUTO
 
30
#
 
31
#servicedir = $(kde_servicesdir)
 
32
#service_DATA = kdevopenwith.desktop
 
33
#
 
34