Warning, /network/ruqola/src/plugins/authentication/gitlab/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 
0004 set(ruqola_gitlabauthenticationplugin_SRCS
0005     gitlabauthenticationinterface.cpp
0006     gitlabpluginauthentication.cpp
0007     gitlabauthenticationinterface.h
0008     gitlabpluginauthentication.h
0009     gitlabauthenticationjob.h
0010     gitlabauthenticationjob.cpp
0011 )
0012 
0013 ecm_qt_declare_logging_category(ruqola_gitlabauthenticationplugin_SRCS HEADER gitlabauthenticationplugin_debug.h
0014     IDENTIFIER RUQOLA_GITLABAUTHENTICATION_PLUGIN_LOG CATEGORY_NAME org.kde.ruqola_gitlabauthenticationplugin
0015     DESCRIPTION "ruqola (gitlab authentication plugin)" EXPORT RUQOLA)
0016 
0017 kcoreaddons_add_plugin(ruqola_gitlabauthenticationplugin SOURCES
0018     ${ruqola_gitlabauthenticationplugin_SRCS} INSTALL_NAMESPACE ruqolaplugins/authentication)
0019 
0020 target_link_libraries(ruqola_gitlabauthenticationplugin
0021     libruqolacore
0022     qt6keychain
0023 )
0024 
0025 if (BUILD_TESTING)
0026     add_subdirectory(autotests)
0027     add_subdirectory(tests)
0028 endif()
0029