48d2927ecc
Update to the most recent git version. This changes the folder structure and renames some classes to follow upstream. Restore MSVC static link fix, and fix wrong variable in qmake project file. Change-Id: I874bb9ed60e37af09a841988e771fd341414d145
16 lines
335 B
C
16 lines
335 B
C
#ifndef CUTELOGGER_GLOBAL_H
|
|
#define CUTELOGGER_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if !defined(CUTELOGGER_STATIC)
|
|
#if defined(CUTELOGGER_LIBRARY)
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
#else
|
|
#define CUTELOGGERSHARED_EXPORT
|
|
#endif
|
|
|
|
#endif // CUTELOGGER_GLOBAL_H
|