2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2009-09-25 16:01:28 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2009-09-25 16:01:28 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtGlobal>
|
2009-09-25 16:01:28 +02:00
|
|
|
|
|
|
|
|
#if defined(DEBUGGER_LIBRARY)
|
|
|
|
|
# define DEBUGGER_EXPORT Q_DECL_EXPORT
|
2019-07-23 08:28:13 +02:00
|
|
|
#elif defined(DEBUGGER_STATIC_LIBRARY) // Abuse single files for tests
|
|
|
|
|
# define DEBUGGER_EXPORT
|
2009-09-25 16:01:28 +02:00
|
|
|
#else
|
|
|
|
|
# define DEBUGGER_EXPORT Q_DECL_IMPORT
|
|
|
|
|
#endif
|