You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
#ifndef QWT3D_GLOBAL_H
|
|
#define QWT3D_GLOBAL_H
|
|
|
|
#include <qglobal.h>
|
|
#if QT_VERSION < 0x040000
|
|
#include <qmodules.h>
|
|
#endif
|
|
|
|
#define QWT3D_MAJOR_VERSION 0
|
|
#define QWT3D_MINOR_VERSION 2
|
|
#define QWT3D_PATCH_VERSION 6
|
|
|
|
//
|
|
// Create Qwt3d DLL if QWT3D_DLL is defined (Windows only)
|
|
//
|
|
|
|
#if defined(Q_WS_WIN)
|
|
#if defined(_MSC_VER) /* MSVC Compiler */
|
|
#pragma warning(disable: 4251) // dll interface required for stl templates
|
|
//pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
|
#pragma warning(disable: 4786) // truncating debug info after 255 characters
|
|
#pragma warning(disable: 4660) // template-class specialization 'identifier' is already instantiated
|
|
#if (_MSC_VER >= 1400) /* VS8 - not sure about VC7 */
|
|
#pragma warning(disable: 4996) /* MS security enhancements */
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(QWT3D_NODLL)
|
|
#undef QWT3D_MAKEDLL
|
|
#undef QWT3D_DLL
|
|
#undef QWT3D_TEMPLATEDLL
|
|
#endif
|
|
|
|
#ifdef QWT3D_DLL
|
|
#if defined(QWT3D_MAKEDLL) /* create a Qwt3d DLL library */
|
|
#undef QWT3D_DLL
|
|
#define QWT3D_EXPORT __declspec(dllexport)
|
|
#define QWT3D_TEMPLATEDLL
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(QWT3D_DLL) /* use a Qwt3d DLL library */
|
|
#define QWT3D_EXPORT __declspec(dllimport)
|
|
#define QWT3D_TEMPLATEDLL
|
|
#endif
|
|
|
|
#else // ! Q_WS_WIN
|
|
#undef QWT3D_MAKEDLL /* ignore these for other platforms */
|
|
#undef QWT3D_DLL
|
|
#undef QWT3D_TEMPLATEDLL
|
|
#endif
|
|
|
|
#ifndef QWT3D_EXPORT
|
|
#define QWT3D_EXPORT
|
|
#endif
|
|
|
|
|
|
#endif
|