forked from qt-creator/qt-creator
Add information about how to write plugin tests and how to integrate unit tests. Change-Id: I13721f03c4c55a265a93f71a7c4d892f3e53a6bb Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
13 lines
294 B
C
13 lines
294 B
C
// Copyright (C) 2021 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(EXAMPLE_LIBRARY)
|
|
# define EXAMPLE_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define EXAMPLE_EXPORT Q_DECL_IMPORT
|
|
#endif
|