From 95675208acba9d41f4c71d2b7883ed6ab34a4a60 Mon Sep 17 00:00:00 2001 From: memsharded Date: Fri, 17 May 2024 21:26:28 +0200 Subject: [PATCH] fix conf patterns --- reference/config_files/global_conf.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/config_files/global_conf.rst b/reference/config_files/global_conf.rst index c9869abc076b..09cb6165e6b9 100644 --- a/reference/config_files/global_conf.rst +++ b/reference/config_files/global_conf.rst @@ -184,7 +184,7 @@ You can use package patterns to apply the configuration in those dependencies wh .. code-block:: text *:tools.cmake.cmaketoolchain:generator=Ninja - zlib:tools.cmake.cmaketoolchain:generator=Visual Studio 16 2019 + zlib/*:tools.cmake.cmaketoolchain:generator=Visual Studio 16 2019 This example shows you how to specify a general ``generator`` for all your packages except for ``zlib`` which is defining ``Visual Studio 16 2019`` as its generator. @@ -194,7 +194,7 @@ configuration lines above: .. code-block:: text - zlib:tools.cmake.cmaketoolchain:generator=Visual Studio 16 2019 + zlib/*:tools.cmake.cmaketoolchain:generator=Visual Studio 16 2019 *:tools.cmake.cmaketoolchain:generator=Ninja The result is that you're specifying a general ``generator`` for all your packages, and that's it. The ``zlib`` line has no