~ubuntu-branches/ubuntu/utopic/kdebase/utopic

« back to all changes in this revision

Viewing changes to apps/plasma/applets/folderview/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers, José Manuel Santamaría Lema, Modestas Vainius
  • Date: 2011-05-26 02:53:50 UTC
  • mfrom: (0.7.7 upstream) (0.4.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 296.
  • Revision ID: james.westby@ubuntu.com-20110526025350-7o10g65yegec2rnq
Tags: 4:4.6.3-1
* New upstream release.

[ José Manuel Santamaría Lema ]
* Bump kde-sc-dev-latest build dependency to 4:4.6.3.
* Bump Standards-Version to 3.9.2; no changes needed.

[ Modestas Vainius ]
* Enable DLRestrictions for libraries in this package. Requires
  libdlrestrictions-dev 0.14 and kdelibs5-dev 4:4.6.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
project(plasma-folderview)
2
 
 
3
 
include (ConfigureChecks.cmake)
4
 
configure_file(config-folderview.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-folderview.h)
5
 
 
6
 
 
7
 
set(folderview_SRCS
8
 
    folderview.cpp
9
 
    abstractitemview.cpp
10
 
    listview.cpp
11
 
    dialog.cpp
12
 
    label.cpp
13
 
    iconview.cpp
14
 
    popupview.cpp
15
 
    iconwidget.cpp
16
 
    dirlister.cpp
17
 
    proxymodel.cpp
18
 
    folderviewadapter.cpp
19
 
    previewpluginsmodel.cpp
20
 
    tooltipwidget.cpp
21
 
    style.cpp
22
 
    itemeditor.cpp
23
 
    animator.cpp
24
 
    actionoverlay.cpp)
25
 
 
26
 
kde4_add_ui_files(folderview_SRCS
27
 
                  folderviewFilterConfig.ui
28
 
                  folderviewDisplayConfig.ui
29
 
                  folderviewLocationConfig.ui
30
 
                  folderviewPreviewConfig.ui)
31
 
 
32
 
kde4_add_plugin(plasma_applet_folderview ${folderview_SRCS})
33
 
 
34
 
target_link_libraries(plasma_applet_folderview ${KDE4_PLASMA_LIBS} konq
35
 
                      ${KDE4_KIO_LIBS} ${KDE4_KFILE_LIBS} ${KDE4_SOLID_LIBS} ${X11_LIBRARIES})
36
 
 
37
 
install(TARGETS plasma_applet_folderview DESTINATION ${PLUGIN_INSTALL_DIR})
38
 
install(FILES plasma-applet-folderview.desktop DESTINATION ${SERVICES_INSTALL_DIR})
39