mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-31 21:22:58 +08:00
13 lines
263 B
C
13 lines
263 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
|