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

« back to all changes in this revision

Viewing changes to libs/plasmagenericshell/tests/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
if (KDE4_BUILD_TESTS)
 
2
 
 
3
include_directories(..
 
4
   ../../../plasma/shells/desktop 
 
5
   ${CMAKE_CURRENT_BINARY_DIR}/../../../plasma/shells/desktop)
 
6
add_definitions(-DPLASMAGENERICSHELL_EXPORT="")
 
7
 
 
8
set(appletexplorer_SRCS
 
9
   ../widgetsexplorer/kcategorizeditemsviewmodels.cpp
 
10
   ../widgetsexplorer/plasmaappletitemmodel.cpp
 
11
   ../widgetsexplorer/appleticon.cpp
 
12
   ../widgetsexplorer/appletsfiltering.cpp
 
13
   ../widgetsexplorer/applettooltip.cpp
 
14
   ../widgetsexplorer/appletslist.cpp
 
15
   ../widgetsexplorer/widgetexplorer.cpp
 
16
   ../widgetsexplorer/openwidgetassistant.cpp
 
17
   ../abstracticon.cpp
 
18
   ../abstracticonlist.cpp
 
19
   main.cpp
 
20
   )
 
21
kde4_add_executable(plasmaappletexplorer ${appletexplorer_SRCS})
 
22
target_link_libraries(plasmaappletexplorer ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBRARY} kephal)
 
23
 
 
24
set(backgrounddialog_SRCS
 
25
    background.cpp
 
26
    ../backgrounddialog.cpp
 
27
    ../mouseinputbutton.cpp
 
28
    ../mouseplugins.cpp
 
29
    ../mousepluginwidget.cpp
 
30
    ../wallpaperpreview.cpp
 
31
)
 
32
 
 
33
kde4_add_ui_files(backgrounddialog_SRCS ../MousePlugins.ui ../MousePlugins.ui ../BackgroundDialog.ui)
 
34
kde4_add_kcfg_files(backgrounddialog_SRCS ../../../plasma/desktop/shell/data/plasma-shell-desktop.kcfgc)
 
35
 
 
36
kde4_add_executable(plasmabackgrounddialog ${backgrounddialog_SRCS})
 
37
target_link_libraries(plasmabackgrounddialog ${KDE4_PLASMA_LIBS} ${KDE4_KFILE_LIBRARY} kworkspace)
 
38
 
 
39
endif (KDE4_BUILD_TESTS)
 
40