~ubuntu-branches/ubuntu/trusty/kdebluetooth/trusty

« back to all changes in this revision

Viewing changes to src/agent/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-09-18 22:54:49 UTC
  • mfrom: (1.2.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090918225449-3iiojjiklo7sfoer
Tags: 1:0.4~beta1b-0ubuntu1
* New upstream beta release:
  - basically a bugfix release
* Fixed kblueplugd for binary name

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
 
 
8
 
 
9
 
set(agent_SRCS 
10
 
        main.cpp
11
 
        agent.cpp
12
 
        passkeydialog.cpp
13
 
        authdialog.cpp
14
 
)
15
 
 
16
 
 
17
 
kde4_add_ui_files(agent_SRCS
18
 
                        authdialog.ui
19
 
                        passkeydialog.ui)
20
 
 
21
 
 
22
 
kde4_add_executable(agent ${agent_SRCS})
23
 
 
24
 
target_link_libraries(agent
25
 
                      ${KDE4_KIO_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_SOLID_LIBS} ${KDE4_KFILE_LIBS} solidcontrol)
26
 
 
27
 
install(TARGETS agent
28
 
        DESTINATION ${KDE4_BIN_INSTALL_DIR})
29