File: CMakeLists.txt

package info (click to toggle)
kde-cli-tools 4%3A5.27.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,968 kB
  • sloc: cpp: 4,773; sh: 37; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

set(kcmshell_KDEINIT_SRCS main.cpp )

add_executable(kcmshell5 ${kcmshell_KDEINIT_SRCS})
target_compile_definitions(kcmshell5 PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}")
ecm_mark_nongui_executable(kcmshell5)

target_link_libraries(kcmshell5
   Qt::DBus
   KF5::KCMUtils
   KF5::I18n
   KF5::WindowSystem
   KF5::Activities
   PW::KWorkspace
)

install(TARGETS kcmshell5          ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})