Warning, /pim/kdepim-addons/kmail/editorplugins/nonbreakingspace/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 macro(add_kmail_editorplugin_unittest _source _additional) 0005 set( _test ${_source} ${_additional}) 0006 get_filename_component(_name ${_source} NAME_WE) 0007 add_executable( ${_name} ${_test} ${_name}) 0008 add_test(NAME ${_name} COMMAND ${_name} ) 0009 0010 ecm_mark_as_test(kmail_editorplugin-${_name}) 0011 target_link_libraries( ${_name} Qt::Test KF6::XmlGui KPim6::MessageComposer KF6::I18n) 0012 endmacro () 0013 0014 add_kmail_editorplugin_unittest(nonbreakingspaceplugineditortest.cpp "../nonbreakingspaceplugineditor.cpp;../nonbreakingspaceplugineditorinterface.cpp") 0015 0016 add_kmail_editorplugin_unittest(nonbreakingspaceplugineditorinterfacetest.cpp "../nonbreakingspaceplugineditorinterface.cpp")