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

« back to all changes in this revision

Viewing changes to addons/ktexteditor/insertfile/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
 
########### next target ###############
3
 
 
4
 
set(ktexteditor_insertfile_PART_SRCS insertfileplugin.cpp )
5
 
 
6
 
 
7
 
kde4_add_plugin(ktexteditor_insertfile ${ktexteditor_insertfile_PART_SRCS})
8
 
 
9
 
target_link_libraries(ktexteditor_insertfile  ${KDE4_KIO_LIBS} ktexteditor kdeui kfile)
10
 
 
11
 
install(TARGETS  ktexteditor_insertfile  DESTINATION ${PLUGIN_INSTALL_DIR} )
12
 
 
13
 
 
14
 
########### install files ###############
15
 
 
16
 
install( FILES ktexteditor_insertfile.desktop  DESTINATION  ${SERVICES_INSTALL_DIR} )
17
 
install( FILES ktexteditor_insertfileui.rc  DESTINATION  ${DATA_INSTALL_DIR}/ktexteditor_insertfile )
18
 
 
19
 
 
20
 
 
21