Warning, /pim/kdepim-addons/kmail/editorplugins/zoomtext/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_zoomtexteditorplugin SOURCES 0005 ${kmail_zoomtexteditorplugin_SRCS} INSTALL_NAMESPACE pim6/kmail/plugineditor) 0006 target_sources(kmail_zoomtexteditorplugin PRIVATE 0007 zoomtextplugineditor.cpp 0008 zoomtextplugineditorinterface.cpp 0009 zoomlabel.cpp 0010 zoomtextplugineditor.h 0011 zoomtextplugineditorinterface.h 0012 zoomlabel.h 0013 ) 0014 0015 ecm_qt_declare_logging_category(kmail_zoomtexteditorplugin HEADER zoomtexteditorplugin_debug.h IDENTIFIER KMAIL_EDITOR_ZOOMTEXT_PLUGIN_LOG CATEGORY_NAME org.kde.pim.kmail_zoomtexteditorplugin 0016 DESCRIPTION "kdepim-addons (kmail zoomtext editor plugins)" 0017 OLD_CATEGORY_NAMES log_kmail_zoomtexteditorplugin 0018 EXPORT KDEPIMADDONS 0019 ) 0020 0021 0022 0023 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT) 0024 set_target_properties(kmail_zoomtexteditorplugin PROPERTIES UNITY_BUILD ON) 0025 endif() 0026 0027 0028 target_link_libraries(kmail_zoomtexteditorplugin 0029 KPim6::MessageComposer KF6::XmlGui KF6::I18n 0030 ) 0031 0032 if(BUILD_TESTING) 0033 add_subdirectory(autotests) 0034 endif() 0035