~neon/kdeplasma-addons/trunk

« back to all changes in this revision

Viewing changes to applets/paste/CMakeLists.txt

  • Committer: asouza
  • Date: 2011-02-01 19:41:58 UTC
  • Revision ID: svn-v4:283d02a7-25f6-0310-bc7c-ecb5cbfe19da:trunk/KDE/kdeplasma-addons:1218275
Move kdeplasma-addons to git

- You can find information about the project in the link below:

https://projects.kde.org/projects/kde/kdeplasma-addons/repository

- And you can clone the repository using:

git clone git://anongit.kde.org/kdeplasma-addons


Thanks eean and all the sysadmins for the help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
project(plasma-paste)
2
 
 
3
 
set(paste_SRCS
4
 
    paste.cpp
5
 
    sendkeys.cpp
6
 
    list.cpp
7
 
    configdata.cpp
8
 
    snippetconfig.cpp
9
 
    autopasteconfig.cpp
10
 
    appkey.cpp
11
 
    pastemacroexpander.cpp
12
 
    addmacro.cpp
13
 
)
14
 
 
15
 
kde4_add_ui_files(paste_SRCS
16
 
    list.ui
17
 
    snippetconfig.ui
18
 
    autopasteconfig.ui
19
 
    appkey.ui
20
 
)
21
 
 
22
 
kde4_add_plugin(plasma_applet_paste ${paste_SRCS})
23
 
target_link_libraries(plasma_applet_paste
24
 
        ${X11_X11_LIB} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} ${KDE4_PLASMA_LIBS})
25
 
 
26
 
install(TARGETS plasma_applet_paste DESTINATION ${PLUGIN_INSTALL_DIR})
27
 
install(FILES plasma-applet-paste.desktop DESTINATION ${SERVICES_INSTALL_DIR})