Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMailTransport
Commits
d540f826
Commit
d540f826
authored
Nov 11, 2022
by
Laurent Montel
Browse files
install plugins in pim5 it's more logical
parent
af100fac
Pipeline
#265648
passed with stage
in 2 minutes and 4 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kmailtransport/plugins/smtp/CMakeLists.txt
View file @
d540f826
if
(
BUILD_TESTING
)
add_subdirectory
(
autotests
)
endif
()
kcoreaddons_add_plugin
(
mailtransport_smtpplugin INSTALL_NAMESPACE
"
kf
${
QT_MAJOR_VERSION
}
/mailtransport"
)
kcoreaddons_add_plugin
(
mailtransport_smtpplugin INSTALL_NAMESPACE
"
pim
${
QT_MAJOR_VERSION
}
/mailtransport"
)
target_sources
(
mailtransport_smtpplugin PRIVATE
smtpmailtransportplugin.cpp
...
...
src/kmailtransport/plugins/transportpluginmanager.cpp
View file @
d540f826
...
...
@@ -55,7 +55,7 @@ void TransportPluginManagerPrivate::initializePlugins()
if
(
!
mPluginList
.
isEmpty
())
{
return
;
}
const
QVector
<
KPluginMetaData
>
plugins
=
KPluginMetaData
::
findPlugins
(
QStringLiteral
(
"
kf
"
QT_STRINGIFY
(
QT_VERSION_MAJOR
)
"/mailtransport"
));
const
QVector
<
KPluginMetaData
>
plugins
=
KPluginMetaData
::
findPlugins
(
QStringLiteral
(
"
pim
"
QT_STRINGIFY
(
QT_VERSION_MAJOR
)
"/mailtransport"
));
QVectorIterator
<
KPluginMetaData
>
i
(
plugins
);
i
.
toBack
();
...
...
src/kmailtransportakonadi/plugins/CMakeLists.txt
View file @
d540f826
kcoreaddons_add_plugin
(
mailtransport_akonadiplugin INSTALL_NAMESPACE
"
kf
${
QT_MAJOR_VERSION
}
/mailtransport"
)
kcoreaddons_add_plugin
(
mailtransport_akonadiplugin INSTALL_NAMESPACE
"
pim
${
QT_MAJOR_VERSION
}
/mailtransport"
)
target_sources
(
mailtransport_akonadiplugin PRIVATE
akonadimailtransportplugin.cpp
resourcesendjob.cpp
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment