Warning, /plasma/plasma-workspace/runners/shell/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2023 Alexander Lohnau <alexander.lohnau@gmx.de>
0002 # SPDX-License-Identifier: BSD-2-Clause
0003 add_definitions(-DTRANSLATION_DOMAIN=\"plasma_runner_shell\")
0004 
0005 kcoreaddons_add_plugin(krunner_shell SOURCES shellrunner.cpp INSTALL_NAMESPACE "kf6/krunner")
0006 target_link_libraries(krunner_shell
0007     KF6::KIOCore
0008     KF6::KIOGui
0009     KF6::I18n
0010     KF6::JobWidgets
0011     Plasma::Plasma
0012     KF6::Runner
0013     KF6::Completion
0014 )
0015 
0016 if(BUILD_TESTING)
0017     add_subdirectory(autotests)
0018 endif()
0019