Warning, /pim/kdepim-addons/kmail/editorplugins/autocorrection/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 kcoreaddons_add_plugin(kmail_autocorrectioneditorplugin 0005 INSTALL_NAMESPACE pim6/kmail/plugineditor) 0006 target_sources(kmail_autocorrectioneditorplugin PRIVATE 0007 autocorrectionplugineditor.cpp 0008 autocorrectionplugineditorinterface.cpp 0009 autocorrectionplugineditor.h 0010 autocorrectionplugineditorinterface.h 0011 ) 0012 0013 0014 target_link_libraries(kmail_autocorrectioneditorplugin 0015 KPim6::MessageComposer KF6::XmlGui KF6::I18n 0016 ) 0017 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT) 0018 set_target_properties(kmail_autocorrectioneditorplugin PROPERTIES UNITY_BUILD ON) 0019 endif() 0020 0021 if(BUILD_TESTING) 0022 add_subdirectory(autotests) 0023 endif() 0024