mirror of
https://github.com/vicr123/the-libs.git
synced 2025-01-24 11:22:05 -05:00
12 lines
240 B
C
12 lines
240 B
C
#ifndef THELIBS_GLOBAL_H
|
|
#define THELIBS_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(THELIBS_LIBRARY)
|
|
# define THELIBSSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define THELIBSSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // THELIBS_GLOBAL_H
|