addded export symbols

This commit is contained in:
Andrei Yankovich 2021-04-29 21:32:08 +03:00
parent 6e94df14d5
commit ffeda3b4a4
2 changed files with 13 additions and 1 deletions

View File

@ -10,7 +10,7 @@
#endif
#endif
class Q_DECL_EXPORT QAESEncryption : public QObject
class Qt_SECRETSHARED_EXPORT QAESEncryption : public QObject
{
Q_OBJECT
public:

12
qtsecret_global.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef QTSECRET_GLOBAL_H
#define QTSECRET_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(Qt_SECRET_LIBRARY)
# define Qt_SECRETSHARED_EXPORT Q_DECL_EXPORT
#else
# define Qt_SECRETSHARED_EXPORT Q_DECL_IMPORT
#endif
#endif // QTSECRET_GLOBAL_H