summaryrefslogtreecommitdiffstats
path: root/filesharing/advanced/kcm_sambaconf/CMakeLists.txt
blob: 318ded1246240dcf5fbb164ae46dab3de818df67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#################################################
#
#  (C) 2010-2011 Serghei Amelian
#  serghei (DOT) amelian (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### other data ################################

tde_install_icons( )

tde_create_translated_desktop(
  SOURCE kcmsambaconf.desktop
  PO_DIR filesharing-desktops
)


##### filesharesamba (static) ###################

tde_add_library( filesharesamba STATIC_PIC AUTOMOC
  SOURCES
    sambafile.cpp share.ui sharedlgimpl.cpp sambashare.cpp
    socketoptionsdlg.ui common.cpp userselectdlg.ui
    groupselectdlg.ui usertab.ui usertabimpl.cpp filemodedlg.ui
    filemodedlgimpl.cpp smbpasswdfile.cpp passwd.cpp hiddenfileview.cpp
    dictmanager.cpp qmultichecklistitem.cpp smbconfconfigwidget.cpp
    linuxpermissionchecker.cpp expertuserdlg.ui
  DEPENDENCIES filesharesamba_generate_headers
)

#  Those headers are also required by target in another subdirectory. 
# So we have to add such target for our generated header files to avoid
# race conditions.
# SEE cmake FAQ: http://www.cmake.org/Wiki/CMake_FAQ
#
add_custom_target( filesharesamba_generate_headers 
  DEPENDS  
    ${CMAKE_CURRENT_BINARY_DIR}/share.h 
    ${CMAKE_CURRENT_BINARY_DIR}/share.h 
    ${CMAKE_CURRENT_BINARY_DIR}/socketoptionsdlg.h
    ${CMAKE_CURRENT_BINARY_DIR}/userselectdlg.h
    ${CMAKE_CURRENT_BINARY_DIR}/groupselectdlg.h
    ${CMAKE_CURRENT_BINARY_DIR}/usertab.h
    ${CMAKE_CURRENT_BINARY_DIR}/filemodedlg.h
    ${CMAKE_CURRENT_BINARY_DIR}/expertuserdlg.h
)


##### kcm_kcmsambaconf (module) #################

tde_add_kpart( kcm_kcmsambaconf AUTOMOC
  SOURCES
    kcminterface.ui kcmprinterdlg.ui printerdlgimpl.cpp kcmsambaconf.cpp
    joindomaindlg.ui
  LINK filesharesamba-static tdeprint-shared
  DESTINATION ${PLUGIN_INSTALL_DIR}
)