-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathPlatformPluginsDeployer.h
29 lines (25 loc) · 1.02 KB
/
PlatformPluginsDeployer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once
#include "BasicPluginsDeployer.h"
namespace linuxdeploy {
namespace plugin {
namespace qt {
class PlatformPluginsDeployer : public BasicPluginsDeployer {
private:
std::vector<std::string> platformToDeploy;
public:
/**
* Default constructor. Constructs a PlatformPluginsDeployer.
*
* @param moduleName
*/
explicit PlatformPluginsDeployer(std::string moduleName, core::appdir::AppDir& appDir,
boost::filesystem::path qtPluginsPath,
boost::filesystem::path qtLibexecsPath,
boost::filesystem::path installLibsPath,
boost::filesystem::path qtTranslationsPath,
boost::filesystem::path qtDataPath);
bool deploy() override;
};
}
}
}