~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to solid/control/solid/control/ifaces/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-31 19:16:54 UTC
  • Revision ID: james.westby@ubuntu.com-20071031191654-xuof6e1jg6uxqaze
Tags: 3.95.0-0ubuntu1~gutsy1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
 
3
 
########### next target ###############
4
 
 
5
 
set(solidcontrolifaces_LIB_SRCS 
6
 
   powermanager.cpp
7
 
   networkmanager.cpp
8
 
   networkinterface.cpp
9
 
   network.cpp
10
 
   wirelessnetwork.cpp
11
 
   authentication.cpp
12
 
   bluetoothremotedevice.cpp
13
 
   bluetoothinputdevice.cpp
14
 
   bluetoothinterface.cpp
15
 
   bluetoothmanager.cpp
16
 
   bluetoothsecurity.cpp )
17
 
 
18
 
 
19
 
kde4_add_library(solidcontrolifaces SHARED ${solidcontrolifaces_LIB_SRCS})
20
 
 
21
 
target_link_libraries(solidcontrolifaces  ${KDE4_KDECORE_LIBS} )
22
 
 
23
 
set_target_properties(solidcontrolifaces PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
24
 
install(TARGETS solidcontrolifaces DESTINATION ${LIB_INSTALL_DIR}  )
25
 
 
26
 
 
27
 
########### install files ###############
28
 
 
29
 
install( FILES powermanager.h networkmanager.h networkinterface.h network.h wirelessnetwork.h authentication.h bluetoothremotedevice.h bluetoothinputdevice.h bluetoothinterface.h bluetoothmanager.h DESTINATION ${INCLUDE_INSTALL_DIR}/solid/control/ifaces)
30