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

« back to all changes in this revision

Viewing changes to addons/kate/close-except-like/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
 
set(VERSION_MAJOR 0)
2
 
set(VERSION_MINOR 3)
3
 
set(VERSION_PATCH 5)
4
 
set(VERSION_STRING ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
5
 
 
6
 
set(KATE_CLOSE_EXCEPT_PLUGIN_SOURCES
7
 
    close_confirm_dialog.cpp
8
 
    close_except_plugin.cpp
9
 
  )
10
 
 
11
 
kde4_add_plugin(katecloseexceptplugin ${KATE_CLOSE_EXCEPT_PLUGIN_SOURCES})
12
 
 
13
 
target_link_libraries(katecloseexceptplugin
14
 
    ${KDE4_KDEUI_LIBS}
15
 
    ${KDE4_KFILE_LIBS}
16
 
    ${KDE4_KTEXTEDITOR_LIBS}
17
 
    kateinterfaces
18
 
  )
19
 
 
20
 
configure_file(config.h.in config.h)
21
 
 
22
 
install(TARGETS katecloseexceptplugin DESTINATION ${PLUGIN_INSTALL_DIR})
23
 
install(FILES ui.rc DESTINATION ${DATA_INSTALL_DIR}/kate/plugins/katecloseexceptplugin)
24
 
install(FILES katecloseexceptplugin.desktop DESTINATION ${SERVICES_INSTALL_DIR})