| 233 | |
| 234 | == MySQL == |
| 235 | |
| 236 | Particularly systems that use MariaDB in favor of MySQL sometimes pretend to have mysql installed but compiling or linking will fail. In this case download the latest MySQL binaries from https://dev.mysql.com/downloads/mysql/ (You can use the minimal version). |
| 237 | |
| 238 | After you extracted the archive, call cmake with the options |
| 239 | {{{ |
| 240 | -DMYSQL_INCLUDE_DIRS=~/mysql-8.0.22-linux-glibc2.17-x86_64-minimal/include |
| 241 | -DMYSQL_LIBRARY_DIRS=~/mysql-8.0.22-linux-glibc2.17-x86_64-minimal/lib |
| 242 | }}} |
| 243 | where the provided path is the extacted directory. |
| 244 | |