mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-19 20:22:56 +08:00
13 lines
231 B
C
13 lines
231 B
C
#pragma once
|
|
#include <QtCore/QtGlobal>
|
|
|
|
#if !defined(BUILD_STATIC) && !defined(TaoCommon_NO_LIB)
|
|
#if defined(TaoCommon_Library)
|
|
#define TAO_API Q_DECL_EXPORT
|
|
#else
|
|
#define TAO_API Q_DECL_IMPORT
|
|
#endif
|
|
#else
|
|
#define TAO_API
|
|
#endif
|