mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
13 lines
275 B
C
13 lines
275 B
C
#ifndef QSSHAREDLIBRARY_H
|
|
#define QSSHAREDLIBRARY_H
|
|
|
|
#ifdef QSLOG_IS_SHARED_LIBRARY
|
|
#define QSLOG_SHARED_OBJECT Q_DECL_EXPORT
|
|
#elif QSLOG_IS_SHARED_LIBRARY_IMPORT
|
|
#define QSLOG_SHARED_OBJECT Q_DECL_IMPORT
|
|
#else
|
|
#define QSLOG_SHARED_OBJECT
|
|
#endif
|
|
|
|
#endif // QSSHAREDLIBRARY_H
|