14 lines
235 B
C
14 lines
235 B
C
|
#pragma once
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#ifndef BUILD_STATIC
|
||
|
# if defined(SPLITVIEW_LIBRARY)
|
||
|
# define SPLITVIEW_EXPORT Q_DECL_EXPORT
|
||
|
# else
|
||
|
# define SPLITVIEW_EXPORT Q_DECL_IMPORT
|
||
|
# endif
|
||
|
#else
|
||
|
# define LIBSPLITVIEW_EXPORT
|
||
|
#endif
|