Warning, /pim/kdepim-addons/kmail/editorplugins/changecase/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_changecaseeditorplugin INSTALL_NAMESPACE pim6/kmail/plugineditor) 0005 target_sources(kmail_changecaseeditorplugin PRIVATE 0006 changecaseplugineditor.cpp 0007 changecaseplugineditorinterface.cpp 0008 changecaseplugineditor.h 0009 changecaseplugineditorinterface.h 0010 ) 0011 0012 ecm_qt_declare_logging_category(kmail_changecaseeditorplugin HEADER changecaseeditorplugin_debug.h IDENTIFIER KMAIL_EDITOR_CHANGECASE_PLUGIN_LOG CATEGORY_NAME org.kde.pim.kmail_changecaseeditorplugin 0013 DESCRIPTION "kdepim-addons (kmail changecase editor plugins)" 0014 OLD_CATEGORY_NAMES log_kmail_changecaseeditorplugin 0015 EXPORT KDEPIMADDONS 0016 ) 0017 0018 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT) 0019 set_target_properties(kmail_changecaseeditorplugin PROPERTIES UNITY_BUILD ON) 0020 endif() 0021 0022 target_link_libraries(kmail_changecaseeditorplugin 0023 KPim6::MessageComposer KF6::XmlGui KF6::I18n KF6::TextUtils 0024 ) 0025 0026 if(BUILD_TESTING) 0027 add_subdirectory(autotests) 0028 endif() 0029