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

« back to all changes in this revision

Viewing changes to systemsettings/core/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
include_directories( ToolTips )
 
2
 
 
3
set(systemsettingsview_LIB_SRCS
 
4
    MenuItem.cpp
 
5
    MenuModel.cpp
 
6
    MenuProxyModel.cpp
 
7
    ModuleView.cpp
 
8
    BaseData.cpp
 
9
    BaseMode.cpp
 
10
    ExternalAppModule.cpp
 
11
)
 
12
 
 
13
KDE4_ADD_UI_FILES( systemsettingsview_LIB_SRCS externalModule.ui )
 
14
 
 
15
set(systemsettingsview_LIB_HDRS
 
16
    systemsettingsview_export.h
 
17
    MenuItem.h
 
18
    MenuModel.h
 
19
    MenuProxyModel.h
 
20
    BaseData.h
 
21
    BaseMode.h
 
22
    ModuleView.h
 
23
)
 
24
 
 
25
kde4_add_library( systemsettingsview SHARED ${systemsettingsview_LIB_SRCS} )
 
26
 
 
27
target_link_libraries( systemsettingsview ${KDE4_KDECORE_LIBS} ${KDE4_KCMUTILS_LIBS} )
 
28
 
 
29
set_target_properties( systemsettingsview PROPERTIES SOVERSION 2 )
 
30
 
 
31
install( TARGETS systemsettingsview  ${INSTALL_TARGETS_DEFAULT_ARGS} )
 
32
install( FILES ${systemsettingsview_LIB_HDRS} DESTINATION ${INCLUDE_INSTALL_DIR}/systemsettingsview COMPONENT Devel )
 
33
INSTALL( FILES systemsettingsview.desktop systemsettingsexternalapp.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )