Warning, /network/ruqola/src/plugins/authentication/password/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 set(ruqola_passwordauthenticationplugin_SRCS
0004     passwordauthenticationinterface.cpp
0005     passwordpluginauthentication.cpp
0006     passwordauthenticationinterface.h
0007     passwordpluginauthentication.h
0008 )
0009 
0010 ecm_qt_declare_logging_category(ruqola_passwordauthenticationplugin_SRCS HEADER passwordauthenticationplugin_debug.h
0011     IDENTIFIER RUQOLA_PASSWORDAUTHENTICATION_PLUGIN_LOG CATEGORY_NAME org.kde.ruqola_passwordauthenticationplugin
0012     DESCRIPTION "ruqola (password authentication plugin)" EXPORT RUQOLA)
0013 
0014 kcoreaddons_add_plugin(ruqola_passwordauthenticationplugin SOURCES
0015     ${ruqola_passwordauthenticationplugin_SRCS} INSTALL_NAMESPACE ruqolaplugins/authentication)
0016 
0017 target_link_libraries(ruqola_passwordauthenticationplugin
0018     libruqolacore
0019 )
0020 
0021 if (BUILD_TESTING)
0022     add_subdirectory(autotests)
0023 endif()