You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -137,7 +137,7 @@ if(WITH_CORE)
137
137
138
138
set (WITH_GUITRUECACHEBOOL"Determines whether QGIS GUI library (and everything built on top of it) should be built")
139
139
140
-
set (WITH_OAUTH2_PLUGINTRUECACHEBOOL"Build OAuth2 authentication method plugin")
140
+
set (WITH_OAUTH2_PLUGINTRUECACHEBOOL"Determines whether OAuth2 authentication method plugin should be built")
141
141
if(WITH_OAUTH2_PLUGIN)
142
142
set(HAVE_OAUTH2_PLUGINTRUE)
143
143
endif()
@@ -176,16 +176,16 @@ if(WITH_CORE)
176
176
mark_as_advanced (NATIVE_CRSSYNC_BIN)
177
177
178
178
# try to configure and build python bindings by default
179
-
set (WITH_BINDINGSTRUECACHEBOOL"Determines whether python bindings should be built")
179
+
set (WITH_BINDINGSTRUECACHEBOOL"Determines whether Python bindings should be built")
180
180
if (WITH_BINDINGS)
181
181
# By default bindings will be installed only to QGIS directory
182
182
# Someone might want to install it to python site-packages directory
183
183
# as otherwise user has to use PYTHONPATH environment variable to add
184
184
# QGIS bindings to package search path
185
-
set (BINDINGS_GLOBAL_INSTALLFALSECACHEBOOL"Install bindings to global python directory? (might need root)")
185
+
set (BINDINGS_GLOBAL_INSTALLFALSECACHEBOOL"Install bindings to global Python directory? (might need root)")
186
186
set (SIP_GLOBAL_INSTALLFALSECACHEBOOL"Install sip source files to system sip directory? (might need root)")
187
187
set (WITH_STAGED_PLUGINSTRUECACHEBOOL"Stage-install core Python plugins to run from build directory? (utilities and console are always staged)")
188
-
set (WITH_PY_COMPILEFALSECACHEBOOL"Determines whether Python modules in staged or installed locations are byte-compiled")
188
+
set (WITH_PY_COMPILEFALSECACHEBOOL"Determines whether Python modules in staged or installed locations should be byte-compiled")
189
189
# concatenate QScintilla2 API files
190
190
if (WITH_GUI)
191
191
set (WITH_QSCIAPITRUECACHEBOOL"Whether to generate PyQGIS QScintilla2 API file. (For devs) run 'make qsci-pap-src' in between QGIS build and install to regenerate .pap file in source tree for console auto-completion.")
@@ -201,9 +201,9 @@ if(WITH_CORE)
201
201
202
202
set (SERVER_SKIP_ECWFALSECACHEBOOL"Determines whether QGIS server should disable ECW (ECW in server apps requires a special license)")
203
203
204
-
set (WITH_SERVER_PLUGINS${WITH_BINDINGS}CACHEBOOL"Determines whether QGIS server support for python plugins should be built")
204
+
set (WITH_SERVER_PLUGINS${WITH_BINDINGS}CACHEBOOL"Determines whether QGIS server support for Python plugins should be built")
205
205
if(WITH_SERVER_PLUGINSANDNOTWITH_BINDINGS)
206
-
message(FATAL_ERROR"Server plugins are not supported without python bindings. Enable WITH_BINDINGS or disable WITH_SERVER_PLUGINS")
206
+
message(FATAL_ERROR"Server plugins are not supported without Python bindings. Enable WITH_BINDINGS or disable WITH_SERVER_PLUGINS")
207
207
endif()
208
208
if(WITH_SERVER_PLUGINS)
209
209
set(HAVE_SERVER_PYTHON_PLUGINSTRUE)
@@ -243,7 +243,7 @@ if(WITH_CORE)
243
243
endif()
244
244
245
245
# try to configure and build MDAL support
246
-
set (WITH_INTERNAL_MDALTRUECACHEBOOL"Determines whether MDAL should be built from internal copy")
246
+
set (WITH_INTERNAL_MDALTRUECACHEBOOL"Determines whether MDAL should be built from internal copy (recommended)")
247
247
if (NOTWITH_INTERNAL_MDAL)
248
248
set (MDAL_PREFIX""CACHEPATH"Path to MDAL base directory")
249
249
endif()
@@ -408,7 +408,7 @@ if(WITH_CORE)
408
408
message(STATUS"Qt WebKit support DISABLED.")
409
409
endif()
410
410
411
-
set (WITH_INTERNAL_LAZPERFTRUECACHEBOOL"Determines whether LazPerf should be built from internal copy")
411
+
set (WITH_INTERNAL_LAZPERFTRUECACHEBOOL"Determines whether LazPerf should be built from internal copy (recommended)")
412
412
if (WITH_EPTORWITH_COPC)
413
413
if (NOTWITH_INTERNAL_LAZPERF)
414
414
find_package(LazPerf) # for decompression of point clouds
set (BUILD_WITH_QT6FALSECACHEBOOL"Enable (broken, experimental) Qt6 support")
441
+
set (BUILD_WITH_QT6FALSECACHEBOOL"Enable (experimental) Qt6 support")
442
442
if (BUILD_WITH_QT6)
443
443
set(QT_MIN_VERSION6.0.0)
444
444
set(QT_VERSION_BASE"Qt6")
@@ -542,7 +542,7 @@ endif()
542
542
set(CMAKE_AUTOMOCON)
543
543
544
544
# build our version of astyle
545
-
set (WITH_ASTYLEFALSECACHEBOOL"If you plan to contribute you should reindent with scripts/prepare_commit.sh (using 'our' astyle)")
545
+
set (WITH_ASTYLEFALSECACHEBOOL"Deprecated. Should be OFF. If you plan to contribute you should reindent with scripts/prepare_commit.sh (using 'our' astyle)")
546
546
547
547
# QML
548
548
set(QML_IMPORT_PATH"${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"CACHEPATH"QML directory for QML autocomplete")
0 commit comments