~ubuntu-branches/ubuntu/maverick/bluedevil/maverick-proposed

« back to all changes in this revision

Viewing changes to src/actionplugins/sendfile/helper/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-08-07 09:04:19 UTC
  • Revision ID: james.westby@ubuntu.com-20100807090419-68k54ucso2htcf5z
Tags: upstream-1.0~rc2
ImportĀ upstreamĀ versionĀ 1.0~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(
 
2
   ${CMAKE_SOURCE_DIR}
 
3
   ${CMAKE_BINARY_DIR}
 
4
   ${KDE4_INCLUDES}
 
5
)
 
6
 
 
7
set(sendfilehelper_SRCS
 
8
    main.cpp
 
9
    discoverwidget.cpp
 
10
    sendfilewizard.cpp
 
11
    pages/selectfilespage.cpp
 
12
    pages/selectdevicepage.cpp
 
13
    pages/connectingpage.cpp
 
14
    pages/sendintropage.cpp
 
15
    obexagent.cpp
 
16
    sendfilesjob.cpp
 
17
)
 
18
 
 
19
kde4_add_ui_files(sendfilehelper_SRCS
 
20
    discover.ui
 
21
    pages/connecting.ui
 
22
    pages/sendintro.ui
 
23
)
 
24
 
 
25
qt4_add_dbus_interface(sendfilehelper_SRCS org.openobex.Client.xml obex_client)
 
26
qt4_add_dbus_interface(sendfilehelper_SRCS org.openobex.Transfer.xml obex_transfer)
 
27
 
 
28
 
 
29
kde4_add_executable(bluedevil-sendfile ${sendfilehelper_SRCS})
 
30
 
 
31
target_link_libraries(bluedevil-sendfile
 
32
                      ${KDE4_KIO_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBS} ${LibBlueDevil_LIBRARIES})
 
33
 
 
34
install(TARGETS bluedevil-sendfile DESTINATION ${INSTALL_TARGETS_DEFAULT_ARGS})
 
35
install(FILES bluedevil-sendfile.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})