aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libother/libothermacros.h
blob: 567757abd2357aed03afea0f0682df9defa48460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef LIBOTHERMACROS_H
#define LIBOTHERMACROS_H

#include "../libminimal/libminimalmacros.h"

#define LIBOTHER_EXPORT LIBMINIMAL_EXPORT
#define LIBOTHER_IMPORT LIBMINIMAL_IMPORT

#ifdef LIBOTHER_BUILD
#  define LIBOTHER_API LIBOTHER_EXPORT
#else
#  define LIBOTHER_API LIBOTHER_IMPORT
#endif

#endif // LIBOTHERMACROS_H