Warning, /frameworks/kio/tests/messageboxworker/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2022 Friedrich W. H. Kossebau <kossebau@kde.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 
0004 add_library(kiomessagebox MODULE)
0005 set_target_properties(kiomessagebox PROPERTIES OUTPUT_NAME "messagebox")
0006 
0007 target_sources(kiomessagebox PRIVATE
0008     messageboxworker.cpp
0009 )
0010 
0011 target_link_libraries(kiomessagebox
0012     KF5::KIOCore
0013 )
0014 
0015 # Uncomment to deploy
0016 # install(TARGETS kiomessagebox DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf${QT_MAJOR_VERSION}/kio)