~ubuntu-branches/ubuntu/intrepid/kdebluetooth/intrepid-proposed

« back to all changes in this revision

Viewing changes to src/inputwizard/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2008-08-07 09:49:47 UTC
  • mto: This revision was merged to the branch mainline in revision 56.
  • Revision ID: james.westby@ubuntu.com-20080807094947-pj6q3uxwuv7l844q
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

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
# We add our source code here
 
8
set(inputwizard_SRCS 
 
9
        main.cpp
 
10
        wizarddialog.cpp
 
11
)
 
12
 
 
13
kde4_add_executable(kbluetooth4-inputwizard ${inputwizard_SRCS})
 
14
 
 
15
target_link_libraries(kbluetooth4-inputwizard
 
16
                      ${KDE4_KIO_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_SOLID_LIBS} solidcontrol)
 
17
 
 
18
install(TARGETS kbluetooth4-inputwizard
 
19
        DESTINATION ${KDE4_BIN_INSTALL_DIR})
 
20