mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-08 00:05:09 -04:00
Remove obsolete WITH_GEOREFERENCER
This commit is contained in:
parent
54e8d80513
commit
018efaa306
@ -18,7 +18,6 @@ cmake -GNinja \
|
|||||||
-DWITH_QWTPOLAR=OFF \
|
-DWITH_QWTPOLAR=OFF \
|
||||||
-DWITH_APIDOC=OFF \
|
-DWITH_APIDOC=OFF \
|
||||||
-DWITH_ASTYLE=OFF \
|
-DWITH_ASTYLE=OFF \
|
||||||
-DWITH_GEOREFERENCER=OFF \
|
|
||||||
-DWITH_ANALYSIS=ON \
|
-DWITH_ANALYSIS=ON \
|
||||||
-DWITH_DESKTOP=OFF \
|
-DWITH_DESKTOP=OFF \
|
||||||
-DWITH_GUI=OFF \
|
-DWITH_GUI=OFF \
|
||||||
|
@ -279,8 +279,6 @@ if(WITH_CORE)
|
|||||||
endif()
|
endif()
|
||||||
set (WITH_QTMOBILITY ${DEFAULT_WITH_QTMOBILITY} CACHE BOOL "Determines if QtMobility related code should be build (for example internal GPS)")
|
set (WITH_QTMOBILITY ${DEFAULT_WITH_QTMOBILITY} CACHE BOOL "Determines if QtMobility related code should be build (for example internal GPS)")
|
||||||
|
|
||||||
set (WITH_GEOREFERENCER TRUE CACHE BOOL "Determines whether GeoReferencer plugin should be built")
|
|
||||||
|
|
||||||
set (WITH_THREAD_LOCAL TRUE CACHE BOOL "Determines whether std::thread_local should be used")
|
set (WITH_THREAD_LOCAL TRUE CACHE BOOL "Determines whether std::thread_local should be used")
|
||||||
mark_as_advanced(WITH_THREAD_LOCAL)
|
mark_as_advanced(WITH_THREAD_LOCAL)
|
||||||
|
|
||||||
@ -710,9 +708,7 @@ set(WITH_GSL TRUE CACHE BOOL "Determines whether GSL library should be used")
|
|||||||
if (WITH_ANALYSIS AND WITH_GSL)
|
if (WITH_ANALYSIS AND WITH_GSL)
|
||||||
find_package(GSL REQUIRED)
|
find_package(GSL REQUIRED)
|
||||||
set(HAVE_GSL TRUE)
|
set(HAVE_GSL TRUE)
|
||||||
if (WITH_GEOREFERENCER)
|
set(HAVE_GEOREFERENCER TRUE)
|
||||||
set(HAVE_GEOREFERENCER TRUE)
|
|
||||||
endif()
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ENABLE_COVERAGE)
|
if(ENABLE_COVERAGE)
|
||||||
|
@ -252,7 +252,7 @@ if (WITH_SPATIALITE)
|
|||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WITH_GEOREFERENCER)
|
if (HAVE_GEOREFERENCER)
|
||||||
set(QGIS_APP_SRCS
|
set(QGIS_APP_SRCS
|
||||||
${QGIS_APP_SRCS}
|
${QGIS_APP_SRCS}
|
||||||
georeferencer/qgsgcpcanvasitem.cpp
|
georeferencer/qgsgcpcanvasitem.cpp
|
||||||
@ -547,7 +547,7 @@ if (WITH_3D)
|
|||||||
target_link_libraries(qgis_app qgis_3d)
|
target_link_libraries(qgis_app qgis_3d)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WITH_GEOREFERENCER)
|
if (HAVE_GEOREFERENCER)
|
||||||
include_directories(SYSTEM
|
include_directories(SYSTEM
|
||||||
${GSL_INCLUDE_DIR}
|
${GSL_INCLUDE_DIR}
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user