~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to solid/backends/fakehw/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
add_subdirectory( tests )
 
4
 
 
5
########### next target ###############
 
6
 
 
7
set(solid_fakehw_PART_SRCS 
 
8
   fakemanager.cpp 
 
9
   fakedevice.cpp 
 
10
   fakejob.cpp 
 
11
   fakecapability.cpp 
 
12
   fakeblock.cpp 
 
13
   fakestorage.cpp 
 
14
   fakecdrom.cpp 
 
15
   fakevolume.cpp 
 
16
   fakeopticaldisc.cpp 
 
17
   fakecamera.cpp 
 
18
   fakeportablemediaplayer.cpp 
 
19
   fakenetworkhw.cpp 
 
20
   fakeprocessor.cpp 
 
21
   fakeacadapter.cpp 
 
22
   fakebattery.cpp 
 
23
   fakebutton.cpp 
 
24
   fakedisplay.cpp
 
25
   fakeaudiohw.cpp
 
26
   fakedvbhw.cpp )
 
27
 
 
28
kde4_automoc(${solid_fakehw_PART_SRCS})
 
29
 
 
30
kde4_add_library(solid_fakehw_static STATIC ${solid_fakehw_PART_SRCS} )
 
31
target_link_libraries(solid_fakehw_static solidifaces solid ${QT_QTXML_LIBRARY} )
 
32
 
 
33
kde4_add_plugin(solid_fakehw module.cpp ${solid_fakehw_PART_SRCS})
 
34
 
 
35
 
 
36
target_link_libraries(solid_fakehw solidifaces solid ${QT_QTXML_LIBRARY} )
 
37
 
 
38
install(TARGETS solid_fakehw DESTINATION ${PLUGIN_INSTALL_DIR}  )
 
39
 
 
40
 
 
41
########### install files ###############
 
42
 
 
43
install( FILES solid_fakehw.desktop DESTINATION ${SERVICES_INSTALL_DIR}/solidbackends  )
 
44
install( FILES fakecomputer.xml DESTINATION ${DATA_INSTALL_DIR}/solidfakehwbackend  )
 
45
 
 
46