mirror of
https://github.com/curl/curl.git
synced 2026-08-25 02:23:31 +03:00
cmake: say 'absolute path' in option descriptions and docs
To not have to guess. Also to sync with autotools, which already uses this wording. Also: - replace the stray term 'folder' with 'directory' for consistency. - store help text in a temp variable to avoid overly long strings (mandatory in CMake <4.2.0 and can't be trivially split), also to avoid repeating this string 4 times. Ref: https://cmake.org/cmake/help/v4.2/command/set.html Closes #19169
This commit is contained in:
parent
1966c86d71
commit
38c19edd67
23 changed files with 129 additions and 127 deletions
|
|
@ -25,7 +25,7 @@
|
|||
#
|
||||
# Input variables:
|
||||
#
|
||||
# - `GSS_ROOT_DIR`: Set this variable to the root installation of GSS. (also supported as environment)
|
||||
# - `GSS_ROOT_DIR`: Absolute path to the root installation of GSS. (also supported as environment)
|
||||
#
|
||||
# Result variables:
|
||||
#
|
||||
|
|
@ -253,7 +253,7 @@ find_package_handle_standard_args(GSS
|
|||
VERSION_VAR
|
||||
GSS_VERSION
|
||||
FAIL_MESSAGE
|
||||
"Could NOT find GSS, try to set the path to GSS root folder in the system variable GSS_ROOT_DIR"
|
||||
"Could NOT find GSS, try to set the absolute path to GSS installation root directory in the environment variable GSS_ROOT_DIR"
|
||||
)
|
||||
|
||||
mark_as_advanced(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue