Warning, /pim/kdepim-addons/kmail/editorinitplugins/externalcomposer/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_externalcomposereditorplugin INSTALL_NAMESPACE pim6/kmail/plugineditorinit) 0005 target_sources(kmail_externalcomposereditorplugin PRIVATE 0006 externalcomposerplugineditor.cpp 0007 externalcomposerplugineditorinterface.cpp 0008 externalcomposerconfiguredialog.cpp 0009 externalcomposerconfigurewidget.cpp 0010 externalcomposerplugineditor.h 0011 externalcomposerplugineditorinterface.h 0012 externalcomposerconfiguredialog.h 0013 externalcomposerconfigurewidget.h 0014 ) 0015 0016 if (COMPILE_WITH_UNITY_CMAKE_SUPPORT) 0017 set_target_properties(kmail_externalcomposereditorplugin PROPERTIES UNITY_BUILD ON) 0018 endif() 0019 0020 target_link_libraries(kmail_externalcomposereditorplugin 0021 KPim6::MessageComposer KF6::XmlGui KF6::I18n KF6::KIOWidgets 0022 ) 0023 0024 if(BUILD_TESTING) 0025 add_subdirectory(autotests) 0026 endif() 0027