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

« back to all changes in this revision

Viewing changes to kicker/libkicker/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
ImportĀ upstreamĀ versionĀ 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
 
 
5
########### next target ###############
 
6
 
 
7
set(kickermain_LIB_SRCS 
 
8
   abstractpanelmanager.cpp 
 
9
   appletinfo.cpp 
 
10
   utils.cpp 
 
11
   kickertip.cpp 
 
12
   menuinfo.cpp 
 
13
   panelbutton.cpp 
 
14
   panner.cpp 
 
15
   kshadowsettings.cpp 
 
16
   kshadowengine.cpp 
 
17
   kpanelapplet.cpp 
 
18
   kpanelextension.cpp 
 
19
   kpanelmenu.cpp 
 
20
   simplebutton.cpp 
 
21
   extensioninfo.cpp 
 
22
   paneldrag.cpp )
 
23
 
 
24
 
 
25
kde4_add_kcfg_files(kickermain_LIB_SRCS kickerSettings.kcfgc extensionSettings.kcfgc )
 
26
 
 
27
kde4_add_library(kickermain SHARED ${kickermain_LIB_SRCS})
 
28
 
 
29
target_link_libraries(kickermain  ${KDE4_KIO_LIBS} ${QT_QT3SUPPORT_LIBRARY} kworkspace)
 
30
 
 
31
set_target_properties(kickermain PROPERTIES VERSION 2.0.0 SOVERSION 2 )
 
32
install(TARGETS kickermain  DESTINATION ${LIB_INSTALL_DIR} )
 
33
 
 
34
 
 
35
########### install files ###############
 
36
 
 
37
install( FILES kickerSettings.kcfg extensionSettings.kcfg  DESTINATION  ${KCFG_INSTALL_DIR} )
 
38
install( FILES kpanelapplet.h kpanelextension.h kpanelmenu.h kickertip.h utils.h paneldrag.h appletinfo.h DESTINATION ${INCLUDE_INSTALL_DIR}/plasma )
 
39
 
 
40