~ubuntu-branches/ubuntu/quantal/smb4k/quantal

« back to all changes in this revision

Viewing changes to smb4k/configdlg/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2012-05-19 18:54:34 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20120519185434-duffny2n87214n1n
Tags: 1.0.1-1
* New upstream release.
* Update debian/compat: bump to 9.
* Update debian/control:
  - bump debhelper to 9.
  - bump kdelibs5-dev build dependency to 4:4.4.0.
  - bump Standards-Version to 3.9.3 (no changes needed).
  - Replace smbfs dependency by cifs-utils. (Closes: #638162)
* Update debian/copyright:
  - update upstream URL.
  - update upstream e-mail.
* Update debian/smb4k.lintian-overrides file.
* Update debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
set(smb4kconfigdialog_LIB_SRCS
8
8
   smb4kauthoptions.cpp
9
9
   smb4kconfigdialog.cpp
 
10
   smb4klaptopsupportoptions.cpp
10
11
   smb4knetworkoptions.cpp
11
12
   smb4krsyncoptions.cpp
12
13
   smb4ksambaoptions.cpp
13
14
   smb4kshareoptions.cpp
14
 
   smb4ksuperuseroptions.cpp
15
15
   smb4kuserinterfaceoptions.cpp )
16
16
 
17
 
kde4_add_plugin(smb4kconfigdialog WITH_PREFIX ${smb4kconfigdialog_LIB_SRCS})
 
17
kde4_add_plugin( smb4kconfigdialog ${smb4kconfigdialog_LIB_SRCS} )
18
18
 
19
19
target_link_libraries( smb4kconfigdialog
20
 
  ${KDE4_KDECORE_LIBS} 
21
 
  smb4kcore 
 
20
  ${KDE4_KDECORE_LIBS}
 
21
  smb4kcore
22
22
  ${KDE4_KDEUI_LIBS}
23
23
  ${KDE4_KIO_LIBS} )
24
24
 
25
 
# set_target_properties(smb4kconfigdialog PROPERTIES VERSION 2.0.0 SOVERSION 2 )
26
25
install(TARGETS smb4kconfigdialog DESTINATION ${PLUGIN_INSTALL_DIR} )
27
26
 
28
27