diff options
author | Brad King <brad.king@kitware.com> | 2022-04-12 12:17:09 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-04-12 12:17:15 (GMT) |
commit | b77fd6da49135acb489d10117214d6c5b4133e7b (patch) | |
tree | d8319c9fd1e6db24c6dc45dab12b0e7f3c3b3944 | |
parent | 4135d726d4f5f846a4551738c9b289eb3cb45ce6 (diff) | |
parent | 23671318f3597c99a3aedb786e8847e71ff12d08 (diff) | |
download | CMake-b77fd6da49135acb489d10117214d6c5b4133e7b.zip CMake-b77fd6da49135acb489d10117214d6c5b4133e7b.tar.gz CMake-b77fd6da49135acb489d10117214d6c5b4133e7b.tar.bz2 |
Merge topic 'FindPostgreSQL-14' into release-3.23
23671318f3 FindPostgreSQL: add support for PostgreSQL 14
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7158
-rw-r--r-- | Modules/FindPostgreSQL.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindPostgreSQL.cmake b/Modules/FindPostgreSQL.cmake index 25c5c09..2233aa0 100644 --- a/Modules/FindPostgreSQL.cmake +++ b/Modules/FindPostgreSQL.cmake @@ -53,7 +53,7 @@ is set regardless of the presence of the ``Server`` component in find_package ca # In Windows the default installation of PostgreSQL uses that as part of the path. # E.g C:\Program Files\PostgreSQL\8.4. # Currently, the following version numbers are known to this module: -# "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0" +# "14" "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0" # # To use this variable just do something like this: # set(PostgreSQL_ADDITIONAL_VERSIONS "9.2" "8.4.4") @@ -102,7 +102,7 @@ set(PostgreSQL_ROOT_DIR_MESSAGE "Set the PostgreSQL_ROOT system variable to wher set(PostgreSQL_KNOWN_VERSIONS ${PostgreSQL_ADDITIONAL_VERSIONS} - "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0") + "14" "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0") # Define additional search paths for root directories. set( PostgreSQL_ROOT_DIRECTORIES |