summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/qt/shared/src/demo_global.h
blob: d6b1ddf0b6f3fefc828364f0bca68579c90d23db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef QT_DEMO_GLOBAL_H
#define QT_DEMO_GLOBAL_H

#include <QtCore/qglobal.h>

#if defined(QT_DEMO_LIBRARY)
#define QT_DEMOSHARED_EXPORT Q_DECL_EXPORT
#else
#define QT_DEMOSHARED_EXPORT Q_DECL_IMPORT
#endif

#endif // QT_DEMO_GLOBAL_H