~ubuntu-branches/ubuntu/precise/smb4k/precise

« back to all changes in this revision

Viewing changes to utilities/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Richard A. Johnson
  • Date: 2008-11-23 12:14:34 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20081123121434-88cpidapbcqteud1
Tags: 0.10.1-0ubuntu1
* New upstream release for KDE 4
* Closes
  - (LP: #238011)
  - (LP: #248510)
  - (LP: #261803)
  - (LP: #262225)
  - (LP: #275539)
* Updated debian/
  - control: updated for new deps and removed old deps, bumped versions,
    modified Maintainer
  - rules: removed all but the kde4.mk for cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
include_directories( ${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES}  )
 
3
 
 
4
 
 
5
########### next target ###############
 
6
 
 
7
set(smb4k_mount_SRCS smb4k_mount.cpp )
 
8
 
 
9
kde4_add_executable(smb4k_mount ${smb4k_mount_SRCS})
 
10
 
 
11
target_link_libraries(smb4k_mount  ${KDE4_KDECORE_LIBS} )
 
12
 
 
13
install(TARGETS smb4k_mount DESTINATION ${BIN_INSTALL_DIR})
 
14
 
 
15
 
 
16
########### next target ###############
 
17
 
 
18
set(smb4k_umount_SRCS smb4k_umount.cpp )
 
19
 
 
20
kde4_add_executable(smb4k_umount ${smb4k_umount_SRCS})
 
21
 
 
22
target_link_libraries(smb4k_umount  ${KDE4_KDECORE_LIBS} )
 
23
 
 
24
install(TARGETS smb4k_umount DESTINATION ${BIN_INSTALL_DIR})
 
25
 
 
26
 
 
27
########### next target ###############
 
28
 
 
29
set(smb4k_kill_SRCS smb4k_kill.cpp )
 
30
 
 
31
kde4_add_executable(smb4k_kill ${smb4k_kill_SRCS})
 
32
 
 
33
target_link_libraries(smb4k_kill  ${KDE4_KDECORE_LIBS} )
 
34
 
 
35
install(TARGETS smb4k_kill DESTINATION ${BIN_INSTALL_DIR})
 
36
 
 
37
 
 
38
########### next target ###############
 
39
 
 
40
set(smb4k_sudowriter_SRCS smb4k_sudowriter.cpp )
 
41
 
 
42
kde4_add_executable(smb4k_sudowriter ${smb4k_sudowriter_SRCS})
 
43
 
 
44
target_link_libraries(smb4k_sudowriter  ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} )
 
45
 
 
46
install(TARGETS smb4k_sudowriter DESTINATION ${BIN_INSTALL_DIR})
 
47
 
 
48
 
 
49
########### install files ###############