Warning, /plasma/kwin/src/plugins/bouncekeys/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2023 Nicolas Fella <nicolas.fella@gmx.de>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 
0004 kcoreaddons_add_plugin(BounceKeysPlugin INSTALL_NAMESPACE "kwin/plugins")
0005 
0006 ecm_qt_declare_logging_category(BounceKeysPlugin
0007     HEADER bouncekeys_debug.h
0008     IDENTIFIER KWIN_BOUNCEKEYS
0009     CATEGORY_NAME kwin_bouncekeys
0010     DEFAULT_SEVERITY Warning
0011 )
0012 
0013 target_sources(BounceKeysPlugin PRIVATE
0014     main.cpp
0015     bouncekeys.cpp
0016 )
0017 target_link_libraries(BounceKeysPlugin PRIVATE kwin KF6::WindowSystem)
0018