~ubuntu-branches/ubuntu/natty/kdenetwork/natty-proposed

« back to all changes in this revision

Viewing changes to filesharing/simple/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-02-21 14:26:58 UTC
  • Revision ID: package-import@ubuntu.com-20110221142658-mzt9flk82tzdunxj
Tags: 4:4.6.0-0ubuntu4
Update kubuntu_05_samba_sharing.diff to match master

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
add_definitions ( -DQT3_SUPPORT -DQT3_SUPPORT_WARNINGS)
2
 
 
3
 
 
4
 
 
5
 
########### next target ###############
6
 
 
7
 
set(kcm_fileshare_PART_SRCS fileshare.cpp groupconfigdlg.cpp krichtextlabel.cpp ${libfilesharesamba_SRCS} ${libfilesharenfs_SRCS})
8
 
 
9
 
 
10
 
 
11
 
kde4_add_ui3_files(kcm_fileshare_PART_SRCS 
12
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/socketoptionsdlg.ui
13
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/userselectdlg.ui
14
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/groupselectdlg.ui
15
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/usertab.ui
16
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/filemodedlg.ui
17
 
                ${CMAKE_SOURCE_DIR}/filesharing/advanced/nfs/hostprops.ui
18
 
                )
19
 
 
20
 
kde4_add_ui_files(kcm_fileshare_PART_SRCS
21
 
        ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/share.ui
22
 
        groupconfiggui.ui
23
 
        ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf/expertuserdlg.ui
24
 
        ${CMAKE_SOURCE_DIR}/filesharing/advanced/nfs/nfsdialoggui.ui
25
 
        controlcenter.ui
26
 
        ${CMAKE_SOURCE_DIR}/filesharing/advanced/propsdlgplugin/propertiespagegui.ui
27
 
)
28
 
 
29
 
 
30
 
kde4_add_plugin(kcm_fileshare ${kcm_fileshare_PART_SRCS})
31
 
 
32
 
 
33
 
target_link_libraries(kcm_fileshare  ${KDE4_KIO_LIBS} ${KDE4_KDE3SUPPORT_LIBS})
34
 
 
35
 
install(TARGETS kcm_fileshare  DESTINATION ${PLUGIN_INSTALL_DIR})
36
 
 
37
 
 
38
 
########### install files ###############
39
 
 
40
 
install( FILES fileshare.desktop DESTINATION  ${SERVICES_INSTALL_DIR} )
41
 
 
42
 
 
43