diff --git a/src/deployers/BasicPluginsDeployer.cpp b/src/deployers/BasicPluginsDeployer.cpp index 86a2faa..7f93a6c 100644 --- a/src/deployers/BasicPluginsDeployer.cpp +++ b/src/deployers/BasicPluginsDeployer.cpp @@ -27,6 +27,7 @@ BasicPluginsDeployer::BasicPluginsDeployer(std::string moduleName, qtDataPath(std::move(qtDataPath)) {} bool BasicPluginsDeployer::deploy() { - ldLog() << std::endl << "-- Deploying module:" << moduleName << "--" << std::endl; + // currently this is a no-op, but we might add more functionality later on, such as some kinds of default + // attempts to copy data based on the moduleName return true; } diff --git a/src/deployers/BearerPluginsDeployer.cpp b/src/deployers/BearerPluginsDeployer.cpp index 412c81c..fb02129 100644 --- a/src/deployers/BearerPluginsDeployer.cpp +++ b/src/deployers/BearerPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool BearerPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/GamepadPluginsDeployer.cpp b/src/deployers/GamepadPluginsDeployer.cpp index a6c43ad..c5402c5 100644 --- a/src/deployers/GamepadPluginsDeployer.cpp +++ b/src/deployers/GamepadPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool GamepadPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/MultimediaPluginsDeployer.cpp b/src/deployers/MultimediaPluginsDeployer.cpp index f5aa41b..54a2165 100644 --- a/src/deployers/MultimediaPluginsDeployer.cpp +++ b/src/deployers/MultimediaPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool MultimediaPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/PlatformPluginsDeployer.cpp b/src/deployers/PlatformPluginsDeployer.cpp index 93f4863..af42d9f 100644 --- a/src/deployers/PlatformPluginsDeployer.cpp +++ b/src/deployers/PlatformPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool PlatformPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/PositioningPluginsDeployer.cpp b/src/deployers/PositioningPluginsDeployer.cpp index a336ee8..41c189a 100644 --- a/src/deployers/PositioningPluginsDeployer.cpp +++ b/src/deployers/PositioningPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool PositioningPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/QmlPluginsDeployer.cpp b/src/deployers/QmlPluginsDeployer.cpp index 0b06ae7..d0b7149 100644 --- a/src/deployers/QmlPluginsDeployer.cpp +++ b/src/deployers/QmlPluginsDeployer.cpp @@ -9,6 +9,7 @@ using namespace linuxdeploy::plugin::qt; namespace bf = boost::filesystem; bool QmlPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/Qt3DPluginsDeployer.cpp b/src/deployers/Qt3DPluginsDeployer.cpp index 2f00e0a..bf8d3e6 100644 --- a/src/deployers/Qt3DPluginsDeployer.cpp +++ b/src/deployers/Qt3DPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool Qt3DPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/SqlPluginsDeployer.cpp b/src/deployers/SqlPluginsDeployer.cpp index 744bf88..80ea7c4 100644 --- a/src/deployers/SqlPluginsDeployer.cpp +++ b/src/deployers/SqlPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool SqlPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/SvgPluginsDeployer.cpp b/src/deployers/SvgPluginsDeployer.cpp index a96b4a0..27ab6c9 100644 --- a/src/deployers/SvgPluginsDeployer.cpp +++ b/src/deployers/SvgPluginsDeployer.cpp @@ -11,6 +11,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool SvgPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/WebEnginePluginsDeployer.cpp b/src/deployers/WebEnginePluginsDeployer.cpp index fa39861..a3f4147 100644 --- a/src/deployers/WebEnginePluginsDeployer.cpp +++ b/src/deployers/WebEnginePluginsDeployer.cpp @@ -12,6 +12,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool WebEnginePluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/deployers/XcbglIntegrationPluginsDeployer.cpp b/src/deployers/XcbglIntegrationPluginsDeployer.cpp index 03812e9..7362602 100644 --- a/src/deployers/XcbglIntegrationPluginsDeployer.cpp +++ b/src/deployers/XcbglIntegrationPluginsDeployer.cpp @@ -12,6 +12,7 @@ using namespace linuxdeploy::core::log; namespace bf = boost::filesystem; bool XcbglIntegrationPluginsDeployer::deploy() { + // calling the default code is optional, but it won't hurt for now if (!BasicPluginsDeployer::deploy()) return false; diff --git a/src/main.cpp b/src/main.cpp index c2e4788..d5bba31 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -227,6 +227,8 @@ int main(const int argc, const char *const *const argv) { ); for (const auto& module : qtModulesToDeploy) { + ldLog() << std::endl << "-- Deploying module:" << module.name << "--" << std::endl; + auto deployer = deployerFactory.getInstance(module.name); if (!deployer->deploy()) {