GEOS 3.12.1
version.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2007 Refractions Research Inc.
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14#ifndef GEOS_VERSION_H_INCLUDED
15#define GEOS_VERSION_H_INCLUDED
16
17#ifndef GEOS_VERSION_MAJOR
18#define GEOS_VERSION_MAJOR 3
19#endif
20
21#ifndef GEOS_VERSION_MINOR
22#define GEOS_VERSION_MINOR 12
23#endif
24
25#ifndef GEOS_VERSION_PATCH
26#define GEOS_VERSION_PATCH 1
27#endif
28
29#ifndef GEOS_VERSION
30#define GEOS_VERSION "3.12.1"
31#endif
32
33#ifndef GEOS_JTS_PORT
34#define GEOS_JTS_PORT "1.18.0"
35#endif
36
37#endif // GEOS_VERSION_H_INCLUDED