mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
24 lines
460 B
C
24 lines
460 B
C
|
|
// QGSCONFIG.H
|
|
|
|
#ifndef QGSCONFIG_H
|
|
#define QGSCONFIG_H
|
|
|
|
// Version must be specified according to
|
|
// <int>.<int>.<int>-<any text>.
|
|
// or else upgrading old project file will not work
|
|
// reliably.
|
|
#define VERSION "0.9.2-Ganymede"
|
|
|
|
#define PREFIX "${CMAKE_INSTALL_PREFIX}"
|
|
|
|
#define QGIS_PLUGIN_SUBDIR "${QGIS_PLUGIN_SUBDIR}"
|
|
#define QGIS_DATA_SUBDIR "${QGIS_DATA_SUBDIR}"
|
|
|
|
#cmakedefine HAVE_POSTGRESQL
|
|
|
|
#cmakedefine HAVE_PYTHON
|
|
|
|
#endif
|
|
|