~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to plasma/generic/dataengines/share/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(shareengine)
 
2
 
 
3
set(share_engine_SRCS
 
4
        shareprovider.cpp
 
5
        shareengine.cpp
 
6
        shareservice.cpp
 
7
        share_package.cpp)
 
8
 
 
9
kde4_add_plugin(plasma_engine_share ${share_engine_SRCS})
 
10
target_link_libraries(plasma_engine_share
 
11
                      ${KDE4_KDECORE_LIBS}
 
12
                      ${KDE4_PLASMA_LIBS}
 
13
                      ${KDE4_KIO_LIBS}
 
14
                      ${KDE4_KROSSCORE_LIBS})
 
15
 
 
16
install(TARGETS plasma_engine_share
 
17
        DESTINATION ${PLUGIN_INSTALL_DIR})
 
18
 
 
19
install(FILES data/plasma-dataengine-share.desktop
 
20
        DESTINATION ${SERVICES_INSTALL_DIR})
 
21
 
 
22
install(FILES data/plasma_shareprovider.desktop
 
23
        DESTINATION ${SERVICETYPES_INSTALL_DIR})
 
24
 
 
25
install(FILES share.operations
 
26
        DESTINATION ${DATA_INSTALL_DIR}/plasma/services)
 
27
 
 
28
set(sharepackage_SRCS
 
29
        share_package.cpp
 
30
        plugin_share_package.cpp
 
31
)
 
32
 
 
33
add_subdirectory(backends)
 
34
 
 
35
kde4_add_plugin(plasma_packagestructure_share
 
36
        ${sharepackage_SRCS})
 
37
target_link_libraries(plasma_packagestructure_share
 
38
        ${KDE4_PLASMA_LIBS})
 
39
 
 
40
install(TARGETS plasma_packagestructure_share
 
41
                 DESTINATION ${PLUGIN_INSTALL_DIR})
 
42
install(FILES data/plasma-packagestructure-share.desktop
 
43
               DESTINATION ${SERVICES_INSTALL_DIR})