mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
Require PROJ >= 8.2
This commit is contained in:
parent
5af35f6290
commit
9fab88eb4e
@ -435,6 +435,10 @@ if(WITH_CORE)
|
||||
# required
|
||||
find_package(Proj REQUIRED)
|
||||
message(STATUS "Found Proj: ${PROJ_VERSION} ${PROJ_DIR}")
|
||||
if(PROJ_VERSION_MAJOR LESS 8 OR (PROJ_VERSION_MAJOR EQUAL 8 AND (PROJ_VERSION_MINOR LESS 2)))
|
||||
message(FATAL_ERROR "Cannot build QGIS using Proj older than 8.2")
|
||||
endif(PROJ_VERSION_MAJOR LESS 8 OR (PROJ_VERSION_MAJOR EQUAL 8 AND (PROJ_VERSION_MINOR LESS 2)))
|
||||
|
||||
find_package(GEOS REQUIRED)
|
||||
message(STATUS "Found Geos: ${GEOS_VERSION} ${GEOS_DIR}")
|
||||
find_package(GDAL REQUIRED)
|
||||
|
@ -106,7 +106,7 @@ Required build tools:
|
||||
Required build dependencies:
|
||||
|
||||
* Qt >= 5.15.2
|
||||
* Proj >= 7.2.0
|
||||
* Proj >= 8.2.0
|
||||
* GEOS >= 3.9
|
||||
* Sqlite3 >= 3.0.0
|
||||
* SpatiaLite >= 4.2.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user