diff options
author | Kargatum <dowlandtop@yandex.com> | 2020-09-11 10:16:41 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 10:16:41 +0700 |
commit | c141be8684b6ed885d5195be0725545972b440a0 (patch) | |
tree | 1fc7bae7a0077257ef0e0e5648a50621f2c607b6 /src/cmake/macros | |
parent | 3a8ca806c53559634a69d6b9d6c38e41488c8d29 (diff) |
feat(Deps/MySQL): add support MariaDB 10.5 (#3452)
Diffstat (limited to 'src/cmake/macros')
-rw-r--r-- | src/cmake/macros/FindMySQL.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmake/macros/FindMySQL.cmake b/src/cmake/macros/FindMySQL.cmake index 98a22f2345..cdb466b491 100644 --- a/src/cmake/macros/FindMySQL.cmake +++ b/src/cmake/macros/FindMySQL.cmake @@ -28,9 +28,9 @@ endif(WIN32) # Find MariaDB for Windows if (WIN32) # Set know versions MariaDB - set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.4" "MariaDB 10.3" "MariaDB 10.2") + set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.5" "MariaDB 10.4" "MariaDB 10.3" "MariaDB 10.2") - # Set default oprions + # Set default options set(MARIADB_FOUND_LIB 0) set(MARIADB_FOUND_INCLUDE 0) set(MARIADB_FOUND_EXECUTABLE 0) |