mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-20 23:03:57 +08:00
* change codebase * compile * add mapboxprovider * works with map_renderer in c * remove maplibre temp * maplibre works * cleanup build.sh * x86 stuff * add lib * update release files * don't need that * tici build * tici build * add tici lib * update refs --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
21 lines
456 B
C++
21 lines
456 B
C++
// Copyright (C) 2023 MapLibre contributors
|
|
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#ifndef QMAPLIBRE_WIDGETS_EXPORT_H
|
|
#define QMAPLIBRE_WIDGETS_EXPORT_H
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
#if !defined(QT_MAPLIBRE_STATIC)
|
|
#if defined(QT_BUILD_MAPLIBRE_WIDGETS_LIB)
|
|
#define Q_MAPLIBRE_WIDGETS_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
#define Q_MAPLIBRE_WIDGETS_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
#else
|
|
#define Q_MAPLIBRE_WIDGETS_EXPORT
|
|
#endif
|
|
|
|
#endif // QMAPLIBRE_WIDGETS_EXPORT_H
|