From bf92b981654b27cf56a698c0ea3227b879c9e362 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 5 Aug 2020 15:38:47 -0300 Subject: [PATCH] Docs: Add info about header-only option behavior Signed-off-by: Uilian Ries --- docs/supported_platforms_and_configurations.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/supported_platforms_and_configurations.md b/docs/supported_platforms_and_configurations.md index 0e1b01f8ad..8c84dbed07 100644 --- a/docs/supported_platforms_and_configurations.md +++ b/docs/supported_platforms_and_configurations.md @@ -9,7 +9,9 @@ - Architectures: x86_64 - Build types: Release, Debug - Runtimes: MT/MD (Release), MTd/MDd (Debug) -- Shared/Static (option `"shared": [True, False]` in the recipe when available) +- Options: + - Shared, Static (option `"shared": [True, False]` in the recipe when available) + - Header Only (option `"header_only": [True, False]` is only added with the value True) ## Linux @@ -21,7 +23,9 @@ - Clang compiler: `libstdc++`, `libc++` - Architectures: x86_64 - Build types: Release, Debug -- Options: Shared, Static (option `"shared": [True, False]` in the recipe when available) +- Options: + - Shared, Static (option `"shared": [True, False]` in the recipe when available) + - Header Only (option `"header_only": [True, False]` is only added with the value True) ## OSX @@ -29,4 +33,6 @@ - C++ Standard Library (`libcxx`): `libc++` - Architectures: x86_64 - Build types: Release, Debug -- Options: Shared, Static (option ``"shared": [True, False]`` in the recipe when available) +- Options: + - Shared, Static (option ``"shared": [True, False]`` in the recipe when available) + - Header Only (option `"header_only": [True, False]` is only added with the value True)