From 2cc30b2910dbfc489a040aee7c31e3508ef6fa2d Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 24 Apr 2024 09:47:17 +0200 Subject: [PATCH] docs bugfix wrong anchor [skip ci] --- docs/building/tinyorm.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building/tinyorm.mdx b/docs/building/tinyorm.mdx index cab99b84a..43dd8947a 100644 --- a/docs/building/tinyorm.mdx +++ b/docs/building/tinyorm.mdx @@ -493,7 +493,7 @@ CMake multi-config generators like `Ninja Multi-Config` or `Visual Studio 16 201 | `BUILD_SHARED_LIBS` | `ON` | Build as a shared/static library. | | `BUILD_TESTS` | `OFF` | Build TinyORM unit tests. | | `BUILD_TREE_DEPLOY` | `ON` | Copy `TinyDrivers` and `TinyMySql` libraries to the root of the build tree. | -| `DRIVERS_TYPE` | `Shared`| How to build and link against `TinyDrivers` SQL database drivers.
The `Static` value will be select by default when the `BUILD_SHARED_LIBS` is `OFF`.
Supported values: [`Shared`](tinydrivers/getting-started.mdx#the-static-build), [`Loadable`](tinydrivers/getting-started.mdx#the-loadable-sql-drivers-build), and [`Static`](tinydrivers/getting-started.mdx#the-static-build)
Available when: `BUILD_DRIVERS AND BUILD_SHARED_LIBS`
| +| `DRIVERS_TYPE` | `Shared`| How to build and link against `TinyDrivers` SQL database drivers.
The `Static` value will be select by default when the `BUILD_SHARED_LIBS` is `OFF`.
Supported values: [`Shared`](tinydrivers/getting-started.mdx#the-shared-library-build), [`Loadable`](tinydrivers/getting-started.mdx#the-loadable-sql-drivers-build), and [`Static`](tinydrivers/getting-started.mdx#the-static-build)
Available when: `BUILD_DRIVERS AND BUILD_SHARED_LIBS`
| | `INLINE_CONSTANTS` | `OFF` | Use inline constants instead of extern constants in the `shared build`.
`OFF` is highly recommended for the `shared build`;
is always `ON` for the `static build`.
Available when: `BUILD_SHARED_LIBS` | | `MSVC_RUNTIME_DYNAMIC` | `ON` | Use MSVC dynamic runtime library (`-MD`) instead of static (`-MT`), also considers a Debug configuration (`-MTd`, `-MDd`).
Available when: `MSVC AND NOT DEFINED CMAKE_MSVC_RUNTIME_LIBRARY` | | `MYSQL_PING` | `OFF` | Enable `Orm::MySqlConnection::pingDatabase()` method. |