Warning, /pim/kdepim-addons/kmail/editorsendcheckplugins/checkbeforesend/autotests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0002 # SPDX-License-Identifier: BSD-3-Clause
0003 
0004 set(checkbeforesend_common_SRCS)
0005 ecm_qt_declare_logging_category(checkbeforesend_common_SRCS HEADER checkbeforesendplugin_debug.h IDENTIFIER KMAIL_EDITOR_checkbeforesend_PLUGIN_LOG CATEGORY_NAME org.kde.pim.kmail_checkbeforesendplugin)
0006 
0007 macro(add_kmail_checkbeforesend_unittest _source _additional)
0008     set( _test ${_source} ${_additional} ${checkbeforesend_common_SRCS})
0009     get_filename_component(_name ${_source} NAME_WE)
0010     add_executable( ${_name} ${_test} ${_name}.h)
0011     add_test(NAME ${_name} COMMAND ${_name} )
0012 
0013     ecm_mark_as_test(kmail_editorplugin-${_name})
0014     target_link_libraries( ${_name} Qt::Test KPim6::MessageComposer KF6::I18n KPim6::PimCommon KF6::I18n KF6::Codecs)
0015 endmacro ()
0016 
0017 
0018 add_kmail_checkbeforesend_unittest(checkbeforesendplugintest.cpp "../checkbeforesendupdatesmtpdialog.cpp;../configurewidget/checkbeforesendconfiguredialog.cpp;../sendattachments/checkattachmentjob.cpp;../sendattachments/checkattachmentdialog.cpp;../duplicateemails/checkduplicateemailsjob.cpp;../duplicateemails/checkduplicateemailsdialog.cpp;../checkbeforesendplugin.cpp;../checkbeforesendinterface.cpp;../configurewidget/checkbeforesendconfigurewidget.cpp")
0019 add_kmail_checkbeforesend_unittest(checkbeforesendconfigurewidgettest.cpp "../configurewidget/checkbeforesendconfigurewidget.cpp")
0020 add_kmail_checkbeforesend_unittest(checkduplicateemailsdialogtest.cpp "../duplicateemails/checkduplicateemailsdialog.cpp")
0021 add_kmail_checkbeforesend_unittest(checkduplicateemailsjobtest.cpp "../duplicateemails/checkduplicateemailsjob.cpp")
0022 
0023 add_kmail_checkbeforesend_unittest(checkattachmentdialogtest.cpp "../sendattachments/checkattachmentdialog.cpp")
0024 add_kmail_checkbeforesend_unittest(checkattachmentjobtest.cpp "../sendattachments/checkattachmentjob.cpp")
0025 add_kmail_checkbeforesend_unittest(checkbeforesendupdatesmtpdialogtest.cpp "../checkbeforesendupdatesmtpdialog.cpp")