~ubuntu-branches/ubuntu/vivid/kate/vivid-updates

« back to all changes in this revision

Viewing changes to kate/filetree/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-12-04 16:49:41 UTC
  • mfrom: (1.6.6)
  • Revision ID: package-import@ubuntu.com-20141204164941-l3qbvsly83hhlw2v
Tags: 4:14.11.97-0ubuntu1
* New upstream release
* Update build-deps and use pkg-kde v3 for Qt 5 build
* kate-data now kate5-data for co-installability

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
project(katefiletreeplugin)
3
 
 
4
 
set(katefiletreeplugin_PART_SRCS katefiletreeplugin.cpp katefiletree.cpp katefiletreemodel.cpp katefiletreeproxymodel.cpp katefiletreeconfigpage.cpp katefiletreepluginsettings.cpp )
5
 
 
6
 
if(NOT KDE4_FOUND)
7
 
  find_package(KDE4 REQUIRED)
8
 
  include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} )
9
 
endif(NOT KDE4_FOUND)
10
 
 
11
 
include_directories( ${CMAKE_CURRENT_BINARY_DIR} )
12
 
kde4_add_plugin(katefiletreeplugin ${katefiletreeplugin_PART_SRCS})
13
 
 
14
 
target_link_libraries(katefiletreeplugin ${KDE4_KFILE_LIBS} ${KDE4_KPARTS_LIBS} kateinterfaces ${KDE4_KTEXTEDITOR_LIBS} )
15
 
 
16
 
install(TARGETS katefiletreeplugin  DESTINATION ${PLUGIN_INSTALL_DIR} )
17
 
 
18
 
 
19
 
########### install files ###############
20
 
 
21
 
install( FILES ui.rc  DESTINATION  ${DATA_INSTALL_DIR}/kate/plugins/filetree )
22
 
install( FILES katefiletreeplugin.desktop  DESTINATION  ${SERVICES_INSTALL_DIR} )
23