mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Now it's possible to set QGIS_*_SUBDIR variables in CMake that will determine the layout of directories for executables, plugins, data, headers and manuals. These variables are intended to be used by distributors and not ordinary users thus they're marked as advanced. git-svn-id: http://svn.osgeo.org/qgis/trunk@7454 c8812cc2-4d05-0410-92ff-de0c093fc19c
20 lines
316 B
C
20 lines
316 B
C
|
|
// QGSCONFIG.H
|
|
|
|
#ifndef QGSCONFIG_H
|
|
#define QGSCONFIG_H
|
|
|
|
#define VERSION "0.9.1-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
|
|
|