11 lines
174 B
C
11 lines
174 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef BUILD_STATIC
|
||
|
#if defined(WEBQT_LIB)
|
||
|
#define WEBQT_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
#define WEBQT_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
#else
|
||
|
#define WEBQT_EXPORT
|
||
|
#endif
|