~ubuntu-branches/ubuntu/raring/ktp-text-ui/raring-proposed

« back to all changes in this revision

Viewing changes to filters/searchexpansion/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-08-26 12:46:37 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20120826124637-lhv0slddscxlwzbw
Tags: 0.5.0-0ubuntu1
* New upstream release
  - Drop 03_no_redundant_glib_calls.diff 
  - Update 02_ktpchat_soversion.diff
  - Disable tests
  - Update install file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set (ktptextui_message_filter_searchexpansion_SRCS
 
2
     searchexpansion-filter.cpp
 
3
)
 
4
 
 
5
kde4_add_plugin (ktptextui_message_filter_searchexpansion
 
6
                 ${ktptextui_message_filter_searchexpansion_SRCS}
 
7
)
 
8
 
 
9
target_link_libraries (ktptextui_message_filter_searchexpansion
 
10
    ktpchat
 
11
    ${QT_LIBRARIES}
 
12
    ${KDE4_KDEUI_LIBS}
 
13
    ${KDE4_KIO_LIBS}
 
14
    ${TELEPATHY_QT4_LIBRARIES}
 
15
    ${KDE4_KEMOTICONS_LIBS}
 
16
)
 
17
 
 
18
# Install:
 
19
install (TARGETS ktptextui_message_filter_searchexpansion
 
20
         DESTINATION ${PLUGIN_INSTALL_DIR}
 
21
)
 
22
 
 
23
install (FILES ktptextui_message_filter_searchexpansion.desktop
 
24
         DESTINATION ${SERVICES_INSTALL_DIR}
 
25
)
 
26