added export symbol for windows build

This commit is contained in:
Andrei Yankovich 2019-09-09 21:19:44 +03:00
parent 722bdba944
commit 70b5ad4a21
3 changed files with 9 additions and 6 deletions

View File

@ -8,10 +8,11 @@
#include <QStringList>
#include <QMap>
#include <QDir>
#include "deploy_global.h"
class FileManager;
class FileManager;
struct DeployConfig {
struct DEPLOYSHARED_EXPORT DeployConfig {
QString qmake = "";
QString targetDir = "";
QString qmlDir = "";
@ -37,7 +38,7 @@ struct DeployConfig {
/**
* @brief The CQT class - it is wrapper for cqt file. qcn it is configuration file of deploying project.
*/
class CQT
class DEPLOYSHARED_EXPORT CQT
{
private:

View File

@ -2,10 +2,11 @@
#define ENVIREMENT_H
#include <QStringList>
#include "deploy_global.h"
class Envirement
class DEPLOYSHARED_EXPORT Envirement
{
private:
QStringList _ignoreEnvList;

View File

@ -2,16 +2,17 @@
#define QTMODULES_H
#include <QStringList>
#include "deploy_global.h"
class DependenciesScanner;
struct PluginModuleMapping
struct DEPLOYSHARED_EXPORT PluginModuleMapping
{
const char *directoryName;
quint64 module;
};
class PluginsParser
class DEPLOYSHARED_EXPORT PluginsParser
{
private:
DependenciesScanner *_libScaner = nullptr;