diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-12-14 15:15:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 15:15:44 +0100 |
commit | 04fd8791e1658e08e8016b407ac0b3ee4efdc18d (patch) | |
tree | 182e19397767d60e5c7084a1779a3d513f9f8588 /src/cmake | |
parent | 6fa91dbe1f2a55ccaa22130a3a4bbaa0d210786a (diff) |
refactor(Core/DB): Deprecate MariaDB 10.4 and below (#9675)
Diffstat (limited to 'src/cmake')
-rw-r--r-- | src/cmake/macros/FindMySQL.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmake/macros/FindMySQL.cmake b/src/cmake/macros/FindMySQL.cmake index 68f53527bd..ce3ba455a1 100644 --- a/src/cmake/macros/FindMySQL.cmake +++ b/src/cmake/macros/FindMySQL.cmake @@ -40,7 +40,7 @@ endif(WIN32) # Find MariaDB for Windows if (WIN32) # Set know versions MariaDB - set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.6" "MariaDB 10.5" "MariaDB 10.4" "MariaDB 10.3" "MariaDB 10.2") + set(_MARIADB_KNOWN_VERSIONS "MariaDB 10.6" "MariaDB 10.5") # Set default options set(MARIADB_FOUND_LIB 0) |