File: CMakeLists.txt

package info (click to toggle)
kdevelop 4%3A5.6.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 57,892 kB
  • sloc: cpp: 278,773; javascript: 3,558; python: 3,385; sh: 1,317; ansic: 689; xml: 273; php: 95; makefile: 40; lisp: 13; sed: 12
file content (17 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

### Configuration module for general kdevelop settings

set( documentview_config_SRC
preferences.cpp
)
set( documentview_config_UI
settingswidget.ui
)
ki18n_wrap_ui( documentview_config_SRC ${documentview_config_UI} )

kconfig_add_kcfg_files(documentview_config_SRC config.kcfgc )
add_library(kcm_documentview_settings MODULE ${documentview_config_SRC})

target_link_libraries(kcm_documentview_settings KF5::KCMUtils kdevplatform )
install(TARGETS kcm_documentview_settings  DESTINATION ${KDE_INSTALL_PLUGINDIR})
install( FILES kcm_documentview_settings.desktop  DESTINATION ${KDE_INSTALL_KSERVICES5DIR})