aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qtsupport/qtsupport_global.h
blob: 60c9bf0c128c5bd24247cdba27df33e39682998e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <qglobal.h>

#if defined(QTSUPPORT_LIBRARY)
#  define QTSUPPORT_EXPORT Q_DECL_EXPORT
#elif defined(QTSUPPORT_STATIC_LIBRARY)
#  define QTSUPPORT_EXPORT
#else
#  define QTSUPPORT_EXPORT Q_DECL_IMPORT
#endif

#if defined(WITH_TESTS)
#  if defined(QTSUPPORT_LIBRARY)
#    define QTSUPPORT_TEST_EXPORT Q_DECL_EXPORT
#  elif defined(QTSUPPORT_STATIC_LIBRARY)
#    define QTSUPPORT_TEST_EXPORT
#  else
#    define QTSUPPORT_TEST_EXPORT Q_DECL_IMPORT
#  endif
#else
#  define QTSUPPORT_TEST_EXPORT
#endif