qskinny/qmlexport/QskQmlGlobal.h
2024-01-17 14:31:45 +01:00

26 lines
613 B
C

/******************************************************************************
* QSkinny - Copyright (C) The authors
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#ifndef QSK_QML_GLOBAL_H
#define QSK_QML_GLOBAL_H
#include <QskGlobal.h>
#ifdef QSK_DLL
#if defined( QSK_QML_MAKEDLL ) // create a DLL library
#define QSK_QML_EXPORT Q_DECL_EXPORT
#else // use a DLL library
#define QSK_QML_EXPORT Q_DECL_IMPORT
#endif
#endif // QSK_DLL
#ifndef QSK_QML_EXPORT
#define QSK_QML_EXPORT
#endif
#endif