AmonRaNet / QGeoView

QGeoView is a Qt / C ++ widget for visualizing geographic data.
GNU Lesser General Public License v3.0
155 stars 60 forks source link

Static library #30

Closed OgreTransporter closed 2 years ago

OgreTransporter commented 2 years ago

I would include an additional query in lib/include/QGeoView/QGVGlobal.h#L27:

#ifndef QGV_LIB_DECL
#if defined(QGV_EXPORT)
#define QGV_LIB_DECL Q_DECL_EXPORT
#else
#define QGV_LIB_DECL Q_DECL_IMPORT
#endif
#endif

This enables the building of a static library.

AmonRaNet commented 2 years ago

Thanks! Yes is makes sense. Can you open PR for it?

AmonRaNet commented 2 years ago

Fixed