mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
352 B
C++
16 lines
352 B
C++
|
|
#pragma once
|
|
|
|
#define LAZPERF_MAJOR_VERSION 3
|
|
#define LAZPERF_MINOR_VERSION 0
|
|
#define LAZPERF_REVISION 0
|
|
#define LAZPERF_VERSION 3.0.0
|
|
|
|
#ifdef _WIN32
|
|
#define LAZPERF_EXPORT __declspec(dllexport)
|
|
#else
|
|
// This may not be necessary. The GCC doc says it take __declspec((dllexport))
|
|
#define LAZPERF_EXPORT __attribute__((visibility ("default")))
|
|
#endif
|
|
|