1
0
mirror of https://github.com/jaredtao/TaoQuick.git synced 2025-01-19 20:22:56 +08:00
TaoQuick/3rdparty/TaoCommon/taocommonglobal.h
2020-06-30 00:34:25 +08:00

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