~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/libkdecorations/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# kdecorations library
 
2
set(kdecorations_LIB_SRCS
 
3
   kdecoration.cpp
 
4
   kdecoration_p.cpp
 
5
   kdecoration_plugins_p.cpp
 
6
   kdecorationfactory.cpp
 
7
   kcommondecoration.cpp
 
8
   kcommondecoration_p.cpp )
 
9
 
 
10
kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS})
 
11
 
 
12
target_link_libraries(kdecorations ${KDE4_KDEUI_LIBS} kephal)
 
13
target_link_libraries(kdecorations LINK_INTERFACE_LIBRARIES ${KDE4_KDEUI_LIBS})
 
14
 
 
15
set_target_properties(kdecorations PROPERTIES
 
16
   VERSION ${GENERIC_LIB_VERSION}
 
17
   SOVERSION ${GENERIC_LIB_SOVERSION}
 
18
   )
 
19
install(TARGETS kdecorations EXPORT kdeworkspaceLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS} )
 
20
 
 
21
########### install files ###############
 
22
 
 
23
install( FILES
 
24
    kdecoration.h
 
25
    kdecorationfactory.h
 
26
    kcommondecoration.h
 
27
    kdecorationbridge.h
 
28
    DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel )