From af7715b52625fe39ceaa1c1a62fcd21be83383f6 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 24 Sep 2023 13:13:45 +0200 Subject: [PATCH] docs added static_runtime qmake CONFIG option --- docs/building/tinyorm.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/building/tinyorm.mdx b/docs/building/tinyorm.mdx index a04bda4c2..3821ac9b4 100644 --- a/docs/building/tinyorm.mdx +++ b/docs/building/tinyorm.mdx @@ -785,7 +785,8 @@ Important `qmake` options. | ----------------------------------- | ------- | ----------- | | `ccache` | `OFF` | Enable compiler cache. [Homepage](https://ccache.dev/)
It works only on the Unix systems. It works well with the `g++` and `clang++` and also supports precompiled headers. | | `precompile_header` | `-` | Enable precompiled headers, you can disable them with:
`CONFIG-=precompile_header`.
The `precompile_header` is enabled by default on `msvc`, `g++`, `clang++`, `clang-cl` on `Windows` and disabled by default on `linux`. | -| `static`
`staticlib` | `OFF` | Build as a static library (lib only). | +| `static`
`staticlib` | `OFF` | Build as a `static` library (lib only). | +| `static_runtime` | `OFF` | Link against the `shared` (dynamic) or `static` run-time library.
The `-MD` becomes `-MT` and `-MDd` becomes `-MTd`. It works only on `MSVC` and `MinGW` or `MSYS2`.
Please don't use this option.
Available when: `msvc` or `mingw`
|