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

« back to all changes in this revision

Viewing changes to kstyles/web/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
 
 
2
project(kstyle-web)
 
3
 
 
4
 
 
5
 
 
6
########### next target ###############
 
7
 
 
8
set(webstyle_LIB_SRCS webstyle.cpp plugin.cpp )
 
9
 
 
10
 
 
11
kde4_add_plugin(webstyle ${webstyle_LIB_SRCS})
 
12
 
 
13
target_link_libraries(webstyle  ${KDE4_KDEUI_LIBS} )
 
14
 
 
15
install(TARGETS webstyle  DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles )
 
16
 
 
17
 
 
18
########### install files ###############
 
19
 
 
20
install( FILES web.themerc  DESTINATION  ${DATA_INSTALL_DIR}/kstyle/themes )
 
21
 
 
22
 
 
23
 
 
24