mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-26 17:38:09 +03:00
2c0e343c55
CONFIG no_zint & static_build flags have been added
17 lines
300 B
C
17 lines
300 B
C
#ifndef QZINT_GLOBAL_H
|
|
#define QZINT_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#ifdef HAVE_STATIC_BUILD
|
|
# define QZINTSHARED_EXPORT /**/
|
|
#else
|
|
#if defined(QZINT_LIBRARY)
|
|
# define QZINTSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define QZINTSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
#endif
|
|
|
|
#endif // QZINT_GLOBAL_H
|