This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qad/qad_export.h
2020-05-15 22:49:08 +03:00

17 lines
318 B
C

#ifndef QAD_EXPORT_H
#define QAD_EXPORT_H
#include <QtCore/QtGlobal>
#if defined(QAD_STATIC_DEFINE) || defined(Q_CC_GNU) || defined(DOXYGEN)
# define QAD_EXPORT
#else
# ifdef QAD_SHARED_DEFINE
# define QAD_EXPORT Q_DECL_EXPORT
# else
# define QAD_EXPORT Q_DECL_IMPORT
# endif
#endif
#endif //QAD_EXPORT_H