2010-10-27 23:58:43 +00:00
|
|
|
|
|
|
|
= Overview =
|
|
|
|
|
|
|
|
QGIS, like a number of major projects (eg. KDE 4.0), uses CMake
|
|
|
|
(http://www.cmake.org) for building from source.
|
|
|
|
|
|
|
|
Following a summary of the required dependencies for building:
|
|
|
|
|
|
|
|
Required build tools:
|
|
|
|
|
2014-11-13 00:38:15 +01:00
|
|
|
- CMake >= 2.8.6
|
2014-11-24 16:33:51 +01:00
|
|
|
- Flex >= 2.5.6
|
2011-08-30 20:45:22 +02:00
|
|
|
- Bison >= 2.4
|
2010-10-27 23:58:43 +00:00
|
|
|
-
|
|
|
|
|
2014-11-22 18:54:53 +01:00
|
|
|
Required build dependencies:
|
2010-10-27 23:58:43 +00:00
|
|
|
|
2016-12-21 17:17:53 +01:00
|
|
|
- Qt >= 5.3.0
|
2010-10-27 23:58:43 +00:00
|
|
|
- Proj >= 4.4.x
|
2015-10-29 14:25:00 +01:00
|
|
|
- GEOS >= 3.4
|
2010-10-27 23:58:43 +00:00
|
|
|
- Sqlite3 >= 3.0.0
|
2016-12-21 17:17:53 +01:00
|
|
|
- GDAL/OGR >= 2.0
|
2013-04-06 11:26:06 +02:00
|
|
|
- Qwt >= 5.0 & (< 6.1 with internal QwtPolar)
|
2013-01-04 23:08:59 +01:00
|
|
|
- expat >= 1.95
|
2014-07-25 10:30:34 +02:00
|
|
|
- QScintilla2
|
2010-10-27 23:58:43 +00:00
|
|
|
|
|
|
|
Optional dependencies:
|
|
|
|
|
2015-06-15 00:14:42 +02:00
|
|
|
- for GRASS providers and plugin - GRASS >= 6.0.0. QGIS may be compiled with GRASS 6 or GRASS 7.
|
|
|
|
It can also be compiled with both GRASS versions in a single build but only if QGIS
|
2015-06-24 09:08:52 +02:00
|
|
|
is not installed with rpath. The desired GRASS version is chosen on runtime by setting
|
2015-06-15 00:14:42 +02:00
|
|
|
LD_LIBRARY_PATH or PATH.
|
2010-10-27 23:58:43 +00:00
|
|
|
- for georeferencer - GSL >= 1.8
|
|
|
|
- for postgis support and SPIT plugin - PostgreSQL >= 8.0.x
|
2013-01-04 23:08:59 +01:00
|
|
|
- for gps plugin - gpsbabel
|
2010-10-27 23:58:43 +00:00
|
|
|
- for mapserver export and PyQGIS - Python >= 2.3 (2.5+ preferred)
|
2013-11-21 15:07:05 +01:00
|
|
|
- for python support - SIP >= 4.12, PyQt >= 4.8.3 must match Qt version, Qscintilla2
|
2010-10-27 23:58:43 +00:00
|
|
|
- for qgis mapserver - FastCGI
|
2014-11-22 18:54:53 +01:00
|
|
|
- for oracle provider - Oracle OCI library
|
2010-10-27 23:58:43 +00:00
|
|
|
-
|
|
|
|
|
2014-11-22 18:54:53 +01:00
|
|
|
Indirect dependencies:
|
|
|
|
|
|
|
|
Some proprietary formats (eg. ECW and MrSid) supported by GDAL require
|
|
|
|
proprietary third party libraries. QGIS doesn't need any of those itself to
|
|
|
|
build, but will only support those formats if GDAL is built accordingly. Refer
|
|
|
|
to http://gdal.org/formats_list.html ff. for instructions how to include
|
|
|
|
those formats in GDAL.
|
|
|
|
|