~ubuntu-branches/ubuntu/oneiric/kig/oneiric

« back to all changes in this revision

Viewing changes to kfile/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2011-07-10 11:57:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110710115738-gdjnn1kctr49lmy9
Tags: upstream-4.6.90+repack
ImportĀ upstreamĀ versionĀ 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
 
 
5
########### next target ###############
 
6
 
 
7
set(kfile_drgeo_PART_SRCS kfile_drgeo.cpp )
 
8
 
 
9
 
 
10
kde4_add_plugin(kfile_drgeo ${kfile_drgeo_PART_SRCS})
 
11
 
 
12
 
 
13
 
 
14
target_link_libraries(kfile_drgeo  ${KDE4_KIO_LIBS} ${QT_QTXML_LIBRARY} )
 
15
 
 
16
install(TARGETS kfile_drgeo DESTINATION ${PLUGIN_INSTALL_DIR})
 
17
 
 
18
 
 
19
########### next target ###############
 
20
 
 
21
set(kfile_kig_PART_SRCS kfile_kig.cpp )
 
22
 
 
23
 
 
24
kde4_add_plugin(kfile_kig ${kfile_kig_PART_SRCS})
 
25
 
 
26
 
 
27
 
 
28
target_link_libraries(kfile_kig  ${KDE4_KIO_LIBS} ${QT_QTXML_LIBRARY} )
 
29
 
 
30
install(TARGETS kfile_kig DESTINATION ${PLUGIN_INSTALL_DIR})
 
31
 
 
32
 
 
33
########### install files ###############
 
34
 
 
35
install(FILES
 
36
   kfile_drgeo.desktop
 
37
   kfile_kig.desktop
 
38
   DESTINATION  ${SERVICES_INSTALL_DIR})
 
39