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

0001 # SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 
0004 add_executable(githubtestapps)
0005 
0006 target_sources(githubtestapps
0007     PRIVATE
0008     main.cpp
0009     ../githubauthenticationjob.h
0010     ../githubauthenticationjob.cpp
0011     ../githubauthenticationsettings.h
0012     ../githubauthenticationsettings.cpp
0013 )
0014 
0015 ecm_qt_declare_logging_category(githubtestapps HEADER githubauthenticationplugin_debug.h
0016     IDENTIFIER RUQOLA_GITHUBAUTHENTICATION_PLUGIN_LOG CATEGORY_NAME org.kde.ruqola_githubauthenticationplugin
0017     DESCRIPTION "ruqola (github authentication plugin)" EXPORT RUQOLA)
0018 
0019 target_link_libraries(githubtestapps
0020     Qt::Gui
0021     Qt::Network
0022     Qt::NetworkAuth
0023 )
0024 set_target_properties(githubtestapps PROPERTIES DISABLE_PRECOMPILE_HEADERS ON)