-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy Qt plugins with default deployStandardQtPlugins() function
- Loading branch information
1 parent
2826ee5
commit 0a29e02
Showing
36 changed files
with
70 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "BearerPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> BearerPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"bearer"}; | ||
bool BearerPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"bearer"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "GamepadPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> GamepadPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"gamepads"}; | ||
bool GamepadPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"gamepads"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "LocationPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> LocationPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"geoservices"}; | ||
bool LocationPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"geoservices"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "Multimedia5PluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> Multimedia5PluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"mediaservice", "audio"}; | ||
bool Multimedia5PluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"mediaservice", "audio"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "PositioningPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> PositioningPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"position"}; | ||
bool PositioningPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"position"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "PrintSupportPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> PrintSupportPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"printsupport"}; | ||
bool PrintSupportPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"printsupport"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "Qt3DPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> Qt3DPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"geometryloaders", "sceneparsers"}; | ||
bool Qt3DPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"geometryloaders", "sceneparsers"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// system headers | ||
#include <filesystem> | ||
|
||
// library headers | ||
#include <linuxdeploy/core/log.h> | ||
|
||
// local headers | ||
#include "SqlPluginsDeployer.h" | ||
|
||
using namespace linuxdeploy::plugin::qt; | ||
using namespace linuxdeploy::core::log; | ||
|
||
std::vector<std::string> SqlPluginsDeployer::qtPluginsToBeDeployed() const { | ||
return {"sqldrivers"}; | ||
bool SqlPluginsDeployer::doDeploy() { | ||
return deployStandardQtPlugins({"sqldrivers"}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.