mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 17:54:42 +00:00
13 lines
234 B
C
13 lines
234 B
C
#ifndef CLIENT_GLOBAL_H
|
|
#define CLIENT_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(CLIENT_LIBRARY)
|
|
# define CLIENTSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define CLIENTSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // CLIENT_GLOBAL_H
|