diff --git a/2.0/.buildinfo b/2.0/.buildinfo index 56aa8fe7226..6ec07599cbf 100644 --- a/2.0/.buildinfo +++ b/2.0/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 6f7aa25dc849c8a69759d62c5f1cc1cd +config: d76780e0f3e4872f8cbc6a3701967e9e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/2.0/404.html b/2.0/404.html index 01a072c949b..0176e803041 100644 --- a/2.0/404.html +++ b/2.0/404.html @@ -5,7 +5,7 @@ Page Not Found — conan 2.0.17 documentation - + @@ -119,7 +119,7 @@

Page Not Found

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/Page Not Found.html b/2.0/Page Not Found.html index df2ec685434..82f607b7eec 100644 --- a/2.0/Page Not Found.html +++ b/2.0/Page Not Found.html @@ -4,7 +4,7 @@ Page not found — conan 2.0.17 documentation - + @@ -112,7 +112,7 @@

Page not found

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt b/2.0/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt index 6857c28e1bf..b06d9a34760 100644 --- a/2.0/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt +++ b/2.0/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt @@ -163,7 +163,7 @@ line. An example of the output of this command for MacOS would be: Then open and edit the file and set ``compiler.cppstd`` to the C++ standard you want to use. -.. note:: **Using a different compiler than the auto-detected one** +.. note:: **Using a compiler other than the auto-detected one** If you want to change a Conan profile to use a compiler different from the default one, you need to change the ``compiler`` setting and also tell Conan explicitly where diff --git a/2.0/_sources/tutorial/consuming_packages/different_configurations.rst.txt b/2.0/_sources/tutorial/consuming_packages/different_configurations.rst.txt index bcd00d29117..d98050d3a55 100644 --- a/2.0/_sources/tutorial/consuming_packages/different_configurations.rst.txt +++ b/2.0/_sources/tutorial/consuming_packages/different_configurations.rst.txt @@ -13,7 +13,7 @@ Please, first clone the sources to recreate this project. You can find them in t So far, we built a simple CMake project that depended on the **zlib** library and learned -about ``tool_requires``, a special type or requirements for build-tools like CMake. In +about ``tool_requires``, a special type of ``requirements`` for build-tools like CMake. In both cases, we did not specify anywhere that we wanted to build the application in *Release* or *Debug* mode, or if we wanted to link against *static* or *shared* libraries. That is because Conan, if not instructed otherwise, will use a default configuration @@ -120,8 +120,8 @@ As we explained above, this is the equivalent of having *debug* profile and runn command using the ``--profile=debug`` argument instead of the ``--settings=build_type=Debug`` argument. -This :command:`conan install` command will check if we already installed the required libraries -(Zlib) in Debug configuration and install them otherwise. It will also set the build +This :command:`conan install` command will check if we already have the required libraries in the local cache +(Zlib) for Debug configuration and obtain them if not. It will also set the build configuration in the ``conan_toolchain.cmake`` toolchain that the CMakeToolchain generator creates so that when we build the application it's built in *Debug* configuration. Now build your project as you did in the previous examples and check in the output how it was @@ -167,7 +167,6 @@ using the ``--options`` argument. To do so, please run: .. code-block:: bash - :caption: Windows $ conan install . --output-folder=build --build=missing --options=zlib/1.2.11:shared=True diff --git a/2.0/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt b/2.0/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt index b05bbd02850..2169e02be40 100644 --- a/2.0/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt +++ b/2.0/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt @@ -7,7 +7,7 @@ In the :ref:`previous tutorial section` we created a package for a "Hello World" C++ library. We used the :ref:`conan.tools.scm.Git()` tool to retrieve the sources from a git repository. So far, the package does not have any dependency on other Conan packages. -Let's explain how to add a dependency to our package in a very similar way that we did in +Let's explain how to add a dependency to our package in a very similar way to how we did in the :ref:`consuming packages section`. We will add some fancy colour output to our "Hello World" library using the `fmt `__ library. diff --git a/2.0/_sources/tutorial/creating_packages/build_packages.rst.txt b/2.0/_sources/tutorial/creating_packages/build_packages.rst.txt index f42df31aaf1..551ab342dd6 100644 --- a/2.0/_sources/tutorial/creating_packages/build_packages.rst.txt +++ b/2.0/_sources/tutorial/creating_packages/build_packages.rst.txt @@ -87,8 +87,8 @@ Changes introduced in the recipe - We use the ``tools.build:skip_test`` configuration in the ``build()`` method, after building the package and tests, to decide if we want to run the tests or not. - - In this case we are using **gtest** for testing and we have to add the check if the - build method to run the tests or not, but this configuration also affects the + - In this case we are using **gtest** for testing and we have to check if the + build method is to run the tests or not. This configuration also affects the execution of ``CMake.test()`` if you are using CTest and ``Meson.test()`` for Meson. @@ -242,7 +242,7 @@ tool: "Hello {} Friends".format("Shared" if self.options.shared else "Static")) -Please, note that patching in ``build()`` should avoided if possible and only be done for +Please, note that patching in ``build()`` should be avoided if possible and only be done for very particular cases as it will make more difficult to develop your packages locally (we will explain more about this in the :ref:`local development flow section` later) @@ -251,7 +251,7 @@ Conditionally select your build system -------------------------------------- It's not uncommon that some packages need one build system or another depending on the -platform we are building. For example, the *hello* library could build in Windows using +platform we are building on. For example, the *hello* library could build in Windows using CMake and in Linux and MacOS using Autotools. This can be easily handled in the ``build()`` method like this: diff --git a/2.0/_sources/tutorial/creating_packages/configure_options_settings.rst.txt b/2.0/_sources/tutorial/creating_packages/configure_options_settings.rst.txt index bf8ef57bd8a..1fa53f7342f 100644 --- a/2.0/_sources/tutorial/creating_packages/configure_options_settings.rst.txt +++ b/2.0/_sources/tutorial/creating_packages/configure_options_settings.rst.txt @@ -60,16 +60,16 @@ already had defined in the recipe: systems will add this flag automatically when building a shared library). -* ``config_options()``: This method is used to **constraint** the available options in a +* ``config_options()``: This method is used to **constrain** the available options in a package **before they take a value**. If a value is assigned to a setting or option that is deleted inside this method, Conan will raise an error. In this case we are **deleting the fPIC option** in Windows because that option does not exist for that operating system. Note that this method is executed before the ``configure()`` method. -Be aware that deleting an option in the ``config_options()`` or in the ``configure()`` has -not the same result. Deleting it in the ``config_options()`` **is like if we never declared -it in the recipe** and it will raise an exception saying that the option does not exist. -Nevertheless, if we delete it in the ``configure()`` method we can pass the option but it +Be aware that deleting an option using the ``config_options()`` method has a different result from using the ``configure()`` +method. Deleting the option in ``config_options()`` **is like we never declared +it in the recipe** which will raise an exception saying that the option does not exist. +However, if we delete it in the ``configure()`` method we can pass the option but it will have no effect. For example, if you try to pass a value to the ``fPIC`` option in Windows, Conan will raise an error warning that the option does not exist: @@ -84,7 +84,7 @@ Windows, Conan will raise an error warning that the option does not exist: As you have noticed, the ``configure()`` and ``config_options()`` methods **delete an -option** if certain conditions meet. Let's explain why we are doing this and the +option** if certain conditions are met. Let's explain why we are doing this and the implications of removing that option. It is related to how Conan identifies packages that are binary compatible with the configuration set in the profile. In the next section, we introduce the concept of the **Conan package ID**. @@ -182,7 +182,7 @@ to install a package, Conan will: sources (this depends on the value of the ``--build`` argument). This build will generate a new package ID in the local cache. -This steps are simplified, there is far more to package ID calculation than what we +These steps are simplified, there is far more to package ID calculation than what we explain here, recipes themselves can even adjust their package ID calculations, we can have different recipe and package revisions besides package IDs and there's also a built-in mechanism in Conan that can be configured to declare that some packages with a diff --git a/2.0/_sources/tutorial/creating_packages/create_your_first_package.rst.txt b/2.0/_sources/tutorial/creating_packages/create_your_first_package.rst.txt index 46c95c3e6dd..b851bc9038d 100644 --- a/2.0/_sources/tutorial/creating_packages/create_your_first_package.rst.txt +++ b/2.0/_sources/tutorial/creating_packages/create_your_first_package.rst.txt @@ -138,13 +138,12 @@ the sources for our "hello" library. Then, several methods are declared: -* The ``config_options()`` method (together with ``configure()`` one) allows to fine-tune the binary configuration +* The ``config_options()`` method (together with the ``configure()`` one) allows fine-tuning the binary configuration model, for example, in Windows, there is no ``fPIC`` option, so it can be removed. * The ``layout()`` method declares the locations where we expect to find the source files - and also those where we want to save the generated files during the build process. - Things like the folder for the generated binaries or all the files that the Conan - generators create in the ``generate()`` method. In this case, as our project uses CMake + and destinations for the files generated during the build process. Example destination folders are those for the + generated binaries and all the files that the Conan generators create in the ``generate()`` method. In this case, as our project uses CMake as the build system, we call to ``cmake_layout()``. Calling this function will set the expected locations for a CMake project. @@ -248,8 +247,8 @@ binaries for Debug configuration or to build the hello library as shared: hello/1.0: Hello World Release! -These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer, -we can see them with: +These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer. +We can see them with: .. code-block:: bash @@ -313,7 +312,7 @@ located in the user home folder under the ``.conan2`` folder. Conan will use the You already used the :command:`conan list` command to list the recipes and binaries stored in the local cache. -An **important** note: the Conan cache are private to the Conan client - modifying, adding, removing or changing files inside the Conan cache is undefined behaviour likely to cause breakages. +An **important** note: the Conan cache is private to the Conan client - modifying, adding, removing or changing files inside the Conan cache is undefined behaviour likely to cause breakages. Read more diff --git a/2.0/_sources/tutorial/creating_packages/preparing_the_build.rst.txt b/2.0/_sources/tutorial/creating_packages/preparing_the_build.rst.txt index d6898b3091c..e01bc3abb26 100644 --- a/2.0/_sources/tutorial/creating_packages/preparing_the_build.rst.txt +++ b/2.0/_sources/tutorial/creating_packages/preparing_the_build.rst.txt @@ -18,7 +18,7 @@ information that could be needed while running the build step. That means things apply for certain cases. -We explain to use this method for a simple example based on the previous tutorial section. +We explain how to use this method for a simple example based on the previous tutorial section. We add a `with_fmt` option to the recipe, depending on the value we require the `fmt` library or not. We use the `generate()` method to modify the toolchain so that it passes a variable to CMake so that we can conditionally add that library and use `fmt` diff --git a/2.0/_static/pygments.css b/2.0/_static/pygments.css index 691aeb82d00..d254119e918 100644 --- a/2.0/_static/pygments.css +++ b/2.0/_static/pygments.css @@ -4,71 +4,62 @@ span.linenos { color: inherit; background-color: transparent; padding-left: 5px; td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } -.highlight { background: #eeffcc; } -.highlight .c { color: #408090; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #333333 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #208050 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.highlight { background: #ffffff; } +.highlight .c { color: #008800; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .g { color: #2c2cff } /* Generic */ +.highlight .k { color: #2c2cff } /* Keyword */ +.highlight .x { background-color: #ffffe0 } /* Other */ +.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */ +.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #2c2cff } /* Generic.Deleted */ +.highlight .ge { color: #008800 } /* Generic.Emph */ +.highlight .gr { color: #d30202 } /* Generic.Error */ +.highlight .gh { color: #2c2cff } /* Generic.Heading */ +.highlight .gi { color: #2c2cff } /* Generic.Inserted */ +.highlight .go { color: #2c2cff } /* Generic.Output */ +.highlight .gp { color: #2c2cff } /* Generic.Prompt */ +.highlight .gs { color: #2c2cff } /* Generic.Strong */ +.highlight .gu { color: #2c2cff } /* Generic.Subheading */ +.highlight .gt { color: #2c2cff } /* Generic.Traceback */ +.highlight .kc { color: #2c2cff; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #2c2cff } /* Keyword.Declaration */ +.highlight .kn { color: #2c2cff } /* Keyword.Namespace */ +.highlight .kp { color: #2c2cff } /* Keyword.Pseudo */ +.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #2c2cff } /* Keyword.Type */ +.highlight .m { color: #2c8553; font-weight: bold } /* Literal.Number */ +.highlight .s { color: #800080 } /* Literal.String */ +.highlight .nb { color: #2c2cff } /* Name.Builtin */ +.highlight .nf { font-weight: bold; font-style: italic } /* Name.Function */ +.highlight .nv { color: #2c2cff; font-weight: bold } /* Name.Variable */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mb { color: #208050 } /* Literal.Number.Bin */ -.highlight .mf { color: #208050 } /* Literal.Number.Float */ -.highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ -.highlight .mo { color: #208050 } /* Literal.Number.Oct */ -.highlight .sa { color: #4070a0 } /* Literal.String.Affix */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .fm { color: #06287e } /* Name.Function.Magic */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */ -.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file +.highlight .mb { color: #2c8553; font-weight: bold } /* Literal.Number.Bin */ +.highlight .mf { color: #2c8553; font-weight: bold } /* Literal.Number.Float */ +.highlight .mh { color: #2c8553; font-weight: bold } /* Literal.Number.Hex */ +.highlight .mi { color: #2c8553; font-weight: bold } /* Literal.Number.Integer */ +.highlight .mo { color: #2c8553; font-weight: bold } /* Literal.Number.Oct */ +.highlight .sa { color: #800080 } /* Literal.String.Affix */ +.highlight .sb { color: #800080 } /* Literal.String.Backtick */ +.highlight .sc { color: #800080 } /* Literal.String.Char */ +.highlight .dl { color: #800080 } /* Literal.String.Delimiter */ +.highlight .sd { color: #800080 } /* Literal.String.Doc */ +.highlight .s2 { color: #800080 } /* Literal.String.Double */ +.highlight .se { color: #800080 } /* Literal.String.Escape */ +.highlight .sh { color: #800080 } /* Literal.String.Heredoc */ +.highlight .si { color: #800080 } /* Literal.String.Interpol */ +.highlight .sx { color: #800080 } /* Literal.String.Other */ +.highlight .sr { color: #800080 } /* Literal.String.Regex */ +.highlight .s1 { color: #800080 } /* Literal.String.Single */ +.highlight .ss { color: #800080 } /* Literal.String.Symbol */ +.highlight .bp { color: #2c2cff } /* Name.Builtin.Pseudo */ +.highlight .fm { font-weight: bold; font-style: italic } /* Name.Function.Magic */ +.highlight .vc { color: #2c2cff; font-weight: bold } /* Name.Variable.Class */ +.highlight .vg { color: #2c2cff; font-weight: bold } /* Name.Variable.Global */ +.highlight .vi { color: #2c2cff; font-weight: bold } /* Name.Variable.Instance */ +.highlight .vm { color: #2c2cff; font-weight: bold } /* Name.Variable.Magic */ +.highlight .il { color: #2c8553; font-weight: bold } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/2.0/changelog.html b/2.0/changelog.html index 7cf1d70c02a..1b661131487 100644 --- a/2.0/changelog.html +++ b/2.0/changelog.html @@ -5,7 +5,7 @@ Changelog — conan 2.0.17 documentation - + @@ -752,7 +752,7 @@

2.0.0-beta1 (20-Jun-2022)

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/conan.pdf b/2.0/conan.pdf index e164b7dcdf8..748567647fe 100644 Binary files a/2.0/conan.pdf and b/2.0/conan.pdf differ diff --git a/2.0/devops.html b/2.0/devops.html index da5d3e76004..ad20a474528 100644 --- a/2.0/devops.html +++ b/2.0/devops.html @@ -5,7 +5,7 @@ Devops guide — conan 2.0.17 documentation - + @@ -139,7 +139,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html b/2.0/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html index 9719a88e50d..d0b53573117 100644 --- a/2.0/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html +++ b/2.0/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html @@ -5,7 +5,7 @@ Creating an Artifactory backup repo for your sources — conan 2.0.17 documentation - + @@ -166,7 +166,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/backup_sources/sources_backup.html b/2.0/devops/backup_sources/sources_backup.html index a5a94e270dd..d98117486f3 100644 --- a/2.0/devops/backup_sources/sources_backup.html +++ b/2.0/devops/backup_sources/sources_backup.html @@ -5,7 +5,7 @@ Backing up third-party sources with Conan — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

Upload the packages

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/conancenter/hosting_binaries.html b/2.0/devops/conancenter/hosting_binaries.html index 9023c6ca48b..ca13cccc1d3 100644 --- a/2.0/devops/conancenter/hosting_binaries.html +++ b/2.0/devops/conancenter/hosting_binaries.html @@ -5,7 +5,7 @@ Creating and hosting your own ConanCenter binaries — conan 2.0.17 documentation - + @@ -158,7 +158,7 @@

Updating from upstream

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/metadata.html b/2.0/devops/metadata.html index c0ac6554515..54051c69429 100644 --- a/2.0/devops/metadata.html +++ b/2.0/devops/metadata.html @@ -5,7 +5,7 @@ Managing package metadata files — conan 2.0.17 documentation - + @@ -411,7 +411,7 @@

test_package as metadata

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/save_restore.html b/2.0/devops/save_restore.html index 31fa9f5917a..55ca1f44a28 100644 --- a/2.0/devops/save_restore.html +++ b/2.0/devops/save_restore.html @@ -5,7 +5,7 @@ Save and restore packages from/to the cache — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/using_conancenter.html b/2.0/devops/using_conancenter.html index e1aefbdf152..ebbaabd50a2 100644 --- a/2.0/devops/using_conancenter.html +++ b/2.0/devops/using_conancenter.html @@ -5,7 +5,7 @@ Using ConanCenter packages in production environments — conan 2.0.17 documentation - + @@ -239,7 +239,7 @@

Control and customization

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/versioning.html b/2.0/devops/versioning.html index 1d8638c1733..31b66753995 100644 --- a/2.0/devops/versioning.html +++ b/2.0/devops/versioning.html @@ -5,7 +5,7 @@ Versioning — conan 2.0.17 documentation - + @@ -137,7 +137,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/devops/versioning/resolve_prereleases.html b/2.0/devops/versioning/resolve_prereleases.html index 153f87858b6..99db8f49daa 100644 --- a/2.0/devops/versioning/resolve_prereleases.html +++ b/2.0/devops/versioning/resolve_prereleases.html @@ -5,7 +5,7 @@ Handling version ranges and pre-releases — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples.html b/2.0/examples.html index bda0f5a3297..ea360cf7c24 100644 --- a/2.0/examples.html +++ b/2.0/examples.html @@ -5,7 +5,7 @@ Examples — conan 2.0.17 documentation - + @@ -179,7 +179,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/commands.html b/2.0/examples/commands.html index 078f5c15818..51d6f55344a 100644 --- a/2.0/examples/commands.html +++ b/2.0/examples/commands.html @@ -5,7 +5,7 @@ Conan commands examples — conan 2.0.17 documentation - + @@ -145,7 +145,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/commands/pkglists.html b/2.0/examples/commands/pkglists.html index 331d567a786..ae85c5d63b5 100644 --- a/2.0/examples/commands/pkglists.html +++ b/2.0/examples/commands/pkglists.html @@ -5,7 +5,7 @@ Using packages-lists — conan 2.0.17 documentation - + @@ -304,7 +304,7 @@

Removing packages lists

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile.html b/2.0/examples/conanfile.html index bdfc068ddb0..f8f9329d51f 100644 --- a/2.0/examples/conanfile.html +++ b/2.0/examples/conanfile.html @@ -5,7 +5,7 @@ ConanFile methods examples — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/layout.html b/2.0/examples/conanfile/layout.html index dc1af3ee652..7e61b622d55 100644 --- a/2.0/examples/conanfile/layout.html +++ b/2.0/examples/conanfile/layout.html @@ -5,7 +5,7 @@ ConanFile layout() examples — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/layout/conanfile_in_subfolder.html b/2.0/examples/conanfile/layout/conanfile_in_subfolder.html index 499b608c715..7303008cbaa 100644 --- a/2.0/examples/conanfile/layout/conanfile_in_subfolder.html +++ b/2.0/examples/conanfile/layout/conanfile_in_subfolder.html @@ -5,7 +5,7 @@ Declaring the layout when the Conanfile is inside a subfolder — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/layout/editable_components.html b/2.0/examples/conanfile/layout/editable_components.html index 30d1cc180d7..cc97e1ccbcb 100644 --- a/2.0/examples/conanfile/layout/editable_components.html +++ b/2.0/examples/conanfile/layout/editable_components.html @@ -5,7 +5,7 @@ Using components and editable packages — conan 2.0.17 documentation - + @@ -246,7 +246,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/layout/multiple_subprojects.html b/2.0/examples/conanfile/layout/multiple_subprojects.html index ce203808b72..162f563d5a9 100644 --- a/2.0/examples/conanfile/layout/multiple_subprojects.html +++ b/2.0/examples/conanfile/layout/multiple_subprojects.html @@ -5,7 +5,7 @@ Declaring the layout when we have multiple subprojects — conan 2.0.17 documentation - + @@ -245,7 +245,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/layout/third_party_libraries.html b/2.0/examples/conanfile/layout/third_party_libraries.html index 8906c128686..9f6efefde60 100644 --- a/2.0/examples/conanfile/layout/third_party_libraries.html +++ b/2.0/examples/conanfile/layout/third_party_libraries.html @@ -5,7 +5,7 @@ Declaring the layout when creating packages for third-party libraries — conan 2.0.17 documentation - + @@ -225,7 +225,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/package_info.html b/2.0/examples/conanfile/package_info.html index 365e88060c6..c955902b913 100644 --- a/2.0/examples/conanfile/package_info.html +++ b/2.0/examples/conanfile/package_info.html @@ -5,7 +5,7 @@ ConanFile package_info() examples — conan 2.0.17 documentation - + @@ -146,7 +146,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/package_info/components.html b/2.0/examples/conanfile/package_info/components.html index 03d4003b393..61ff9b9b43a 100644 --- a/2.0/examples/conanfile/package_info/components.html +++ b/2.0/examples/conanfile/package_info/components.html @@ -5,7 +5,7 @@ Define components for Conan packages that provide multiple libraries — conan 2.0.17 documentation - + @@ -348,7 +348,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/conanfile/package_info/package_info_conf_and_env.html b/2.0/examples/conanfile/package_info/package_info_conf_and_env.html index ff836b21f70..96ab1cc0e8e 100644 --- a/2.0/examples/conanfile/package_info/package_info_conf_and_env.html +++ b/2.0/examples/conanfile/package_info/package_info_conf_and_env.html @@ -5,7 +5,7 @@ Propagating environment or configuration information to consumers — conan 2.0.17 documentation - + @@ -142,7 +142,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/config_files.html b/2.0/examples/config_files.html index 78c2dabbb44..4933351c646 100644 --- a/2.0/examples/config_files.html +++ b/2.0/examples/config_files.html @@ -5,7 +5,7 @@ Configuration files examples — conan 2.0.17 documentation - + @@ -143,7 +143,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/config_files/settings/settings_user.html b/2.0/examples/config_files/settings/settings_user.html index cb524c8e10a..d8cefd145c5 100644 --- a/2.0/examples/config_files/settings/settings_user.html +++ b/2.0/examples/config_files/settings/settings_user.html @@ -5,7 +5,7 @@ Customize your settings: create your settings_user.yml — conan 2.0.17 documentation - + @@ -369,7 +369,7 @@

Use your new settings

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/cross_build.html b/2.0/examples/cross_build.html index 4be3b49c67d..42ba843e743 100644 --- a/2.0/examples/cross_build.html +++ b/2.0/examples/cross_build.html @@ -5,7 +5,7 @@ Cross-building examples — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/cross_build/android/android_studio.html b/2.0/examples/cross_build/android/android_studio.html index 38231143b57..9e54a257c0a 100644 --- a/2.0/examples/cross_build/android/android_studio.html +++ b/2.0/examples/cross_build/android/android_studio.html @@ -5,7 +5,7 @@ Integrating Conan in Android Studio — conan 2.0.17 documentation - + @@ -368,7 +368,7 @@

Building the application

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/cross_build/android/ndk.html b/2.0/examples/cross_build/android/ndk.html index 6eb74f5ce3b..dcaca32d5f8 100644 --- a/2.0/examples/cross_build/android/ndk.html +++ b/2.0/examples/cross_build/android/ndk.html @@ -5,7 +5,7 @@ Cross building to Android with the NDK — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

Read more

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/dev_flow.html b/2.0/examples/dev_flow.html index 8e0187fbe24..8ed6f8b5225 100644 --- a/2.0/examples/dev_flow.html +++ b/2.0/examples/dev_flow.html @@ -5,7 +5,7 @@ Developer tools and flows — conan 2.0.17 documentation - + @@ -143,7 +143,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/dev_flow/debug/step_into_dependencies.html b/2.0/examples/dev_flow/debug/step_into_dependencies.html index 02b40c7b93e..39d50c0e40e 100644 --- a/2.0/examples/dev_flow/debug/step_into_dependencies.html +++ b/2.0/examples/dev_flow/debug/step_into_dependencies.html @@ -5,7 +5,7 @@ Debugging and stepping into dependencies — conan 2.0.17 documentation - + @@ -201,7 +201,7 @@

Step into a dependency with Visual Studio

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions.html b/2.0/examples/extensions.html index 9461fe333ea..b921b7f9911 100644 --- a/2.0/examples/extensions.html +++ b/2.0/examples/extensions.html @@ -5,7 +5,7 @@ Conan extensions examples — conan 2.0.17 documentation - + @@ -157,7 +157,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/commands/clean/custom_command_clean_revisions.html b/2.0/examples/extensions/commands/clean/custom_command_clean_revisions.html index bc472a40d66..b0d22e4a2ac 100644 --- a/2.0/examples/extensions/commands/clean/custom_command_clean_revisions.html +++ b/2.0/examples/extensions/commands/clean/custom_command_clean_revisions.html @@ -5,7 +5,7 @@ Custom command: Clean old recipe and package revisions — conan 2.0.17 documentation - + @@ -338,7 +338,7 @@

Conan public API

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/commands/custom_commands.html b/2.0/examples/extensions/commands/custom_commands.html index 4377e399588..a90f273b46c 100644 --- a/2.0/examples/extensions/commands/custom_commands.html +++ b/2.0/examples/extensions/commands/custom_commands.html @@ -5,7 +5,7 @@ Custom commands — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/deployers/builtin_deployers.html b/2.0/examples/extensions/deployers/builtin_deployers.html index 852ae68e790..bee636ac203 100644 --- a/2.0/examples/extensions/deployers/builtin_deployers.html +++ b/2.0/examples/extensions/deployers/builtin_deployers.html @@ -5,7 +5,7 @@ Builtin deployers — conan 2.0.17 documentation - + @@ -145,7 +145,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/deployers/custom_deployers.html b/2.0/examples/extensions/deployers/custom_deployers.html index 9e5f9319e1a..d63574be55b 100644 --- a/2.0/examples/extensions/deployers/custom_deployers.html +++ b/2.0/examples/extensions/deployers/custom_deployers.html @@ -5,7 +5,7 @@ Custom deployers — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/deployers/dev/development_deploy.html b/2.0/examples/extensions/deployers/dev/development_deploy.html index be231046568..19f88f8a42d 100644 --- a/2.0/examples/extensions/deployers/dev/development_deploy.html +++ b/2.0/examples/extensions/deployers/dev/development_deploy.html @@ -5,7 +5,7 @@ Creating a Conan-agnostic deploy of dependencies for developer use — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/extensions/deployers/sources/custom_deployer_sources.html b/2.0/examples/extensions/deployers/sources/custom_deployer_sources.html index 3f9d9f59d4b..a4849034c36 100644 --- a/2.0/examples/extensions/deployers/sources/custom_deployer_sources.html +++ b/2.0/examples/extensions/deployers/sources/custom_deployer_sources.html @@ -5,7 +5,7 @@ Copy sources from all your dependencies — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

deploy()

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph.html b/2.0/examples/graph.html index 2bd056478b4..cc076a51696 100644 --- a/2.0/examples/graph.html +++ b/2.0/examples/graph.html @@ -5,7 +5,7 @@ Graph examples — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph/requires/consume_cmake_macro.html b/2.0/examples/graph/requires/consume_cmake_macro.html index 63ff9fe6cf2..f4d4c0f3f2c 100644 --- a/2.0/examples/graph/requires/consume_cmake_macro.html +++ b/2.0/examples/graph/requires/consume_cmake_macro.html @@ -5,7 +5,7 @@ Use a CMake macro packaged in a dependency — conan 2.0.17 documentation - + @@ -210,7 +210,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph/tool_requires/different_options.html b/2.0/examples/graph/tool_requires/different_options.html index 0c70ff12044..77c78f31049 100644 --- a/2.0/examples/graph/tool_requires/different_options.html +++ b/2.0/examples/graph/tool_requires/different_options.html @@ -5,7 +5,7 @@ Depending on same version of a tool-require with different options — conan 2.0.17 documentation - + @@ -233,7 +233,7 @@

Depending on same version of a tool-require with different options

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph/tool_requires/different_versions.html b/2.0/examples/graph/tool_requires/different_versions.html index 04b9d499fc6..271d779af86 100644 --- a/2.0/examples/graph/tool_requires/different_versions.html +++ b/2.0/examples/graph/tool_requires/different_versions.html @@ -5,7 +5,7 @@ Depending on different versions of the same tool-require — conan 2.0.17 documentation - + @@ -231,7 +231,7 @@

Depending on different versions of the same tool-require

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph/tool_requires/use_cmake_modules.html b/2.0/examples/graph/tool_requires/use_cmake_modules.html index 6d7badb1292..44434ab6cc9 100644 --- a/2.0/examples/graph/tool_requires/use_cmake_modules.html +++ b/2.0/examples/graph/tool_requires/use_cmake_modules.html @@ -5,7 +5,7 @@ Use cmake modules inside a tool_requires transparently — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

Use cmake modules inside a

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/graph/tool_requires/using_protobuf.html b/2.0/examples/graph/tool_requires/using_protobuf.html index 43bf5b3ac5a..82e0fb9b4b9 100644 --- a/2.0/examples/graph/tool_requires/using_protobuf.html +++ b/2.0/examples/graph/tool_requires/using_protobuf.html @@ -5,7 +5,7 @@ Using the same requirement as a requires and as a tool_requires — conan 2.0.17 documentation - + @@ -360,7 +360,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools.html b/2.0/examples/tools.html index d8d608505c4..6fdee6a37e3 100644 --- a/2.0/examples/tools.html +++ b/2.0/examples/tools.html @@ -5,7 +5,7 @@ Conan recipe tools examples — conan 2.0.17 documentation - + @@ -169,7 +169,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/autotools/autotools.html b/2.0/examples/tools/autotools/autotools.html index 8d3a675e815..a3ed741972b 100644 --- a/2.0/examples/tools/autotools/autotools.html +++ b/2.0/examples/tools/autotools/autotools.html @@ -5,7 +5,7 @@ tools.autotools — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html b/2.0/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html index 939d929352d..d14afd83eb3 100644 --- a/2.0/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html +++ b/2.0/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html @@ -5,7 +5,7 @@ Build a simple Autotools project using Conan — conan 2.0.17 documentation - + @@ -289,7 +289,7 @@

Building on Linux and macOS

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/cmake/cmake.html b/2.0/examples/tools/cmake/cmake.html index 2b8708483d5..717c0bf5b7c 100644 --- a/2.0/examples/tools/cmake/cmake.html +++ b/2.0/examples/tools/cmake/cmake.html @@ -5,7 +5,7 @@ tools.cmake — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html b/2.0/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html index 85593d6f7b4..2207869c21b 100644 --- a/2.0/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html +++ b/2.0/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html @@ -5,7 +5,7 @@ CMakeToolchain: Building your project using CMakePresets — conan 2.0.17 documentation - + @@ -220,7 +220,7 @@

Building the project using

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html b/2.0/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html index b3bdd95c395..ca0cab7a4fa 100644 --- a/2.0/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html +++ b/2.0/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html @@ -5,7 +5,7 @@ CMakeToolchain: Extending your CMakePresets with Conan generated ones — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html b/2.0/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html index 086d904fd0f..07459f43ac8 100644 --- a/2.0/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html +++ b/2.0/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html @@ -5,7 +5,7 @@ CMakeToolchain: Inject arbitrary CMake variables into dependencies — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/files/files.html b/2.0/examples/tools/files/files.html index 83572474700..c6f6f344d13 100644 --- a/2.0/examples/tools/files/files.html +++ b/2.0/examples/tools/files/files.html @@ -5,7 +5,7 @@ tools.files — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/files/patches/patch_sources.html b/2.0/examples/tools/files/patches/patch_sources.html index d3d3bc5d2a5..8772634e94b 100644 --- a/2.0/examples/tools/files/patches/patch_sources.html +++ b/2.0/examples/tools/files/patches/patch_sources.html @@ -5,7 +5,7 @@ Patching sources — conan 2.0.17 documentation - + @@ -348,7 +348,7 @@

Patching using “apply_conandata_patches” tool

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/google/bazel.html b/2.0/examples/tools/google/bazel.html index d7101747f01..6bf87b2ddc7 100644 --- a/2.0/examples/tools/google/bazel.html +++ b/2.0/examples/tools/google/bazel.html @@ -5,7 +5,7 @@ tools.google — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html b/2.0/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html index bd130a4b61d..fcd0f8e13d4 100644 --- a/2.0/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html +++ b/2.0/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html @@ -5,7 +5,7 @@ Build a simple Bazel project using Conan — conan 2.0.17 documentation - + @@ -259,7 +259,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/meson/meson.html b/2.0/examples/tools/meson/meson.html index 9bc09368726..fb11fecf41a 100644 --- a/2.0/examples/tools/meson/meson.html +++ b/2.0/examples/tools/meson/meson.html @@ -5,7 +5,7 @@ tools.meson — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/meson/mesontoolchain/build_simple_meson_project.html b/2.0/examples/tools/meson/mesontoolchain/build_simple_meson_project.html index 2fb66e7d15d..4b3993e8bc6 100644 --- a/2.0/examples/tools/meson/mesontoolchain/build_simple_meson_project.html +++ b/2.0/examples/tools/meson/mesontoolchain/build_simple_meson_project.html @@ -5,7 +5,7 @@ Build a simple Meson project using Conan — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/examples/tools/scm/git/capture_scm/git_capture_scm.html b/2.0/examples/tools/scm/git/capture_scm/git_capture_scm.html index 68ed73774e5..80ef4fe9637 100644 --- a/2.0/examples/tools/scm/git/capture_scm/git_capture_scm.html +++ b/2.0/examples/tools/scm/git/capture_scm/git_capture_scm.html @@ -5,7 +5,7 @@ Capturing Git scm information — conan 2.0.17 documentation - + @@ -288,7 +288,7 @@

Credentials management

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/genindex.html b/2.0/genindex.html index 88b919e8588..b463f99a299 100644 --- a/2.0/genindex.html +++ b/2.0/genindex.html @@ -4,7 +4,7 @@ Index — conan 2.0.17 documentation - + @@ -926,7 +926,7 @@

Z

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/index.html b/2.0/index.html index ed58a9f2cb5..3fd27345d1d 100644 --- a/2.0/index.html +++ b/2.0/index.html @@ -5,7 +5,7 @@ Conan 2.0 - C and C++ Package Manager Documentation — conan 2.0.17 documentation - + @@ -192,7 +192,7 @@

Conan 2.0 - C and C++ Package Manager Documentation

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/installation.html b/2.0/installation.html index 79835c25653..ac411c020a1 100644 --- a/2.0/installation.html +++ b/2.0/installation.html @@ -5,7 +5,7 @@ Install — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

Install from source

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations.html b/2.0/integrations.html index 3108abdc3ef..9f3ef02480c 100644 --- a/2.0/integrations.html +++ b/2.0/integrations.html @@ -5,7 +5,7 @@ Integrations — conan 2.0.17 documentation - + @@ -168,7 +168,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/android.html b/2.0/integrations/android.html index d3bdc07e92f..383dcb37308 100644 --- a/2.0/integrations/android.html +++ b/2.0/integrations/android.html @@ -5,7 +5,7 @@ Android — conan 2.0.17 documentation - + @@ -140,7 +140,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/autotools.html b/2.0/integrations/autotools.html index 41e7851b9a9..dae92c00bac 100644 --- a/2.0/integrations/autotools.html +++ b/2.0/integrations/autotools.html @@ -5,7 +5,7 @@ Autotools — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/bazel.html b/2.0/integrations/bazel.html index c069da44be4..c1791ac97ea 100644 --- a/2.0/integrations/bazel.html +++ b/2.0/integrations/bazel.html @@ -5,7 +5,7 @@ Bazel — conan 2.0.17 documentation - + @@ -152,7 +152,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/clion.html b/2.0/integrations/clion.html index 5ace898c336..eae88bcbb35 100644 --- a/2.0/integrations/clion.html +++ b/2.0/integrations/clion.html @@ -5,7 +5,7 @@ CLion — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

Using the plugin

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/cmake.html b/2.0/integrations/cmake.html index 68145237868..6c741f2e58a 100644 --- a/2.0/integrations/cmake.html +++ b/2.0/integrations/cmake.html @@ -5,7 +5,7 @@ CMake — conan 2.0.17 documentation - + @@ -158,7 +158,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/jfrog.html b/2.0/integrations/jfrog.html index 03d3feede43..37089e0a27b 100644 --- a/2.0/integrations/jfrog.html +++ b/2.0/integrations/jfrog.html @@ -5,7 +5,7 @@ JFrog — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

Generating a Build Info

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/makefile.html b/2.0/integrations/makefile.html index 51880259155..5010ae1eea0 100644 --- a/2.0/integrations/makefile.html +++ b/2.0/integrations/makefile.html @@ -5,7 +5,7 @@ Makefile — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/meson.html b/2.0/integrations/meson.html index 93d01424a4f..3b83aad6a81 100644 --- a/2.0/integrations/meson.html +++ b/2.0/integrations/meson.html @@ -5,7 +5,7 @@ Meson — conan 2.0.17 documentation - + @@ -152,7 +152,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/visual_studio.html b/2.0/integrations/visual_studio.html index eae565b0e49..5ffce0a0238 100644 --- a/2.0/integrations/visual_studio.html +++ b/2.0/integrations/visual_studio.html @@ -5,7 +5,7 @@ Visual Studio — conan 2.0.17 documentation - + @@ -161,7 +161,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/integrations/xcode.html b/2.0/integrations/xcode.html index 889698aeacc..c6a5564f399 100644 --- a/2.0/integrations/xcode.html +++ b/2.0/integrations/xcode.html @@ -5,7 +5,7 @@ Xcode — conan 2.0.17 documentation - + @@ -155,7 +155,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/introduction.html b/2.0/introduction.html index 65e6607d3f6..91c2bd6dfd9 100644 --- a/2.0/introduction.html +++ b/2.0/introduction.html @@ -5,7 +5,7 @@ Introduction — conan 2.0.17 documentation - + @@ -219,7 +219,7 @@

Navigating the documentation

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/knowledge.html b/2.0/knowledge.html index d7e025fd43a..70e8eca2ef4 100644 --- a/2.0/knowledge.html +++ b/2.0/knowledge.html @@ -5,7 +5,7 @@ Knowledge — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/knowledge/cheatsheet.html b/2.0/knowledge/cheatsheet.html index 9d002d3c3d7..a22cff0dc7f 100644 --- a/2.0/knowledge/cheatsheet.html +++ b/2.0/knowledge/cheatsheet.html @@ -5,7 +5,7 @@ Cheat sheet — conan 2.0.17 documentation - + @@ -138,7 +138,7 @@

Cheat sheet

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/knowledge/faq.html b/2.0/knowledge/faq.html index 9a74e00cacc..734053693d1 100644 --- a/2.0/knowledge/faq.html +++ b/2.0/knowledge/faq.html @@ -5,7 +5,7 @@ FAQ — conan 2.0.17 documentation - + @@ -224,7 +224,7 @@

ERROR: AuthenticationException:

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/knowledge/guidelines.html b/2.0/knowledge/guidelines.html index 4db62745e6e..e47bc3f3b4f 100644 --- a/2.0/knowledge/guidelines.html +++ b/2.0/knowledge/guidelines.html @@ -5,7 +5,7 @@ Core guidelines — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

Forbidden practices

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/knowledge/videos.html b/2.0/knowledge/videos.html index 8e8be58068a..1736477f04d 100644 --- a/2.0/knowledge/videos.html +++ b/2.0/knowledge/videos.html @@ -5,7 +5,7 @@ Videos — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference.html b/2.0/reference.html index 5405273ef8d..def0c97a5bb 100644 --- a/2.0/reference.html +++ b/2.0/reference.html @@ -5,7 +5,7 @@ Reference — conan 2.0.17 documentation - + @@ -197,7 +197,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/binary_model.html b/2.0/reference/binary_model.html index 70a6598ccae..5ff9c536c53 100644 --- a/2.0/reference/binary_model.html +++ b/2.0/reference/binary_model.html @@ -5,7 +5,7 @@ The binary model — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/binary_model/custom_compatibility.html b/2.0/reference/binary_model/custom_compatibility.html index 88a01364a8c..b6485f0736d 100644 --- a/2.0/reference/binary_model/custom_compatibility.html +++ b/2.0/reference/binary_model/custom_compatibility.html @@ -5,7 +5,7 @@ Customizing the binary compatibility — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

Custom package_id from recipe dependencies

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/binary_model/dependencies.html b/2.0/reference/binary_model/dependencies.html index 2635bfc488d..84229d36cc5 100644 --- a/2.0/reference/binary_model/dependencies.html +++ b/2.0/reference/binary_model/dependencies.html @@ -5,7 +5,7 @@ The effect of dependencies on package_id — conan 2.0.17 documentation - + @@ -259,7 +259,7 @@

Embed mode

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/binary_model/extending.html b/2.0/reference/binary_model/extending.html index 41c1b7ac8eb..ed5f3909d04 100644 --- a/2.0/reference/binary_model/extending.html +++ b/2.0/reference/binary_model/extending.html @@ -5,7 +5,7 @@ Extending the binary model — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

Cross build target settings

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/binary_model/package_id.html b/2.0/reference/binary_model/package_id.html index 42cc5c121a0..3a954155394 100644 --- a/2.0/reference/binary_model/package_id.html +++ b/2.0/reference/binary_model/package_id.html @@ -5,7 +5,7 @@ How the package_id is computed — conan 2.0.17 documentation - + @@ -223,7 +223,7 @@

How the package

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands.html b/2.0/reference/commands.html index aba6d93f830..358cf0cf4a7 100644 --- a/2.0/reference/commands.html +++ b/2.0/reference/commands.html @@ -5,7 +5,7 @@ Commands — conan 2.0.17 documentation - + @@ -204,7 +204,7 @@

Command formatters

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/build.html b/2.0/reference/commands/build.html index 757ad1ab980..bbd7547e2c5 100644 --- a/2.0/reference/commands/build.html +++ b/2.0/reference/commands/build.html @@ -5,7 +5,7 @@ conan build — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan build

-
$ conan build -h
+
$ conan build -h
 usage: conan build [-h] [-v [V]] [--name NAME] [--version VERSION]
                    [--user USER] [--channel CHANNEL] [-g GENERATOR]
                    [-of OUTPUT_FOLDER] [-d DEPLOYER]
@@ -289,7 +289,7 @@
 
   

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/cache.html b/2.0/reference/commands/cache.html index 49f0a05d8a2..43000083d6f 100644 --- a/2.0/reference/commands/cache.html +++ b/2.0/reference/commands/cache.html @@ -5,7 +5,7 @@ conan cache — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

Perform file operations in the local cache (of recipes and/or packages).

conan cache path

-
$ conan cache path -h
+
$ conan cache path -h
 usage: conan cache path [-h] [-v [V]]
                         [--folder {export_source,source,build,metadata}]
                         reference
@@ -272,7 +272,7 @@ 

conan cache path

conan cache clean

-
$ conan cache clean -h
+
$ conan cache clean -h
 usage: conan cache clean [-h] [-v [V]] [-s] [-b] [-d] [-t] [-p PACKAGE_QUERY]
                          [pattern]
 
@@ -326,7 +326,7 @@ 

conan cache clean

conan cache check-integrity

-
$ conan cache check-integrity -h
+
$ conan cache check-integrity -h
 usage: conan cache check-integrity [-h] [-v [V]] [-p PACKAGE_QUERY] pattern
 
 Check the integrity of the local cache for the given references
@@ -361,7 +361,7 @@ 

conan cache check-integrity

conan cache backup-upload

-
$ conan cache backup-upload -h
+
$ conan cache backup-upload -h
 usage: conan cache backup-upload [-h] [-v [V]]
 
 Upload all the source backups present in the cache
@@ -379,7 +379,7 @@ 

conan cache backup-upload

conan cache save

-
$ conan cache save -h
+
$ conan cache save -h
 usage: conan cache save [-h] [-f FORMAT] [-v [V]] [-l LIST] [--file FILE]
                         [pattern]
 
@@ -407,7 +407,7 @@ 

conan cache save

conan cache restore

-
$ conan cache restore -h
+
$ conan cache restore -h
 usage: conan cache restore [-h] [-f FORMAT] [-v [V]] file
 
 Put the artifacts from an archive into the cache
@@ -441,7 +441,7 @@ 

conan cache restore

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/config.html b/2.0/reference/commands/config.html index 1c68711a31f..2d577006fe0 100644 --- a/2.0/reference/commands/config.html +++ b/2.0/reference/commands/config.html @@ -5,7 +5,7 @@ conan config — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

conan config

conan config home

-
$ conan config home -h
+
$ conan config home -h
 usage: conan config home [-h] [-v [V]]
 
 Show the Conan home folder.
@@ -168,7 +168,7 @@ 

conan config home

conan config install

-
$ conan config install -h
+
$ conan config install -h
 usage: conan config install [-h] [-v [V]] [--verify-ssl [VERIFY_SSL] |
                             --insecure] [-t {git,dir,file,url}] [-a ARGS]
                             [-sf SOURCE_FOLDER] [-tf TARGET_FOLDER]
@@ -275,7 +275,7 @@ 

conan config home

conan config list

-
$ conan config list -h
+
$ conan config list -h
 usage: conan config list [-h] [-f FORMAT] [-v [V]]
 
 Show all the Conan available configurations: core and tools.
@@ -296,7 +296,7 @@ 

conan config listtools.xxxx: These can be defined both in global.conf and profiles, and will be used by recipes and tools used within recipes, like CMakeToolchain

-
$ conan config list
+
$ conan config list
 core.cache:storage_path: Absolute path where the packages and database are stored
 core.download:download_cache: Define path to a file download cache
 core.download:parallel: Number of concurrent threads to download packages
@@ -402,7 +402,7 @@ 

conan config list

conan config show

-
$ conan config show -h
+
$ conan config show -h
 usage: conan config show [-h] [-f FORMAT] [-v [V]] pattern
 
 Get the value of the specified conf
@@ -475,7 +475,7 @@ 

conan config show

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/create.html b/2.0/reference/commands/create.html index 838773be302..22744f480c5 100644 --- a/2.0/reference/commands/create.html +++ b/2.0/reference/commands/create.html @@ -5,7 +5,7 @@ conan create — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan create

-
$ conan create -h
+
$ conan create -h
 usage: conan create [-h] [-v [V]] [-f FORMAT] [--name NAME]
                     [--version VERSION] [--user USER] [--channel CHANNEL]
                     [-l LOCKFILE] [--lockfile-partial]
@@ -326,7 +326,7 @@ 

Conan create output

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/download.html b/2.0/reference/commands/download.html index 9d0ccc1bdc7..190ccc40d1e 100644 --- a/2.0/reference/commands/download.html +++ b/2.0/reference/commands/download.html @@ -5,7 +5,7 @@ conan download — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan download

-
$ conan download -h
+
$ conan download -h
 usage: conan download [-h] [-v [V]] [-f FORMAT] [--only-recipe]
                       [-p PACKAGE_QUERY] -r REMOTE [-m METADATA] [-l LIST]
                       [pattern]
@@ -248,7 +248,7 @@ 

Downloading metadata

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/editable.html b/2.0/reference/commands/editable.html index 2f3e2161d62..275ca1d726c 100644 --- a/2.0/reference/commands/editable.html +++ b/2.0/reference/commands/editable.html @@ -5,7 +5,7 @@ conan editable — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

Allow working with a package that resides in user folder.

conan editable add

-
$ conan editable add -h
+
$ conan editable add -h
 usage: conan editable add [-h] [-v [V]] [--name NAME] [--version VERSION]
                           [--user USER] [--channel CHANNEL]
                           [-of OUTPUT_FOLDER] [-r REMOTE | -nr]
@@ -181,7 +181,7 @@ 

conan editable add

conan editable remove

-
$ conan editable remove -h
+
$ conan editable remove -h
 usage: conan editable remove [-h] [-v [V]] [-r REFS] [path]
 
 Remove the "editable" mode for this reference.
@@ -203,7 +203,7 @@ 

conan editable remove

conan editable list

-
$ conan editable list -h
+
$ conan editable list -h
 usage: conan editable list [-h] [-f FORMAT] [-v [V]]
 
 List all the packages in editable mode.
@@ -239,7 +239,7 @@ 

conan editable list

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/export-pkg.html b/2.0/reference/commands/export-pkg.html index 27104ceed84..42171be81eb 100644 --- a/2.0/reference/commands/export-pkg.html +++ b/2.0/reference/commands/export-pkg.html @@ -5,7 +5,7 @@ conan export-pkg — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan export-pkg

-
$ conan export-pkg -h
+
$ conan export-pkg -h
 usage: conan export-pkg [-h] [-v [V]] [-f FORMAT] [-of OUTPUT_FOLDER]
                         [--build-require] [-tf TEST_FOLDER] [-sb]
                         [-r REMOTE | -nr] [--name NAME] [--version VERSION]
@@ -263,7 +263,7 @@
 
   

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/export.html b/2.0/reference/commands/export.html index 5b5f1329293..7d9f398c47d 100644 --- a/2.0/reference/commands/export.html +++ b/2.0/reference/commands/export.html @@ -5,7 +5,7 @@ conan export — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan export

-
$ conan export -h
+
 
diff --git a/2.0/reference/commands/graph/build_order.html b/2.0/reference/commands/graph/build_order.html
index d768a9a2176..e19ed7f2f1e 100644
--- a/2.0/reference/commands/graph/build_order.html
+++ b/2.0/reference/commands/graph/build_order.html
@@ -5,7 +5,7 @@
 
   
   conan graph build-order — conan 2.0.17 documentation
-      
+      
       
       
       
@@ -151,7 +151,7 @@
              
   

conan graph build-order

-
$ conan graph build-order -h
+
$ conan graph build-order -h
 usage: conan graph build-order [-h] [-f FORMAT] [-v [V]] [--name NAME]
                                [--version VERSION] [--user USER]
                                [--channel CHANNEL] [--requires REQUIRES]
@@ -380,7 +380,7 @@ 

conan graph build-order

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/graph/build_order_merge.html b/2.0/reference/commands/graph/build_order_merge.html index 9ee038f1f90..458a572abda 100644 --- a/2.0/reference/commands/graph/build_order_merge.html +++ b/2.0/reference/commands/graph/build_order_merge.html @@ -5,7 +5,7 @@ conan graph build-order-merge — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

conan graph build-order-merge

-
$ conan graph build-order-merge -h
+
$ conan graph build-order-merge -h
 usage: conan graph build-order-merge [-h] [-f FORMAT] [-v [V]] [--file [FILE]]
 
 Merge more than 1 build-order file.
@@ -181,7 +181,7 @@ 

conan graph build-order-merge

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/graph/explain.html b/2.0/reference/commands/graph/explain.html index 8c7938a7847..b9db4392727 100644 --- a/2.0/reference/commands/graph/explain.html +++ b/2.0/reference/commands/graph/explain.html @@ -5,7 +5,7 @@ conan graph explain — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

conan graph explain

-
$ conan graph explain -h
+
$ conan graph explain -h
 usage: conan graph explain [-h] [-f FORMAT] [-v [V]] [--name NAME]
                            [--version VERSION] [--user USER]
                            [--channel CHANNEL] [--requires REQUIRES]
@@ -360,7 +360,7 @@
 
   

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/graph/info.html b/2.0/reference/commands/graph/info.html index b95f3b73fb6..c5750165b07 100644 --- a/2.0/reference/commands/graph/info.html +++ b/2.0/reference/commands/graph/info.html @@ -5,7 +5,7 @@ conan graph info — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

conan graph info

-
$ conan graph info -h
+
$ conan graph info -h
 usage: conan graph info [-h] [-f FORMAT] [-v [V]] [--name NAME]
                         [--version VERSION] [--user USER] [--channel CHANNEL]
                         [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
@@ -549,7 +549,7 @@
 
   

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/inspect.html b/2.0/reference/commands/inspect.html index 55e1a5064c7..5753d5ac2e3 100644 --- a/2.0/reference/commands/inspect.html +++ b/2.0/reference/commands/inspect.html @@ -5,7 +5,7 @@ conan inspect — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

This feature is experimental and subject to breaking changes. See the Conan stability section for more information.

-
$ conan inspect -h
+
$ conan inspect -h
 usage: conan inspect [-h] [-v [V]] [-f FORMAT] [-r REMOTE | -nr] [-l LOCKFILE]
                      [--lockfile-partial]
                      path
@@ -324,7 +324,7 @@
 
   

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/install.html b/2.0/reference/commands/install.html index 0988be2601e..b0eafc4ab66 100644 --- a/2.0/reference/commands/install.html +++ b/2.0/reference/commands/install.html @@ -5,7 +5,7 @@ conan install — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan install

-
$ conan install -h
+
$ conan install -h
 usage: conan install [-h] [-v [V]] [-f FORMAT] [--name NAME]
                      [--version VERSION] [--user USER] [--channel CHANNEL]
                      [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
@@ -457,7 +457,7 @@ 

Lockfiles

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/list.html b/2.0/reference/commands/list.html index e3abe2309e2..49660522de4 100644 --- a/2.0/reference/commands/list.html +++ b/2.0/reference/commands/list.html @@ -5,7 +5,7 @@ conan list — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

conan list

-
$ conan list -h
+
$ conan list -h
 usage: conan list [-h] [-v [V]] [-f FORMAT] [-p PACKAGE_QUERY] [-r REMOTE]
                   [-c] [-g GRAPH] [-gb GRAPH_BINARIES] [-gr GRAPH_RECIPES]
                   [--lru LRU]
@@ -573,7 +573,7 @@ 

List compact output format

© Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

diff --git a/2.0/reference/commands/lock.html b/2.0/reference/commands/lock.html index bb27c415dd5..3a48bf09643 100644 --- a/2.0/reference/commands/lock.html +++ b/2.0/reference/commands/lock.html @@ -5,7 +5,7 @@ conan lock — conan 2.0.17 documentation - + @@ -161,7 +161,7 @@

conan lockconan lock create: Evaluates a dependency graph and save a lockfile

  • conan lock merge: Merge several existing lockfiles into one.

  • -
    $ conan lock -h
    +
    $ conan lock -h
     usage: conan lock [-h] [-v [V]] {add,create,merge,remove} ...
     
     Create or manage lockfiles.
    @@ -205,7 +205,7 @@ 

    conan lock

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/lock/add.html b/2.0/reference/commands/lock/add.html index f53ff8e8471..1ab2dfdaf7a 100644 --- a/2.0/reference/commands/lock/add.html +++ b/2.0/reference/commands/lock/add.html @@ -5,7 +5,7 @@ conan lock add — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock add

    -
    $ conan lock add -h
    +
    $ conan lock add -h
     usage: conan lock add [-h] [-v [V]] [--requires REQUIRES]
                           [--build-requires BUILD_REQUIRES]
                           [--python-requires PYTHON_REQUIRES]
    @@ -268,7 +268,7 @@ 

    conan lock add

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/lock/create.html b/2.0/reference/commands/lock/create.html index e00b0c2137e..9fb847a2ff1 100644 --- a/2.0/reference/commands/lock/create.html +++ b/2.0/reference/commands/lock/create.html @@ -5,7 +5,7 @@ conan lock create — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock create

    -
    $ conan lock create -h
    +
    $ conan lock create -h
     usage: conan lock create [-h] [-v [V]] [--name NAME] [--version VERSION]
                              [--user USER] [--channel CHANNEL]
                              [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
    @@ -372,7 +372,7 @@ 

    conan lock create

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/lock/merge.html b/2.0/reference/commands/lock/merge.html index 1631892dbb5..425a8adda9a 100644 --- a/2.0/reference/commands/lock/merge.html +++ b/2.0/reference/commands/lock/merge.html @@ -5,7 +5,7 @@ conan lock merge — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock merge

    -
    $ conan lock merge -h
    +
    $ conan lock merge -h
     usage: conan lock merge [-h] [-v [V]] [--lockfile LOCKFILE]
                             [--lockfile-out LOCKFILE_OUT]
     
    @@ -308,7 +308,7 @@ 

    conan lock merge

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/lock/remove.html b/2.0/reference/commands/lock/remove.html index f2cdcd58f49..2033c42f6b8 100644 --- a/2.0/reference/commands/lock/remove.html +++ b/2.0/reference/commands/lock/remove.html @@ -5,7 +5,7 @@ conan lock remove — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock remove

    -
    $ conan lock remove -h
    +
    $ conan lock remove -h
     usage: conan lock remove [-h] [-v [V]] [--requires REQUIRES]
                              [--build-requires BUILD_REQUIRES]
                              [--python-requires PYTHON_REQUIRES]
    @@ -244,7 +244,7 @@ 

    conan lock remove

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/new.html b/2.0/reference/commands/new.html index eda3008f7d4..9b178a1de37 100644 --- a/2.0/reference/commands/new.html +++ b/2.0/reference/commands/new.html @@ -5,7 +5,7 @@ conan new — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Create a new recipe (with a conanfile.py and other associated files) from either a predefined or a user-defined template.

    conan new

    -
    $ conan new -h
    +
    $ conan new -h
     usage: conan new [-h] [-v [V]] [-d DEFINE] [-f] template
     
     Create a new example recipe and source files from a template.
    @@ -352,7 +352,7 @@ 

    Custom templates

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/profile.html b/2.0/reference/commands/profile.html index 1bb9d370273..a25e22a50c8 100644 --- a/2.0/reference/commands/profile.html +++ b/2.0/reference/commands/profile.html @@ -5,7 +5,7 @@ conan profile — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Manage profiles

    conan profile detect

    -
    $ conan profile detect -h
    +
    $ conan profile detect -h
     usage: conan profile detect [-h] [-v [V]] [--name NAME] [-f]
     
     Generate a profile using auto-detected values.
    @@ -214,7 +214,7 @@ 

    conan profile detect

    conan profile list

    -
    $ conan profile list -h
    +
    $ conan profile list -h
     usage: conan profile list [-h] [-f FORMAT] [-v [V]]
     
     List all profiles in the cache.
    @@ -243,7 +243,7 @@ 

    conan profile list

    conan profile path

    -
    $ conan
    +
    $ conan
     
     Consumer commands
     cache      Perform file operations in the local cache (of recipes and/or packages).
    @@ -283,7 +283,7 @@ 

    conan profile path

    conan profile show

    -
    $ conan profile show -h
    +
    $ conan profile show -h
     usage: conan profile show [-h] [-f FORMAT] [-v [V]] [-pr PROFILE]
                               [-pr:b PROFILE_BUILD] [-pr:h PROFILE_HOST]
                               [-pr:a PROFILE_ALL] [-o OPTIONS]
    @@ -448,7 +448,7 @@ 

    conan profile show

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/remote.html b/2.0/reference/commands/remote.html index 69b417e3487..0f6d2bbd38c 100644 --- a/2.0/reference/commands/remote.html +++ b/2.0/reference/commands/remote.html @@ -5,7 +5,7 @@ conan remote — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Use this command to add, edit and remove Conan repositories from the Conan remote registry and also manage authentication to those remotes. For more information on how to work with Conan repositories, please check the dedicated section.

    -
    $ conan remote -h
    +
    $ conan remote -h
     usage: conan remote [-h] [-v [V]]
                         {add,auth,disable,enable,list,list-users,login,logout,remove,rename,set-user,update}
                         ...
    @@ -182,7 +182,7 @@
     

    conan remote add

    -
    $ conan remote add -h
    +
    $ conan remote add -h
     usage: conan remote add [-h] [-v [V]] [--insecure] [--index INDEX] [-f]
                             name url
     
    @@ -206,7 +206,7 @@ 

    conan remote add

    conan remote auth

    -
    $ conan remote auth -h
    +
    $ conan remote auth -h
     usage: conan remote auth [-h] [-f FORMAT] [-v [V]] [--with-user] remote
     
     Authenticate in the defined remotes
    @@ -230,7 +230,7 @@ 

    conan remote auth

    conan remote disable

    -
    $ conan remote disable -h
    +
    $ conan remote disable -h
     usage: conan remote disable [-h] [-f FORMAT] [-v [V]] remote
     
     Disable all the remotes matching a pattern.
    @@ -252,7 +252,7 @@ 

    conan remote disable

    conan remote enable

    -
    $ conan remote enable -h
    +
    $ conan remote enable -h
     usage: conan remote enable [-h] [-f FORMAT] [-v [V]] remote
     
     Enable all the remotes matching a pattern.
    @@ -274,7 +274,7 @@ 

    conan remote enable

    conan remote list

    -
    $ conan remote list -h
    +
    $ conan remote list -h
     usage: conan remote list [-h] [-f FORMAT] [-v [V]]
     
     List current remotes.
    @@ -292,7 +292,7 @@ 

    conan remote list

    conan remote list-users

    -
    $ conan remote list-users -h
    +
    $ conan remote list-users -h
     usage: conan remote list-users [-h] [-f FORMAT] [-v [V]]
     
     List the users logged into all the remotes.
    @@ -310,7 +310,7 @@ 

    conan remote list-users

    conan remote login

    -
    $ conan remote login -h
    +
    $ conan remote login -h
     usage: conan remote login [-h] [-f FORMAT] [-v [V]] [-p [PASSWORD]]
                               remote [username]
     
    @@ -338,7 +338,7 @@ 

    conan remote login

    conan remote logout

    -
    $ conan remote logout -h
    +
    $ conan remote logout -h
     usage: conan remote logout [-h] [-f FORMAT] [-v [V]] remote
     
     Clear the existing credentials for the specified remotes matching a pattern.
    @@ -360,7 +360,7 @@ 

    conan remote logout

    conan remote remove

    -
    $ conan remote remove -h
    +
    $ conan remote remove -h
     usage: conan remote remove [-h] [-v [V]] remote
     
     Remove a remote.
    @@ -378,7 +378,7 @@ 

    conan remote remove

    conan remote rename

    -
    $ conan remote rename -h
    +
    $ conan remote rename -h
     usage: conan remote rename [-h] [-v [V]] remote new_name
     
     Rename a remote.
    @@ -397,7 +397,7 @@ 

    conan remote rename

    conan remote set-user

    -
    $ conan remote set-user -h
    +
    $ conan remote set-user -h
     usage: conan remote set-user [-h] [-f FORMAT] [-v [V]] remote username
     
     Associate a username with a remote matching a pattern without performing the
    @@ -421,7 +421,7 @@ 

    conan remote set-user

    conan remote update

    -
    $ conan remote update -h
    +
    $ conan remote update -h
     usage: conan remote update [-h] [-v [V]] [--url URL] [--secure] [--insecure]
                                [--index INDEX]
                                remote
    @@ -466,7 +466,7 @@ 

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/remove.html b/2.0/reference/commands/remove.html index a20a73bbcb5..79298df0716 100644 --- a/2.0/reference/commands/remove.html +++ b/2.0/reference/commands/remove.html @@ -5,7 +5,7 @@ conan remove — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan remove

    -
    $ conan remove -h
    +
    $ conan remove -h
     usage: conan remove [-h] [-v [V]] [-f FORMAT] [-c] [-p PACKAGE_QUERY]
                         [-r REMOTE] [-l LIST] [--lru LRU] [--dry-run]
                         [pattern]
    @@ -276,7 +276,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/search.html b/2.0/reference/commands/search.html index 39527ad3375..5615e673046 100644 --- a/2.0/reference/commands/search.html +++ b/2.0/reference/commands/search.html @@ -5,7 +5,7 @@ conan search — conan 2.0.17 documentation - + @@ -146,7 +146,7 @@

    conan search

    Search existing recipes in remotes. This command is equivalent to conan list <query> -r=*, and is provided for simpler UX.

    -
    $ conan search -h
    +
    $ conan search -h
     usage: conan search [-h] [-v [V]] [-f FORMAT] [-r REMOTE] reference
     
     Search for package recipes in all the remotes (by default), or a remote.
    @@ -215,7 +215,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/source.html b/2.0/reference/commands/source.html index 59794fd82be..80b7c90ea84 100644 --- a/2.0/reference/commands/source.html +++ b/2.0/reference/commands/source.html @@ -5,7 +5,7 @@ conan source — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan source

    -
    $ conan source -h
    +
    $ conan source -h
     usage: conan source [-h] [-v [V]] [--name NAME] [--version VERSION]
                         [--user USER] [--channel CHANNEL]
                         path
    @@ -186,7 +186,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/test.html b/2.0/reference/commands/test.html index 2c525eb1649..0795a18ea37 100644 --- a/2.0/reference/commands/test.html +++ b/2.0/reference/commands/test.html @@ -5,7 +5,7 @@ conan test — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan test

    -
    $ conan test -h
    +
    $ conan test -h
     usage: conan test [-h] [-v [V]] [-f FORMAT] [-b BUILD] [-r REMOTE | -nr] [-u]
                       [-pr PROFILE] [-pr:b PROFILE_BUILD] [-pr:h PROFILE_HOST]
                       [-pr:a PROFILE_ALL] [-o OPTIONS] [-o:b OPTIONS_BUILD]
    @@ -271,7 +271,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/commands/upload.html b/2.0/reference/commands/upload.html index e60636d0e60..34ef0236338 100644 --- a/2.0/reference/commands/upload.html +++ b/2.0/reference/commands/upload.html @@ -5,7 +5,7 @@ conan upload — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Use this command to upload recipes and binaries to Conan repositories. For more information on how to work with Conan repositories, please check the dedicated section.

    -
    $ conan upload -h
    +
    -
    $ conan version -h
    +
     
    diff --git a/2.0/reference/conanfile/methods.html b/2.0/reference/conanfile/methods.html
    index bff6f80cf36..fc023392e07 100644
    --- a/2.0/reference/conanfile/methods.html
    +++ b/2.0/reference/conanfile/methods.html
    @@ -5,7 +5,7 @@
     
       
       Methods — conan 2.0.17 documentation
    -      
    +      
           
           
           
    @@ -193,7 +193,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/build.html b/2.0/reference/conanfile/methods/build.html index d499a7164a1..b39bc3bfa51 100644 --- a/2.0/reference/conanfile/methods/build.html +++ b/2.0/reference/conanfile/methods/build.html @@ -5,7 +5,7 @@ build() — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/build_id.html b/2.0/reference/conanfile/methods/build_id.html index 9802ecce54e..af0c1621a45 100644 --- a/2.0/reference/conanfile/methods/build_id.html +++ b/2.0/reference/conanfile/methods/build_id.html @@ -5,7 +5,7 @@ build_id() — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/build_requirements.html b/2.0/reference/conanfile/methods/build_requirements.html index bf8d0d738be..726e20ceca9 100644 --- a/2.0/reference/conanfile/methods/build_requirements.html +++ b/2.0/reference/conanfile/methods/build_requirements.html @@ -5,7 +5,7 @@ build_requirements() — conan 2.0.17 documentation - + @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/compatibility.html b/2.0/reference/conanfile/methods/compatibility.html index dd4ffab7ad3..511b08eb7af 100644 --- a/2.0/reference/conanfile/methods/compatibility.html +++ b/2.0/reference/conanfile/methods/compatibility.html @@ -5,7 +5,7 @@ compatibility() — conan 2.0.17 documentation - + @@ -205,7 +205,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/config_options.html b/2.0/reference/conanfile/methods/config_options.html index c5d0520afd6..aebca156b51 100644 --- a/2.0/reference/conanfile/methods/config_options.html +++ b/2.0/reference/conanfile/methods/config_options.html @@ -5,7 +5,7 @@ config_options() — conan 2.0.17 documentation - + @@ -227,7 +227,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/configure.html b/2.0/reference/conanfile/methods/configure.html index 81bd477ddc9..a79789a4fda 100644 --- a/2.0/reference/conanfile/methods/configure.html +++ b/2.0/reference/conanfile/methods/configure.html @@ -5,7 +5,7 @@ configure() — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/deploy.html b/2.0/reference/conanfile/methods/deploy.html index bb5ef88e92e..14a6789eed7 100644 --- a/2.0/reference/conanfile/methods/deploy.html +++ b/2.0/reference/conanfile/methods/deploy.html @@ -5,7 +5,7 @@ deploy() — conan 2.0.17 documentation - + @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/export.html b/2.0/reference/conanfile/methods/export.html index ca8bd5214cd..9defba926d2 100644 --- a/2.0/reference/conanfile/methods/export.html +++ b/2.0/reference/conanfile/methods/export.html @@ -5,7 +5,7 @@ export() — conan 2.0.17 documentation - + @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/export_sources.html b/2.0/reference/conanfile/methods/export_sources.html index 02f18a46663..da5fc103098 100644 --- a/2.0/reference/conanfile/methods/export_sources.html +++ b/2.0/reference/conanfile/methods/export_sources.html @@ -5,7 +5,7 @@ export_sources() — conan 2.0.17 documentation - + @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/generate.html b/2.0/reference/conanfile/methods/generate.html index 0c8b9361b3f..9bf3302f84a 100644 --- a/2.0/reference/conanfile/methods/generate.html +++ b/2.0/reference/conanfile/methods/generate.html @@ -5,7 +5,7 @@ generate() — conan 2.0.17 documentation - + @@ -395,7 +395,7 @@

    Dependencies cp

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/init.html b/2.0/reference/conanfile/methods/init.html index d3acd7b31e8..3f751acb9b7 100644 --- a/2.0/reference/conanfile/methods/init.html +++ b/2.0/reference/conanfile/methods/init.html @@ -5,7 +5,7 @@ init() — conan 2.0.17 documentation - + @@ -277,7 +277,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/layout.html b/2.0/reference/conanfile/methods/layout.html index 3d5e088881d..40b28555e75 100644 --- a/2.0/reference/conanfile/methods/layout.html +++ b/2.0/reference/conanfile/methods/layout.html @@ -5,7 +5,7 @@ layout() — conan 2.0.17 documentation - + @@ -297,7 +297,7 @@

    Environment variables and configuration

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/package.html b/2.0/reference/conanfile/methods/package.html index 20c16fade55..cf006532915 100644 --- a/2.0/reference/conanfile/methods/package.html +++ b/2.0/reference/conanfile/methods/package.html @@ -5,7 +5,7 @@ package() — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/package_id.html b/2.0/reference/conanfile/methods/package_id.html index 06d81a0535d..029219b0fbf 100644 --- a/2.0/reference/conanfile/methods/package_id.html +++ b/2.0/reference/conanfile/methods/package_id.html @@ -5,7 +5,7 @@ package_id() — conan 2.0.17 documentation - + @@ -302,7 +302,7 @@

    Adding information

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/package_info.html b/2.0/reference/conanfile/methods/package_info.html index 1eeca94549d..c3c7da7938f 100644 --- a/2.0/reference/conanfile/methods/package_info.html +++ b/2.0/reference/conanfile/methods/package_info.html @@ -5,7 +5,7 @@ package_info() — conan 2.0.17 documentation - + @@ -477,7 +477,7 @@

    buildenv_info, runenv_info

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/requirements.html b/2.0/reference/conanfile/methods/requirements.html index 815539683a9..7a2d0109785 100644 --- a/2.0/reference/conanfile/methods/requirements.html +++ b/2.0/reference/conanfile/methods/requirements.html @@ -5,7 +5,7 @@ requirements() — conan 2.0.17 documentation - + @@ -306,7 +306,7 @@

    Default traits for each kind of requires

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/set_name.html b/2.0/reference/conanfile/methods/set_name.html index 2b2b27379e6..866f51a1bfa 100644 --- a/2.0/reference/conanfile/methods/set_name.html +++ b/2.0/reference/conanfile/methods/set_name.html @@ -5,7 +5,7 @@ set_name() — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/set_version.html b/2.0/reference/conanfile/methods/set_version.html index 892cb0927ae..afaf083df9f 100644 --- a/2.0/reference/conanfile/methods/set_version.html +++ b/2.0/reference/conanfile/methods/set_version.html @@ -5,7 +5,7 @@ set_version() — conan 2.0.17 documentation - + @@ -229,7 +229,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/source.html b/2.0/reference/conanfile/methods/source.html index 873d540f77f..75f8cdc16dc 100644 --- a/2.0/reference/conanfile/methods/source.html +++ b/2.0/reference/conanfile/methods/source.html @@ -5,7 +5,7 @@ source() — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

    Forced retrieval of sources

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/system_requirements.html b/2.0/reference/conanfile/methods/system_requirements.html index 10e37d315d5..f44fffdf7e1 100644 --- a/2.0/reference/conanfile/methods/system_requirements.html +++ b/2.0/reference/conanfile/methods/system_requirements.html @@ -5,7 +5,7 @@ system_requirements() — conan 2.0.17 documentation - + @@ -250,7 +250,7 @@

    Collecting system requirements

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/test.html b/2.0/reference/conanfile/methods/test.html index 78c5078969c..9433fee9d51 100644 --- a/2.0/reference/conanfile/methods/test.html +++ b/2.0/reference/conanfile/methods/test.html @@ -5,7 +5,7 @@ test() — conan 2.0.17 documentation - + @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/validate.html b/2.0/reference/conanfile/methods/validate.html index f5a034f84b7..5c1079c5d25 100644 --- a/2.0/reference/conanfile/methods/validate.html +++ b/2.0/reference/conanfile/methods/validate.html @@ -5,7 +5,7 @@ validate() — conan 2.0.17 documentation - + @@ -234,7 +234,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/methods/validate_build.html b/2.0/reference/conanfile/methods/validate_build.html index 29a87365823..a0288e52749 100644 --- a/2.0/reference/conanfile/methods/validate_build.html +++ b/2.0/reference/conanfile/methods/validate_build.html @@ -5,7 +5,7 @@ validate_build() — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile/running_and_output.html b/2.0/reference/conanfile/running_and_output.html index 2d3ab104c5f..4f189022c77 100644 --- a/2.0/reference/conanfile/running_and_output.html +++ b/2.0/reference/conanfile/running_and_output.html @@ -5,7 +5,7 @@ Running and output — conan 2.0.17 documentation - + @@ -194,7 +194,7 @@

    Output text from recipes

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/conanfile_txt.html b/2.0/reference/conanfile_txt.html index 0e0b4c5ee8a..ac3eae7b6c7 100644 --- a/2.0/reference/conanfile_txt.html +++ b/2.0/reference/conanfile_txt.html @@ -5,7 +5,7 @@ conanfile.txt — conan 2.0.17 documentation - + @@ -237,7 +237,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files.html b/2.0/reference/config_files.html index 1e192b1a909..cad3733eebd 100644 --- a/2.0/reference/config_files.html +++ b/2.0/reference/config_files.html @@ -5,7 +5,7 @@ Configuration files — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files/conanrc.html b/2.0/reference/config_files/conanrc.html index 1ad6dc9e92c..4882a0ba4cc 100644 --- a/2.0/reference/config_files/conanrc.html +++ b/2.0/reference/config_files/conanrc.html @@ -5,7 +5,7 @@ .conanrc — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files/credentials.html b/2.0/reference/config_files/credentials.html index 6300b7f61dc..abf89401cb1 100644 --- a/2.0/reference/config_files/credentials.html +++ b/2.0/reference/config_files/credentials.html @@ -5,7 +5,7 @@ credentials.json — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files/global_conf.html b/2.0/reference/config_files/global_conf.html index 4f0a14428fd..2fcf2ce87c2 100644 --- a/2.0/reference/config_files/global_conf.html +++ b/2.0/reference/config_files/global_conf.html @@ -5,7 +5,7 @@ global.conf — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    Introduction to configurationprofiles.

    To list all the possible configurations available, run conan config list:

    -
    $ conan config list
    +
    diff --git a/2.0/reference/config_files/remotes.html b/2.0/reference/config_files/remotes.html index 50a55acf55d..7479d79f249 100644 --- a/2.0/reference/config_files/remotes.html +++ b/2.0/reference/config_files/remotes.html @@ -5,7 +5,7 @@ remotes.json — conan 2.0.17 documentation - + @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files/settings.html b/2.0/reference/config_files/settings.html index d1b1d702320..f2bbed10391 100644 --- a/2.0/reference/config_files/settings.html +++ b/2.0/reference/config_files/settings.html @@ -5,7 +5,7 @@ settings.yml — conan 2.0.17 documentation - + @@ -574,7 +574,7 @@

    Add new values

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/config_files/source_credentials.html b/2.0/reference/config_files/source_credentials.html index f356be55731..e282122c531 100644 --- a/2.0/reference/config_files/source_credentials.html +++ b/2.0/reference/config_files/source_credentials.html @@ -5,7 +5,7 @@ source_credentials.json — conan 2.0.17 documentation - + @@ -212,7 +212,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/environment.html b/2.0/reference/environment.html index 7cfb3b224be..48973eae354 100644 --- a/2.0/reference/environment.html +++ b/2.0/reference/environment.html @@ -5,7 +5,7 @@ Environment variables — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    Logging

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions.html b/2.0/reference/extensions.html index 8097019d6ff..c89c0432a58 100644 --- a/2.0/reference/extensions.html +++ b/2.0/reference/extensions.html @@ -5,7 +5,7 @@ Extensions — conan 2.0.17 documentation - + @@ -233,7 +233,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/binary_compatibility.html b/2.0/reference/extensions/binary_compatibility.html index bc1949d53cf..8ec3b5f7522 100644 --- a/2.0/reference/extensions/binary_compatibility.html +++ b/2.0/reference/extensions/binary_compatibility.html @@ -5,7 +5,7 @@ Binary compatibility — conan 2.0.17 documentation - + @@ -170,7 +170,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/command_wrapper.html b/2.0/reference/extensions/command_wrapper.html index 8841f471999..8231023dab8 100644 --- a/2.0/reference/extensions/command_wrapper.html +++ b/2.0/reference/extensions/command_wrapper.html @@ -5,7 +5,7 @@ Command wrapper — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/custom_commands.html b/2.0/reference/extensions/custom_commands.html index 27c96ac2472..04abd316cd3 100644 --- a/2.0/reference/extensions/custom_commands.html +++ b/2.0/reference/extensions/custom_commands.html @@ -5,7 +5,7 @@ Custom commands — conan 2.0.17 documentation - + @@ -366,7 +366,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/custom_generators.html b/2.0/reference/extensions/custom_generators.html index 4d6dbf924fc..0af72d7ce6d 100644 --- a/2.0/reference/extensions/custom_generators.html +++ b/2.0/reference/extensions/custom_generators.html @@ -5,7 +5,7 @@ Custom Conan generators — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    Using global custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/deployers.html b/2.0/reference/extensions/deployers.html index bcdb366b701..327e71bf8ed 100644 --- a/2.0/reference/extensions/deployers.html +++ b/2.0/reference/extensions/deployers.html @@ -5,7 +5,7 @@ Deployers — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    Custom deployers

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/hooks.html b/2.0/reference/extensions/hooks.html index 18df90a309d..44abe661cf6 100644 --- a/2.0/reference/extensions/hooks.html +++ b/2.0/reference/extensions/hooks.html @@ -5,7 +5,7 @@ Hooks — conan 2.0.17 documentation - + @@ -279,7 +279,7 @@

    Official Hooks

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/package_signing.html b/2.0/reference/extensions/package_signing.html index 65df4a142f2..8fe5baf60cb 100644 --- a/2.0/reference/extensions/package_signing.html +++ b/2.0/reference/extensions/package_signing.html @@ -5,7 +5,7 @@ Package signing — conan 2.0.17 documentation - + @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/profile_plugin.html b/2.0/reference/extensions/profile_plugin.html index ebd3927c873..058f46543ec 100644 --- a/2.0/reference/extensions/profile_plugin.html +++ b/2.0/reference/extensions/profile_plugin.html @@ -5,7 +5,7 @@ Profile plugin — conan 2.0.17 documentation - + @@ -176,7 +176,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api.html b/2.0/reference/extensions/python_api.html index 16e3cd4a70c..8edd1774341 100644 --- a/2.0/reference/extensions/python_api.html +++ b/2.0/reference/extensions/python_api.html @@ -5,7 +5,7 @@ Python API — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/ConanAPI.html b/2.0/reference/extensions/python_api/ConanAPI.html index 4b7c8bd3277..fa87e475034 100644 --- a/2.0/reference/extensions/python_api/ConanAPI.html +++ b/2.0/reference/extensions/python_api/ConanAPI.html @@ -5,7 +5,7 @@ Conan API Reference — conan 2.0.17 documentation - + @@ -178,7 +178,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/ConfigAPI.html b/2.0/reference/extensions/python_api/ConfigAPI.html index b7b02e9a10a..3e3b38b4ab4 100644 --- a/2.0/reference/extensions/python_api/ConfigAPI.html +++ b/2.0/reference/extensions/python_api/ConfigAPI.html @@ -5,7 +5,7 @@ Config API — conan 2.0.17 documentation - + @@ -186,7 +186,7 @@

    Config API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/DownloadAPI.html b/2.0/reference/extensions/python_api/DownloadAPI.html index c413735bf81..0cb972a65c5 100644 --- a/2.0/reference/extensions/python_api/DownloadAPI.html +++ b/2.0/reference/extensions/python_api/DownloadAPI.html @@ -5,7 +5,7 @@ Download API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Download API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/ExportAPI.html b/2.0/reference/extensions/python_api/ExportAPI.html index f7ea7e05d42..601d882ca3e 100644 --- a/2.0/reference/extensions/python_api/ExportAPI.html +++ b/2.0/reference/extensions/python_api/ExportAPI.html @@ -5,7 +5,7 @@ Export API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Export API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/GraphAPI.html b/2.0/reference/extensions/python_api/GraphAPI.html index c701081eb9c..6bb426e9290 100644 --- a/2.0/reference/extensions/python_api/GraphAPI.html +++ b/2.0/reference/extensions/python_api/GraphAPI.html @@ -5,7 +5,7 @@ Graph API — conan 2.0.17 documentation - + @@ -241,7 +241,7 @@

    Graph API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/InstallAPI.html b/2.0/reference/extensions/python_api/InstallAPI.html index 7bfe8848793..eec3425a9cb 100644 --- a/2.0/reference/extensions/python_api/InstallAPI.html +++ b/2.0/reference/extensions/python_api/InstallAPI.html @@ -5,7 +5,7 @@ Install API — conan 2.0.17 documentation - + @@ -203,7 +203,7 @@

    Install API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/ListAPI.html b/2.0/reference/extensions/python_api/ListAPI.html index b7558a369f4..4b2958e731f 100644 --- a/2.0/reference/extensions/python_api/ListAPI.html +++ b/2.0/reference/extensions/python_api/ListAPI.html @@ -5,7 +5,7 @@ List API — conan 2.0.17 documentation - + @@ -188,7 +188,7 @@

    List API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/NewAPI.html b/2.0/reference/extensions/python_api/NewAPI.html index b2343afc412..b4f6f2071e7 100644 --- a/2.0/reference/extensions/python_api/NewAPI.html +++ b/2.0/reference/extensions/python_api/NewAPI.html @@ -5,7 +5,7 @@ New API — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

    New API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/ProfilesAPI.html b/2.0/reference/extensions/python_api/ProfilesAPI.html index 06f8be81fa2..cbd6af2f354 100644 --- a/2.0/reference/extensions/python_api/ProfilesAPI.html +++ b/2.0/reference/extensions/python_api/ProfilesAPI.html @@ -5,7 +5,7 @@ Profiles API — conan 2.0.17 documentation - + @@ -229,7 +229,7 @@

    Profiles API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/RemotesAPI.html b/2.0/reference/extensions/python_api/RemotesAPI.html index fa3da3c4e69..7d5625f9f4c 100644 --- a/2.0/reference/extensions/python_api/RemotesAPI.html +++ b/2.0/reference/extensions/python_api/RemotesAPI.html @@ -5,7 +5,7 @@ Remotes API — conan 2.0.17 documentation - + @@ -188,7 +188,7 @@

    Remotes API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/RemoveAPI.html b/2.0/reference/extensions/python_api/RemoveAPI.html index 84e6b495c1d..9a323fdc80a 100644 --- a/2.0/reference/extensions/python_api/RemoveAPI.html +++ b/2.0/reference/extensions/python_api/RemoveAPI.html @@ -5,7 +5,7 @@ Remove API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Remove API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/SearchAPI.html b/2.0/reference/extensions/python_api/SearchAPI.html index 5a05970c5b4..cb93ad3be67 100644 --- a/2.0/reference/extensions/python_api/SearchAPI.html +++ b/2.0/reference/extensions/python_api/SearchAPI.html @@ -5,7 +5,7 @@ Search API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Search API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_api/UploadAPI.html b/2.0/reference/extensions/python_api/UploadAPI.html index cf649d5acd3..37840c1f37e 100644 --- a/2.0/reference/extensions/python_api/UploadAPI.html +++ b/2.0/reference/extensions/python_api/UploadAPI.html @@ -5,7 +5,7 @@ Upload API — conan 2.0.17 documentation - + @@ -198,7 +198,7 @@

    Upload API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/extensions/python_requires.html b/2.0/reference/extensions/python_requires.html index a282525775c..6a21062c09c 100644 --- a/2.0/reference/extensions/python_requires.html +++ b/2.0/reference/extensions/python_requires.html @@ -5,7 +5,7 @@ Python requires — conan 2.0.17 documentation - + @@ -412,7 +412,7 @@

    Resolution of python_requires

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools.html b/2.0/reference/tools.html index 8eca581a793..3f0777f3667 100644 --- a/2.0/reference/tools.html +++ b/2.0/reference/tools.html @@ -5,7 +5,7 @@ Recipe tools — conan 2.0.17 documentation - + @@ -268,7 +268,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/android.html b/2.0/reference/tools/android.html index a5daae73ce4..c5abcb1198d 100644 --- a/2.0/reference/tools/android.html +++ b/2.0/reference/tools/android.html @@ -5,7 +5,7 @@ conan.tools.android — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    android_abi()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/apple.html b/2.0/reference/tools/apple.html index 4803f615776..c2412e7e872 100644 --- a/2.0/reference/tools/apple.html +++ b/2.0/reference/tools/apple.html @@ -5,7 +5,7 @@ conan.tools.apple — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/apple/other.html b/2.0/reference/tools/apple/other.html index 3905f758008..a78203bab5c 100644 --- a/2.0/reference/tools/apple/other.html +++ b/2.0/reference/tools/apple/other.html @@ -5,7 +5,7 @@ conan.tools.apple.fix_apple_shared_install_name() — conan 2.0.17 documentation - + @@ -334,7 +334,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/apple/xcodebuild.html b/2.0/reference/tools/apple/xcodebuild.html index 75bd2964d20..d56d4d8c31d 100644 --- a/2.0/reference/tools/apple/xcodebuild.html +++ b/2.0/reference/tools/apple/xcodebuild.html @@ -5,7 +5,7 @@ XcodeBuild — conan 2.0.17 documentation - + @@ -237,7 +237,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/apple/xcodedeps.html b/2.0/reference/tools/apple/xcodedeps.html index 4e6a55241a1..1fc9be507b0 100644 --- a/2.0/reference/tools/apple/xcodedeps.html +++ b/2.0/reference/tools/apple/xcodedeps.html @@ -5,7 +5,7 @@ XcodeDeps — conan 2.0.17 documentation - + @@ -288,7 +288,7 @@

    Custom configurations

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/apple/xcodetoolchain.html b/2.0/reference/tools/apple/xcodetoolchain.html index 59bb2882d6a..3373d064ee4 100644 --- a/2.0/reference/tools/apple/xcodetoolchain.html +++ b/2.0/reference/tools/apple/xcodetoolchain.html @@ -5,7 +5,7 @@ XcodeToolchain — conan 2.0.17 documentation - + @@ -252,7 +252,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/build.html b/2.0/reference/tools/build.html index 446de10a81f..89bf95611c7 100644 --- a/2.0/reference/tools/build.html +++ b/2.0/reference/tools/build.html @@ -5,7 +5,7 @@ conan.tools.build — conan 2.0.17 documentation - + @@ -371,7 +371,7 @@

    conan.tools.build.supported_cppstd()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cmake.html b/2.0/reference/tools/cmake.html index 88d07ded7d4..be36dada899 100644 --- a/2.0/reference/tools/cmake.html +++ b/2.0/reference/tools/cmake.html @@ -5,7 +5,7 @@ conan.tools.cmake — conan 2.0.17 documentation - + @@ -184,7 +184,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cmake/cmake.html b/2.0/reference/tools/cmake/cmake.html index 252a83fe843..565deca8fde 100644 --- a/2.0/reference/tools/cmake/cmake.html +++ b/2.0/reference/tools/cmake/cmake.html @@ -5,7 +5,7 @@ CMake — conan 2.0.17 documentation - + @@ -332,7 +332,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cmake/cmake_layout.html b/2.0/reference/tools/cmake/cmake_layout.html index 080b753de05..a944e3b35e2 100644 --- a/2.0/reference/tools/cmake/cmake_layout.html +++ b/2.0/reference/tools/cmake/cmake_layout.html @@ -5,7 +5,7 @@ cmake_layout — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

    Multi-setting/option cmake_layout

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cmake/cmakedeps.html b/2.0/reference/tools/cmake/cmakedeps.html index fc2f0f87d1b..bbfb5cb34ec 100644 --- a/2.0/reference/tools/cmake/cmakedeps.html +++ b/2.0/reference/tools/cmake/cmakedeps.html @@ -5,7 +5,7 @@ CMakeDeps — conan 2.0.17 documentation - + @@ -538,7 +538,7 @@

    Map from project configuration to imported target’s configuration

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cmake/cmaketoolchain.html b/2.0/reference/tools/cmake/cmaketoolchain.html index 7b17141941e..6efe5a470f4 100644 --- a/2.0/reference/tools/cmake/cmaketoolchain.html +++ b/2.0/reference/tools/cmake/cmaketoolchain.html @@ -5,7 +5,7 @@ CMakeToolchain — conan 2.0.17 documentation - + @@ -685,7 +685,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/cpp_info.html b/2.0/reference/tools/cpp_info.html index b4a3ba939ed..f7bdc1ee05b 100644 --- a/2.0/reference/tools/cpp_info.html +++ b/2.0/reference/tools/cpp_info.html @@ -5,7 +5,7 @@ conan.tools.CppInfo — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    Aggregating information in custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/env.html b/2.0/reference/tools/env.html index 26575097eb4..d5a9089df64 100644 --- a/2.0/reference/tools/env.html +++ b/2.0/reference/tools/env.html @@ -5,7 +5,7 @@ conan.tools.env — conan 2.0.17 documentation - + @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/env/environment.html b/2.0/reference/tools/env/environment.html index 7cf434ee9b7..9f39a3a51f3 100644 --- a/2.0/reference/tools/env/environment.html +++ b/2.0/reference/tools/env/environment.html @@ -5,7 +5,7 @@ Environment — conan 2.0.17 documentation - + @@ -398,7 +398,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/env/envvars.html b/2.0/reference/tools/env/envvars.html index 1d4feeee31d..e8b4fddc3fb 100644 --- a/2.0/reference/tools/env/envvars.html +++ b/2.0/reference/tools/env/envvars.html @@ -5,7 +5,7 @@ EnvVars — conan 2.0.17 documentation - + @@ -329,7 +329,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/env/virtualbuildenv.html b/2.0/reference/tools/env/virtualbuildenv.html index d1167724f1e..4a00e276201 100644 --- a/2.0/reference/tools/env/virtualbuildenv.html +++ b/2.0/reference/tools/env/virtualbuildenv.html @@ -5,7 +5,7 @@ VirtualBuildEnv — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/env/virtualrunenv.html b/2.0/reference/tools/env/virtualrunenv.html index 660cdf9f968..d4326f4ebc4 100644 --- a/2.0/reference/tools/env/virtualrunenv.html +++ b/2.0/reference/tools/env/virtualrunenv.html @@ -5,7 +5,7 @@ VirtualRunEnv — conan 2.0.17 documentation - + @@ -268,7 +268,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files.html b/2.0/reference/tools/files.html index f1f4afa239d..a03be4aaf46 100644 --- a/2.0/reference/tools/files.html +++ b/2.0/reference/tools/files.html @@ -5,7 +5,7 @@ conan.tools.files — conan 2.0.17 documentation - + @@ -204,7 +204,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/basic.html b/2.0/reference/tools/files/basic.html index 4201e184a7e..a5500a1c6ab 100644 --- a/2.0/reference/tools/files/basic.html +++ b/2.0/reference/tools/files/basic.html @@ -5,7 +5,7 @@ conan.tools.files basic operations — conan 2.0.17 documentation - + @@ -575,7 +575,7 @@

    conan.tools.files.trim_conandata()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/checksum.html b/2.0/reference/tools/files/checksum.html index 9f722b17282..b050d2d6fd1 100644 --- a/2.0/reference/tools/files/checksum.html +++ b/2.0/reference/tools/files/checksum.html @@ -5,7 +5,7 @@ conan.tools.files checksums — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    conan.tools.files.check_sha256()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/downloads.html b/2.0/reference/tools/files/downloads.html index 6a0eb466c98..737a9cd4af4 100644 --- a/2.0/reference/tools/files/downloads.html +++ b/2.0/reference/tools/files/downloads.html @@ -5,7 +5,7 @@ conan.tools.files downloads — conan 2.0.17 documentation - + @@ -291,7 +291,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/packaging.html b/2.0/reference/tools/files/packaging.html index 7ef5dccd9d3..a2eebdc736b 100644 --- a/2.0/reference/tools/files/packaging.html +++ b/2.0/reference/tools/files/packaging.html @@ -5,7 +5,7 @@ conan.tools.files AutoPackager — conan 2.0.17 documentation - + @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/patches.html b/2.0/reference/tools/files/patches.html index 62722ce3812..e9d898d7088 100644 --- a/2.0/reference/tools/files/patches.html +++ b/2.0/reference/tools/files/patches.html @@ -5,7 +5,7 @@ conan.tools.files patches — conan 2.0.17 documentation - + @@ -267,7 +267,7 @@

    conan.tools.files.export_conandata_patches()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/files/symlinks.html b/2.0/reference/tools/files/symlinks.html index e2a9d08f274..ebb3cfa1b0c 100644 --- a/2.0/reference/tools/files/symlinks.html +++ b/2.0/reference/tools/files/symlinks.html @@ -5,7 +5,7 @@ conan.tools.files.symlinks — conan 2.0.17 documentation - + @@ -212,7 +212,7 @@

    conan.tools.files.symlinks.remove_broken_symlinks()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu.html b/2.0/reference/tools/gnu.html index 4849de97a1e..73f1b1c6035 100644 --- a/2.0/reference/tools/gnu.html +++ b/2.0/reference/tools/gnu.html @@ -5,7 +5,7 @@ conan.tools.gnu — conan 2.0.17 documentation - + @@ -196,7 +196,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/autotools.html b/2.0/reference/tools/gnu/autotools.html index 17bcda52154..b6b8c6da5fc 100644 --- a/2.0/reference/tools/gnu/autotools.html +++ b/2.0/reference/tools/gnu/autotools.html @@ -5,7 +5,7 @@ Autotools — conan 2.0.17 documentation - + @@ -351,7 +351,7 @@

    How to address this problem in Conan

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/autotoolsdeps.html b/2.0/reference/tools/gnu/autotoolsdeps.html index a8e916171b1..09cd286b6c4 100644 --- a/2.0/reference/tools/gnu/autotoolsdeps.html +++ b/2.0/reference/tools/gnu/autotoolsdeps.html @@ -5,7 +5,7 @@ AutotoolsDeps — conan 2.0.17 documentation - + @@ -241,7 +241,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/autotoolstoolchain.html b/2.0/reference/tools/gnu/autotoolstoolchain.html index 39655d05f12..0f7daf42869 100644 --- a/2.0/reference/tools/gnu/autotoolstoolchain.html +++ b/2.0/reference/tools/gnu/autotoolstoolchain.html @@ -5,7 +5,7 @@ AutotoolsToolchain — conan 2.0.17 documentation - + @@ -468,7 +468,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/makedeps.html b/2.0/reference/tools/gnu/makedeps.html index 02d8a14d88d..84afea07369 100644 --- a/2.0/reference/tools/gnu/makedeps.html +++ b/2.0/reference/tools/gnu/makedeps.html @@ -5,7 +5,7 @@ MakeDeps — conan 2.0.17 documentation - + @@ -255,7 +255,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/pkgconfig.html b/2.0/reference/tools/gnu/pkgconfig.html index 11fa89e5b4a..d86e609ca8b 100644 --- a/2.0/reference/tools/gnu/pkgconfig.html +++ b/2.0/reference/tools/gnu/pkgconfig.html @@ -5,7 +5,7 @@ PkgConfig — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/gnu/pkgconfigdeps.html b/2.0/reference/tools/gnu/pkgconfigdeps.html index 01a53aa8dc5..e02f385489e 100644 --- a/2.0/reference/tools/gnu/pkgconfigdeps.html +++ b/2.0/reference/tools/gnu/pkgconfigdeps.html @@ -5,7 +5,7 @@ PkgConfigDeps — conan 2.0.17 documentation - + @@ -312,7 +312,7 @@

    build_context_suffix

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/google.html b/2.0/reference/tools/google.html index 01a0aa2affc..a8aa0802c1a 100644 --- a/2.0/reference/tools/google.html +++ b/2.0/reference/tools/google.html @@ -5,7 +5,7 @@ conan.tools.google — conan 2.0.17 documentation - + @@ -175,7 +175,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/google/bazel.html b/2.0/reference/tools/google/bazel.html index 04fe367f7a4..57c4a7db7c0 100644 --- a/2.0/reference/tools/google/bazel.html +++ b/2.0/reference/tools/google/bazel.html @@ -5,7 +5,7 @@ Bazel — conan 2.0.17 documentation - + @@ -242,7 +242,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/google/bazeldeps.html b/2.0/reference/tools/google/bazeldeps.html index 5091aaa5667..c2b66d29c8c 100644 --- a/2.0/reference/tools/google/bazeldeps.html +++ b/2.0/reference/tools/google/bazeldeps.html @@ -5,7 +5,7 @@ BazelDeps — conan 2.0.17 documentation - + @@ -445,7 +445,7 @@

    build_context_activated

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/google/bazeltoolchain.html b/2.0/reference/tools/google/bazeltoolchain.html index 3eda6e1434f..fe51cdab4bc 100644 --- a/2.0/reference/tools/google/bazeltoolchain.html +++ b/2.0/reference/tools/google/bazeltoolchain.html @@ -5,7 +5,7 @@ BazelToolchain — conan 2.0.17 documentation - + @@ -316,7 +316,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/intel.html b/2.0/reference/tools/intel.html index c1b36be484d..6ac0f27376f 100644 --- a/2.0/reference/tools/intel.html +++ b/2.0/reference/tools/intel.html @@ -5,7 +5,7 @@ conan.tools.intel — conan 2.0.17 documentation - + @@ -339,7 +339,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/layout.html b/2.0/reference/tools/layout.html index 5ed72535346..a93417ad5db 100644 --- a/2.0/reference/tools/layout.html +++ b/2.0/reference/tools/layout.html @@ -5,7 +5,7 @@ conan.tools.layout — conan 2.0.17 documentation - + @@ -201,7 +201,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/meson.html b/2.0/reference/tools/meson.html index e02987215c8..95908afa5dc 100644 --- a/2.0/reference/tools/meson.html +++ b/2.0/reference/tools/meson.html @@ -5,7 +5,7 @@ conan.tools.meson — conan 2.0.17 documentation - + @@ -173,7 +173,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/meson/meson.html b/2.0/reference/tools/meson/meson.html index 38a7c0ff925..c4494eace08 100644 --- a/2.0/reference/tools/meson/meson.html +++ b/2.0/reference/tools/meson/meson.html @@ -5,7 +5,7 @@ Meson — conan 2.0.17 documentation - + @@ -238,7 +238,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/meson/mesontoolchain.html b/2.0/reference/tools/meson/mesontoolchain.html index e360ee4490a..ddeb2f8b3d1 100644 --- a/2.0/reference/tools/meson/mesontoolchain.html +++ b/2.0/reference/tools/meson/mesontoolchain.html @@ -5,7 +5,7 @@ MesonToolchain — conan 2.0.17 documentation - + @@ -613,7 +613,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft.html b/2.0/reference/tools/microsoft.html index 76f9329e62d..2d7e0d55c77 100644 --- a/2.0/reference/tools/microsoft.html +++ b/2.0/reference/tools/microsoft.html @@ -5,7 +5,7 @@ conan.tools.microsoft — conan 2.0.17 documentation - + @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/helpers.html b/2.0/reference/tools/microsoft/helpers.html index 0fc07a905b2..6c8145bd6aa 100644 --- a/2.0/reference/tools/microsoft/helpers.html +++ b/2.0/reference/tools/microsoft/helpers.html @@ -5,7 +5,7 @@ conan.tools.microsoft.visual — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    conan.tools.microsoft.subsystems

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/msbuild.html b/2.0/reference/tools/microsoft/msbuild.html index 499bf642960..366a23bd512 100644 --- a/2.0/reference/tools/microsoft/msbuild.html +++ b/2.0/reference/tools/microsoft/msbuild.html @@ -5,7 +5,7 @@ MSBuild — conan 2.0.17 documentation - + @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/msbuilddeps.html b/2.0/reference/tools/microsoft/msbuilddeps.html index f94cb602672..cca90e65942 100644 --- a/2.0/reference/tools/microsoft/msbuilddeps.html +++ b/2.0/reference/tools/microsoft/msbuilddeps.html @@ -5,7 +5,7 @@ MSBuildDeps — conan 2.0.17 documentation - + @@ -322,7 +322,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/msbuildtoolchain.html b/2.0/reference/tools/microsoft/msbuildtoolchain.html index 63a7b5315e9..cdf2a2ded6a 100644 --- a/2.0/reference/tools/microsoft/msbuildtoolchain.html +++ b/2.0/reference/tools/microsoft/msbuildtoolchain.html @@ -5,7 +5,7 @@ MSBuildToolchain — conan 2.0.17 documentation - + @@ -289,7 +289,7 @@

    Attributes

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/nmake.html b/2.0/reference/tools/microsoft/nmake.html index a4293d39c55..c7662acd0c2 100644 --- a/2.0/reference/tools/microsoft/nmake.html +++ b/2.0/reference/tools/microsoft/nmake.html @@ -5,7 +5,7 @@ NMakeDeps — conan 2.0.17 documentation - + @@ -305,7 +305,7 @@

    Customizing the environment

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/vcvars.html b/2.0/reference/tools/microsoft/vcvars.html index 6ac938d9ed2..db50a3375ad 100644 --- a/2.0/reference/tools/microsoft/vcvars.html +++ b/2.0/reference/tools/microsoft/vcvars.html @@ -5,7 +5,7 @@ VCVars — conan 2.0.17 documentation - + @@ -236,7 +236,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/microsoft/visual_layout.html b/2.0/reference/tools/microsoft/visual_layout.html index 1bd9319c83e..9ffecaf5ca6 100644 --- a/2.0/reference/tools/microsoft/visual_layout.html +++ b/2.0/reference/tools/microsoft/visual_layout.html @@ -5,7 +5,7 @@ vs_layout — conan 2.0.17 documentation - + @@ -174,7 +174,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/scm.html b/2.0/reference/tools/scm.html index f772fd2bdc7..a43e88d04f7 100644 --- a/2.0/reference/tools/scm.html +++ b/2.0/reference/tools/scm.html @@ -5,7 +5,7 @@ conan.tools.scm — conan 2.0.17 documentation - + @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/scm/git.html b/2.0/reference/tools/scm/git.html index a8fa078bbe5..98a1f2cd68b 100644 --- a/2.0/reference/tools/scm/git.html +++ b/2.0/reference/tools/scm/git.html @@ -5,7 +5,7 @@ Git — conan 2.0.17 documentation - + @@ -352,7 +352,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/scm/version.html b/2.0/reference/tools/scm/version.html index 9624a996ffd..f4df2f66a78 100644 --- a/2.0/reference/tools/scm/version.html +++ b/2.0/reference/tools/scm/version.html @@ -5,7 +5,7 @@ Version — conan 2.0.17 documentation - + @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/scons.html b/2.0/reference/tools/scons.html index 4f8c0f949ac..5da4887abf6 100644 --- a/2.0/reference/tools/scons.html +++ b/2.0/reference/tools/scons.html @@ -5,7 +5,7 @@ conan.tools.scons — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    SConsDeps

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/system.html b/2.0/reference/tools/system.html index 549f26d90d6..8701dae4fd2 100644 --- a/2.0/reference/tools/system.html +++ b/2.0/reference/tools/system.html @@ -5,7 +5,7 @@ conan.tools.system — conan 2.0.17 documentation - + @@ -173,7 +173,7 @@

    conan.tools.system

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/reference/tools/system/package_manager.html b/2.0/reference/tools/system/package_manager.html index f1f526bb8a1..d16fe7b89a1 100644 --- a/2.0/reference/tools/system/package_manager.html +++ b/2.0/reference/tools/system/package_manager.html @@ -5,7 +5,7 @@ conan.tools.system.package_manager — conan 2.0.17 documentation - + @@ -1160,7 +1160,7 @@

    Reference¶<

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/search.html b/2.0/search.html index a171bc82b5c..8513dad9821 100644 --- a/2.0/search.html +++ b/2.0/search.html @@ -4,7 +4,7 @@ Search — conan 2.0.17 documentation - + @@ -125,7 +125,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/searchindex.js b/2.0/searchindex.js index c229ffb3160..883e841c7fb 100644 --- a/2.0/searchindex.js +++ b/2.0/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["404", "changelog", "devops", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo", "devops/backup_sources/sources_backup", "devops/conancenter/hosting_binaries", "devops/metadata", "devops/save_restore", "devops/using_conancenter", "devops/versioning", "devops/versioning/resolve_prereleases", "examples", "examples/commands", "examples/commands/pkglists", "examples/conanfile", "examples/conanfile/layout", "examples/conanfile/layout/conanfile_in_subfolder", "examples/conanfile/layout/editable_components", "examples/conanfile/layout/multiple_subprojects", "examples/conanfile/layout/third_party_libraries", "examples/conanfile/package_info", "examples/conanfile/package_info/components", "examples/conanfile/package_info/package_info_conf_and_env", "examples/config_files", "examples/config_files/settings/settings_user", "examples/cross_build", "examples/cross_build/android/android_studio", "examples/cross_build/android/ndk", "examples/dev_flow", "examples/dev_flow/debug/step_into_dependencies", "examples/extensions", "examples/extensions/commands/clean/custom_command_clean_revisions", "examples/extensions/commands/custom_commands", "examples/extensions/deployers/builtin_deployers", "examples/extensions/deployers/custom_deployers", "examples/extensions/deployers/dev/development_deploy", "examples/extensions/deployers/sources/custom_deployer_sources", "examples/graph", "examples/graph/requires/consume_cmake_macro", "examples/graph/tool_requires/different_options", "examples/graph/tool_requires/different_versions", "examples/graph/tool_requires/use_cmake_modules", "examples/graph/tool_requires/using_protobuf", "examples/tools", "examples/tools/autotools/autotools", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain", "examples/tools/cmake/cmake", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables", "examples/tools/files/files", "examples/tools/files/patches/patch_sources", "examples/tools/google/bazel", "examples/tools/google/bazeltoolchain/build_simple_bazel_project", "examples/tools/meson/meson", "examples/tools/meson/mesontoolchain/build_simple_meson_project", "examples/tools/scm/git/capture_scm/git_capture_scm", "index", "installation", "integrations", "integrations/android", "integrations/autotools", "integrations/bazel", "integrations/clion", "integrations/cmake", "integrations/jfrog", "integrations/makefile", "integrations/meson", "integrations/visual_studio", "integrations/xcode", "introduction", "knowledge", "knowledge/cheatsheet", "knowledge/faq", "knowledge/guidelines", "knowledge/videos", "reference", "reference/binary_model", "reference/binary_model/custom_compatibility", "reference/binary_model/dependencies", "reference/binary_model/extending", "reference/binary_model/package_id", "reference/commands", "reference/commands/build", "reference/commands/cache", "reference/commands/config", "reference/commands/create", "reference/commands/download", "reference/commands/editable", "reference/commands/export", "reference/commands/export-pkg", "reference/commands/formatters/graph_info_json_formatter", "reference/commands/graph", "reference/commands/graph/build_order", "reference/commands/graph/build_order_merge", "reference/commands/graph/explain", "reference/commands/graph/info", "reference/commands/inspect", "reference/commands/install", "reference/commands/list", "reference/commands/lock", "reference/commands/lock/add", "reference/commands/lock/create", "reference/commands/lock/merge", "reference/commands/lock/remove", "reference/commands/new", "reference/commands/profile", "reference/commands/remote", "reference/commands/remove", "reference/commands/search", "reference/commands/source", "reference/commands/test", "reference/commands/upload", "reference/commands/version", "reference/conan_server", "reference/conanfile", "reference/conanfile/attributes", "reference/conanfile/methods", "reference/conanfile/methods/build", "reference/conanfile/methods/build_id", "reference/conanfile/methods/build_requirements", "reference/conanfile/methods/compatibility", "reference/conanfile/methods/config_options", "reference/conanfile/methods/configure", "reference/conanfile/methods/deploy", "reference/conanfile/methods/export", "reference/conanfile/methods/export_sources", "reference/conanfile/methods/generate", "reference/conanfile/methods/init", "reference/conanfile/methods/layout", "reference/conanfile/methods/package", "reference/conanfile/methods/package_id", "reference/conanfile/methods/package_info", "reference/conanfile/methods/requirements", "reference/conanfile/methods/set_name", "reference/conanfile/methods/set_version", "reference/conanfile/methods/source", "reference/conanfile/methods/system_requirements", "reference/conanfile/methods/test", "reference/conanfile/methods/validate", "reference/conanfile/methods/validate_build", "reference/conanfile/running_and_output", "reference/conanfile_txt", "reference/config_files", "reference/config_files/conanrc", "reference/config_files/credentials", "reference/config_files/global_conf", "reference/config_files/profiles", "reference/config_files/remotes", "reference/config_files/settings", "reference/config_files/source_credentials", "reference/environment", "reference/extensions", "reference/extensions/binary_compatibility", "reference/extensions/command_wrapper", "reference/extensions/custom_commands", "reference/extensions/custom_generators", "reference/extensions/deployers", "reference/extensions/hooks", "reference/extensions/package_signing", "reference/extensions/profile_plugin", "reference/extensions/python_api", "reference/extensions/python_api/ConanAPI", "reference/extensions/python_api/ConfigAPI", "reference/extensions/python_api/DownloadAPI", "reference/extensions/python_api/ExportAPI", "reference/extensions/python_api/GraphAPI", "reference/extensions/python_api/InstallAPI", "reference/extensions/python_api/ListAPI", "reference/extensions/python_api/NewAPI", "reference/extensions/python_api/ProfilesAPI", "reference/extensions/python_api/RemotesAPI", "reference/extensions/python_api/RemoveAPI", "reference/extensions/python_api/SearchAPI", "reference/extensions/python_api/UploadAPI", "reference/extensions/python_requires", "reference/tools", "reference/tools/android", "reference/tools/apple", "reference/tools/apple/other", "reference/tools/apple/xcodebuild", "reference/tools/apple/xcodedeps", "reference/tools/apple/xcodetoolchain", "reference/tools/build", "reference/tools/cmake", "reference/tools/cmake/cmake", "reference/tools/cmake/cmake_layout", "reference/tools/cmake/cmakedeps", "reference/tools/cmake/cmaketoolchain", "reference/tools/cpp_info", "reference/tools/env", "reference/tools/env/environment", "reference/tools/env/envvars", "reference/tools/env/virtualbuildenv", "reference/tools/env/virtualrunenv", "reference/tools/files", "reference/tools/files/basic", "reference/tools/files/checksum", "reference/tools/files/downloads", "reference/tools/files/packaging", "reference/tools/files/patches", "reference/tools/files/symlinks", "reference/tools/gnu", "reference/tools/gnu/autotools", "reference/tools/gnu/autotoolsdeps", "reference/tools/gnu/autotoolstoolchain", "reference/tools/gnu/makedeps", "reference/tools/gnu/pkgconfig", "reference/tools/gnu/pkgconfigdeps", "reference/tools/google", "reference/tools/google/bazel", "reference/tools/google/bazeldeps", "reference/tools/google/bazeltoolchain", "reference/tools/intel", "reference/tools/layout", "reference/tools/meson", "reference/tools/meson/meson", "reference/tools/meson/mesontoolchain", "reference/tools/microsoft", "reference/tools/microsoft/helpers", "reference/tools/microsoft/msbuild", "reference/tools/microsoft/msbuilddeps", "reference/tools/microsoft/msbuildtoolchain", "reference/tools/microsoft/nmake", "reference/tools/microsoft/vcvars", "reference/tools/microsoft/visual_layout", "reference/tools/scm", "reference/tools/scm/git", "reference/tools/scm/version", "reference/tools/scons", "reference/tools/system", "reference/tools/system/package_manager", "tutorial", "tutorial/conan_repositories", "tutorial/conan_repositories/conan_center", "tutorial/conan_repositories/setting_up_conan_remotes", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server", "tutorial/conan_repositories/uploading_packages", "tutorial/consuming_packages", "tutorial/consuming_packages/build_simple_cmake_project", "tutorial/consuming_packages/cross_building_with_conan", "tutorial/consuming_packages/different_configurations", "tutorial/consuming_packages/intro_to_versioning", "tutorial/consuming_packages/the_flexibility_of_conanfile_py", "tutorial/consuming_packages/use_tools_as_conan_packages", "tutorial/creating_packages", "tutorial/creating_packages/add_dependencies_to_packages", "tutorial/creating_packages/build_packages", "tutorial/creating_packages/configure_options_settings", "tutorial/creating_packages/create_your_first_package", "tutorial/creating_packages/define_package_information", "tutorial/creating_packages/handle_sources_in_packages", "tutorial/creating_packages/other_types_of_packages", "tutorial/creating_packages/other_types_of_packages/header_only_packages", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages", "tutorial/creating_packages/package_method", "tutorial/creating_packages/preparing_the_build", "tutorial/creating_packages/test_conan_packages", "tutorial/developing_packages", "tutorial/developing_packages/editable_packages", "tutorial/developing_packages/local_package_development_flow", "tutorial/developing_packages/package_layout", "tutorial/other_features", "tutorial/versioning", "tutorial/versioning/conflicts", "tutorial/versioning/lockfiles", "tutorial/versioning/revisions", "tutorial/versioning/version_ranges", "tutorial/versioning/versions", "whatsnew"], "filenames": ["404.rst", "changelog.rst", "devops.rst", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.rst", "devops/backup_sources/sources_backup.rst", "devops/conancenter/hosting_binaries.rst", "devops/metadata.rst", "devops/save_restore.rst", "devops/using_conancenter.rst", "devops/versioning.rst", "devops/versioning/resolve_prereleases.rst", "examples.rst", "examples/commands.rst", "examples/commands/pkglists.rst", "examples/conanfile.rst", "examples/conanfile/layout.rst", "examples/conanfile/layout/conanfile_in_subfolder.rst", "examples/conanfile/layout/editable_components.rst", "examples/conanfile/layout/multiple_subprojects.rst", "examples/conanfile/layout/third_party_libraries.rst", "examples/conanfile/package_info.rst", "examples/conanfile/package_info/components.rst", "examples/conanfile/package_info/package_info_conf_and_env.rst", "examples/config_files.rst", "examples/config_files/settings/settings_user.rst", "examples/cross_build.rst", "examples/cross_build/android/android_studio.rst", "examples/cross_build/android/ndk.rst", "examples/dev_flow.rst", "examples/dev_flow/debug/step_into_dependencies.rst", "examples/extensions.rst", "examples/extensions/commands/clean/custom_command_clean_revisions.rst", "examples/extensions/commands/custom_commands.rst", "examples/extensions/deployers/builtin_deployers.rst", "examples/extensions/deployers/custom_deployers.rst", "examples/extensions/deployers/dev/development_deploy.rst", "examples/extensions/deployers/sources/custom_deployer_sources.rst", "examples/graph.rst", "examples/graph/requires/consume_cmake_macro.rst", "examples/graph/tool_requires/different_options.rst", "examples/graph/tool_requires/different_versions.rst", "examples/graph/tool_requires/use_cmake_modules.rst", "examples/graph/tool_requires/using_protobuf.rst", "examples/tools.rst", "examples/tools/autotools/autotools.rst", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.rst", "examples/tools/cmake/cmake.rst", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables.rst", "examples/tools/files/files.rst", "examples/tools/files/patches/patch_sources.rst", "examples/tools/google/bazel.rst", "examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst", "examples/tools/meson/meson.rst", "examples/tools/meson/mesontoolchain/build_simple_meson_project.rst", "examples/tools/scm/git/capture_scm/git_capture_scm.rst", "index.rst", "installation.rst", "integrations.rst", "integrations/android.rst", "integrations/autotools.rst", "integrations/bazel.rst", "integrations/clion.rst", "integrations/cmake.rst", "integrations/jfrog.rst", "integrations/makefile.rst", "integrations/meson.rst", "integrations/visual_studio.rst", "integrations/xcode.rst", "introduction.rst", "knowledge.rst", "knowledge/cheatsheet.rst", "knowledge/faq.rst", "knowledge/guidelines.rst", "knowledge/videos.rst", "reference.rst", "reference/binary_model.rst", "reference/binary_model/custom_compatibility.rst", "reference/binary_model/dependencies.rst", "reference/binary_model/extending.rst", "reference/binary_model/package_id.rst", "reference/commands.rst", "reference/commands/build.rst", "reference/commands/cache.rst", "reference/commands/config.rst", "reference/commands/create.rst", "reference/commands/download.rst", "reference/commands/editable.rst", "reference/commands/export.rst", "reference/commands/export-pkg.rst", "reference/commands/formatters/graph_info_json_formatter.rst", "reference/commands/graph.rst", "reference/commands/graph/build_order.rst", "reference/commands/graph/build_order_merge.rst", "reference/commands/graph/explain.rst", "reference/commands/graph/info.rst", "reference/commands/inspect.rst", "reference/commands/install.rst", "reference/commands/list.rst", "reference/commands/lock.rst", "reference/commands/lock/add.rst", "reference/commands/lock/create.rst", "reference/commands/lock/merge.rst", "reference/commands/lock/remove.rst", "reference/commands/new.rst", "reference/commands/profile.rst", "reference/commands/remote.rst", "reference/commands/remove.rst", "reference/commands/search.rst", "reference/commands/source.rst", "reference/commands/test.rst", "reference/commands/upload.rst", "reference/commands/version.rst", "reference/conan_server.rst", "reference/conanfile.rst", "reference/conanfile/attributes.rst", "reference/conanfile/methods.rst", "reference/conanfile/methods/build.rst", "reference/conanfile/methods/build_id.rst", "reference/conanfile/methods/build_requirements.rst", "reference/conanfile/methods/compatibility.rst", "reference/conanfile/methods/config_options.rst", "reference/conanfile/methods/configure.rst", "reference/conanfile/methods/deploy.rst", "reference/conanfile/methods/export.rst", "reference/conanfile/methods/export_sources.rst", "reference/conanfile/methods/generate.rst", "reference/conanfile/methods/init.rst", "reference/conanfile/methods/layout.rst", "reference/conanfile/methods/package.rst", "reference/conanfile/methods/package_id.rst", "reference/conanfile/methods/package_info.rst", "reference/conanfile/methods/requirements.rst", "reference/conanfile/methods/set_name.rst", "reference/conanfile/methods/set_version.rst", "reference/conanfile/methods/source.rst", "reference/conanfile/methods/system_requirements.rst", "reference/conanfile/methods/test.rst", "reference/conanfile/methods/validate.rst", "reference/conanfile/methods/validate_build.rst", "reference/conanfile/running_and_output.rst", "reference/conanfile_txt.rst", "reference/config_files.rst", "reference/config_files/conanrc.rst", "reference/config_files/credentials.rst", "reference/config_files/global_conf.rst", "reference/config_files/profiles.rst", "reference/config_files/remotes.rst", "reference/config_files/settings.rst", "reference/config_files/source_credentials.rst", "reference/environment.rst", "reference/extensions.rst", "reference/extensions/binary_compatibility.rst", "reference/extensions/command_wrapper.rst", "reference/extensions/custom_commands.rst", "reference/extensions/custom_generators.rst", "reference/extensions/deployers.rst", "reference/extensions/hooks.rst", "reference/extensions/package_signing.rst", "reference/extensions/profile_plugin.rst", "reference/extensions/python_api.rst", "reference/extensions/python_api/ConanAPI.rst", "reference/extensions/python_api/ConfigAPI.rst", "reference/extensions/python_api/DownloadAPI.rst", "reference/extensions/python_api/ExportAPI.rst", "reference/extensions/python_api/GraphAPI.rst", "reference/extensions/python_api/InstallAPI.rst", "reference/extensions/python_api/ListAPI.rst", "reference/extensions/python_api/NewAPI.rst", "reference/extensions/python_api/ProfilesAPI.rst", "reference/extensions/python_api/RemotesAPI.rst", "reference/extensions/python_api/RemoveAPI.rst", "reference/extensions/python_api/SearchAPI.rst", "reference/extensions/python_api/UploadAPI.rst", "reference/extensions/python_requires.rst", "reference/tools.rst", "reference/tools/android.rst", "reference/tools/apple.rst", "reference/tools/apple/other.rst", "reference/tools/apple/xcodebuild.rst", "reference/tools/apple/xcodedeps.rst", "reference/tools/apple/xcodetoolchain.rst", "reference/tools/build.rst", "reference/tools/cmake.rst", "reference/tools/cmake/cmake.rst", "reference/tools/cmake/cmake_layout.rst", "reference/tools/cmake/cmakedeps.rst", "reference/tools/cmake/cmaketoolchain.rst", "reference/tools/cpp_info.rst", "reference/tools/env.rst", "reference/tools/env/environment.rst", "reference/tools/env/envvars.rst", "reference/tools/env/virtualbuildenv.rst", "reference/tools/env/virtualrunenv.rst", "reference/tools/files.rst", "reference/tools/files/basic.rst", "reference/tools/files/checksum.rst", "reference/tools/files/downloads.rst", "reference/tools/files/packaging.rst", "reference/tools/files/patches.rst", "reference/tools/files/symlinks.rst", "reference/tools/gnu.rst", "reference/tools/gnu/autotools.rst", "reference/tools/gnu/autotoolsdeps.rst", "reference/tools/gnu/autotoolstoolchain.rst", "reference/tools/gnu/makedeps.rst", "reference/tools/gnu/pkgconfig.rst", "reference/tools/gnu/pkgconfigdeps.rst", "reference/tools/google.rst", "reference/tools/google/bazel.rst", "reference/tools/google/bazeldeps.rst", "reference/tools/google/bazeltoolchain.rst", "reference/tools/intel.rst", "reference/tools/layout.rst", "reference/tools/meson.rst", "reference/tools/meson/meson.rst", "reference/tools/meson/mesontoolchain.rst", "reference/tools/microsoft.rst", "reference/tools/microsoft/helpers.rst", "reference/tools/microsoft/msbuild.rst", "reference/tools/microsoft/msbuilddeps.rst", "reference/tools/microsoft/msbuildtoolchain.rst", "reference/tools/microsoft/nmake.rst", "reference/tools/microsoft/vcvars.rst", "reference/tools/microsoft/visual_layout.rst", "reference/tools/scm.rst", "reference/tools/scm/git.rst", "reference/tools/scm/version.rst", "reference/tools/scons.rst", "reference/tools/system.rst", "reference/tools/system/package_manager.rst", "tutorial.rst", "tutorial/conan_repositories.rst", "tutorial/conan_repositories/conan_center.rst", "tutorial/conan_repositories/setting_up_conan_remotes.rst", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.rst", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server.rst", "tutorial/conan_repositories/uploading_packages.rst", "tutorial/consuming_packages.rst", "tutorial/consuming_packages/build_simple_cmake_project.rst", "tutorial/consuming_packages/cross_building_with_conan.rst", "tutorial/consuming_packages/different_configurations.rst", "tutorial/consuming_packages/intro_to_versioning.rst", "tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst", "tutorial/consuming_packages/use_tools_as_conan_packages.rst", "tutorial/creating_packages.rst", "tutorial/creating_packages/add_dependencies_to_packages.rst", "tutorial/creating_packages/build_packages.rst", "tutorial/creating_packages/configure_options_settings.rst", "tutorial/creating_packages/create_your_first_package.rst", "tutorial/creating_packages/define_package_information.rst", "tutorial/creating_packages/handle_sources_in_packages.rst", "tutorial/creating_packages/other_types_of_packages.rst", "tutorial/creating_packages/other_types_of_packages/header_only_packages.rst", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.rst", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages.rst", "tutorial/creating_packages/package_method.rst", "tutorial/creating_packages/preparing_the_build.rst", "tutorial/creating_packages/test_conan_packages.rst", "tutorial/developing_packages.rst", "tutorial/developing_packages/editable_packages.rst", "tutorial/developing_packages/local_package_development_flow.rst", "tutorial/developing_packages/package_layout.rst", "tutorial/other_features.rst", "tutorial/versioning.rst", "tutorial/versioning/conflicts.rst", "tutorial/versioning/lockfiles.rst", "tutorial/versioning/revisions.rst", "tutorial/versioning/version_ranges.rst", "tutorial/versioning/versions.rst", "whatsnew.rst"], "titles": ["Page Not Found", "Changelog", "Devops guide", "Creating an Artifactory backup repo for your sources", "Backing up third-party sources with Conan", "Creating and hosting your own ConanCenter binaries", "Managing package metadata files", "Save and restore packages from/to the cache", "Using ConanCenter packages in production environments", "Versioning", "Handling version ranges and pre-releases", "Examples", "Conan commands examples", "Using packages-lists", "ConanFile methods examples", "ConanFile layout() examples", "Declaring the layout when the Conanfile is inside a subfolder", "Using components and editable packages", "Declaring the layout when we have multiple subprojects", "Declaring the layout when creating packages for third-party libraries", "ConanFile package_info() examples", "Define components for Conan packages that provide multiple libraries", "Propagating environment or configuration information to consumers", "Configuration files examples", "Customize your settings: create your settings_user.yml", "Cross-building examples", "Integrating Conan in Android Studio", "Cross building to Android with the NDK", "Developer tools and flows", "Debugging and stepping into dependencies", "Conan extensions examples", "Custom command: Clean old recipe and package revisions", "Custom commands", "Builtin deployers", "Custom deployers", "Creating a Conan-agnostic deploy of dependencies for developer use", "Copy sources from all your dependencies", "Graph examples", "Use a CMake macro packaged in a dependency", "Depending on same version of a tool-require with different options", "Depending on different versions of the same tool-require", "Use cmake modules inside a tool_requires transparently", "Using the same requirement as a requires and as a tool_requires", "Conan recipe tools examples", "tools.autotools", "Build a simple Autotools project using Conan", "tools.cmake", "CMakeToolchain: Building your project using CMakePresets", "CMakeToolchain: Extending your CMakePresets with Conan generated ones", "CMakeToolchain: Inject arbitrary CMake variables into dependencies", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "Capturing Git scm information", "Conan 2.0 - C and C++ Package Manager Documentation", "Install", "Integrations", " Android", " Autotools", " Bazel", " CLion", " CMake", " JFrog", " Makefile", " Meson", " Visual Studio", " Xcode", "Introduction", "Knowledge", "Cheat sheet", "FAQ", "Core guidelines", "Videos", "Reference", "The binary model", "Customizing the binary compatibility", "The effect of dependencies on package_id", "Extending the binary model", "How the package_id is computed", "Commands", "conan build", "conan cache", "conan config", "conan create", "conan download", "conan editable", "conan export", "conan export-pkg", "Formatter: Graph-info JSON", "conan graph", "conan graph build-order", "conan graph build-order-merge", "conan graph explain", "conan graph info", "conan inspect", "conan install", "conan list", "conan lock", "conan lock add", "conan lock create", "conan lock merge", "conan lock remove", "conan new", "conan profile", "conan remote", "conan remove", "conan search", "conan source", "conan test", "conan upload", "conan version", "Conan Server", "conanfile.py", "Attributes", "Methods", "build()", "build_id()", "build_requirements()", "compatibility()", "config_options()", "configure()", "deploy()", "export()", "export_sources()", "generate()", "init()", "layout()", "package()", "package_id()", "package_info()", "requirements()", "set_name()", "set_version()", "source()", "system_requirements()", "test()", "validate()", "validate_build()", "Running and output", "conanfile.txt", "Configuration files", ".conanrc", "credentials.json", "global.conf", "profiles", "remotes.json", "settings.yml", "source_credentials.json", "Environment variables", "Extensions", "Binary compatibility", "Command wrapper", "Custom commands", "Custom Conan generators", "Deployers", "Hooks", "Package signing", "Profile plugin", "Python API", "Conan API Reference", "Config API", "Download API", "Export API", "Graph API", "Install API", "List API", "New API", "Profiles API", "Remotes API", "Remove API", "Search API", "Upload API", "Python requires", "Recipe tools", "conan.tools.android", "conan.tools.apple", "conan.tools.apple.fix_apple_shared_install_name()", "XcodeBuild", "XcodeDeps", "XcodeToolchain", "conan.tools.build", "conan.tools.cmake", "CMake", "cmake_layout", "CMakeDeps", "CMakeToolchain", "conan.tools.CppInfo", "conan.tools.env", "Environment", "EnvVars", "VirtualBuildEnv", "VirtualRunEnv", "conan.tools.files", "conan.tools.files basic operations", "conan.tools.files checksums", "conan.tools.files downloads", "conan.tools.files AutoPackager", "conan.tools.files patches", "conan.tools.files.symlinks", "conan.tools.gnu", "Autotools", "AutotoolsDeps", "AutotoolsToolchain", "MakeDeps", "PkgConfig", "PkgConfigDeps", "conan.tools.google", "Bazel", "BazelDeps", "BazelToolchain", "conan.tools.intel", "conan.tools.layout", "conan.tools.meson", "Meson", "MesonToolchain", "conan.tools.microsoft", "conan.tools.microsoft.visual", "MSBuild", "MSBuildDeps", "MSBuildToolchain", "NMakeDeps", "VCVars", "vs_layout", "conan.tools.scm", "Git", "Version", "conan.tools.scons", "conan.tools.system", "conan.tools.system.package_manager", "Tutorial", "Working with Conan repositories", "Contributing to Conan Center", "Setting up a Conan remote", "Artifactory Community Edition for C/C++", "Setting-up a Conan Server", "Uploading Packages", "Consuming packages", "Build a simple CMake project using Conan", "How to cross-compile your applications using Conan: host and build contexts", "Building for multiple configurations: Release, Debug, Static and Shared", "Introduction to versioning", "Understanding the flexibility of using conanfile.py vs conanfile.txt", "Using build tools as Conan packages", "Creating packages", "Add dependencies to packages", "Build packages: the build() method", "Configure settings and options in recipes", "Create your first Conan package", "Define information for consumers: the package_info() method", "Handle sources in packages", "Other types of packages", "Header-only packages", "Package prebuilt binaries", "Tool requires packages", "Package files: the package() method", "Preparing the build", "Testing Conan packages", "Developing packages locally", "Packages in editable mode", "Package Development Flow", "Understanding the Conan Package layout", "Other important Conan features", "Versioning", "Dependencies conflicts", "Lockfiles", "Revisions", "Version ranges", "Versions", "What\u2019s new in Conan 2.0"], "terms": {"unfortun": 0, "you": [0, 1, 2, 4, 5, 6, 8, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 64, 70, 73, 74, 80, 81, 84, 85, 86, 87, 96, 99, 105, 106, 108, 112, 114, 116, 117, 118, 119, 120, 122, 123, 127, 128, 129, 131, 132, 136, 141, 142, 144, 146, 147, 149, 151, 152, 155, 156, 157, 158, 160, 175, 180, 181, 182, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 208, 211, 213, 214, 216, 217, 220, 221, 222, 223, 227, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 270, 271], "ar": [0, 1, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 51, 53, 55, 56, 58, 61, 62, 63, 65, 66, 67, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 101, 102, 103, 105, 108, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 155, 157, 158, 159, 166, 167, 174, 175, 176, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 196, 200, 201, 203, 205, 208, 210, 211, 213, 214, 217, 221, 227, 230, 235, 236, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 51, 53, 55, 63, 81, 83, 86, 88, 89, 90, 93, 95, 96, 98, 99, 101, 102, 103, 111, 116, 145, 146, 147, 148, 149, 154, 155, 157, 166, 188, 211, 212, 231, 240, 241, 244, 245, 250, 251, 252, 259, 262], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 53, 56, 58, 64, 65, 74, 78, 79, 80, 83, 84, 85, 86, 93, 95, 96, 97, 98, 101, 102, 103, 105, 111, 114, 116, 119, 120, 126, 127, 136, 137, 145, 146, 147, 160, 175, 187, 192, 196, 203, 205, 227, 231, 243, 244, 245, 247, 249, 264, 269, 271], "exist": [0, 1, 6, 7, 8, 21, 56, 58, 70, 73, 78, 80, 83, 84, 85, 86, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 116, 118, 120, 121, 122, 123, 125, 127, 131, 133, 136, 144, 145, 146, 147, 149, 155, 166, 170, 179, 183, 187, 188, 191, 192, 196, 203, 205, 207, 217, 227, 238, 243, 249, 250, 255, 259, 266, 267, 268, 270, 271], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 51, 56, 65, 78, 79, 84, 86, 95, 98, 103, 119, 130, 131, 134, 135, 141, 149, 153, 160, 181, 182, 188, 196, 199, 203, 242, 245, 247, 248, 250, 251, 254, 259, 262, 266, 267, 268, 269, 270], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 58, 70, 78, 80, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 98, 100, 102, 103, 106, 111, 112, 116, 122, 123, 131, 132, 146, 149, 152, 153, 155, 158, 160, 161, 179, 188, 191, 196, 198, 199, 201, 204, 205, 217, 232, 238, 244, 249, 250, 253, 254, 255, 257, 258, 261, 263, 267, 268, 269, 270, 271], "can": [0, 1, 4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 171, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 227, 229, 231, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 53, 55, 56, 63, 70, 79, 84, 103, 136, 149, 175, 181, 186, 213, 214, 221, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 262, 263, 267, 270], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 57, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 75, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 108, 109, 111, 112, 115, 120, 121, 127, 130, 131, 132, 137, 142, 146, 147, 149, 152, 153, 155, 159, 161, 166, 168, 174, 175, 176, 178, 184, 190, 196, 202, 209, 214, 215, 218, 237, 238, 241, 242, 245, 247, 249, 250, 251, 252, 257, 258, 261, 262, 269, 271], "tree": [0, 65, 147, 157, 187], "us": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 18, 19, 21, 23, 26, 27, 29, 30, 31, 33, 36, 37, 39, 40, 43, 44, 46, 48, 49, 52, 54, 56, 57, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 157, 158, 159, 160, 166, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 237, 238, 239, 243, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271], "search": [0, 1, 31, 35, 51, 63, 74, 82, 99, 106, 114, 116, 144, 148, 152, 161, 179, 196, 203, 236, 238, 240, 242, 249, 251, 263, 271], "bar": [0, 114, 196, 205, 223], "desir": [0, 1, 4, 40, 49, 80, 87, 98, 105, 114, 116, 117, 131, 149, 157, 192, 193, 194, 229], "topic": [0, 1, 9, 70, 91, 96, 97, 155, 250], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 109, 112, 114, 116, 119, 121, 122, 123, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 139, 144, 145, 146, 147, 148, 149, 150, 151, 155, 174, 179, 180, 181, 182, 183, 186, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 203, 204, 205, 207, 208, 213, 214, 217, 219, 221, 223, 227, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 261, 262, 263, 264, 266, 267, 268, 270, 271], "think": [0, 42, 73, 93], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 37, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 56, 57, 63, 70, 73, 74, 78, 79, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 111, 112, 114, 116, 119, 122, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 158, 159, 160, 166, 170, 179, 182, 183, 185, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 211, 213, 217, 220, 223, 227, 228, 231, 239, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271], "error": [0, 1, 6, 21, 31, 39, 40, 56, 58, 79, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 114, 116, 118, 127, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 149, 151, 158, 160, 166, 187, 196, 198, 203, 217, 231, 239, 242, 247, 249, 261, 262, 265, 266, 267, 271], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 51, 53, 55, 56, 58, 63, 66, 70, 74, 78, 80, 81, 86, 98, 99, 105, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 145, 150, 151, 157, 158, 159, 160, 166, 174, 175, 180, 182, 185, 187, 188, 193, 196, 200, 206, 211, 216, 217, 223, 227, 236, 240, 241, 242, 244, 247, 248, 249, 250, 251, 254, 262, 263, 266, 267, 268, 269, 270, 271], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 60, 61, 64, 66, 68, 69, 70, 73, 74, 75, 87, 101, 106, 107, 112, 114, 116, 127, 146, 147, 153, 158, 159, 188, 214, 217, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "open": [0, 4, 5, 8, 26, 29, 48, 55, 56, 57, 63, 73, 116, 118, 141, 146, 150, 159, 196, 222, 227, 233, 235, 237, 240, 242, 261], "issu": [0, 1, 6, 8, 39, 40, 57, 70, 73, 80, 114, 127, 128, 129, 146, 149, 187, 250, 252, 267, 268], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 56, 58, 61, 63, 65, 66, 68, 69, 74, 78, 79, 80, 84, 85, 87, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 112, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 157, 158, 160, 166, 175, 179, 180, 181, 182, 183, 186, 188, 189, 192, 196, 200, 205, 206, 208, 211, 213, 214, 217, 220, 221, 224, 231, 235, 236, 238, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 257, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "more": [1, 4, 6, 7, 8, 13, 16, 18, 19, 31, 36, 42, 45, 47, 51, 56, 58, 60, 63, 65, 70, 73, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 113, 116, 118, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 152, 153, 154, 157, 159, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 182, 183, 187, 188, 189, 193, 194, 196, 203, 206, 208, 210, 211, 212, 214, 215, 216, 221, 223, 233, 234, 235, 239, 246, 253, 255, 261, 262, 263, 264, 265, 268, 269, 271], "detail": [1, 8, 42, 51, 58, 63, 65, 70, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 149, 182, 196, 217, 220, 245, 249, 250, 252, 255, 257, 259, 263], "descript": [1, 91, 96, 97, 105, 127, 128, 158, 208, 250], "major": [1, 5, 35, 39, 40, 56, 70, 98, 106, 116, 147, 175, 188, 235, 240, 266, 269, 271], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 51, 56, 70, 72, 73, 74, 78, 79, 80, 81, 84, 86, 91, 97, 101, 102, 103, 105, 106, 113, 114, 116, 119, 120, 122, 123, 124, 131, 132, 136, 145, 146, 147, 149, 150, 151, 153, 154, 155, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 186, 187, 188, 189, 192, 196, 203, 205, 206, 208, 210, 211, 212, 213, 217, 220, 223, 227, 231, 240, 242, 243, 244, 247, 249, 250, 252, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 271], "conan": [1, 2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 24, 25, 27, 29, 33, 36, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 91, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 204, 205, 206, 208, 210, 211, 212, 216, 220, 221, 222, 223, 224, 227, 232, 238, 239, 242, 243, 244, 246, 247, 248, 252, 254, 255, 256, 258, 260, 261, 265, 266, 267, 268, 269, 270], "bring": [1, 59, 147, 252], "compar": [1, 149, 183, 228, 268, 269], "x": [1, 58, 70, 72, 85, 90, 116, 146, 149, 158, 187, 196, 199, 219, 250, 254, 267, 269, 271], "read": [1, 3, 4, 6, 8, 16, 18, 19, 24, 31, 36, 42, 45, 47, 53, 55, 58, 63, 70, 74, 78, 80, 83, 84, 85, 86, 88, 90, 98, 99, 102, 106, 110, 111, 114, 116, 120, 121, 123, 126, 127, 129, 131, 132, 134, 135, 137, 141, 146, 147, 152, 153, 159, 161, 175, 183, 185, 196, 200, 203, 205, 207, 213, 215, 233, 234, 236, 239, 246, 253, 261, 262, 265, 270, 271], "what": [1, 4, 5, 13, 24, 56, 57, 70, 78, 92, 95, 98, 99, 112, 116, 117, 151, 188, 191, 192, 199, 241, 243, 244, 245, 249, 250, 251, 254, 255, 258, 263, 266, 267, 268], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 60, 62, 63, 65, 70, 73, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 107, 111, 112, 114, 116, 120, 121, 131, 132, 133, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 160, 179, 181, 182, 183, 188, 198, 203, 205, 210, 211, 212, 213, 217, 221, 222, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 57, 58, 63, 70, 73, 74, 78, 79, 80, 81, 82, 84, 98, 100, 101, 102, 103, 104, 106, 107, 116, 130, 131, 147, 152, 154, 155, 157, 159, 161, 163, 175, 179, 181, 182, 186, 187, 188, 189, 191, 193, 194, 205, 213, 221, 222, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 258, 262, 263, 265, 266, 267, 268, 269], "fix": [1, 5, 8, 35, 70, 116, 136, 150, 175, 179, 200, 242, 243, 266], "automat": [1, 3, 6, 31, 41, 47, 58, 63, 70, 80, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 105, 111, 114, 116, 125, 132, 133, 136, 145, 146, 147, 149, 158, 170, 175, 179, 185, 186, 187, 188, 191, 192, 194, 199, 200, 203, 206, 207, 208, 210, 212, 213, 216, 222, 231, 234, 240, 242, 243, 245, 248, 249, 251, 252, 256, 259, 264, 265, 266, 267, 268, 269], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 57, 63, 65, 69, 70, 73, 74, 78, 79, 80, 82, 84, 89, 90, 91, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 117, 118, 119, 120, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 148, 149, 152, 155, 156, 157, 158, 162, 166, 175, 181, 182, 185, 187, 188, 189, 190, 193, 194, 196, 198, 207, 208, 210, 211, 212, 213, 217, 222, 223, 224, 227, 229, 232, 233, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 53, 55, 56, 58, 63, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 115, 117, 119, 124, 125, 126, 127, 130, 136, 144, 146, 147, 151, 152, 154, 155, 156, 157, 158, 159, 160, 169, 179, 185, 186, 187, 188, 191, 196, 198, 200, 201, 203, 205, 211, 214, 216, 217, 224, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 266, 267, 271], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 51, 56, 57, 58, 63, 70, 74, 79, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 108, 111, 116, 119, 124, 125, 126, 127, 129, 130, 134, 135, 145, 146, 147, 150, 151, 152, 153, 154, 157, 158, 159, 160, 166, 168, 170, 174, 182, 185, 188, 192, 196, 203, 210, 217, 222, 227, 232, 233, 238, 240, 242, 243, 245, 246, 249, 251, 254, 255, 257, 259, 260, 261, 262, 263, 266, 267, 268, 270], "save": [1, 2, 6, 31, 39, 40, 53, 56, 57, 70, 90, 100, 106, 114, 116, 119, 126, 146, 147, 156, 187, 188, 192, 195, 198, 208, 217, 250], "file": [1, 2, 3, 4, 7, 8, 10, 11, 13, 16, 17, 18, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58, 61, 62, 63, 64, 65, 67, 68, 69, 70, 73, 74, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 108, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 141, 142, 144, 145, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 170, 174, 176, 179, 180, 181, 182, 184, 185, 186, 189, 190, 191, 202, 203, 207, 209, 210, 213, 214, 215, 216, 218, 220, 222, 224, 227, 229, 232, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 261, 262, 263, 264, 267, 268, 269, 270, 271], "subfold": [1, 7, 14, 15, 17, 19, 85, 129, 157, 158, 179, 186, 196, 200, 203, 236, 252, 255, 263], "tgz": [1, 7, 84, 136, 159, 196, 198, 240, 245, 255], "doesn": [1, 6, 7, 35, 49, 56, 73, 74, 80, 90, 96, 102, 103, 114, 116, 120, 122, 123, 127, 131, 133, 139, 140, 145, 149, 158, 174, 175, 183, 186, 188, 192, 196, 197, 198, 214, 221, 227, 242, 243, 249, 250, 252, 254, 256, 259, 266, 267, 268, 271], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 56, 58, 63, 70, 73, 74, 78, 79, 80, 84, 85, 90, 95, 96, 98, 99, 101, 102, 103, 107, 108, 114, 115, 116, 120, 122, 123, 127, 130, 131, 132, 133, 136, 139, 140, 145, 147, 149, 155, 158, 174, 175, 176, 183, 185, 186, 187, 188, 189, 192, 196, 197, 198, 205, 212, 214, 217, 221, 227, 240, 241, 242, 243, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 266, 267, 268, 271], "15409": 1, "bugfix": [1, 8, 70], "libcxx": [1, 24, 26, 27, 31, 73, 91, 96, 106, 116, 123, 131, 143, 147, 182, 188, 205, 213, 217, 240, 241, 242, 249, 250], "detect": [1, 6, 56, 70, 74, 85, 146, 147, 170, 183, 188, 207, 217, 240, 241, 242, 251], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 88, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 107, 111, 114, 116, 117, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 147, 149, 150, 151, 155, 157, 159, 160, 175, 177, 179, 181, 182, 183, 185, 187, 188, 192, 193, 194, 196, 198, 205, 208, 210, 211, 213, 216, 217, 219, 221, 222, 228, 231, 233, 236, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "cc": [1, 42, 53, 179, 205, 211, 213, 217, 223, 241, 248, 254], "cxx": [1, 19, 21, 27, 42, 85, 146, 149, 179, 205, 213, 217, 223, 241, 248, 249, 250, 251, 254, 257, 258, 259, 262, 263], "env": [1, 24, 26, 39, 40, 53, 74, 76, 85, 107, 132, 133, 138, 141, 146, 147, 151, 176, 185, 191, 192, 193, 194, 205, 222, 223, 229, 240, 242, 245, 256, 259, 262], "var": [1, 39, 40, 74, 85, 107, 114, 133, 146, 147, 151, 187, 188, 191, 192, 193, 194, 204, 213, 223], "15418": 1, "doc": [1, 8, 57, 58, 70, 73, 114, 203, 236, 244, 245, 271], "here": [1, 4, 19, 27, 41, 42, 57, 82, 99, 116, 123, 127, 128, 129, 133, 149, 158, 175, 187, 188, 192, 196, 208, 211, 231, 242, 247, 249, 250, 252, 255, 262, 263], "solv": [1, 29, 56, 58, 74, 133, 147, 152, 155, 187, 208, 266, 268], "winsdk_vers": [1, 85, 146, 188, 222, 224], "bug": [1, 8, 57, 70], "cmaketoolchain": [1, 16, 17, 18, 26, 35, 38, 41, 42, 43, 46, 51, 56, 64, 69, 73, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 132, 142, 146, 147, 149, 176, 184, 185, 186, 187, 240, 241, 242, 243, 244, 245, 248, 250, 252, 254, 256, 258, 259, 262, 263, 271], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 53, 55, 56, 61, 62, 64, 66, 67, 68, 69, 70, 74, 76, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 103, 105, 106, 111, 112, 114, 117, 118, 119, 121, 123, 128, 129, 131, 132, 133, 136, 137, 146, 147, 149, 150, 151, 152, 153, 154, 157, 158, 159, 160, 167, 175, 176, 177, 181, 182, 184, 185, 186, 190, 191, 192, 196, 202, 203, 209, 213, 214, 215, 216, 218, 222, 223, 224, 227, 229, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 269, 271], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 63, 187, 240, 245, 248, 251, 257, 258, 259], "15373": 1, "visibl": [1, 39, 40, 79, 85, 91, 114, 120, 146, 188, 211], "trait": [1, 37, 39, 74, 78, 116, 120, 266, 271], "propag": [1, 8, 14, 20, 116, 120, 132, 133, 142, 191, 208, 246, 254, 266], "build": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 16, 17, 18, 19, 21, 24, 28, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 73, 74, 76, 78, 79, 81, 82, 84, 85, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 106, 111, 115, 117, 119, 120, 123, 124, 125, 127, 129, 130, 131, 135, 136, 138, 139, 140, 141, 142, 146, 147, 149, 152, 154, 155, 156, 157, 158, 166, 170, 175, 176, 177, 179, 180, 181, 182, 184, 185, 186, 187, 189, 191, 192, 193, 194, 196, 200, 202, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 234, 239, 243, 244, 246, 247, 249, 250, 251, 252, 253, 254, 256, 257, 259, 260, 264, 266, 267, 268, 269, 270], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 51, 56, 73, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 111, 114, 116, 118, 120, 122, 123, 127, 128, 131, 132, 133, 136, 137, 141, 142, 145, 146, 147, 148, 170, 171, 179, 181, 183, 185, 186, 187, 188, 192, 193, 194, 196, 198, 200, 205, 207, 210, 212, 216, 217, 219, 221, 222, 227, 231, 242, 244, 245, 248, 249, 250, 252, 254, 258, 262, 266, 267, 269], "15357": 1, "package_id": [1, 6, 7, 13, 31, 74, 76, 77, 80, 84, 85, 87, 91, 93, 95, 96, 99, 108, 112, 116, 117, 119, 123, 127, 133, 139, 140, 146, 152, 166, 242, 249, 253, 254, 266, 268], "calcul": [1, 132, 193, 194, 200, 205, 223, 249, 254], "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 53, 55, 58, 59, 63, 65, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 91, 96, 98, 99, 100, 101, 108, 116, 120, 127, 129, 130, 131, 132, 133, 143, 149, 157, 175, 181, 182, 186, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 213, 217, 221, 222, 240, 241, 242, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 68, 74, 76, 78, 83, 84, 85, 86, 90, 93, 95, 96, 102, 106, 111, 114, 118, 123, 127, 128, 131, 132, 141, 143, 149, 151, 157, 163, 170, 178, 186, 192, 193, 194, 203, 215, 218, 231, 237, 245, 248, 254, 271], "valu": [1, 21, 26, 27, 39, 49, 73, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 144, 145, 146, 147, 148, 151, 155, 160, 163, 171, 177, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 196, 198, 203, 204, 205, 212, 214, 216, 217, 219, 220, 221, 222, 223, 228, 231, 242, 244, 248, 249, 250, 251, 254, 256, 258, 259, 262, 263, 266, 268], "thru": 1, "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 53, 55, 56, 57, 58, 61, 62, 63, 64, 66, 67, 68, 69, 70, 76, 78, 80, 83, 85, 86, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 106, 111, 116, 118, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 142, 143, 147, 149, 152, 154, 156, 157, 158, 175, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 227, 232, 236, 239, 240, 241, 242, 244, 246, 247, 248, 250, 252, 253, 254, 255, 258, 259, 262, 263, 270, 271], "info": [1, 6, 13, 24, 31, 36, 53, 56, 59, 73, 78, 79, 80, 81, 82, 85, 86, 92, 95, 97, 99, 102, 127, 131, 132, 133, 136, 137, 139, 140, 141, 146, 155, 158, 166, 175, 198, 217, 229, 231, 241, 249, 254, 256, 267, 268], "15356": 1, "order": [1, 4, 8, 13, 31, 36, 92, 98, 100, 101, 104, 114, 115, 116, 118, 131, 132, 146, 149, 150, 157, 170, 175, 188, 189, 192, 196, 205, 241, 243, 261, 267, 268, 269], "item": [1, 4, 36, 70, 80, 85, 100, 104, 108, 127, 131, 146, 149, 151, 156, 188, 192, 269], "dump": [1, 155, 191], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 69, 70, 73, 74, 75, 79, 80, 81, 84, 85, 87, 90, 103, 105, 106, 107, 114, 116, 118, 120, 122, 123, 124, 127, 128, 131, 132, 137, 142, 147, 149, 154, 155, 156, 158, 170, 174, 175, 180, 181, 182, 186, 187, 188, 192, 196, 198, 203, 205, 214, 217, 220, 221, 222, 231, 232, 233, 234, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 267, 269, 270], "allow": [1, 3, 4, 6, 13, 49, 55, 63, 68, 70, 74, 80, 82, 83, 85, 86, 88, 93, 95, 96, 98, 99, 101, 102, 106, 107, 111, 114, 116, 117, 118, 119, 120, 125, 126, 129, 131, 132, 145, 146, 147, 149, 150, 151, 152, 153, 154, 160, 167, 186, 187, 188, 189, 191, 196, 203, 217, 219, 221, 222, 231, 240, 243, 244, 250, 252, 262, 264, 267, 269, 270, 271], "reproduc": [1, 4, 6, 56, 70, 106, 119, 175, 196, 227, 239, 243, 255, 265, 267, 268, 270], "independ": [1, 21, 80, 114, 125, 126, 131, 136, 157, 189, 263, 271], "were": [1, 6, 24, 29, 56, 90, 123, 145, 157, 211, 240, 242, 248, 251, 257, 266, 269, 271], "declar": [1, 14, 15, 21, 47, 51, 70, 78, 84, 116, 121, 122, 123, 127, 129, 131, 132, 133, 147, 149, 151, 152, 155, 156, 175, 181, 182, 183, 185, 186, 187, 188, 190, 192, 208, 211, 217, 221, 223, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 263, 266, 271], "revert": [1, 70, 151], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 53, 63, 70, 73, 77, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 101, 102, 105, 106, 108, 109, 111, 112, 114, 116, 124, 128, 129, 131, 132, 136, 137, 142, 145, 146, 147, 148, 149, 151, 153, 160, 166, 170, 174, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 220, 221, 222, 223, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 256, 257, 258, 261, 263, 264, 266, 267, 268, 269, 271], "source_buildenv": 1, "make": [1, 6, 8, 26, 29, 38, 39, 40, 45, 56, 58, 59, 61, 66, 70, 85, 90, 98, 99, 101, 116, 123, 125, 127, 130, 131, 134, 137, 141, 146, 147, 149, 152, 154, 159, 175, 182, 187, 191, 203, 205, 206, 217, 227, 242, 244, 247, 248, 249, 257, 260, 261, 263, 270, 271], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 51, 56, 73, 80, 81, 85, 91, 95, 96, 97, 99, 106, 108, 114, 116, 120, 122, 123, 127, 128, 130, 132, 133, 141, 146, 147, 148, 157, 166, 167, 174, 179, 181, 183, 185, 187, 188, 193, 194, 196, 198, 200, 205, 207, 216, 217, 219, 221, 227, 228, 231, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 266, 269], "15319": 1, "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 57, 58, 63, 64, 65, 70, 86, 97, 113, 116, 120, 121, 122, 123, 124, 131, 132, 144, 145, 146, 147, 149, 150, 153, 158, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 185, 189, 199, 206, 210, 211, 212, 232, 236, 241, 244, 251, 254, 259, 260, 261, 262, 263, 271], "lock": [1, 8, 70, 82, 83, 86, 90, 93, 95, 96, 97, 98, 106, 111, 166, 175, 243, 267], "command": [1, 4, 7, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 53, 57, 58, 61, 62, 67, 68, 69, 70, 72, 73, 74, 76, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 129, 130, 134, 135, 136, 139, 145, 147, 148, 149, 151, 152, 156, 158, 160, 162, 166, 169, 180, 181, 182, 185, 187, 188, 192, 203, 210, 211, 212, 213, 216, 220, 221, 222, 224, 227, 229, 231, 238, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 267, 268, 269, 270], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 51, 53, 55, 56, 58, 61, 63, 64, 65, 70, 74, 76, 77, 78, 79, 80, 81, 83, 84, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 104, 105, 106, 114, 115, 117, 120, 121, 127, 128, 129, 131, 132, 139, 140, 146, 147, 148, 149, 150, 152, 155, 156, 157, 158, 166, 181, 183, 185, 187, 188, 193, 194, 196, 204, 206, 207, 208, 211, 213, 217, 222, 223, 224, 229, 231, 236, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "from": [1, 2, 3, 4, 6, 8, 12, 16, 18, 21, 24, 26, 27, 28, 30, 31, 34, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 152, 155, 156, 157, 159, 166, 168, 169, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 233, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 268, 269, 270, 271], "lockfil": [1, 8, 82, 83, 86, 89, 90, 93, 95, 96, 97, 100, 101, 102, 103, 104, 106, 111, 166, 175, 232, 239, 265], "15284": 1, "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 29, 35, 37, 42, 43, 47, 48, 51, 53, 55, 56, 57, 59, 63, 68, 69, 70, 73, 74, 76, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 104, 105, 106, 111, 116, 118, 120, 127, 129, 130, 131, 132, 133, 142, 146, 147, 149, 154, 176, 186, 188, 193, 200, 214, 232, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262, 263, 271], "ctest": [1, 185, 248], "helper": [1, 18, 45, 53, 55, 61, 62, 64, 67, 68, 69, 70, 73, 85, 116, 118, 126, 127, 136, 137, 141, 146, 149, 150, 155, 180, 183, 185, 187, 188, 191, 192, 196, 202, 205, 207, 210, 212, 216, 219, 220, 227, 228, 254], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 56, 57, 61, 68, 70, 74, 76, 80, 82, 83, 84, 90, 97, 98, 105, 106, 110, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 152, 156, 157, 158, 159, 175, 179, 180, 181, 182, 185, 187, 188, 191, 192, 193, 194, 196, 199, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 230, 232, 239, 246, 247, 249, 250, 252, 254, 255, 256, 258, 259, 261, 262, 263, 266, 270], "launch": [1, 21, 114, 141, 145, 180, 213, 236, 237, 246, 248], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 58, 63, 68, 74, 82, 88, 90, 93, 95, 96, 98, 101, 102, 106, 118, 127, 133, 147, 149, 156, 180, 185, 196, 200, 210, 217, 222, 240, 243, 244, 255, 256, 261, 262, 266, 270], "instead": [1, 4, 5, 8, 19, 35, 56, 58, 63, 68, 70, 74, 80, 84, 85, 88, 93, 95, 96, 98, 102, 105, 108, 114, 116, 127, 131, 132, 141, 146, 149, 175, 180, 185, 187, 188, 192, 221, 227, 242, 243, 244, 245, 247, 248, 250, 251, 252, 258, 261, 262, 263, 266, 267, 269, 270], "via": [1, 4, 7, 10, 13, 31, 38, 49, 58, 64, 65, 70, 74, 78, 80, 85, 90, 116, 127, 129, 133, 146, 155, 157, 160, 175, 185, 187, 188, 189, 191, 234, 240, 241, 269, 271], "target": [1, 8, 17, 18, 19, 21, 27, 42, 53, 56, 63, 70, 74, 85, 98, 105, 116, 118, 131, 149, 157, 177, 180, 183, 185, 203, 210, 211, 212, 213, 216, 217, 220, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 262, 263, 268, 271], "run_test": [1, 118, 185], "15282": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 51, 56, 63, 73, 80, 82, 84, 85, 100, 102, 103, 104, 105, 108, 114, 116, 131, 132, 146, 150, 155, 158, 159, 180, 181, 185, 187, 188, 191, 196, 198, 203, 205, 206, 208, 210, 211, 212, 216, 217, 221, 223, 231, 232, 236, 241, 243, 244, 245, 246, 248, 249, 251, 256, 258, 259, 261, 263, 266, 267, 270], "track": [1, 6, 65, 70, 120, 243, 268], "syntax": [1, 31, 68, 69, 73, 98, 105, 116, 120, 127, 133, 145, 163, 175, 182, 187, 188, 192, 206, 208, 222, 240, 243, 250, 266, 270], "host_vers": [1, 42], "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 51, 56, 58, 61, 62, 64, 65, 66, 67, 69, 70, 74, 77, 78, 79, 80, 81, 82, 84, 85, 90, 95, 96, 98, 99, 102, 103, 104, 106, 112, 114, 116, 117, 118, 119, 120, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 142, 146, 147, 149, 151, 152, 155, 156, 157, 158, 175, 181, 182, 186, 187, 188, 192, 193, 194, 196, 200, 208, 213, 214, 219, 221, 222, 227, 231, 236, 239, 240, 241, 244, 245, 246, 249, 250, 251, 254, 255, 256, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271], "15274": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 63, 66, 68, 69, 70, 73, 86, 98, 101, 102, 105, 116, 122, 123, 128, 130, 133, 146, 147, 154, 155, 157, 159, 170, 175, 179, 181, 182, 188, 191, 200, 203, 205, 212, 221, 222, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 267, 271], "microsoft": [1, 68, 76, 85, 116, 127, 132, 146, 147, 149, 176, 185, 188, 203, 213, 220, 221, 222, 223, 224], "vcvar": [1, 85, 127, 146, 149, 176, 218, 220, 222], "given": [1, 6, 8, 31, 36, 42, 78, 79, 80, 84, 85, 88, 96, 101, 102, 103, 104, 122, 131, 132, 139, 141, 147, 150, 151, 166, 170, 188, 189, 192, 196, 198, 200, 205, 211, 217, 219, 227, 243, 264, 267, 268, 270, 271], "15272": 1, "pkglist": [1, 6, 13, 87, 89, 108, 112, 264], "formatt": [1, 45, 87, 96, 112, 152], "export": [1, 5, 6, 7, 10, 16, 38, 56, 74, 82, 84, 86, 91, 101, 106, 117, 126, 127, 128, 129, 130, 134, 135, 136, 152, 158, 159, 161, 175, 196, 200, 227, 247, 250, 251, 252, 255, 258, 260, 261, 263, 268, 270], "15266": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 53, 56, 70, 74, 77, 78, 80, 84, 85, 88, 90, 91, 96, 98, 99, 101, 103, 105, 106, 107, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 157, 160, 163, 170, 175, 178, 180, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 200, 203, 204, 205, 206, 207, 208, 211, 213, 214, 217, 221, 222, 223, 224, 232, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 252, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "conan_log_level": [1, 151], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 56, 58, 74, 78, 101, 102, 104, 126, 132, 133, 136, 141, 145, 147, 187, 189, 191, 196, 213, 217, 227, 250, 259, 261, 265, 271], "verbos": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 132, 141, 146, 147, 151, 180, 185, 205, 216, 220, 263], "global": [1, 3, 4, 7, 10, 42, 58, 73, 76, 80, 85, 116, 121, 127, 131, 143, 147, 151, 152, 158, 163, 175, 188, 189, 207, 208, 211, 221, 248, 254, 271], "level": [1, 13, 16, 18, 21, 27, 29, 63, 70, 73, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 117, 121, 126, 131, 137, 141, 146, 149, 150, 151, 175, 180, 187, 198, 208, 211, 263, 271], "15263": 1, "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 51, 53, 56, 58, 74, 81, 82, 83, 85, 86, 88, 89, 90, 93, 95, 96, 97, 99, 102, 103, 105, 110, 111, 114, 116, 126, 127, 128, 129, 130, 132, 133, 134, 135, 138, 144, 146, 147, 155, 157, 158, 159, 166, 170, 175, 176, 179, 180, 185, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 207, 210, 211, 212, 213, 214, 217, 219, 223, 224, 240, 242, 244, 245, 248, 250, 251, 254, 255, 256, 257, 259, 261, 262, 263, 271], "xxx": [1, 6, 13, 87, 132, 134, 135, 146, 147, 185, 187, 188, 191, 217], "xxxx": [1, 7, 68, 80, 82, 85, 91, 127, 134, 135, 188, 210, 212, 221, 271], "rais": [1, 6, 21, 36, 56, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 111, 114, 116, 118, 127, 136, 137, 139, 140, 141, 146, 149, 158, 160, 183, 187, 196, 197, 198, 219, 227, 231, 239, 247, 249, 266], "request": [1, 31, 57, 70, 73, 85, 95, 98, 107, 108, 114, 116, 121, 145, 146, 151, 158, 234], "15257": 1, "oper": [1, 6, 8, 49, 58, 59, 64, 65, 70, 80, 84, 98, 106, 108, 115, 118, 124, 143, 147, 150, 158, 176, 182, 188, 191, 195, 227, 231, 233, 240, 241, 242, 249, 250, 252, 255, 260, 264, 267, 269, 271], "support": [1, 8, 17, 26, 27, 47, 48, 49, 51, 57, 59, 60, 63, 64, 65, 66, 70, 73, 80, 96, 99, 105, 114, 120, 129, 132, 134, 135, 139, 142, 146, 147, 149, 151, 152, 156, 157, 160, 178, 183, 187, 205, 208, 213, 217, 219, 231, 239, 247, 252, 258, 261, 262, 263, 271], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 63, 70, 74, 76, 78, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 105, 106, 110, 111, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 146, 147, 149, 150, 153, 154, 156, 157, 158, 159, 163, 166, 167, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 51, 56, 74, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 150, 152, 154, 155, 156, 157, 158, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 266, 267, 268, 270, 271], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 51, 53, 55, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 80, 81, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 117, 120, 123, 125, 128, 131, 132, 133, 136, 137, 139, 142, 146, 147, 154, 156, 157, 158, 166, 167, 170, 175, 179, 181, 182, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 206, 208, 211, 212, 213, 216, 217, 218, 223, 229, 231, 232, 236, 239, 240, 241, 243, 244, 245, 246, 248, 249, 250, 255, 256, 258, 259, 262, 263, 264, 265, 267, 268, 269, 270, 271], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 56, 64, 69, 98, 116, 127, 132, 142, 157, 176, 184, 185, 188, 240, 241, 243, 244, 245, 247, 248, 250, 251, 254, 259, 262, 271], "conandep": [1, 181, 206, 221, 229], "aggreg": [1, 24, 53, 103, 106, 132, 170, 176, 181, 182, 192, 204, 221, 240, 245, 262], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 67, 69, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 106, 107, 108, 109, 111, 112, 114, 116, 119, 123, 125, 126, 127, 129, 131, 132, 134, 135, 136, 142, 144, 145, 146, 147, 149, 151, 154, 155, 156, 157, 158, 163, 166, 170, 171, 174, 175, 176, 179, 180, 181, 182, 187, 188, 189, 192, 193, 194, 196, 198, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 217, 221, 222, 224, 229, 231, 232, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 259, 261, 262, 263, 264, 266, 268, 271], "direct": [1, 36, 91, 98, 114, 116, 120, 127, 132, 157, 181, 187, 193, 221, 266], "like": [1, 4, 6, 7, 8, 10, 13, 16, 18, 19, 21, 26, 27, 29, 31, 35, 39, 40, 41, 42, 45, 47, 48, 49, 56, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 158, 160, 166, 167, 168, 175, 176, 177, 179, 180, 181, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 207, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 229, 231, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "style": [1, 83, 86, 93, 95, 96, 98, 102, 107, 111, 179, 196], "15207": 1, "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 57, 58, 61, 76, 80, 85, 96, 105, 106, 114, 116, 127, 132, 141, 144, 145, 146, 147, 150, 176, 185, 187, 188, 190, 193, 194, 204, 207, 213, 217, 218, 222, 224, 240, 241, 242, 244, 245, 246, 248, 254, 256, 258, 259, 262], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 53, 55, 58, 60, 63, 64, 68, 69, 73, 74, 75, 76, 81, 82, 83, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 117, 118, 119, 120, 122, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 142, 143, 144, 145, 147, 149, 150, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 181, 185, 188, 191, 194, 196, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 221, 229, 232, 235, 238, 240, 241, 242, 244, 245, 246, 249, 250, 252, 254, 258, 259, 262, 263, 264, 268, 269, 271], "configur": [1, 3, 6, 7, 8, 11, 14, 16, 17, 18, 19, 20, 21, 26, 29, 31, 35, 38, 41, 42, 45, 47, 48, 49, 51, 53, 56, 57, 58, 59, 61, 62, 68, 69, 70, 73, 74, 76, 77, 78, 79, 82, 85, 86, 93, 95, 96, 98, 99, 102, 103, 106, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 131, 132, 136, 139, 140, 147, 149, 150, 151, 158, 163, 166, 170, 175, 178, 180, 182, 183, 185, 186, 188, 193, 194, 198, 203, 205, 207, 210, 212, 216, 217, 218, 219, 220, 222, 224, 230, 232, 233, 236, 239, 240, 241, 245, 246, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 268, 269, 270], "preset": [1, 29, 47, 48, 64, 85, 118, 129, 146, 186, 188, 261, 262, 263], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 51, 53, 55, 56, 58, 63, 64, 70, 74, 76, 80, 85, 86, 91, 95, 96, 102, 108, 112, 115, 116, 117, 118, 119, 120, 127, 129, 131, 132, 135, 138, 144, 146, 147, 149, 152, 154, 155, 157, 158, 182, 183, 185, 187, 188, 190, 191, 194, 203, 208, 210, 211, 212, 213, 216, 220, 221, 223, 224, 227, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 267, 268, 270, 271], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 51, 58, 70, 74, 82, 85, 86, 87, 90, 91, 96, 99, 103, 106, 114, 116, 117, 118, 119, 120, 127, 131, 142, 146, 152, 166, 185, 188, 200, 210, 216, 221, 227, 232, 237, 241, 246, 247, 250, 251, 252, 253, 255, 256, 258, 261, 262, 267, 271], "15192": 1, "warn": [1, 24, 53, 56, 63, 73, 79, 85, 106, 108, 116, 134, 135, 141, 147, 158, 196, 217, 227, 249, 271], "about": [1, 4, 6, 16, 18, 19, 21, 24, 31, 37, 42, 45, 47, 51, 53, 55, 56, 63, 64, 65, 69, 70, 74, 76, 78, 80, 82, 83, 86, 88, 90, 92, 96, 98, 102, 105, 106, 110, 111, 113, 116, 117, 118, 120, 122, 123, 127, 128, 129, 131, 132, 136, 137, 139, 142, 143, 147, 149, 151, 155, 160, 188, 202, 208, 214, 217, 229, 234, 236, 239, 240, 242, 246, 248, 249, 251, 252, 254, 258, 259, 261, 262, 265, 268, 269, 271], "potenti": [1, 5, 40, 58, 87, 119, 133, 134, 135, 188, 192, 268], "migrat": [1, 70, 219, 244], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 56, 58, 73, 74, 80, 90, 98, 101, 103, 108, 114, 116, 118, 120, 125, 127, 131, 132, 133, 134, 135, 136, 146, 147, 149, 150, 154, 157, 159, 175, 186, 188, 189, 192, 203, 211, 227, 240, 241, 242, 243, 248, 251, 254, 256, 257, 266, 267, 268, 269, 270], "print": [1, 4, 26, 39, 40, 45, 49, 53, 72, 79, 96, 99, 105, 108, 116, 141, 151, 155, 159, 160, 207, 217, 247, 256, 258], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 63, 70, 74, 80, 81, 84, 85, 98, 116, 127, 130, 131, 145, 146, 147, 150, 157, 159, 181, 182, 188, 192, 210, 211, 221, 222, 240, 244, 245, 255, 256, 260, 261, 264, 267, 268, 270, 271], "time": [1, 6, 8, 10, 24, 26, 42, 53, 56, 63, 70, 74, 81, 90, 99, 106, 108, 114, 116, 119, 120, 124, 125, 126, 127, 128, 129, 132, 133, 147, 152, 159, 175, 185, 187, 188, 193, 194, 198, 203, 208, 240, 243, 244, 245, 249, 252, 255, 256, 257, 260, 261, 263, 264, 265, 266, 268, 269, 271], "fail": [1, 4, 6, 21, 56, 58, 73, 79, 83, 86, 93, 95, 96, 98, 102, 106, 111, 116, 118, 137, 139, 151, 154, 157, 166, 185, 219, 231, 249, 254, 255, 261, 266, 267], "15174": 1, "deploi": [1, 30, 33, 53, 56, 83, 96, 98, 117, 131, 157, 167, 240, 245, 256, 262], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 51, 56, 57, 64, 69, 70, 73, 74, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 101, 102, 103, 105, 106, 108, 109, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 139, 142, 146, 147, 148, 149, 150, 152, 154, 155, 156, 157, 158, 159, 166, 168, 174, 175, 179, 183, 185, 186, 187, 188, 191, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 208, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 232, 233, 238, 240, 242, 243, 244, 245, 246, 247, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "explicit": [1, 41, 84, 98, 130, 145, 199, 223, 264, 265, 267, 270, 271], "per": [1, 6, 68, 70, 80, 105, 118, 127, 130, 132, 136, 147, 175, 181, 210, 211, 221], "deploy": [1, 6, 11, 30, 35, 74, 76, 83, 84, 85, 87, 96, 124, 136, 146, 152, 192, 217], "15172": 1, "sourc": [1, 2, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 28, 30, 31, 34, 35, 38, 39, 40, 42, 43, 45, 48, 49, 50, 53, 55, 56, 57, 73, 74, 75, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 115, 117, 118, 125, 126, 127, 129, 132, 139, 146, 147, 150, 158, 159, 166, 167, 174, 175, 185, 186, 187, 188, 192, 193, 196, 198, 200, 204, 205, 208, 214, 227, 232, 233, 234, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 254, 255, 256, 257, 258, 259, 260, 261, 265, 268, 270], "inject": [1, 39, 40, 43, 46, 62, 63, 85, 116, 131, 132, 141, 145, 146, 147, 150, 152, 154, 212, 223, 245, 248, 258], "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 56, 84, 114, 115, 116, 120, 123, 127, 136, 149, 157, 175, 196, 198, 204, 207, 219, 221, 258], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 53, 55, 56, 57, 58, 74, 84, 85, 105, 114, 115, 126, 129, 147, 152, 158, 159, 175, 176, 196, 200, 208, 211, 217, 222, 240, 242, 243, 244, 250, 252, 259, 260, 262, 263, 268], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 51, 56, 63, 64, 67, 68, 69, 74, 76, 77, 79, 81, 82, 83, 85, 86, 87, 90, 91, 93, 95, 96, 97, 99, 102, 106, 108, 111, 114, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 141, 143, 144, 145, 146, 150, 152, 153, 155, 157, 160, 163, 170, 177, 179, 180, 181, 182, 183, 184, 185, 187, 188, 191, 192, 193, 194, 198, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 229, 231, 232, 233, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 257, 258, 259, 262, 263, 267, 268], "yml": [1, 4, 7, 11, 23, 51, 56, 63, 73, 74, 76, 80, 85, 116, 125, 126, 127, 128, 136, 143, 147, 159, 196, 200, 246], "settings_us": [1, 11, 23, 73, 80, 143], "configapi": [1, 161, 163], "15151": 1, "builtin": [1, 11, 30, 70, 149], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 57, 58, 60, 63, 64, 65, 68, 69, 70, 73, 80, 105, 112, 118, 127, 132, 138, 149, 156, 159, 177, 234, 249, 250, 259, 267], "15150": 1, "core": [1, 3, 4, 10, 31, 45, 53, 57, 71, 78, 80, 84, 85, 114, 116, 131, 141, 145, 146, 147, 151, 175, 269], "warnings_as_error": [1, 85, 141, 146], "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 51, 56, 63, 67, 68, 69, 73, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 117, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 132, 139, 140, 146, 148, 152, 153, 155, 157, 158, 170, 181, 182, 183, 184, 185, 187, 188, 196, 198, 203, 205, 212, 213, 215, 220, 221, 222, 232, 235, 239, 244, 246, 248, 250, 252, 254, 256, 258, 265, 268, 269, 271], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 51, 107, 146, 150, 198, 256, 271], "argument": [1, 6, 7, 26, 29, 31, 35, 36, 47, 49, 64, 73, 74, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 124, 134, 135, 141, 145, 146, 151, 152, 154, 156, 157, 159, 166, 170, 174, 180, 181, 185, 186, 187, 188, 189, 191, 192, 196, 203, 205, 210, 213, 214, 220, 227, 231, 241, 242, 244, 248, 249, 250, 252, 255, 261, 262, 264, 267, 269, 270], "ftp_download": [1, 195], "commun": [1, 3, 8, 73, 85, 114, 132, 146, 149, 224, 235, 237], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 53, 56, 58, 63, 70, 74, 76, 78, 80, 82, 83, 85, 86, 90, 93, 95, 96, 102, 111, 116, 120, 123, 132, 143, 146, 149, 151, 152, 157, 161, 163, 166, 188, 191, 205, 212, 213, 216, 217, 219, 223, 239, 240, 242, 244, 245, 249, 254, 266, 267, 268, 269], "redefin": [1, 98, 147], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 58, 61, 63, 64, 65, 67, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 98, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 149, 151, 152, 153, 154, 155, 156, 157, 158, 166, 167, 168, 174, 175, 179, 181, 182, 185, 187, 188, 189, 191, 192, 194, 196, 199, 203, 205, 207, 208, 210, 211, 214, 216, 217, 221, 222, 227, 230, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 258, 265, 266, 267, 269, 270], "replac": [1, 19, 35, 49, 51, 73, 85, 116, 147, 151, 163, 188, 192, 196, 257], "zlibng": [1, 147], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 70, 73, 79, 81, 84, 85, 87, 91, 93, 95, 96, 98, 99, 102, 108, 109, 112, 116, 127, 132, 133, 142, 146, 147, 148, 156, 181, 187, 193, 194, 206, 208, 211, 221, 224, 229, 239, 240, 241, 242, 243, 244, 245, 250], "conflict": [1, 39, 40, 58, 74, 98, 115, 116, 120, 133, 147, 166, 187, 191, 208, 217, 232, 254, 265], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 58, 59, 64, 65, 70, 73, 74, 75, 78, 79, 80, 81, 82, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 105, 111, 116, 117, 118, 119, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 144, 145, 146, 147, 149, 150, 151, 153, 154, 155, 156, 158, 175, 181, 187, 188, 189, 191, 196, 198, 203, 204, 205, 207, 208, 212, 213, 214, 217, 223, 227, 231, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "system": [1, 5, 7, 8, 35, 39, 40, 42, 45, 51, 53, 55, 56, 57, 59, 61, 63, 64, 68, 73, 76, 80, 85, 98, 106, 113, 114, 116, 117, 118, 120, 127, 130, 132, 133, 136, 141, 143, 144, 146, 147, 150, 152, 156, 157, 158, 170, 176, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 196, 204, 205, 207, 221, 240, 241, 242, 244, 245, 246, 249, 250, 251, 255, 257, 258, 261, 262, 267, 268], "altern": [1, 56, 70, 86, 90, 92, 95, 116, 134, 135, 147, 175, 192, 227, 255], "wrap": [1, 118, 141, 147, 192, 213, 217, 224, 271], "anoth": [1, 7, 13, 35, 41, 51, 79, 116, 119, 120, 127, 137, 147, 149, 155, 187, 191, 203, 211, 231, 233, 238, 240, 241, 248, 249, 251, 255, 257, 258, 261, 268], "15136": 1, "stderr": [1, 70, 141, 185, 271], "captur": [1, 6, 11, 43, 86, 102, 136, 193, 194, 196, 227, 231, 241, 243, 244, 245, 248, 252, 267], "15121": 1, "platform_requir": 1, "definit": [1, 17, 61, 63, 64, 66, 67, 70, 80, 85, 90, 98, 105, 106, 107, 116, 123, 132, 136, 146, 147, 149, 152, 182, 188, 190, 192, 193, 194, 204, 205, 217, 221, 222, 223, 227, 244, 258, 261, 263, 270], "platform": [1, 8, 17, 39, 40, 55, 57, 58, 59, 67, 68, 73, 74, 80, 84, 95, 106, 122, 125, 126, 127, 130, 132, 136, 145, 146, 147, 149, 179, 188, 217, 219, 220, 221, 222, 231, 239, 240, 241, 244, 248, 259, 261, 268], "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 78, 80, 83, 84, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 105, 108, 109, 110, 111, 114, 117, 118, 124, 127, 130, 132, 133, 134, 135, 142, 145, 146, 147, 149, 150, 154, 157, 166, 185, 187, 188, 189, 191, 192, 196, 198, 200, 205, 207, 208, 217, 229, 242, 243, 244, 246, 255, 257, 258, 265, 267, 270, 271], "14871": 1, "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 57, 73, 74, 78, 80, 82, 85, 86, 97, 98, 100, 101, 102, 103, 106, 116, 117, 123, 127, 132, 133, 136, 137, 139, 142, 146, 147, 152, 155, 157, 161, 167, 181, 192, 221, 231, 239, 240, 241, 243, 245, 249, 264, 265, 266, 267, 268, 270], "explain": [1, 5, 56, 63, 70, 73, 78, 81, 92, 136, 146, 147, 149, 182, 189, 199, 231, 233, 239, 241, 242, 244, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 263, 265, 267, 270], "miss": [1, 5, 26, 35, 36, 42, 45, 53, 55, 78, 79, 80, 81, 83, 84, 86, 91, 92, 93, 95, 96, 98, 102, 111, 116, 137, 147, 158, 231, 240, 241, 242, 244, 245, 247, 248, 249, 251, 254, 255, 257, 258, 266, 268, 271], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 51, 53, 56, 57, 58, 60, 73, 74, 76, 79, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 115, 117, 118, 119, 120, 121, 124, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 146, 147, 148, 149, 152, 157, 167, 175, 179, 182, 187, 196, 203, 208, 217, 232, 233, 234, 235, 236, 238, 240, 241, 242, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 86, 91, 96, 129, 181, 187, 188, 189, 194, 196, 205, 206, 207, 208, 211, 250, 251, 252, 254, 255, 256, 263], "initi": [1, 6, 56, 63, 117, 128, 132, 134, 135, 166, 217, 225, 270], "compon": [1, 14, 15, 20, 127, 129, 178, 185, 187, 189, 206, 207, 208, 211, 221, 246], "13994": 1, "accept": [1, 5, 7, 89, 97, 98, 99, 102, 107, 109, 116, 141, 144, 147, 149, 180, 185, 188, 196, 200, 208, 213, 216, 220, 231], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 53, 57, 61, 63, 66, 68, 69, 73, 79, 80, 81, 82, 84, 87, 97, 101, 103, 105, 108, 109, 112, 114, 116, 117, 121, 127, 128, 131, 132, 141, 142, 145, 146, 147, 148, 152, 155, 161, 166, 170, 171, 174, 182, 183, 185, 186, 187, 188, 192, 196, 198, 203, 205, 206, 208, 210, 212, 217, 220, 221, 222, 223, 227, 229, 231, 232, 238, 243, 250, 251, 254, 255, 261, 262, 267, 268, 270, 271], "15297": 1, "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 53, 56, 57, 58, 70, 72, 73, 74, 77, 78, 80, 82, 83, 85, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 104, 105, 106, 110, 114, 117, 120, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 143, 144, 145, 147, 148, 149, 150, 151, 152, 157, 158, 160, 169, 170, 187, 188, 191, 196, 198, 200, 205, 208, 217, 221, 227, 228, 236, 237, 240, 242, 243, 245, 248, 249, 250, 251, 252, 254, 256, 257, 261, 262, 266, 269], "scope": [1, 116, 129, 141, 142, 146, 147, 191, 192, 193, 194, 213, 219, 224], "separ": [1, 21, 56, 82, 86, 108, 114, 116, 119, 129, 147, 151, 186, 187, 191, 192, 217, 237, 245, 251, 263, 269], "15296": 1, "rang": [1, 8, 9, 70, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 111, 116, 131, 133, 142, 146, 147, 149, 175, 232, 239, 250, 265, 267, 270], "escap": [1, 107, 151], "report": [1, 6, 13, 57, 58, 70, 85, 95, 98, 114, 137, 146, 149, 167, 231], "involv": [1, 261, 262], "15222": 1, "hard": [1, 149], "set_nam": [1, 97, 117, 127], "set_vers": [1, 97, 116, 117, 127, 175, 227, 270], "mutat": 1, "name": [1, 3, 4, 6, 7, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 56, 58, 65, 74, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 105, 106, 107, 109, 110, 114, 117, 120, 127, 128, 129, 131, 132, 134, 135, 136, 137, 139, 140, 142, 145, 146, 147, 148, 149, 151, 152, 154, 156, 157, 158, 170, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 206, 207, 212, 213, 217, 220, 221, 222, 224, 227, 229, 231, 236, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 266, 267, 268, 269, 270, 271], "version": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 35, 37, 38, 41, 42, 45, 47, 48, 49, 51, 55, 56, 57, 58, 59, 63, 65, 70, 73, 74, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 112, 114, 117, 120, 121, 127, 128, 131, 133, 135, 136, 137, 139, 140, 142, 146, 147, 149, 150, 152, 154, 156, 157, 160, 166, 175, 176, 179, 182, 183, 186, 187, 188, 191, 196, 199, 200, 203, 207, 208, 213, 217, 219, 222, 223, 224, 226, 227, 231, 232, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 271], "line": [1, 8, 10, 21, 26, 29, 31, 49, 56, 61, 62, 67, 68, 69, 70, 73, 74, 80, 83, 86, 93, 95, 96, 98, 102, 105, 106, 111, 114, 116, 118, 134, 135, 145, 146, 151, 154, 155, 156, 160, 180, 181, 185, 187, 188, 196, 203, 210, 211, 216, 220, 222, 224, 240, 242, 245, 247, 248, 250, 252, 257, 268, 269, 270, 271], "15211": 1, "format": [1, 6, 7, 13, 51, 65, 72, 82, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 106, 107, 108, 109, 111, 112, 113, 116, 121, 127, 132, 136, 137, 145, 149, 150, 154, 175, 189, 192, 196, 198, 206, 208, 214, 217, 222, 235, 248, 255, 256, 264, 271], "text": [1, 99, 114, 115, 116, 135, 146, 147, 155, 175, 196, 270], "stdout": [1, 70, 97, 99, 105, 113, 116, 141, 185, 271], "15170": 1, "avoid": [1, 5, 6, 10, 56, 58, 70, 74, 83, 85, 86, 90, 93, 95, 96, 97, 98, 102, 105, 108, 111, 114, 115, 116, 119, 120, 123, 127, 128, 133, 136, 146, 150, 151, 153, 159, 175, 187, 188, 192, 196, 203, 205, 214, 245, 248, 249, 254, 259, 261, 266, 267, 268], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 51, 55, 56, 63, 65, 70, 74, 76, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 124, 127, 131, 136, 146, 147, 151, 155, 157, 158, 175, 196, 198, 200, 207, 214, 217, 227, 240, 242, 244, 245, 247, 248, 251, 258, 259, 263, 268, 271], "due": [1, 81, 116, 263], "cmake_policy_default_cmp0091": 1, "unus": [1, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 232, 267], "variabl": [1, 26, 35, 36, 43, 45, 46, 57, 61, 76, 78, 80, 85, 105, 114, 116, 127, 131, 132, 144, 145, 146, 147, 150, 178, 182, 185, 187, 189, 190, 193, 194, 204, 205, 206, 207, 208, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224, 231, 241, 242, 244, 245, 248, 256, 257, 258, 259, 268, 269, 271], "15127": 1, "deprec": [1, 70, 85, 91, 141, 146, 149, 199, 205, 217], "system_tool": [1, 245], "favor": [1, 116], "platform_tool_requir": 1, "align": [1, 7, 149], "regular": [1, 41, 116, 127, 129, 132, 147, 151, 158, 175, 187, 198, 208, 221, 237, 239, 241, 254], "ensur": [1, 4, 8, 36, 42, 58, 63, 78, 86, 120, 149, 188, 196, 210, 213, 242], "have": [1, 4, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 45, 49, 51, 53, 55, 56, 58, 63, 65, 70, 73, 74, 78, 79, 80, 81, 82, 83, 84, 86, 93, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 120, 123, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 151, 155, 156, 158, 166, 175, 179, 181, 182, 187, 188, 196, 198, 203, 205, 208, 211, 213, 214, 217, 221, 222, 231, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "least": [1, 3, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 133, 243, 247, 254, 258, 264], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 51, 53, 55, 58, 65, 70, 73, 74, 85, 98, 105, 106, 116, 135, 136, 150, 176, 196, 226, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 270], "is_dirti": [1, 227], "statu": [1, 38, 49, 141, 227], "sure": [1, 8, 24, 29, 38, 42, 58, 99, 127, 130, 137, 141, 159, 175, 196, 217, 270], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 51, 53, 56, 63, 70, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 93, 95, 96, 97, 98, 99, 102, 105, 107, 108, 111, 112, 115, 116, 119, 120, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 166, 167, 175, 176, 181, 182, 183, 185, 186, 187, 188, 189, 193, 194, 196, 198, 203, 204, 205, 207, 208, 211, 212, 217, 221, 229, 231, 239, 241, 242, 243, 245, 246, 248, 250, 251, 252, 253, 255, 256, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "process": [1, 5, 7, 26, 53, 56, 58, 63, 70, 74, 80, 91, 101, 103, 105, 114, 116, 117, 118, 123, 132, 147, 151, 155, 157, 158, 188, 193, 217, 238, 242, 243, 246, 250, 255, 257, 267, 270, 271], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 58, 64, 66, 67, 68, 69, 70, 73, 74, 78, 80, 84, 85, 90, 98, 101, 105, 107, 114, 116, 117, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 139, 140, 144, 146, 147, 153, 160, 174, 175, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 238, 240, 241, 242, 244, 245, 247, 248, 250, 256, 261, 263, 267], "whole": [1, 6, 10, 17, 70, 78, 80, 84, 98, 116, 139, 175, 187, 188, 192, 207], "repo": [1, 4, 5, 6, 16, 56, 58, 65, 70, 105, 106, 158, 227, 263, 270], "similarli": [1, 147, 236, 269], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 56, 57, 58, 66, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 108, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 140, 146, 147, 149, 150, 151, 152, 155, 175, 176, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 210, 217, 222, 223, 227, 231, 232, 236, 238, 240, 241, 243, 244, 245, 246, 247, 249, 250, 252, 256, 258, 260, 261, 262, 263, 267, 268, 270], "15289": 1, "clear": [1, 107, 116, 131, 132, 139, 191, 244, 249, 254, 267], "header": [1, 6, 17, 35, 39, 40, 42, 74, 79, 80, 81, 91, 116, 120, 129, 130, 131, 132, 138, 139, 150, 179, 187, 189, 198, 221, 246, 250, 251, 253, 255, 256, 257, 261, 263, 271], "python_requir": [1, 74, 97, 101, 102, 103, 104, 117, 127, 128, 152, 166, 188, 214, 232, 243, 267, 269], "tool_requir": [1, 11, 35, 37, 39, 40, 74, 79, 80, 86, 90, 93, 95, 96, 98, 102, 105, 106, 117, 127, 131, 132, 133, 136, 175, 187, 188, 193, 204, 208, 211, 221, 241, 242, 243, 244, 245, 256, 259, 269], "15285": 1, "restor": [1, 2, 57, 192, 193, 194, 242, 243, 245], "portabl": [1, 70, 116], "across": [1, 8, 55, 146, 152, 153, 240], "window": [1, 8, 13, 17, 26, 29, 35, 39, 40, 42, 48, 55, 58, 59, 70, 74, 80, 81, 84, 85, 87, 99, 102, 103, 108, 112, 116, 119, 122, 127, 130, 132, 136, 139, 146, 147, 149, 160, 168, 192, 196, 204, 205, 213, 217, 231, 236, 237, 240, 242, 244, 245, 248, 249, 250, 251, 252, 255, 256, 261, 263, 268, 271], "oss": [1, 103, 132, 149, 268], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 101, 102, 104, 108, 111, 112, 116, 118, 119, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 141, 145, 146, 147, 149, 150, 151, 155, 157, 175, 183, 187, 188, 191, 196, 203, 217, 227, 231, 238, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 263, 264, 266, 267, 268, 270, 271], "relativ": 1, "absolut": [1, 35, 36, 49, 85, 105, 127, 144, 146, 147, 157, 169, 187, 188, 196, 198, 200, 201, 257], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 51, 64, 70, 80, 81, 85, 119, 122, 131, 143, 146, 147, 179, 180, 182, 183, 188, 205, 213, 217, 220, 231, 240, 241, 242, 244, 255, 259, 267], "cmakepreset": [1, 43, 46, 64, 85, 127, 146, 185, 186, 188, 244, 261, 262, 263, 271], "ignor": [1, 6, 29, 53, 74, 124, 134, 135, 151, 185, 200, 201, 227, 231, 267], "toolchain": [1, 26, 27, 45, 46, 61, 62, 64, 68, 69, 80, 85, 118, 127, 129, 146, 147, 149, 182, 185, 203, 205, 212, 217, 222, 240, 241, 242, 244, 245, 246, 249, 250, 256, 258, 262], "15215": 1, "html": [1, 45, 58, 73, 96, 155, 271], "mislead": 1, "node": [1, 13, 91, 137, 166], "15196": 1, "serial": [1, 7, 116], "show": [1, 21, 31, 39, 40, 42, 47, 48, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 120, 146, 147, 214, 227, 239, 242, 246, 250, 252, 258, 260, 261, 262, 263], "json": [1, 3, 4, 6, 13, 21, 47, 48, 56, 65, 76, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 101, 103, 106, 107, 108, 109, 111, 112, 113, 127, 128, 136, 137, 143, 155, 185, 186, 188, 255, 261, 262, 263, 264, 271], "15185": 1, "nmakedep": [1, 176, 189, 218], "quot": [1, 99, 107], "15140": 1, "lru": [1, 99, 108, 264], "data": [1, 6, 8, 80, 114, 116, 119, 126, 127, 128, 129, 132, 143, 183, 187, 196, 208, 215, 237, 252], "storage_path": [1, 85, 146], "15135": 1, "package_metadata_fold": [1, 6], "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 55, 61, 78, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 139, 140, 146, 147, 149, 156, 174, 175, 177, 181, 182, 187, 188, 193, 194, 196, 204, 205, 206, 207, 208, 211, 212, 213, 221, 222, 223, 224, 229, 230, 251, 255, 261, 269, 270], "15126": 1, "pyinstal": [1, 58], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 56, 57, 58, 63, 70, 74, 76, 80, 82, 83, 84, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 116, 121, 125, 127, 128, 129, 134, 135, 136, 137, 138, 139, 142, 147, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 166, 167, 175, 181, 182, 187, 193, 194, 200, 204, 205, 206, 208, 210, 211, 212, 213, 221, 222, 224, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 268, 269, 270], "broken": [1, 5, 65, 70, 129, 136, 201, 257, 268], "python": [1, 8, 31, 51, 56, 58, 61, 68, 70, 74, 76, 83, 85, 100, 101, 104, 113, 114, 116, 128, 141, 146, 147, 152, 154, 155, 156, 158, 160, 166, 185, 188, 192, 203, 205, 208, 210, 217, 220, 223, 244], "useless": [1, 128, 187], "distutil": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 49, 51, 56, 57, 58, 59, 61, 62, 66, 67, 68, 69, 70, 73, 78, 80, 82, 96, 98, 102, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 143, 145, 147, 149, 152, 153, 155, 156, 159, 175, 176, 177, 179, 180, 181, 182, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 229, 231, 232, 241, 243, 244, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 263, 267, 269, 270, 271], "15116": 1, "backup": [1, 7, 85, 114, 146, 174], "download_cach": [1, 4, 85, 146], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 53, 55, 58, 61, 62, 63, 65, 66, 67, 68, 74, 75, 78, 80, 82, 85, 98, 100, 105, 106, 107, 112, 116, 117, 122, 123, 131, 132, 136, 137, 146, 147, 148, 149, 157, 175, 177, 181, 188, 189, 191, 192, 196, 204, 213, 217, 219, 227, 230, 235, 239, 240, 241, 244, 246, 250, 256, 264, 265, 267, 268, 269, 270], "meson": [1, 11, 43, 57, 59, 70, 74, 76, 85, 105, 146, 147, 176, 240, 248, 250], "autotool": [1, 11, 43, 57, 59, 70, 85, 105, 127, 146, 176, 179, 189, 191, 192, 202, 204, 205, 240, 248, 250], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 53, 55, 63, 68, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 87, 91, 92, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 116, 118, 119, 120, 123, 127, 129, 130, 131, 132, 133, 136, 139, 142, 146, 147, 150, 152, 154, 155, 157, 160, 175, 179, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 196, 198, 203, 204, 205, 207, 211, 213, 216, 220, 221, 222, 223, 229, 231, 240, 241, 242, 243, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271], "simultan": [1, 187, 261, 266], "databas": [1, 85, 146, 231], "connect": [1, 53, 73, 85, 96, 107, 114, 146, 236], "15029": 1, "upload": [1, 3, 5, 7, 12, 29, 56, 65, 70, 73, 74, 80, 82, 85, 87, 89, 106, 107, 108, 114, 116, 125, 126, 146, 148, 152, 159, 161, 203, 232, 233, 234, 236, 243, 254, 255, 261, 264, 265, 271], "regardless": [1, 84, 249], "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 53, 55, 56, 58, 61, 62, 63, 66, 72, 73, 74, 79, 80, 82, 83, 84, 85, 86, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 113, 114, 116, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 140, 141, 144, 145, 146, 147, 149, 150, 152, 154, 157, 158, 159, 163, 175, 179, 180, 185, 187, 188, 191, 196, 198, 203, 205, 207, 210, 211, 212, 213, 214, 216, 217, 220, 221, 223, 231, 240, 242, 243, 244, 246, 249, 250, 251, 255, 261, 262, 264, 266, 269, 271], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 61, 62, 65, 66, 67, 69, 70, 73, 74, 75, 78, 79, 80, 84, 86, 87, 90, 92, 96, 97, 98, 100, 101, 103, 114, 116, 118, 120, 121, 123, 127, 129, 132, 133, 136, 137, 142, 145, 146, 147, 149, 150, 151, 155, 157, 158, 166, 175, 177, 179, 182, 185, 188, 196, 201, 210, 214, 217, 222, 227, 231, 238, 242, 243, 246, 249, 250, 251, 252, 254, 255, 256, 263, 264, 266, 267, 268, 269, 271], "15013": 1, "compact": [1, 84], "better": [1, 5, 6, 24, 27, 31, 36, 56, 64, 82, 98, 103, 116, 118, 131, 134, 135, 150, 192, 237, 255, 256, 266, 267, 271], "ux": [1, 109, 143], "15011": 1, "metadata": [1, 2, 7, 57, 65, 84, 112, 115, 131, 174, 250, 268], "pass": [1, 4, 13, 26, 36, 39, 45, 49, 53, 55, 64, 80, 84, 85, 86, 98, 105, 106, 114, 116, 123, 128, 129, 136, 141, 145, 146, 154, 155, 157, 163, 179, 180, 181, 182, 185, 186, 189, 198, 200, 203, 205, 206, 210, 213, 217, 220, 227, 231, 240, 248, 249, 250, 251, 252, 254, 258, 259, 261, 267, 271], "15007": 1, "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 51, 73, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 141, 146, 158, 245, 247, 248, 249, 252, 256, 258, 261, 268, 271], "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 85, 86, 105, 116, 131, 134, 135, 141, 146, 185, 200, 205, 210, 212, 217, 222, 223, 227, 247, 254, 258], "flag": [1, 49, 84, 85, 96, 122, 131, 132, 146, 149, 179, 180, 182, 187, 203, 204, 205, 208, 212, 216, 217, 219, 222, 223, 229, 249], "14966": 1, "implement": [1, 2, 7, 8, 41, 70, 74, 79, 84, 90, 105, 114, 121, 127, 130, 136, 149, 153, 157, 160, 175, 176, 180, 188, 214, 220, 228, 235, 237, 250, 252, 254, 255, 264, 266, 271], "load": [1, 16, 41, 45, 53, 56, 62, 98, 116, 125, 126, 128, 134, 135, 146, 147, 158, 169, 170, 175, 188, 195, 198, 203, 211, 213, 229, 242, 244, 270], "ci": [1, 2, 4, 5, 6, 7, 8, 56, 65, 74, 95, 106, 116, 118, 149, 150, 151, 267, 271], "workflow": [1, 56, 158, 262], "move": [1, 7, 35, 70, 74, 136, 175, 196, 250, 252, 257, 262, 263, 266, 267, 268, 270], "over": [1, 6, 8, 10, 72, 74, 80, 84, 85, 87, 98, 128, 131, 136, 144, 146, 147, 151, 154, 157, 170, 175, 180, 188, 198, 205, 207, 208, 227, 248, 251, 252, 257, 264, 266, 269, 271], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 56, 70, 73, 76, 77, 78, 92, 93, 96, 98, 99, 100, 102, 106, 116, 117, 123, 127, 131, 133, 136, 139, 147, 149, 160, 166, 170, 175, 193, 194, 204, 205, 238, 240, 242, 243, 245, 249, 250, 259, 268], "intersect": [1, 10], "compat": [1, 8, 24, 27, 45, 63, 70, 76, 77, 79, 80, 83, 86, 87, 93, 95, 96, 98, 102, 111, 112, 116, 117, 131, 147, 149, 152, 158, 187, 188, 203, 208, 217, 242, 244, 246, 256], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 68, 69, 70, 74, 83, 86, 87, 93, 95, 96, 98, 102, 111, 114, 116, 127, 129, 131, 147, 150, 157, 175, 181, 185, 187, 188, 189, 193, 203, 205, 214, 217, 221, 231, 232, 233, 236, 239, 246, 261, 263, 267, 269, 271], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 58, 59, 73, 81, 91, 96, 99, 106, 147, 149, 179, 202, 213, 217, 231, 240, 242, 244, 245, 248, 250, 251, 255, 261, 263], "14858": 1, "pkgconfigdep": [1, 45, 55, 61, 67, 132, 176, 202, 217, 248], "listen": [1, 114, 207, 210, 237], "system_package_vers": [1, 187, 208], "properti": [1, 21, 42, 67, 68, 91, 96, 116, 127, 129, 133, 163, 179, 188, 204, 213, 217, 221, 222, 230, 246, 257, 258, 262], "14808": 1, "shorthand": 1, "cli": [1, 10, 13, 31, 70, 91, 96, 146, 148, 151, 155, 185, 210, 236, 270], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 51, 73, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 99, 102, 104, 106, 107, 108, 109, 110, 111, 112, 114, 116, 120, 122, 123, 127, 129, 131, 132, 133, 141, 142, 146, 147, 148, 149, 157, 174, 183, 185, 186, 187, 188, 192, 196, 197, 198, 203, 205, 206, 208, 211, 213, 216, 217, 223, 227, 238, 240, 241, 242, 243, 244, 252, 254, 269, 270], "host": [1, 8, 13, 24, 30, 35, 42, 70, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 146, 147, 157, 166, 170, 177, 183, 187, 188, 189, 194, 198, 205, 208, 213, 217, 219, 221, 223, 231, 232, 235, 236, 239, 242, 256], "14727": 1, "control": [1, 4, 5, 49, 56, 70, 73, 78, 86, 116, 129, 135, 149, 151, 181, 188, 221, 255, 267, 269, 271], "clean": [1, 6, 7, 30, 32, 56, 58, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 196, 210, 255, 261, 267, 268], "artifact": [1, 6, 7, 13, 29, 65, 70, 74, 79, 84, 85, 87, 98, 108, 112, 116, 117, 119, 124, 129, 130, 131, 133, 146, 157, 159, 174, 188, 235, 236, 250, 255, 257, 261, 262, 263, 268, 271], "14054": 1, "overwrit": [1, 7, 24, 78, 83, 86, 90, 93, 95, 96, 98, 102, 105, 106, 111, 136, 175, 191, 208], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 53, 76, 115, 117, 127, 130, 132, 136, 176, 185, 186, 188, 200, 205, 211, 217, 225, 232, 239, 241, 250, 252, 254, 255, 256, 259, 260, 261, 262], "nor": [1, 36, 70, 124, 128, 136, 137, 174, 231], "15058": 1, "astra": 1, "elbru": [1, 149], "altlinux": 1, "distribut": [1, 7, 35, 45, 56, 58, 70, 106, 136, 149, 160, 231, 237], "apt": [1, 58, 85, 117, 137, 146, 230], "systempackagemanag": 1, "15051": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 51, 53, 55, 56, 58, 70, 73, 74, 80, 84, 85, 96, 106, 108, 114, 116, 131, 136, 137, 145, 146, 147, 150, 158, 168, 174, 177, 179, 183, 185, 186, 187, 189, 192, 195, 200, 203, 208, 211, 213, 217, 219, 220, 223, 227, 229, 231, 240, 242, 243, 248, 252, 254, 255, 256, 261, 262, 263, 266, 268, 271], "linux": [1, 8, 26, 27, 35, 44, 48, 55, 58, 59, 70, 80, 81, 85, 87, 95, 99, 102, 103, 137, 139, 146, 147, 149, 183, 198, 213, 231, 240, 241, 242, 244, 245, 248, 251, 255, 261, 263, 268], "mint": [1, 58], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 51, 56, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 106, 107, 111, 112, 114, 116, 118, 129, 131, 132, 136, 137, 139, 140, 146, 147, 149, 151, 152, 155, 158, 160, 166, 167, 174, 182, 183, 187, 192, 196, 197, 198, 203, 211, 213, 214, 217, 219, 227, 231, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 264, 267, 268, 271], "commit": [1, 19, 56, 65, 70, 74, 116, 129, 136, 196, 227, 247, 248, 251, 252, 258, 262, 263, 268, 270], "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 53, 56, 70, 73, 76, 82, 83, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 106, 108, 109, 111, 112, 114, 143, 145, 146, 147, 152, 161, 166, 167, 168, 174, 196, 227, 232, 233, 236, 237, 238, 240, 242, 245, 246, 249, 255, 262, 271], "server": [1, 4, 5, 6, 7, 8, 13, 29, 53, 56, 57, 65, 70, 74, 76, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 102, 105, 106, 107, 108, 111, 112, 116, 125, 126, 131, 145, 146, 150, 151, 159, 166, 198, 203, 232, 235, 236, 238, 240, 243, 252, 254, 264, 268, 271], "even": [1, 4, 6, 35, 36, 47, 51, 58, 59, 70, 73, 74, 79, 81, 87, 98, 103, 107, 112, 116, 118, 120, 123, 127, 133, 134, 135, 136, 137, 146, 147, 148, 149, 154, 157, 158, 175, 196, 214, 221, 238, 241, 243, 248, 249, 250, 254, 265, 266, 267, 268, 269, 270], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 85, 98, 136, 150, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268], "15023": 1, "appl": [1, 24, 42, 69, 70, 73, 76, 81, 85, 91, 96, 99, 106, 146, 147, 149, 176, 180, 181, 182, 186, 188, 203, 205, 215, 240, 242, 250], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 51, 56, 73, 74, 80, 81, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 103, 106, 108, 111, 112, 116, 119, 122, 123, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 145, 146, 147, 149, 150, 158, 159, 160, 168, 175, 179, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 236, 240, 241, 242, 243, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266], "15015": 1, "autotoolstoolchain": [1, 45, 61, 85, 146, 176, 191, 202, 203, 248], "extraflag": 1, "prioriti": [1, 98, 104, 116, 123, 132, 133, 134, 135, 145, 146, 147, 151, 170, 191, 266], "15005": 1, "color": [1, 31, 116, 247, 248, 251, 258, 259], "15002": 1, "sqlite3": [1, 127], "unsupport": [1, 252], "less": [1, 6, 35, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 270], "than": [1, 8, 56, 63, 70, 73, 78, 80, 85, 86, 87, 94, 101, 108, 116, 119, 121, 122, 128, 131, 132, 134, 135, 140, 141, 146, 149, 150, 157, 175, 182, 183, 187, 188, 205, 208, 222, 223, 231, 240, 243, 249, 253, 259, 268, 269, 271], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 70, 74, 75, 80, 98, 104, 105, 116, 119, 120, 125, 127, 131, 133, 134, 135, 136, 142, 147, 149, 150, 158, 176, 183, 185, 186, 188, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 223, 224, 225, 231, 240, 242, 243, 244, 254, 255, 264, 266, 268, 269, 271], "forward": [1, 6, 45, 53, 55, 70, 175, 198, 266, 270], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 56, 63, 74, 78, 79, 119, 120, 146, 147, 175, 188, 205, 211, 217, 251, 261, 262, 271], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 74, 78, 79, 81, 82, 83, 84, 86, 87, 90, 93, 95, 96, 98, 100, 101, 102, 103, 104, 106, 108, 111, 112, 116, 127, 131, 142, 149, 155, 166, 175, 196, 232, 239, 240, 245, 249, 251, 254, 256, 257, 262, 264, 265, 267], "forc": [1, 6, 31, 36, 41, 74, 83, 85, 86, 91, 93, 95, 96, 98, 102, 104, 105, 106, 107, 111, 112, 114, 116, 120, 145, 146, 147, 149, 151, 174, 188, 205, 213, 240, 243, 266, 267, 268], "rebuild": [1, 5, 79, 116, 255, 271], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 58, 70, 74, 75, 77, 78, 80, 85, 98, 104, 116, 117, 123, 132, 133, 141, 146, 147, 149, 157, 200, 208, 214, 239, 242, 258, 260, 261, 262, 264, 269, 270, 271], "previou": [1, 2, 6, 7, 13, 70, 78, 95, 98, 99, 101, 103, 149, 155, 181, 186, 187, 188, 191, 217, 222, 231, 238, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 269, 270], "still": [1, 5, 29, 39, 40, 56, 58, 101, 108, 116, 119, 120, 123, 131, 132, 149, 166, 174, 227, 254, 261, 268, 269, 271], "project": [1, 2, 4, 5, 16, 17, 18, 19, 21, 24, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 78, 80, 85, 86, 105, 114, 116, 117, 129, 132, 146, 157, 175, 180, 181, 182, 186, 203, 206, 210, 211, 212, 213, 214, 217, 221, 222, 225, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 269, 271], "14938": 1, "affect": [1, 5, 6, 10, 58, 78, 80, 81, 98, 116, 122, 123, 131, 133, 147, 149, 175, 182, 185, 187, 188, 196, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 230, 241, 244, 246, 248, 249, 251, 254, 261, 263], "14932": 1, "The": [1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 26, 27, 29, 31, 35, 36, 39, 40, 41, 42, 45, 47, 49, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 76, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 166, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 234, 236, 237, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 53, 55, 56, 57, 59, 70, 73, 74, 78, 79, 80, 81, 82, 83, 86, 87, 90, 91, 93, 95, 96, 99, 100, 101, 102, 105, 106, 111, 114, 116, 117, 118, 124, 127, 129, 130, 133, 134, 135, 136, 137, 139, 140, 142, 146, 147, 149, 152, 154, 156, 157, 158, 159, 160, 161, 166, 179, 180, 181, 182, 185, 186, 188, 193, 194, 203, 204, 205, 207, 210, 211, 212, 213, 216, 217, 221, 222, 224, 229, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 254, 255, 256, 258, 261, 263, 266, 267, 269, 270, 271], "pkgconfig": [1, 85, 146, 176, 202, 217], "fill_cpp_info": [1, 207], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 53, 55, 56, 70, 75, 78, 80, 96, 102, 116, 127, 132, 147, 149, 151, 175, 186, 214, 235, 236, 237, 240, 247, 248, 262, 268, 269, 270], "noisi": 1, "quiet": [1, 85, 141, 146, 180, 185, 216, 220], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 29, 35, 36, 39, 40, 49, 51, 56, 58, 63, 69, 70, 73, 74, 78, 80, 85, 86, 90, 96, 98, 99, 101, 103, 105, 108, 112, 116, 117, 118, 120, 125, 126, 127, 128, 130, 131, 132, 136, 137, 139, 140, 142, 145, 146, 147, 149, 150, 167, 177, 187, 188, 189, 193, 194, 196, 217, 223, 227, 229, 240, 242, 244, 245, 249, 251, 252, 254, 255, 259, 262, 264, 266, 267, 268, 269, 270, 271], "buildinfo": 1, "14886": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 78, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 108, 111, 114, 116, 118, 119, 120, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 144, 146, 147, 149, 150, 152, 154, 156, 157, 158, 160, 166, 174, 175, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 193, 196, 198, 203, 217, 219, 220, 221, 222, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 51, 58, 59, 65, 70, 74, 80, 84, 86, 87, 95, 98, 102, 105, 108, 112, 114, 116, 120, 127, 131, 132, 133, 136, 138, 139, 140, 141, 145, 146, 147, 149, 150, 151, 153, 156, 158, 160, 167, 170, 175, 179, 181, 187, 191, 192, 193, 205, 207, 217, 221, 231, 235, 236, 242, 243, 244, 248, 249, 250, 252, 255, 256, 259, 262, 264, 267, 268, 271], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 55, 56, 58, 63, 64, 68, 70, 74, 77, 78, 79, 82, 85, 90, 92, 96, 97, 101, 102, 105, 108, 112, 114, 116, 120, 122, 123, 128, 129, 131, 132, 133, 134, 135, 137, 141, 142, 146, 149, 150, 151, 152, 155, 156, 175, 179, 186, 187, 188, 189, 191, 200, 204, 205, 206, 213, 217, 220, 223, 227, 231, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 258, 261, 262, 263, 266, 268, 269, 270, 271], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 56, 57, 58, 63, 70, 74, 82, 84, 85, 89, 90, 92, 96, 98, 99, 106, 108, 114, 116, 125, 126, 136, 146, 147, 148, 150, 152, 159, 161, 166, 176, 195, 227, 233, 236, 238, 240, 243, 244, 245, 249, 252, 253, 256, 260, 262, 264, 266, 268, 271], "14852": 1, "min": [1, 96, 182, 217], "xro": [1, 149], "simul": 1, "14776": 1, "unnecessari": [1, 56, 119], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 56, 78, 80, 82, 84, 90, 93, 96, 98, 101, 103, 105, 116, 118, 119, 120, 121, 126, 127, 128, 129, 131, 132, 133, 135, 136, 137, 139, 145, 146, 147, 149, 154, 156, 157, 170, 175, 187, 188, 189, 192, 196, 205, 214, 216, 221, 238, 241, 242, 244, 248, 250, 252, 254, 255, 257, 258, 263, 266, 267, 268, 269, 270], "skip": [1, 4, 36, 85, 86, 87, 90, 91, 96, 116, 118, 141, 174, 179, 187, 188, 233, 241, 248, 249, 254, 259], "transit": [1, 13, 36, 74, 86, 87, 98, 120, 127, 133, 147, 175, 181, 187, 193, 204, 221, 239, 261], "15082": 1, "15042": 1, "download_sourc": [1, 36, 85, 136, 146], "edit": [1, 3, 14, 15, 21, 26, 29, 51, 58, 70, 73, 74, 82, 106, 107, 114, 116, 127, 129, 132, 136, 147, 149, 160, 175, 232, 235, 237, 240, 243, 260, 263, 268], "15004": 1, "incorrectli": 1, "xcconfig": [1, 69, 181, 182], "14898": 1, "export_sourc": [1, 7, 16, 18, 56, 84, 116, 117, 125, 127, 129, 200], "been": [1, 4, 6, 8, 13, 26, 58, 59, 65, 70, 74, 78, 84, 86, 90, 98, 99, 108, 123, 127, 132, 133, 136, 138, 139, 140, 147, 149, 167, 175, 181, 187, 193, 242, 243, 249, 250, 251, 261, 262, 264, 268, 271], "14850": 1, "properli": [1, 97, 146, 250, 259], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 51, 57, 58, 59, 65, 70, 73, 79, 81, 85, 91, 95, 96, 98, 99, 102, 105, 106, 116, 119, 129, 131, 132, 136, 146, 147, 149, 153, 157, 160, 175, 180, 181, 182, 185, 186, 187, 188, 193, 194, 198, 204, 205, 213, 217, 220, 221, 222, 227, 232, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269], "candid": 1, "14846": 1, "end": [1, 4, 70, 73, 74, 120, 133, 146, 147, 157, 158, 188, 192, 216, 242, 251, 259, 268, 269], "activ": [1, 8, 29, 35, 41, 49, 56, 58, 63, 70, 80, 85, 116, 127, 132, 141, 146, 149, 151, 152, 181, 185, 187, 188, 191, 193, 194, 208, 211, 221, 223, 224, 241, 242, 245, 256], "pre": [1, 9, 45, 53, 56, 58, 70, 73, 82, 85, 90, 106, 116, 136, 145, 146, 152, 158, 192, 214, 244, 246, 253, 262, 263, 269], "resolut": [1, 125, 152], "full": [1, 5, 6, 24, 36, 39, 40, 51, 61, 65, 66, 68, 69, 70, 79, 80, 84, 86, 90, 98, 99, 101, 105, 116, 121, 127, 131, 137, 142, 149, 153, 157, 159, 161, 166, 175, 187, 188, 191, 207, 213, 227, 249, 257, 261, 270], "14814": 1, "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 51, 53, 55, 56, 58, 70, 73, 77, 78, 79, 80, 84, 87, 88, 90, 97, 98, 101, 103, 104, 105, 108, 112, 114, 116, 118, 122, 123, 125, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 154, 155, 157, 158, 175, 180, 181, 182, 186, 187, 188, 189, 192, 193, 194, 196, 203, 205, 207, 208, 211, 221, 227, 231, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 263, 264, 266, 267, 268, 269, 270, 271], "correctli": [1, 17, 18, 24, 29, 42, 63, 74, 86, 103, 138, 187, 188, 189, 196, 203, 242, 246, 250, 254, 255, 259], "lower": [1, 214, 243, 255, 269], "bound": [1, 269], "exclud": [1, 39, 40, 83, 84, 85, 86, 93, 95, 96, 98, 102, 111, 116, 196, 221, 227, 243, 269], "upper": [1, 269], "wrong": [1, 92, 95, 130, 136], "cppstd": [1, 24, 26, 27, 73, 78, 91, 96, 106, 116, 123, 131, 147, 149, 160, 176, 182, 188, 205, 212, 223, 240, 241, 242, 249, 250, 254, 271], "newer": [1, 8, 70, 83, 86, 93, 95, 96, 98, 100, 101, 102, 104, 111, 116, 149, 166, 256, 269, 270], "clang": [1, 24, 26, 27, 42, 45, 70, 73, 80, 81, 85, 91, 96, 99, 106, 108, 113, 140, 146, 147, 149, 160, 179, 186, 188, 200, 217, 240, 242, 250], "introduc": [1, 29, 51, 77, 114, 136, 239, 249, 254, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14837": 1, "14781": 1, "dry": [1, 108, 112], "14760": 1, "host_tool": 1, "package_manag": [1, 85, 116, 132, 137, 146, 176, 230], "indic": [1, 4, 26, 63, 73, 85, 86, 90, 133, 146, 148, 185, 191, 196, 210, 211, 224, 242, 244, 256, 266], "whether": [1, 83, 85, 86, 89, 90, 95, 96, 98, 102, 114, 127, 137, 146, 181, 183, 219, 248, 251, 258, 263, 271], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 51, 53, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 85, 91, 96, 97, 98, 105, 116, 117, 119, 120, 123, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 146, 147, 150, 155, 179, 181, 182, 187, 188, 189, 192, 196, 202, 207, 208, 211, 213, 221, 232, 239, 240, 241, 244, 245, 246, 247, 250, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 53, 55, 58, 70, 73, 79, 95, 96, 98, 102, 107, 116, 124, 125, 126, 128, 136, 139, 147, 151, 160, 166, 175, 179, 186, 188, 213, 231, 238, 240, 242, 245, 248, 249, 251, 255, 258, 259, 262, 266, 267, 270], "being": [1, 6, 8, 10, 13, 31, 70, 74, 78, 79, 80, 81, 83, 86, 93, 95, 96, 98, 101, 102, 111, 116, 120, 125, 126, 127, 129, 132, 133, 134, 135, 136, 151, 153, 158, 159, 166, 175, 179, 185, 186, 196, 210, 211, 216, 242, 250, 255, 259, 266, 270, 271], "14819": 1, "set_properti": [1, 17, 21, 41, 132, 208, 211, 251], "14813": 1, "minor": [1, 70, 78, 79, 116, 147, 149, 175, 266, 269, 271], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 80, 131, 179, 256], "none": [1, 31, 36, 38, 49, 78, 85, 91, 96, 97, 98, 116, 127, 129, 139, 141, 146, 147, 158, 162, 166, 167, 170, 171, 174, 179, 180, 183, 185, 186, 187, 188, 191, 192, 196, 198, 200, 201, 203, 205, 206, 207, 210, 216, 217, 219, 220, 227, 231], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 77, 79, 85, 86, 93, 98, 100, 101, 103, 104, 116, 119, 130, 131, 134, 135, 146, 147, 150, 151, 153, 158, 159, 160, 170, 181, 182, 188, 193, 194, 198, 200, 205, 213, 216, 222, 227, 231, 232, 233, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270], "found": [1, 4, 21, 26, 27, 39, 40, 49, 53, 58, 83, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 129, 132, 137, 138, 144, 147, 150, 157, 185, 187, 188, 196, 203, 214, 217, 240, 242, 245, 254, 263, 267], "offlin": [1, 70], "14800": 1, "reus": [1, 29, 41, 70, 116, 117, 127, 128, 130, 132, 136, 152, 233, 240, 250, 251, 259, 264], "session": [1, 58], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 53, 57, 63, 78, 85, 114, 120, 144, 146, 157, 232, 233, 238, 242, 248, 251, 254], "14795": 1, "rel": [1, 5, 18, 35, 36, 63, 81, 105, 114, 116, 117, 118, 129, 132, 134, 135, 144, 147, 157, 158, 179, 187, 188, 191, 196, 200, 201, 257, 262, 263, 266, 268], "partial": [1, 79, 83, 86, 89, 90, 93, 95, 96, 97, 98, 101, 102, 103, 104, 111, 267, 271], "directori": [1, 26, 27, 35, 36, 38, 47, 58, 98, 105, 114, 116, 125, 126, 127, 129, 132, 134, 135, 136, 144, 146, 147, 148, 155, 187, 196, 200, 201, 211, 214, 227, 242, 248, 254, 255, 260, 261, 262], "14782": 1, "14743": 1, "arg": [1, 31, 85, 118, 151, 155, 203, 210, 213, 224, 227, 231, 270], "cmd": [1, 26, 116, 132, 138, 147, 154, 192, 203, 220, 227, 237, 259], "14737": 1, "block": [1, 51, 271], "interfac": [1, 6, 56, 63, 70, 79, 114, 152, 189], "select": [1, 21, 26, 63, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 106, 107, 108, 109, 111, 112, 113, 177, 186, 188, 196, 213, 220, 236, 246, 257, 264], "kei": [1, 56, 85, 105, 114, 116, 127, 132, 146, 150, 155, 188, 200, 205, 217, 222, 223, 236, 252, 260, 261], "14731": 1, "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 58, 70, 74, 79, 84, 85, 98, 99, 105, 114, 116, 117, 124, 125, 126, 127, 129, 130, 136, 146, 152, 157, 175, 195, 199, 200, 238, 246, 250, 251, 252, 254, 255, 256, 258, 260, 271], "larg": [1, 6, 10, 114, 116, 131, 147, 192, 260, 270], "14716": 1, "mesontoolchain": [1, 55, 67, 85, 146, 176, 215, 216], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 56, 70, 73, 74, 78, 79, 80, 84, 85, 86, 87, 91, 97, 98, 99, 101, 103, 105, 106, 108, 109, 114, 116, 118, 119, 120, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 141, 144, 146, 147, 149, 151, 152, 155, 158, 175, 176, 182, 185, 186, 187, 188, 193, 196, 198, 201, 203, 206, 208, 210, 211, 213, 217, 221, 222, 228, 231, 236, 238, 240, 242, 243, 247, 249, 250, 254, 255, 256, 260, 261, 264, 266, 267, 268, 269, 270, 271], "14692": 1, "cl": [1, 70, 223], "plugin": [1, 26, 59, 70, 74, 76, 82, 85, 114, 121, 131, 141, 152, 153, 154, 159, 256], "14682": 1, "mechan": [1, 7, 13, 56, 70, 73, 74, 80, 114, 116, 121, 127, 135, 136, 147, 150, 152, 157, 175, 189, 192, 227, 242, 243, 249, 265, 267, 268, 270, 271], "transform": [1, 151, 196, 217], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 53, 55, 65, 70, 75, 78, 81, 83, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 114, 116, 123, 131, 132, 136, 137, 143, 146, 147, 179, 182, 186, 187, 188, 189, 192, 200, 205, 212, 213, 216, 221, 222, 223, 224, 235, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 258, 262, 264, 268, 269, 271], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 51, 53, 63, 70, 79, 85, 132, 138, 146, 147, 149, 186, 188, 205, 214, 217, 223, 236, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 262, 268], "ld": [1, 53, 96, 205, 217, 241], "blank": [1, 114, 191, 217], "string": [1, 6, 26, 42, 45, 51, 55, 80, 85, 99, 105, 114, 116, 131, 134, 135, 141, 146, 147, 148, 174, 185, 186, 188, 191, 192, 196, 200, 205, 208, 212, 217, 240, 241, 248, 250, 270, 271], "14676": 1, "nobara": 1, "distro": [1, 58, 146, 149, 231], "dnf": [1, 85, 146, 230], "map": [1, 79, 127, 132, 175, 180, 185, 188, 205, 217, 220, 223, 231, 255, 263], "14668": 1, "b_vscrt": [1, 217], "14664": 1, "regex": [1, 80, 116, 131, 187], "pattern": [1, 6, 7, 13, 31, 80, 83, 84, 85, 86, 87, 88, 93, 95, 96, 98, 99, 102, 104, 107, 108, 111, 112, 114, 116, 130, 131, 136, 141, 142, 143, 171, 174, 187, 196, 198, 221, 227, 228, 242, 249, 257, 264], "14621": 1, "makedep": [1, 66, 176, 202], "tweak": [1, 188], "14605": 1, "detect_api": [1, 146, 147], "jinja": [1, 49, 145, 146, 147, 150, 192], "templat": [1, 26, 47, 49, 70, 81, 82, 96, 106, 116, 143, 147, 150, 169, 186, 188, 192], "14578": 1, "14532": 1, "14740": 1, "improv": [1, 6, 70, 118, 271], "conanapi": [1, 31, 155, 161, 162], "init": [1, 56, 117, 127, 175, 270], "failur": [1, 70, 85, 146, 198], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 53, 70, 74, 85, 87, 90, 98, 103, 105, 106, 107, 112, 116, 122, 123, 128, 146, 147, 166, 174, 177, 181, 187, 188, 196, 205, 208, 231, 232, 233, 238, 242, 244, 245, 247, 248, 249, 250, 253, 256, 257, 259, 263, 266, 268, 270, 271], "duplic": [1, 39, 40, 53, 107, 132], "alias": [1, 116, 175, 187, 208], "14644": 1, "regress": [1, 70], "win_bash": [1, 85, 91, 146], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 51, 56, 70, 73, 74, 78, 79, 80, 81, 85, 91, 95, 96, 97, 99, 102, 105, 106, 108, 116, 120, 123, 127, 130, 132, 133, 134, 142, 147, 149, 152, 156, 175, 181, 182, 185, 186, 187, 188, 192, 202, 205, 208, 212, 217, 221, 231, 232, 233, 238, 239, 240, 241, 248, 249, 250, 251, 252, 258, 264, 266, 271], "test_requir": [1, 74, 117, 127, 133, 241, 244, 248, 254, 256, 269], "diamond": [1, 266], "14721": 1, "crash": [1, 6, 74, 266], "test_packag": [1, 21, 27, 42, 56, 74, 86, 90, 105, 106, 111, 117, 138, 166, 175, 246, 247, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 51, 53, 56, 61, 63, 68, 69, 74, 79, 82, 83, 87, 90, 98, 105, 106, 110, 114, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 137, 138, 141, 150, 154, 155, 157, 158, 159, 175, 180, 185, 187, 188, 189, 192, 193, 194, 199, 203, 205, 210, 212, 213, 216, 220, 222, 223, 224, 231, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 265, 266, 268, 271], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 106, 114, 123, 124, 136, 147, 149, 154, 159, 183, 187, 188, 192, 196, 198, 217, 219, 220, 227, 238, 242, 259, 266], "chain": [1, 5, 141, 271], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 55, 56, 58, 62, 70, 74, 78, 83, 84, 85, 86, 90, 93, 95, 96, 97, 98, 99, 101, 102, 107, 108, 111, 114, 116, 118, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 139, 146, 149, 151, 152, 155, 156, 157, 174, 175, 179, 181, 182, 187, 188, 189, 193, 194, 196, 205, 206, 208, 217, 221, 223, 231, 234, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 254, 256, 257, 261, 262, 264, 265, 266, 267, 268], "14673": 1, "cpu": [1, 8, 85, 146, 149, 183, 212, 220], "nativ": [1, 26, 27, 55, 68, 74, 85, 146, 175, 183, 211, 216, 217, 224], "arm64": [1, 26, 42, 149, 177, 180, 220], "14667": 1, "updat": [1, 4, 6, 8, 26, 39, 40, 59, 63, 70, 74, 83, 85, 86, 89, 90, 93, 95, 96, 98, 101, 102, 111, 114, 116, 128, 132, 133, 137, 146, 149, 153, 166, 179, 189, 196, 205, 231, 243, 251, 265, 270, 271], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 53, 55, 56, 58, 59, 65, 79, 81, 84, 95, 96, 116, 157, 159, 175, 181, 187, 211, 213, 236, 238, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "ones": [1, 6, 10, 30, 31, 42, 43, 46, 62, 70, 74, 78, 82, 84, 85, 95, 108, 121, 133, 137, 146, 147, 149, 157, 158, 163, 177, 187, 188, 191, 192, 196, 201, 208, 213, 219, 220, 221, 238, 243, 257, 262, 263, 267, 268, 270], "14643": 1, "unnecessarili": [1, 80], "decor": [1, 152], "sequenc": [1, 45, 92, 114], "14642": 1, "shouldn": [1, 6, 35, 39, 40, 56, 58, 74, 80, 108, 116, 120, 123, 130, 132, 176, 221, 227, 243, 254, 268], "14622": 1, "patch_us": [1, 200], "conandata": [1, 4, 51, 56, 63, 74, 116, 125, 126, 127, 128, 136, 159, 196, 200, 246], "patch": [1, 6, 19, 43, 50, 70, 74, 78, 79, 84, 116, 118, 126, 136, 147, 149, 175, 176, 179, 195, 203, 246, 252, 269, 271], "handl": [1, 6, 9, 56, 73, 114, 116, 132, 149, 191, 200, 232, 246, 248, 263], "apply_conandata_patch": [1, 126, 136, 195], "14576": 1, "xcode": [1, 57, 59, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 146, 180, 181, 182, 185, 186, 213, 217], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 59, 65, 70, 73, 85, 91, 96, 97, 116, 148, 149, 179, 180, 217, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "tvo": [1, 149, 179], "watcho": [1, 149, 179, 217], "14538": 1, "incorrect": [1, 70], "conancent": [1, 2, 13, 29, 56, 57, 70, 73, 79, 81, 91, 95, 96, 99, 109, 116, 132, 146, 148, 234, 240, 243, 245], "web": [1, 4, 6, 58, 116, 149, 235, 236], "url": [1, 3, 4, 56, 84, 85, 91, 96, 97, 105, 107, 114, 127, 136, 146, 148, 150, 158, 196, 198, 227, 236, 237, 247, 248, 250, 251, 252, 255, 258], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 70, 74, 80, 105, 114, 116, 124, 132, 142, 147, 158, 175, 181, 191, 192, 221, 243, 267], "14529": 1, "rrev": [1, 31, 99], "rrev_timestamp": 1, "prev_timestamp": 1, "14526": 1, "resolv": [1, 8, 10, 83, 84, 85, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 104, 111, 114, 120, 146, 147, 170, 192, 196, 243, 265, 267, 268, 269], "14510": 1, "verifi": [1, 5, 51, 74, 84, 85, 140, 146, 148, 152, 159, 198, 252, 255, 259, 271], "14508": 1, "visiono": [1, 149, 179], "14504": 1, "unknown": [1, 78, 91, 96, 141], "14493": 1, "skip_binari": [1, 36, 85, 146], "14466": 1, "symlink": [1, 85, 146, 157, 176, 195, 196, 246], "disabl": [1, 85, 86, 114, 146, 148, 151, 157, 188, 198, 205, 254], "14461": 1, "14413": 1, "cli_arg": [1, 185], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 73, 76, 107, 114, 143, 150, 227, 236], "store": [1, 4, 6, 13, 56, 63, 65, 70, 78, 84, 85, 98, 105, 106, 114, 116, 132, 145, 146, 156, 158, 188, 196, 200, 203, 232, 233, 238, 240, 242, 246, 249, 250, 251, 255, 261, 263, 267, 270, 271], "14392": 1, "apk": [1, 85, 146, 230], "alpin": [1, 231], "14382": 1, "msvc": [1, 81, 85, 99, 116, 132, 146, 147, 160, 205, 219, 222, 244], "invok": [1, 42, 45, 85, 98, 146, 147, 157, 167, 179, 221, 230, 241, 242, 245, 247, 248, 252, 257, 259, 262], "within": [1, 85, 114, 116, 147, 179, 189, 196, 244, 269], "visual": [1, 28, 35, 57, 59, 70, 72, 80, 85, 127, 132, 146, 149, 176, 185, 186, 187, 188, 205, 213, 214, 217, 218, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "studio": [1, 11, 25, 27, 28, 35, 57, 59, 60, 70, 80, 85, 127, 132, 146, 149, 185, 186, 187, 188, 205, 213, 214, 217, 219, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "prompt": [1, 31, 151, 188, 220, 223, 224], "where": [1, 4, 8, 19, 21, 31, 42, 45, 51, 55, 58, 70, 80, 84, 85, 97, 98, 114, 116, 118, 127, 129, 132, 144, 146, 148, 149, 155, 175, 180, 187, 188, 189, 191, 192, 196, 198, 203, 205, 210, 211, 213, 214, 216, 217, 220, 227, 236, 240, 241, 242, 244, 249, 250, 251, 252, 263, 268], "point": [1, 4, 8, 29, 35, 39, 40, 56, 57, 63, 70, 80, 85, 96, 98, 103, 105, 116, 127, 147, 157, 158, 166, 179, 188, 196, 201, 203, 241, 243, 255, 257, 263, 266, 271], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 51, 55, 56, 57, 64, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 105, 106, 108, 111, 112, 116, 119, 121, 123, 127, 130, 131, 132, 133, 136, 140, 143, 146, 147, 160, 168, 179, 180, 181, 182, 183, 185, 186, 187, 191, 193, 194, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 216, 217, 219, 220, 221, 222, 223, 224, 229, 232, 239, 240, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 55, 56, 63, 74, 78, 79, 80, 84, 85, 90, 97, 98, 105, 112, 116, 119, 120, 122, 123, 124, 128, 130, 131, 132, 133, 134, 135, 136, 138, 141, 142, 146, 147, 151, 154, 155, 158, 159, 179, 182, 185, 188, 192, 193, 194, 203, 205, 207, 210, 216, 217, 221, 223, 227, 229, 231, 242, 244, 245, 248, 249, 250, 251, 254, 256, 259, 261, 262, 263, 271], "14364": 1, "document": [1, 3, 4, 26, 27, 58, 65, 74, 75, 80, 87, 108, 116, 124, 127, 132, 137, 149, 152, 160, 175, 176, 188, 189, 196, 199, 213, 217, 235, 236, 244, 245, 249, 263, 271], "mode": [1, 17, 21, 70, 73, 85, 88, 99, 116, 127, 129, 136, 137, 146, 149, 213, 231, 232, 242, 260, 263, 271], "14358": 1, "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 53, 56, 58, 65, 70, 73, 74, 76, 78, 80, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 108, 111, 116, 118, 121, 125, 126, 127, 129, 132, 136, 137, 140, 142, 143, 152, 153, 159, 166, 175, 177, 181, 185, 187, 189, 196, 202, 210, 216, 221, 240, 241, 242, 244, 245, 246, 248, 249, 250, 251, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14347": 1, "default_build_opt": 1, "attribut": [1, 19, 21, 48, 74, 76, 78, 80, 97, 115, 118, 120, 122, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 141, 142, 158, 175, 181, 186, 187, 188, 200, 211, 214, 218, 242, 244, 247, 250, 251, 252, 254, 257, 259, 262, 263, 270], "14340": 1, "match": [1, 4, 10, 17, 26, 31, 35, 45, 53, 58, 78, 80, 82, 83, 84, 85, 86, 87, 92, 93, 95, 96, 98, 99, 102, 107, 108, 111, 112, 114, 116, 120, 131, 132, 136, 141, 145, 146, 147, 149, 150, 160, 183, 187, 196, 197, 198, 200, 220, 223, 240, 242, 243, 244, 245, 249, 250, 256, 263, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 56, 68, 70, 74, 80, 82, 85, 87, 90, 92, 96, 98, 99, 100, 101, 104, 106, 107, 108, 112, 114, 116, 119, 120, 125, 127, 131, 133, 134, 135, 137, 139, 141, 146, 147, 149, 151, 158, 163, 175, 187, 188, 191, 196, 200, 219, 231, 243, 244, 250, 252, 257, 258, 260, 261, 262, 267, 268, 269, 270], "channel": [1, 5, 57, 70, 73, 83, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 110, 114, 127, 147, 243], "14338": 1, "makefil": [1, 45, 57, 59, 70, 185, 186, 203, 205, 206, 223, 244], "14133": 1, "14594": 1, "v2": [1, 149, 158, 183, 237], "readi": [1, 30, 53, 55, 73, 147, 205, 214, 240, 250], "center": [1, 5, 8, 56, 63, 70, 73, 91, 96, 97, 148, 149, 152, 232, 233, 240, 245], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 53, 57, 74, 79, 80, 96, 116, 120, 129, 132, 133, 138, 181, 187, 188, 189, 196, 208, 217, 222, 223, 236, 239, 241, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "14593": 1, "inspect": [1, 6, 7, 36, 63, 82, 84, 106, 166, 223], "14572": 1, "hyphen": [1, 208, 211], "14561": 1, "user_toolchain": [1, 49, 85, 146, 188], "14556": 1, "boolean": [1, 85, 116, 127, 146, 187, 188, 210, 212, 217, 271], "14530": 1, "14511": 1, "14491": 1, "non": [1, 70, 74, 78, 84, 85, 103, 116, 130, 146, 183, 239, 247, 271], "stacktrac": 1, "14444": 1, "conf_info": [1, 127, 129, 146, 188, 251, 258], "14442": 1, "msbuildtoolchain": [1, 68, 85, 116, 132, 146, 176, 218], "msbuilddep": [1, 68, 85, 127, 146, 176, 218], "resourcecompil": [1, 222], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 58, 70, 73, 74, 78, 79, 80, 86, 87, 98, 99, 100, 101, 103, 104, 105, 106, 112, 116, 118, 127, 129, 131, 136, 137, 141, 146, 147, 149, 153, 155, 166, 170, 175, 188, 189, 205, 217, 227, 242, 244, 245, 249, 251, 252, 257, 262, 268, 271], "14376": 1, "processor": [1, 149, 183, 217], "armv8": [1, 26, 27, 42, 45, 80, 96, 106, 116, 132, 147, 149, 177, 183, 217, 231, 244, 255, 259], "aarch64": [1, 96, 149, 231], "14362": 1, "mandat": [1, 191], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 53, 56, 63, 70, 77, 98, 99, 103, 116, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 136, 147, 149, 170, 187, 189, 196, 205, 208, 216, 233, 240, 245, 247, 250, 256, 259, 260, 262, 265, 266, 269, 271], "14342": 1, "default_opt": [1, 42, 51, 56, 80, 91, 97, 123, 128, 181, 185, 188, 217, 221, 248, 249, 250, 252, 258, 266], "xcrun": [1, 176, 178], "14326": 1, "abspath": 1, "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 45, 48, 53, 55, 61, 62, 64, 65, 69, 73, 74, 78, 82, 105, 106, 114, 127, 132, 142, 146, 147, 149, 152, 154, 155, 156, 157, 160, 161, 180, 182, 185, 186, 187, 188, 207, 208, 210, 212, 213, 221, 222, 237, 240, 242, 244, 245, 247, 248, 251, 255, 259, 261, 263, 271], "14183": 1, "build_id": [1, 13, 91, 96, 117], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 102, 108, 116, 117, 119, 120, 121, 127, 129, 131, 133, 134, 135, 136, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 175, 179, 181, 182, 183, 185, 187, 189, 196, 203, 205, 208, 211, 214, 217, 221, 222, 227, 231, 238, 240, 241, 242, 243, 244, 245, 249, 250, 251, 252, 254, 255, 256, 257, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14555": 1, "timestamp": [1, 13, 95, 99, 101, 103], "except": [1, 26, 31, 39, 40, 49, 78, 80, 85, 114, 116, 120, 121, 123, 129, 136, 141, 142, 146, 147, 149, 151, 175, 183, 185, 196, 227, 231, 240, 244, 249, 266], "vtrace": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "14522": 1, "confirm": [1, 31, 108, 112], "interact": [1, 85, 107, 145, 146, 151], "14512": 1, "entri": [1, 57, 63, 83, 85, 86, 90, 93, 95, 96, 98, 102, 111, 116, 127, 145, 150, 179, 186, 187, 188, 198, 200, 213, 269], "filter": [1, 6, 85, 96, 108, 116, 127, 139, 155, 174, 196, 267], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 58, 68, 70, 73, 74, 79, 80, 85, 87, 98, 103, 104, 105, 108, 114, 116, 118, 119, 120, 131, 133, 136, 142, 149, 151, 154, 158, 160, 175, 181, 187, 198, 203, 221, 228, 231, 236, 238, 240, 241, 242, 245, 248, 249, 252, 256, 257, 258, 259, 261, 267, 270, 271], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 51, 56, 63, 74, 80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 118, 119, 125, 126, 130, 133, 136, 140, 158, 167, 175, 196, 198, 234, 236, 254, 261, 262, 268], "14478": 1, "14443": 1, "context": [1, 6, 13, 42, 74, 80, 83, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 142, 146, 147, 157, 177, 187, 188, 191, 192, 193, 194, 196, 208, 211, 217, 219, 221, 232, 239, 242, 256], "14441": 1, "parallel": [1, 63, 74, 80, 85, 146, 151, 152, 154, 183, 188, 271], "14410": 1, "powershel": [1, 85, 146, 192, 193, 194, 245], "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 51, 61, 74, 85, 116, 118, 119, 127, 130, 132, 133, 135, 146, 154, 158, 160, 187, 188, 191, 192, 193, 194, 203, 204, 205, 212, 213, 217, 222, 223, 224, 236, 241, 242, 250, 258, 259, 267], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 73, 74, 85, 87, 98, 107, 112, 116, 136, 150, 152, 158, 211, 227, 231, 232, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "dirti": [1, 6, 56, 227], "outsid": [1, 8, 56, 70, 78, 114, 116, 131, 144, 201], "revision_mod": [1, 91, 96, 97, 268], "scm_folder": [1, 116], "14330": 1, "trace": [1, 141, 255], "14322": 1, "flush": 1, "stream": [1, 70, 185], "after": [1, 6, 10, 24, 26, 36, 42, 45, 58, 59, 63, 70, 98, 120, 122, 127, 132, 138, 139, 146, 155, 158, 182, 185, 187, 188, 192, 193, 194, 203, 212, 217, 222, 229, 239, 240, 242, 245, 246, 248, 250, 254, 257, 259, 261, 262, 263, 271], "write": [1, 4, 27, 45, 53, 70, 74, 98, 105, 114, 119, 129, 152, 159, 175, 187, 188, 196, 205, 244, 250, 252, 258, 262], "14310": 1, "sign": [1, 76, 114, 152], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 56, 84, 188, 255, 261, 262, 263], "inherit": [1, 48, 74, 128, 175, 244], "typo": 1, "14325": 1, "conanpreset": [1, 48, 188], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 53, 55, 56, 61, 62, 66, 70, 78, 79, 80, 81, 83, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 109, 110, 111, 114, 116, 117, 119, 123, 127, 128, 129, 132, 133, 144, 146, 149, 151, 152, 157, 159, 160, 163, 175, 179, 181, 187, 188, 189, 193, 194, 200, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 227, 229, 240, 241, 243, 247, 250, 254, 255, 256, 258, 259, 261, 262, 263, 267, 269, 270, 271], "14296": 1, "prefix": [1, 96, 108, 116, 147, 155, 188, 205, 206, 207, 208, 211, 212, 217, 249, 257], "param": [1, 31, 155, 167, 174, 185, 191, 216], "unix": [1, 147, 185, 186, 196, 244], "14295": 1, "invalid": [1, 6, 96, 114, 117, 139, 140, 183, 187, 266], "loglevel": 1, "14289": 1, "gcc": [1, 24, 39, 40, 45, 70, 74, 78, 80, 81, 83, 84, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 116, 121, 131, 136, 140, 147, 149, 160, 168, 183, 198, 205, 241], "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 63, 79, 80, 81, 84, 93, 96, 98, 99, 103, 120, 131, 146, 147, 154, 155, 160, 181, 187, 211, 221, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "pkg_config_custom_cont": [1, 208], "pc": [1, 45, 55, 206, 207, 208], "14233": 1, "dict": [1, 85, 116, 127, 132, 146, 155, 168, 188, 205, 208, 217, 222, 223], "object": [1, 6, 19, 21, 27, 42, 45, 91, 96, 114, 116, 127, 128, 129, 130, 131, 132, 141, 154, 155, 157, 158, 166, 174, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 219, 220, 221, 222, 223, 224, 225, 231, 241, 242, 248, 249, 250, 251, 254, 259, 262, 263], "fix_apple_shared_install_nam": [1, 176, 178, 203], "otool": [1, 179, 203], "install_name_tool": [1, 179, 203], "program": [1, 29, 45, 53, 55, 85, 128, 146, 203, 224, 240, 242], "14195": 1, "fpic": [1, 42, 51, 56, 73, 80, 81, 91, 96, 97, 99, 116, 122, 123, 185, 188, 205, 212, 217, 248, 249, 250, 252, 258], "header_onli": [1, 80, 116, 123, 131, 254], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 59, 63, 64, 69, 73, 78, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 116, 118, 119, 131, 132, 137, 146, 147, 149, 175, 179, 181, 187, 188, 221, 222, 239, 244, 246, 254, 255, 256, 261, 271], "type": [1, 6, 37, 64, 70, 79, 85, 89, 106, 116, 131, 132, 143, 157, 175, 185, 187, 188, 193, 194, 208, 215, 232, 235, 236, 242, 243, 244, 245, 246, 248, 249, 271], "cmake_package_version_compat": 1, "anynewervers": [1, 187], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 70, 73, 157, 243, 271], "won": [1, 4, 29, 39, 40, 70, 101, 108, 114, 116, 149, 155, 187, 196, 217, 241, 249, 257, 261], "14261": 1, "permit": [1, 269], "empti": [1, 4, 6, 85, 86, 107, 108, 116, 132, 146, 147, 155, 166, 174, 205, 208, 211, 221, 254, 255, 266, 267, 270], "14254": 1, "guarante": [1, 4, 7, 56, 80, 103, 106, 131, 147, 175, 252, 265, 268], "rm_safe": [1, 42, 80, 116, 122, 123, 131, 249], "never": [1, 70, 74, 78, 79, 83, 86, 90, 93, 95, 96, 98, 99, 102, 111, 116, 142, 167, 231, 243, 249, 255], "14238": 1, "gnu": [1, 45, 61, 66, 76, 80, 85, 96, 146, 149, 176, 183, 191, 192, 198, 203, 204, 205, 206, 207, 208, 212, 241], "make_program": [1, 85, 146], "14223": 1, "package_typ": [1, 38, 42, 91, 96, 97, 128, 131, 139, 156, 175, 256, 271], "lib": [1, 17, 21, 26, 35, 42, 84, 91, 95, 96, 114, 116, 120, 127, 129, 130, 132, 149, 179, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 223, 229, 241, 249, 250, 251, 252, 254, 255, 257, 263, 271], "14215": 1, "clarif": [1, 70], "shown": [1, 4, 36, 96, 97, 121, 217], "queri": [1, 84, 85, 87, 96, 99, 108, 109, 112, 168], "14199": 1, "enabl": [1, 8, 10, 63, 73, 85, 116, 146, 148, 183, 188, 196, 205, 231, 254, 269], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 51, 55, 56, 58, 63, 70, 73, 74, 79, 84, 85, 105, 116, 117, 127, 132, 136, 137, 139, 146, 149, 150, 152, 175, 180, 186, 187, 188, 189, 198, 208, 213, 221, 227, 231, 240, 242, 243, 244, 246, 247, 249, 250, 252, 254, 258, 259, 261, 262, 263, 264, 265, 267, 268, 270], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 62, 70, 74, 79, 86, 105, 114, 116, 120, 126, 130, 134, 135, 138, 141, 142, 146, 147, 150, 152, 155, 157, 158, 159, 160, 175, 177, 183, 186, 187, 192, 196, 200, 203, 211, 217, 244, 248, 250, 251, 252, 254, 257, 266, 267, 271], "14177": 1, "xcodedep": [1, 69, 176, 178, 182], "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 51, 56, 65, 73, 78, 80, 81, 91, 95, 96, 97, 98, 99, 106, 116, 119, 123, 131, 132, 140, 147, 149, 153, 160, 180, 181, 182, 185, 186, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 240, 241, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 263, 268], "14168": 1, "respect": [1, 31, 36, 73, 103, 116, 147, 151, 152, 191, 217, 241, 266, 268], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 63, 88, 98, 105, 106, 114, 116, 127, 129, 130, 132, 134, 135, 146, 147, 148, 149, 151, 152, 153, 154, 157, 159, 160, 170, 179, 180, 181, 185, 187, 188, 196, 203, 205, 214, 223, 240, 241, 242, 245, 250, 251, 252, 255, 256, 257, 263, 268], "14164": 1, "intern": [1, 53, 74, 85, 114, 136, 147, 149, 150, 179, 180, 217, 220, 231, 241, 243, 254, 268], "runner": [1, 26], "13985": 1, "leak": [1, 56, 150], "cmake_find_library_suffix": 1, "14253": 1, "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 73, 79, 80, 95, 98, 116, 130, 132, 149, 152, 179, 187, 189, 203, 207, 213, 217, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267], "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 63, 65, 70, 73, 74, 76, 77, 82, 85, 98, 106, 108, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 131, 143, 146, 147, 151, 152, 153, 154, 158, 160, 162, 175, 176, 178, 184, 186, 191, 200, 202, 209, 215, 218, 246, 249, 251, 257, 258, 263], "14227": 1, "displai": [1, 13, 63, 81, 82, 85, 92, 99, 116, 137, 154, 160, 250, 267], "14190": 1, "cross": [1, 11, 26, 42, 55, 57, 58, 60, 70, 85, 118, 131, 132, 136, 146, 147, 183, 184, 187, 205, 208, 212, 215, 216, 231, 232, 239, 242, 259], "osx": [1, 35, 58, 70, 127, 132, 188, 242], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 149], "cmake_generator_platform": [1, 149, 188], "14114": 1, "cppinfo": [1, 21, 76, 116, 127, 132, 176, 187, 251], "public": [1, 3, 4, 42, 53, 56, 70, 74, 82, 97, 106, 114, 115, 152, 155, 176, 187, 189, 211, 217, 237, 257, 258], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 72, 79, 80, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 100, 102, 103, 105, 106, 108, 111, 116, 119, 127, 128, 129, 130, 132, 134, 135, 141, 146, 147, 149, 151, 157, 175, 179, 181, 182, 183, 187, 191, 211, 227, 235, 238, 240, 242, 244, 245, 251, 255, 256, 257, 259, 261, 263, 266, 267, 270, 271], "summari": [1, 4, 8, 78, 213, 251], "delet": [1, 31, 42, 58, 74, 108, 114, 116, 123, 249], "thing": [1, 13, 18, 21, 29, 63, 64, 70, 73, 74, 98, 103, 116, 131, 167, 175, 176, 188, 192, 203, 240, 242, 244, 246, 248, 250, 251, 256, 257, 258, 263, 271], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 64, 70, 73, 116, 214, 233, 238, 239, 241, 242, 248, 250, 254, 256, 259, 260, 261, 267, 271], "14011": 1, "express": [1, 42, 49, 80, 104, 116, 129, 141, 142, 147, 188, 243, 265, 271], "14004": 1, "equival": [1, 56, 84, 85, 98, 99, 102, 109, 116, 118, 120, 125, 126, 132, 133, 142, 149, 175, 185, 189, 191, 227, 241, 242, 243, 244, 250, 251, 262, 263, 267], "14002": 1, "13999": 1, "small": [1, 56, 70, 114, 125, 196, 237, 250, 255, 259, 266, 267], "13989": 1, "packageslist": 1, "input": [1, 8, 74, 78, 80, 85, 87, 89, 96, 98, 99, 100, 101, 102, 104, 105, 108, 112, 131, 136, 145, 146, 151, 196, 217, 222, 242, 244, 254, 264, 268], "13928": 1, "associ": [1, 3, 6, 105, 107, 108, 147, 149, 188, 243], "13918": 1, "13757": 1, "split": [1, 147], "two": [1, 6, 18, 45, 51, 70, 79, 80, 84, 89, 114, 116, 119, 120, 147, 156, 157, 175, 183, 188, 191, 200, 205, 221, 222, 231, 239, 240, 242, 248, 249, 254, 261, 263, 267], "13729": 1, "bindir": [1, 18, 39, 40, 91, 96, 132, 138, 186, 188, 205, 208, 214, 217, 251, 254, 256, 259], "13623": 1, "autopackag": [1, 176, 195], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 58, 70, 98, 107, 114, 116, 130, 149, 191, 269], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 58, 70, 73, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 157, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 189, 206, 210, 211, 212, 213, 219], "subsystem": [1, 85, 116, 132, 146, 149, 176, 192, 218], "msys2": [1, 85, 146, 149, 231, 239], "14061": 1, "intermedi": [1, 98], "aggregated_compon": [1, 189], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 56, 58, 70, 79, 81, 83, 84, 86, 87, 93, 95, 96, 98, 99, 102, 104, 105, 106, 108, 111, 112, 116, 149, 155, 193, 194, 227, 236, 240, 243, 250, 257, 265, 267, 268, 269, 270, 271], "14110": 1, "doubl": [1, 29, 107, 187, 236, 249], "base": [1, 4, 8, 35, 36, 39, 42, 47, 53, 55, 58, 70, 79, 80, 83, 87, 96, 97, 98, 99, 102, 108, 112, 116, 127, 128, 130, 133, 147, 152, 155, 157, 177, 180, 182, 186, 188, 213, 217, 219, 220, 222, 240, 242, 248, 258, 271], "setup": [1, 7, 41, 55, 56, 216, 233], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 196, 250], "14106": 1, "overlap": [1, 217], "14095": 1, "freebsd": [1, 8, 58, 70, 147, 149, 231], "14065": 1, "through": [1, 24, 90, 105, 116, 148, 158, 216, 232, 238, 248, 250, 259], "root": [1, 10, 16, 18, 19, 27, 36, 38, 83, 85, 88, 90, 91, 96, 98, 129, 132, 146, 147, 149, 155, 157, 166, 167, 187, 205, 211, 213, 214, 240, 241, 243, 245, 249, 250, 255], "14051": 1, "return": [1, 6, 26, 29, 31, 42, 45, 53, 55, 78, 81, 82, 84, 85, 92, 97, 99, 106, 113, 114, 116, 121, 127, 141, 147, 153, 154, 155, 163, 166, 168, 170, 171, 175, 177, 179, 180, 183, 187, 188, 189, 191, 192, 193, 194, 196, 204, 205, 213, 219, 220, 223, 227, 231, 240, 242, 244, 254, 256, 259, 268], "irrespect": [1, 116, 131, 134, 135, 137, 221, 227, 244, 250], "problem": [1, 4, 6, 8, 70, 120, 237, 242, 259], "parent": [1, 116, 129, 144, 196, 252], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 56, 58, 70, 73, 91, 96, 97, 107, 152, 179, 234], "libdir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 196, 205, 207, 208, 214, 217, 251, 254, 255, 256, 263], "includedir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 205, 207, 208, 217, 221, 251, 255, 263], "cmake_program": [1, 85, 146, 185], "13940": 1, "str": [1, 17, 31, 36, 116, 131, 157, 168, 181, 192, 196, 213, 214, 216, 217, 219, 220, 221, 224, 244, 248, 255, 263], "int": [1, 29, 42, 45, 53, 55, 183, 200, 240, 242, 254, 259], "13964": 1, "layer": [1, 149, 155, 250, 271], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 53, 56, 57, 70, 73, 74, 79, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 110, 111, 114, 116, 118, 127, 129, 132, 134, 135, 136, 147, 157, 158, 166, 170, 182, 196, 198, 203, 207, 213, 214, 222, 227, 232, 233, 236, 238, 240, 241, 245, 248, 249, 250, 251, 253, 254, 257, 261, 262, 263, 268, 270, 271], "13944": 1, "unzip": [1, 6, 19, 27, 58, 116, 136, 195, 198, 236, 252, 262], "13937": 1, "13929": 1, "13967": 1, "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 56, 57, 64, 68, 69, 79, 82, 86, 106, 115, 117, 120, 127, 129, 132, 133, 140, 142, 147, 166, 167, 175, 181, 189, 191, 203, 206, 208, 211, 221, 229, 232, 242, 243, 244, 245, 246, 247, 250, 254, 255, 256, 259, 260, 261, 263, 266, 268, 270, 271], "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 51, 85, 91, 96, 97, 129, 130, 136, 167, 188, 196, 200, 203, 216, 248, 254, 255, 257], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 53, 56, 70, 86, 96, 98, 99, 101, 103, 108, 116, 124, 127, 131, 132, 134, 135, 136, 139, 147, 149, 157, 158, 174, 188, 231, 235, 236, 251, 255, 258, 261, 263, 271], "publicli": [1, 4], "13934": 1, "premakedep": 1, "13926": 1, "http": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 73, 85, 91, 96, 97, 105, 114, 116, 136, 146, 148, 150, 158, 198, 200, 222, 234, 236, 237, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 85, 91, 96, 97, 114, 116, 127, 136, 149, 152, 158, 200, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 85, 91, 96, 97, 114, 116, 136, 147, 158, 200, 222, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "pull": [1, 70, 73, 200, 234, 267], "13898": 1, "overrid": [1, 39, 40, 74, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 114, 120, 146, 147, 185, 188, 231, 242, 265], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 63, 70, 80, 84, 85, 87, 96, 99, 104, 107, 112, 114, 116, 127, 129, 131, 132, 142, 146, 147, 149, 154, 157, 185, 188, 192, 193, 194, 196, 214, 217, 221, 224, 231, 238, 242, 245, 246, 250, 252, 255, 256, 263, 269], "13923": 1, "v": [1, 26, 48, 78, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 121, 131, 142, 146, 149, 151, 175, 216, 217, 221, 222, 223, 227, 232, 239, 240, 242, 245, 250, 271], "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 53, 56, 63, 114, 116, 122, 123, 147, 185, 203, 213, 246, 249, 255, 258, 261, 262], "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 51, 63, 73, 74, 98, 102, 105, 106, 116, 119, 132, 141, 147, 149, 153, 160, 180, 181, 182, 186, 187, 188, 193, 194, 196, 205, 217, 220, 221, 222, 232, 239, 244, 247, 249, 250, 254, 255, 256, 258, 261, 262, 263], "13833": 1, "relocat": [1, 29, 35, 202, 257], "upload_polici": [1, 91], "build_polici": [1, 90, 91, 255], "debugg": 1, "13810": 1, "possible_valu": [1, 116], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 56, 58, 70, 73, 74, 78, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 108, 111, 112, 116, 118, 119, 120, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 142, 146, 147, 149, 150, 152, 154, 155, 159, 163, 166, 175, 177, 181, 183, 185, 187, 189, 191, 192, 213, 217, 221, 228, 231, 242, 243, 248, 249, 252, 260, 261, 263, 264, 266, 267, 268, 269, 270], "13796": 1, "optim": [1, 70, 90, 116, 119, 254], "hit": [1, 192, 237], "13771": 1, "sh": [1, 35, 39, 40, 45, 53, 85, 127, 146, 149, 191, 192, 193, 194, 204, 205, 213, 223, 236, 241, 242, 244, 245, 248, 256, 262, 263], "shell": [1, 35, 39, 40, 42, 58, 61, 85, 116, 141, 146, 191, 192, 196, 204, 205, 213], "13764": 1, "13748": 1, "auto": [1, 42, 73, 74, 85, 106, 146, 147, 149, 240], "home": [1, 4, 26, 27, 31, 56, 57, 73, 105, 106, 114, 116, 132, 144, 146, 148, 149, 151, 155, 169, 206, 240, 241, 242, 250], "13746": 1, "render": [1, 21, 99, 105, 143, 145, 146, 150], "profile_nam": [1, 147], "13721": 1, "extens": [1, 4, 11, 31, 35, 36, 38, 57, 58, 70, 74, 76, 77, 78, 85, 98, 153, 154, 155, 156, 157, 158, 159, 160, 183, 192, 196, 241, 249, 256, 262], "13718": 1, "understand": [1, 24, 31, 36, 47, 61, 66, 73, 77, 95, 103, 116, 142, 146, 157, 204, 205, 223, 232, 239, 250, 260], "13716": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 51, 55, 56, 58, 64, 70, 73, 78, 79, 84, 85, 96, 97, 98, 99, 101, 104, 105, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 127, 131, 132, 136, 137, 139, 141, 145, 146, 150, 151, 155, 157, 181, 182, 186, 187, 188, 191, 193, 194, 198, 205, 206, 208, 210, 211, 213, 217, 220, 221, 222, 223, 229, 231, 236, 240, 244, 250, 251, 252, 255, 256, 259, 264, 266, 269, 270], "13712": 1, "skip_warn": [1, 85, 141, 146], "silenc": 1, "13706": 1, "info_invalid": [1, 91, 96], "13688": 1, "13680": 1, "mono": [1, 116], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 51, 58, 63, 73, 78, 80, 86, 87, 93, 95, 99, 102, 103, 114, 116, 118, 119, 120, 121, 131, 132, 133, 134, 135, 136, 137, 146, 147, 149, 166, 175, 181, 186, 187, 188, 189, 196, 205, 213, 221, 223, 227, 229, 231, 235, 238, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 261, 262, 263, 264, 266, 267, 268, 269, 270], "scm": [1, 11, 43, 76, 98, 116, 135, 176, 196, 227, 247, 252, 268, 270], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 74], "field": [1, 82, 86, 96, 97, 99, 106, 109, 115, 116, 127, 129, 132, 145, 148, 149, 150, 158, 179, 200, 203, 208, 271], "13870": 1, "compiler_execut": [1, 85, 146, 147, 188, 205, 217, 223, 240], "13867": 1, "13857": 1, "suffix": [1, 155, 187, 208], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 187, 195, 208], "d": [1, 7, 13, 27, 47, 79, 83, 84, 96, 98, 105, 114, 116, 128, 147, 175, 186, 188, 206, 236, 250, 255, 268], "13740": 1, "omit": [1, 21, 116, 146, 263], "l": [1, 83, 84, 86, 87, 89, 90, 93, 95, 96, 97, 98, 102, 108, 111, 112, 203, 204, 206, 208, 227], "libpath": [1, 229], "13704": 1, "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 64, 66, 69, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 118, 119, 120, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 144, 146, 147, 149, 150, 151, 152, 156, 158, 159, 175, 177, 179, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 223, 224, 229, 231, 233, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271], "13855": 1, "out": [1, 26, 29, 31, 36, 53, 55, 56, 70, 72, 80, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111, 114, 124, 127, 213, 217, 248, 252, 263, 267], "13853": 1, "13846": 1, "intel": [1, 42, 70, 76, 85, 146, 176, 219], "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 92, 100, 189, 234, 263, 267, 271], "alia": [1, 105, 187, 203], "13763": 1, "dep": [1, 21, 36, 41, 53, 79, 95, 127, 139, 147, 156, 157, 181, 185, 187, 189, 211, 221, 223, 248], "13762": 1, "cmake_system_nam": [1, 85, 146, 188], "baremet": [1, 149], "13739": 1, "deactiv": [1, 49, 158, 188, 193, 194, 242, 269], "13707": 1, "13597": 1, "extend": [1, 43, 46, 73, 76, 77, 86, 102, 117, 128, 152, 158, 184, 267, 269, 271], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 85, 127, 146, 188, 191, 192, 193, 194, 204, 205, 213, 217, 222, 223, 224, 236, 242, 244, 245], "13607": 1, "preliminari": 1, "dev": [1, 137, 149, 231], "premake5": 1, "13390": 1, "old": [1, 30, 32, 116, 149, 163, 264, 267], "login": [1, 82, 114, 145, 198, 236], "13671": 1, "msg": [1, 141, 155], "13668": 1, "correct": [1, 40, 42, 73, 74, 78, 116, 129, 130, 132, 134, 135, 159, 179, 181, 187, 188, 192, 196, 216, 223, 241, 242, 251, 252, 255, 257, 261], "origin": [1, 4, 6, 8, 13, 24, 56, 58, 85, 98, 116, 120, 130, 145, 149, 191, 192, 217, 227, 243, 252, 255], "13667": 1, "13661": 1, "respond": [1, 70], "forbidden": [1, 71, 101, 103, 120], "13626": 1, "13622": 1, "direct_deploi": [1, 98, 271], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 51, 68, 84, 87, 91, 96, 99, 107, 108, 112, 206, 220, 236, 248, 249, 251, 252, 254, 255, 257, 263], "had": [1, 13, 56, 90, 116, 120, 244, 249, 252, 261, 263, 266], "13662": 1, "13657": 1, "close": [1, 90, 196], "13631": 1, "13618": 1, "full_deploi": [1, 35, 98, 271], "collis": [1, 115, 187, 203, 205], "log": [1, 6, 26, 56, 87, 107, 114, 141, 150, 152, 263], "13610": 1, "13601": 1, "temp": [1, 84], "everyth": [1, 5, 13, 19, 42, 56, 58, 65, 70, 73, 84, 103, 108, 120, 129, 176, 227, 244, 261], "temporari": [1, 6, 7, 24, 74, 84, 130, 133, 196, 198, 249, 257, 262, 266], "13581": 1, "dictionari": [1, 85, 116, 127, 132, 146, 155, 185, 188, 196, 198], "semant": [1, 116, 149, 250, 265], "13571": 1, "sdk": [1, 26, 35, 85, 146, 149, 179, 180, 182, 205, 217], "avail": [1, 3, 4, 8, 24, 26, 36, 51, 63, 70, 72, 73, 85, 90, 95, 97, 99, 104, 105, 108, 114, 116, 121, 129, 133, 142, 146, 147, 158, 175, 179, 183, 188, 230, 240, 243, 244, 249, 250, 254, 255, 256, 261, 262, 271], "13531": 1, "togeth": [1, 56, 67, 70, 84, 106, 116, 125, 126, 136, 174, 175, 185, 188, 216, 223, 243, 250, 264, 271], "13526": 1, "13505": 1, "legaci": [1, 119, 146, 188, 219], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 114, 116, 132, 146, 240, 241, 248, 258, 268], "third": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 198, 227, 255, 262, 263], "parti": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 227, 255, 262, 263], "13461": 1, "android": [1, 8, 11, 25, 57, 59, 70, 76, 85, 116, 132, 146, 149, 176, 188, 215, 241], "cmake_legacy_toolchain": [1, 85, 146, 188], "android_use_legacy_toolchain_fil": [1, 85, 146, 188], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 51, 56, 58, 62, 63, 64, 68, 69, 70, 72, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 101, 103, 104, 105, 106, 108, 109, 112, 116, 118, 119, 120, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 151, 152, 153, 155, 158, 174, 175, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 203, 204, 205, 206, 207, 210, 211, 212, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 235, 236, 237, 240, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 264, 266, 267, 268, 269, 270, 271], "cflag": [1, 45, 85, 91, 96, 132, 146, 147, 182, 188, 204, 205, 208, 212, 217, 222, 223], "cxxflag": [1, 49, 80, 85, 91, 96, 132, 146, 182, 188, 189, 204, 205, 212, 217, 222, 223, 229], "prevent": [1, 114, 116, 188], "13459": 1, "13458": 1, "authent": [1, 3, 56, 73, 106, 107, 145, 148, 150, 151, 198, 235, 236], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 51, 56, 58, 64, 73, 78, 82, 84, 85, 86, 95, 99, 114, 116, 118, 127, 129, 130, 147, 149, 150, 151, 152, 156, 175, 188, 207, 214, 221, 227, 236, 238, 240, 242, 244, 247, 248, 249, 252, 254, 260, 261, 266, 268, 269, 271], "python_requires_extend": [1, 74, 128, 175], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 51, 84, 86, 114, 139, 141, 159, 211, 213, 227, 238, 242, 254, 255, 257, 261, 266, 268], "mydep": [1, 78, 127, 223], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 85, 146, 213, 217], "vs2022": 1, "rather": [1, 8, 78, 85, 131, 146, 149, 205, 223, 253, 263], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 152, 154, 271], "paramet": [1, 31, 53, 62, 82, 132, 152, 157, 166, 168, 171, 177, 179, 180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 224, 225, 227, 231, 250], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 56, 58, 59, 63, 70, 78, 81, 84, 99, 101, 102, 116, 123, 130, 131, 132, 133, 137, 146, 147, 149, 159, 175, 183, 187, 188, 208, 213, 242, 243, 245, 249, 254, 255, 256, 257, 261, 262, 263, 266, 267, 268, 269], "13544": 1, "subcommand": [1, 92, 100, 155, 271], "underscor": [1, 250], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 85, 129, 146, 186, 188], "13488": 1, "composit": [1, 128, 149, 190], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 185, 203, 254], "autoreconf": [1, 203, 205, 248], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 51, 56, 70, 74, 78, 80, 98, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 147, 149, 152, 155, 156, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 223, 224, 227, 228, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 262, 263, 266, 267, 268, 269, 270], "mirror": [1, 4, 198], "behavior": [1, 8, 47, 70, 74, 78, 80, 101, 102, 103, 116, 119, 122, 123, 127, 131, 132, 142, 146, 151, 154, 158, 183, 187, 208, 211, 217, 227, 231, 252, 271], "That": [1, 8, 13, 17, 24, 38, 62, 74, 93, 98, 136, 151, 160, 181, 187, 192, 208, 213, 222, 241, 242, 243, 254, 258, 267, 270, 271], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 105, 106, 146, 147], "inclus": [1, 221], "13336": 1, "13324": 1, "version_rang": [1, 10, 85, 116, 146, 269], "resolve_prereleas": [1, 10, 85, 116, 146, 269], "prereleas": [1, 10, 269], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "help": [1, 8, 31, 36, 45, 48, 58, 61, 62, 66, 67, 68, 70, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 155, 182, 191, 205, 213, 222, 244, 245, 256, 264, 265], "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 73, 91, 96, 106, 147, 149, 188, 217, 240, 242, 250], "13359": 1, "vswhere": [1, 85, 146], "13355": 1, "convers": [1, 82], "13323": 1, "13230": 1, "msbuild": [1, 59, 68, 70, 85, 105, 132, 146, 147, 149, 176, 185, 218, 221, 222, 224], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 70, 120, 127, 131, 145, 170, 262, 269], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 91, 96, 132, 189, 206, 207], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 116, 132, 147, 176, 188, 190, 191, 192, 241, 242, 245, 251, 256], "instanti": [1, 116, 127, 181, 182, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 149], "13326": 1, "insecur": [1, 85, 107], "ssl": [1, 85, 107, 132, 146, 148, 198, 211], "13270": 1, "conanignor": [1, 85], "13269": 1, "traceback": 1, "vv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vvv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 70, 114], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 70, 150, 151, 198], "13285": 1, "unexpect": [1, 73, 74, 141, 217, 267], "13282": 1, "runtime_typ": [1, 149, 160, 205], "reli": [1, 4, 70, 74, 99, 134, 135, 208, 240, 255, 257], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 53, 55, 57, 63, 64, 74, 76, 81, 83, 84, 88, 93, 95, 96, 98, 102, 105, 106, 116, 126, 130, 134, 135, 147, 156, 159, 167, 175, 181, 182, 185, 186, 187, 188, 193, 194, 196, 204, 205, 206, 208, 211, 212, 213, 214, 221, 222, 224, 229, 232, 239, 240, 241, 245, 247, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "pars": [1, 31, 70, 99, 146, 147, 152, 207, 227, 228, 252], "13266": 1, "unifi": [1, 6, 149], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 70, 74, 80, 84, 85, 87, 98, 99, 101, 108, 116, 118, 122, 123, 125, 127, 131, 132, 133, 136, 137, 146, 175, 187, 189, 240, 243, 251, 266, 268, 269, 270], "state": [1, 7, 133, 175, 217, 243], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 51, 56, 57, 58, 59, 67, 70, 73, 74, 82, 87, 88, 98, 103, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 127, 129, 136, 139, 140, 145, 147, 149, 155, 158, 175, 183, 185, 187, 188, 192, 211, 214, 217, 227, 232, 237, 240, 241, 242, 244, 249, 250, 252, 255, 257, 260, 262, 263, 266, 271], "13211": 1, "13207": 1, "readm": [1, 158, 198, 262], "13186": 1, "13298": 1, "certain": [1, 58, 98, 104, 108, 127, 132, 146, 147, 149, 158, 221, 243, 249, 251, 258], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 58, 103, 255], "drive": 1, "13248": 1, "13191": 1, "gnu17": [1, 42, 91, 96, 106, 147, 149, 183, 240], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 57, 64, 67, 70, 74, 82, 85, 98, 102, 103, 106, 114, 116, 117, 119, 123, 127, 129, 130, 131, 132, 138, 146, 147, 149, 151, 152, 159, 179, 180, 187, 188, 189, 191, 193, 194, 204, 205, 208, 217, 221, 224, 235, 236, 239, 240, 249, 252, 254, 255, 258, 263, 268, 270, 271], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 63, 70, 72, 74, 96, 101, 103, 105, 114, 116, 150, 158, 176, 188, 189, 195, 198, 214, 239, 240, 246, 248, 254, 267, 268], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 51, 53, 55, 56, 57, 63, 65, 86, 87, 96, 98, 103, 113, 116, 128, 130, 149, 155, 176, 181, 182, 187, 200, 210, 222, 240, 242, 244, 245, 248, 250, 252, 254, 259, 262, 263, 268, 269, 271], "13117": 1, "13112": 1, "valid": [1, 6, 8, 10, 73, 74, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 127, 140, 146, 149, 150, 160, 166, 183, 188, 198, 205, 206, 208, 217, 219, 222, 239, 247, 250, 254, 255, 258, 259, 262, 266, 267, 269], "13110": 1, "13109": 1, "assign": [1, 74, 78, 116, 122, 131, 134, 135, 186, 187, 188, 207, 217, 227, 249, 256], "13099": 1, "ui": [1, 31, 235, 236], "13093": 1, "abil": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 149, 271], "presets_prefix": 1, "prepend": [1, 132, 146, 147, 191, 192, 207], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 61, 64, 66, 68, 69, 70, 75, 77, 78, 80, 81, 82, 85, 86, 87, 91, 97, 99, 102, 106, 107, 112, 113, 114, 116, 120, 122, 123, 124, 127, 131, 133, 142, 143, 144, 145, 146, 149, 150, 151, 153, 155, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 182, 188, 189, 191, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 232, 233, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 267, 268, 269, 270], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 51, 53, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 80, 84, 86, 96, 105, 106, 115, 116, 117, 118, 122, 123, 125, 126, 127, 128, 131, 132, 136, 141, 146, 147, 149, 152, 155, 156, 157, 158, 159, 160, 175, 177, 180, 181, 182, 183, 186, 188, 196, 203, 205, 211, 212, 213, 214, 216, 217, 221, 223, 227, 229, 231, 232, 233, 238, 239, 240, 242, 244, 245, 246, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 271], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 56, 58, 70, 73, 74, 77, 80, 81, 96, 105, 106, 115, 116, 118, 119, 127, 136, 146, 147, 149, 152, 155, 156, 157, 158, 175, 177, 187, 188, 214, 227, 233, 235, 246, 250, 255, 259, 261, 263], "10166": 1, "13084": 1, "hash": [1, 77, 81, 91, 96, 97, 116, 136, 175, 198, 242, 243, 249, 251, 252, 268, 271], "13011": 1, "13003": 1, "12980": 1, "12937": 1, "pkgconfidep": 1, "get_transitive_requir": 1, "13013": 1, "13010": 1, "12992": 1, "12962": 1, "concurr": [1, 7, 63, 74, 85, 146, 151, 267, 271], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 74, 107, 116, 124, 132, 141, 145, 148, 149, 154, 229, 242, 250, 251, 259, 266, 267], "12913": 1, "system_requir": [1, 91, 96, 117, 127, 231], "12912": 1, "tar": [1, 4, 8, 116, 196, 198], "pax": 1, "python3": [1, 58, 114], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 74, 90, 116, 117, 129, 158, 175, 181, 187, 188, 189, 191, 196, 205, 207, 208, 211, 232, 246, 250, 252, 254, 255, 256, 263], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 78, 80, 81, 84, 86, 90, 95, 98, 100, 102, 104, 114, 115, 116, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 142, 147, 149, 156, 157, 158, 166, 175, 180, 181, 183, 186, 187, 188, 191, 192, 203, 205, 213, 217, 219, 222, 231, 233, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "perform": [1, 4, 65, 84, 85, 98, 101, 103, 106, 107, 108, 112, 114, 116, 146, 151, 158, 174, 179, 196, 212, 227, 231, 235, 236, 244, 260, 262, 271], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 70, 116, 188, 240, 242, 244, 245, 256, 261], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 99], "12801": 1, "prev": [1, 13, 31, 91, 93, 96, 99], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 85, 146, 205], "12881": 1, "ref": [1, 13, 19, 40, 45, 51, 73, 88, 91, 93, 96, 114, 116, 127, 130, 137, 139, 142, 154, 156, 159, 167, 252, 261, 262, 263], "12722": 1, "12699": 1, "required_conan_vers": [1, 85, 146], "between": [1, 7, 13, 27, 51, 78, 85, 95, 98, 116, 121, 127, 131, 132, 146, 175, 198, 235, 239, 241, 261, 266, 271], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 78, 150, 188, 235, 244], "12666": 1, "12636": 1, "simplifi": [1, 13, 103, 142, 249, 250, 271], "conaninfo": [1, 24, 81, 84, 240, 245, 249, 257], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 187], "12578": 1, "12525": 1, "api": [1, 6, 27, 65, 70, 74, 76, 116, 147, 152, 155, 158, 235, 236], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 256], "12351": 1, "12379": 1, "reciperefer": [1, 166], "equal": [1, 84, 105, 116, 136, 191, 269], "12506": 1, "compress": [1, 6, 55, 58, 85, 91, 96, 146, 174, 196, 198, 240, 241, 242, 244, 245], "uncompress": [1, 55, 58, 240, 242, 244, 245], "12378": 1, "12475": 1, "proper": [1, 7, 132, 203, 205, 215, 241], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 56, 58, 59, 63, 68, 73, 80, 81, 82, 87, 92, 98, 100, 103, 116, 119, 146, 147, 155, 175, 181, 187, 188, 211, 227, 231, 235, 236, 240, 242, 248, 250, 252, 257, 259, 262, 264, 265, 266, 269, 271], "loos": 1, "12502": 1, "produc": [1, 73, 74, 80, 84, 85, 98, 100, 101, 103, 116, 119, 127, 129, 132, 146, 149, 175, 187, 188, 193, 194, 196, 252, 266], "drop": [1, 98, 147], "compat_app": 1, "12484": 1, "transitive_head": [1, 91, 271], "12508": 1, "transitive_lib": [1, 91, 271], "static": [1, 8, 19, 21, 27, 38, 51, 78, 79, 80, 81, 91, 96, 102, 116, 123, 130, 132, 133, 149, 168, 170, 181, 186, 205, 221, 232, 239, 240, 248, 249, 250, 251, 263, 266, 271], "uncommit": 1, "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 227], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 122, 123, 136, 146, 149], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 51, 78, 80, 105, 116, 117, 120, 141, 146, 147, 175, 187, 191, 203, 208, 242, 244, 269], "char": [1, 29, 42, 55, 200, 240], "12053": 1, "12032": 1, "clicolor_forc": [1, 151], "12028": 1, "12050": 1, "output_fold": [1, 36, 83, 88, 90, 98, 157, 167], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 76, 143], "11675": 1, "11672": 1, "max": [1, 85, 146, 149], "11610": 1, "post_build_fail": 1, "hook": [1, 70, 74, 76, 85, 152], "11593": 1, "pre_gener": [1, 158], "post_gener": [1, 158], "cover": [1, 65, 129, 149, 233, 239, 256, 260], "around": [1, 8, 61, 62, 67, 68, 69, 70, 180, 185, 203, 210, 220, 231, 246], "brought": 1, "back": [1, 2, 10, 18, 57, 70, 78, 85, 104, 146, 270], "11575": 1, "11522": 1, "model": [1, 17, 21, 57, 70, 73, 75, 76, 81, 114, 115, 121, 127, 131, 132, 133, 137, 149, 153, 239, 246, 249, 250], "relationship": [1, 116, 271], "linkag": [1, 242], "autom": [1, 5, 13, 26, 70, 99, 116, 136, 137, 151, 222, 265, 267, 271], "flexibl": [1, 116, 142, 232, 239, 269, 271], "power": [1, 13, 70, 98, 152, 155, 188, 239, 271], "transpar": [1, 4, 11, 37, 64, 240, 261, 271], "pythonapi": 1, "cleaner": [1, 271], "structur": [1, 6, 18, 42, 45, 51, 53, 55, 74, 97, 98, 99, 113, 132, 144, 147, 152, 166, 186, 211, 240, 244, 245, 250, 251, 252, 254, 255, 263, 266, 271], "take": [1, 6, 21, 29, 30, 56, 81, 85, 86, 103, 108, 114, 116, 127, 134, 135, 138, 144, 145, 146, 149, 180, 181, 186, 187, 188, 191, 205, 208, 221, 228, 231, 241, 242, 244, 249, 250, 256, 258, 259, 264, 271], "account": [1, 6, 29, 78, 114, 116, 127, 130, 149, 175, 180, 186, 188, 191, 228, 241, 249, 256, 258, 264, 271], "simpler": [1, 5, 6, 41, 109, 127, 133], "immut": [1, 6, 19, 74, 78, 136, 150, 243, 247, 248, 251, 252, 258, 262, 268], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 56, 57, 70, 83, 90, 98, 110, 127, 132, 182, 187, 222, 232, 236, 248, 260, 267, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 51, 53, 55, 57, 64, 70, 83, 86, 88, 90, 98, 101, 102, 103, 107, 110, 111, 112, 116, 118, 120, 122, 123, 127, 129, 130, 131, 132, 136, 138, 139, 214, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "aim": [2, 70, 91, 120, 142, 146, 149, 211, 258], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 53, 55, 56, 57, 65, 70, 74, 83, 84, 90, 98, 99, 110, 114, 116, 118, 124, 129, 132, 134, 135, 136, 146, 149, 151, 157, 160, 177, 182, 187, 213, 214, 222, 224, 232, 235, 236, 237, 240, 241, 245, 248, 255, 261, 267], "intend": [2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 59, 70, 74, 80, 84, 85, 98, 99, 120, 124, 125, 126, 127, 138, 147, 158, 175, 185, 187, 188, 192, 210, 216, 227, 231, 242, 245, 248, 256, 267], "engin": [2, 21, 104, 146, 266, 267], "administr": [2, 3, 236], "architect": 2, "adopt": 2, "design": [2, 18, 70, 128, 149, 263, 271], "product": [2, 5, 6, 35, 57, 70, 74, 86, 103, 106, 120, 124, 131, 263], "team": [2, 5, 8, 55, 70, 73, 78, 104, 105, 106, 114, 116, 149, 235, 236, 237, 240, 255], "plan": [2, 127, 132], "we": [3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 65, 74, 78, 79, 80, 81, 84, 93, 95, 98, 99, 102, 103, 104, 105, 114, 116, 119, 121, 123, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 140, 146, 147, 149, 166, 175, 181, 183, 186, 187, 188, 189, 192, 208, 211, 213, 214, 221, 227, 231, 233, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "ll": [3, 4, 31, 45, 53, 55, 63, 96, 147, 155, 188, 213, 222, 224, 240, 262], "free": [3, 4, 70, 91, 96, 114, 235, 236, 237], "tab": [3, 63], "exampl": [3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 60, 63, 64, 65, 67, 70, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 104, 106, 111, 112, 114, 116, 119, 120, 121, 122, 123, 128, 129, 130, 131, 132, 133, 136, 137, 138, 139, 142, 144, 145, 146, 147, 149, 154, 155, 157, 158, 159, 160, 167, 179, 180, 181, 182, 186, 187, 188, 189, 192, 193, 196, 200, 206, 207, 208, 211, 214, 217, 219, 220, 221, 227, 231, 232, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 269, 270, 271], "imagin": [3, 10, 95, 187, 211, 244, 249, 257], "give": [3, 4, 8, 70, 82, 95, 106, 113, 193, 194], "upload_url": [3, 4, 85, 146], "myteam": [3, 4, 146], "myorg": [3, 4], "next": [3, 26, 29, 45, 70, 81, 103, 116, 205, 221, 227, 241, 247, 248, 249, 256, 270], "anonym": [3, 114, 145, 150, 151], "see": [3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 36, 38, 39, 40, 41, 42, 47, 48, 49, 51, 53, 56, 58, 63, 65, 73, 79, 80, 81, 82, 85, 86, 87, 93, 97, 98, 99, 102, 106, 108, 112, 113, 114, 116, 120, 122, 123, 124, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 187, 188, 189, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270], "offici": [3, 31, 97, 152, 155, 213, 233, 271], "guid": [3, 4, 57, 232], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 51, 53, 56, 60, 63, 64, 70, 73, 76, 77, 78, 80, 86, 90, 99, 102, 103, 107, 112, 115, 116, 129, 133, 144, 146, 147, 148, 149, 152, 157, 175, 187, 211, 214, 230, 232, 233, 234, 238, 239, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270], "token": [3, 56, 114, 145, 150, 227], "live": [3, 13, 19, 116, 136, 142, 221, 271], "source_credenti": [3, 4, 76, 143], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 51, 58, 65, 84, 87, 105, 116, 127, 139, 142, 146, 147, 149, 156, 158, 160, 175, 181, 182, 191, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 224, 241, 243, 250, 251, 261, 266, 267], "last": [3, 7, 99, 133, 149, 170, 212, 222, 264, 269, 271], "permiss": [3, 4, 58, 70, 74, 196, 235, 236], "feel": [3, 132], "modifi": [3, 4, 6, 10, 17, 26, 27, 29, 48, 51, 63, 73, 74, 80, 84, 114, 116, 119, 120, 127, 132, 149, 151, 154, 158, 160, 181, 188, 189, 196, 204, 239, 243, 244, 248, 249, 250, 252, 257, 258, 266, 268, 269, 270], "accord": [3, 45, 63, 64, 80, 136, 147, 180, 187, 188, 224, 251, 269], "With": [3, 4, 7, 17, 21, 35, 36, 58, 63, 70, 145, 147, 149, 200, 213, 242, 248, 256, 261], "common": [4, 6, 8, 13, 17, 18, 27, 35, 51, 73, 74, 80, 84, 85, 99, 116, 125, 126, 127, 131, 132, 135, 149, 152, 154, 155, 175, 180, 214, 220, 227, 231, 242, 243, 250, 257, 264, 265], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 56, 70, 71, 78, 80, 84, 86, 99, 101, 103, 105, 106, 114, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 132, 133, 136, 139, 142, 147, 150, 175, 217, 232, 241, 243, 245, 247, 248, 251, 252, 256, 258, 262, 266, 267, 268, 269, 270], "canon": [4, 187], "page": [4, 27, 57, 116, 236], "keep": [4, 6, 18, 26, 56, 65, 74, 103, 104, 128, 149, 158, 175, 186, 187, 188, 196, 240, 243, 244, 255, 256, 264, 270, 271], "record": 4, "traceabl": [4, 6, 70, 256, 265, 270, 271], "purpos": [4, 7, 58, 74, 116, 123, 125, 127, 128, 146, 150, 152, 227, 231, 232, 233, 238, 256, 263, 267, 270], "howev": [4, 5, 21, 35, 39, 40, 58, 59, 65, 96, 114, 119, 142, 146, 149, 158, 187, 243, 244, 245, 252, 266, 267, 268, 270], "often": [4, 29, 129, 269], "long": [4, 7, 70, 73, 116, 129, 149, 175, 267, 269, 271], "term": [4, 7, 250], "futur": [4, 7, 36, 56, 66, 73, 74, 105, 106, 116, 147, 153, 154, 157, 159, 199, 244, 252], "mai": [4, 8, 19, 21, 26, 58, 70, 73, 87, 113, 116, 118, 122, 123, 132, 149, 181, 187, 188, 228, 237, 239, 242, 244, 245, 251, 252, 258], "encount": [4, 116], "thu": [4, 8, 74, 114, 116, 119, 125, 126, 203, 206, 271], "retriev": [4, 6, 7, 8, 56, 74, 84, 87, 96, 114, 116, 121, 198, 227, 240, 242, 245, 246, 247, 250, 252, 255, 268], "addition": [4, 8, 96, 120, 133, 141, 146, 187, 208], "alongsid": [4, 211, 232], "infrastructur": [4, 6], "trigger": [4, 141, 271], "sha256": [4, 116, 197, 198, 252], "signatur": [4, 157, 159, 160, 197], "few": [4, 36, 80, 151, 152, 154, 175, 256], "download_url": [4, 85, 146], "repres": [4, 6, 74, 78, 80, 81, 116, 187, 189, 192, 217, 231, 242, 268, 271], "fetch": [4, 6, 58, 70, 82, 84, 97, 136, 227, 242], "either": [4, 8, 36, 105, 114, 116, 118, 127, 131, 132, 133, 141, 151, 159, 170, 174, 177, 191, 243, 269], "present": [4, 13, 36, 45, 73, 75, 84, 85, 97, 98, 116, 133, 149, 151, 174, 183, 245], "prefer": [4, 47, 48, 58, 63, 78, 150, 180, 188, 205, 227, 255, 261, 262, 263], "ahead": [4, 10], "Being": [4, 175], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 51, 56, 58, 70, 73, 74, 75, 78, 80, 84, 86, 95, 98, 99, 101, 102, 103, 105, 114, 116, 119, 123, 126, 127, 129, 130, 131, 132, 135, 136, 137, 146, 147, 149, 166, 177, 191, 205, 217, 221, 222, 237, 242, 250, 255, 256, 261, 262, 266, 270], "exclude_url": [4, 84, 85, 146], "start": [4, 5, 6, 17, 29, 45, 53, 55, 56, 58, 74, 105, 115, 116, 131, 132, 149, 150, 155, 158, 166, 196, 198, 208, 213, 217, 236, 237, 240, 250, 261, 262, 263, 266, 267, 268, 270, 271], "begin": [4, 70, 85, 146, 147, 239, 246], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 63, 70, 74, 80, 81, 103, 114, 116, 123, 126, 127, 129, 131, 132, 136, 142, 145, 146, 147, 149, 155, 160, 177, 179, 188, 207, 213, 227, 240, 242, 243, 261, 262, 263, 267, 268, 270], "A": [4, 6, 13, 47, 51, 65, 70, 80, 84, 85, 87, 91, 95, 96, 99, 102, 103, 108, 112, 114, 116, 120, 122, 131, 133, 135, 136, 137, 141, 146, 147, 154, 158, 166, 174, 175, 185, 188, 191, 196, 198, 202, 219, 222, 231, 236, 240, 243, 246, 248, 249, 251, 253, 254, 255, 259, 261, 264, 267, 269, 271], "put": [4, 6, 17, 29, 36, 58, 84, 85, 90, 105, 116, 127, 129, 132, 136, 145, 146, 147, 152, 159, 192, 211, 212, 214, 250, 256, 259, 263, 264, 268], "its": [4, 13, 24, 29, 31, 36, 39, 40, 56, 58, 59, 70, 73, 77, 79, 80, 81, 82, 83, 84, 86, 87, 97, 98, 106, 108, 116, 119, 127, 131, 132, 133, 136, 138, 145, 146, 147, 155, 157, 158, 175, 187, 188, 191, 203, 222, 239, 241, 243, 244, 250, 259, 261, 263, 264, 267], "strongli": [4, 8, 58, 78, 116, 119, 150, 217, 252], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 53, 55, 56, 59, 70, 74, 78, 80, 85, 98, 99, 103, 106, 114, 116, 119, 124, 125, 130, 131, 133, 134, 136, 146, 147, 151, 158, 175, 187, 199, 231, 235, 236, 237, 245, 248, 250, 255, 267, 269], "below": [4, 5, 6, 8, 63, 70, 78, 80, 81, 84, 121, 133, 136, 144, 179, 181, 182, 188, 196, 205, 208, 211, 249], "relev": [4, 21, 57, 61, 62, 66, 67, 68, 69, 80, 146, 247, 248, 249, 251, 252, 256, 258, 259, 267], "suppli": [4, 5, 84, 100, 101, 104, 157, 271], "els": [4, 6, 17, 26, 31, 39, 40, 51, 70, 114, 116, 130, 131, 132, 136, 147, 174, 183, 231, 242, 244, 247, 248, 251, 256, 258], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 51, 53, 58, 62, 70, 73, 85, 91, 98, 105, 114, 116, 119, 121, 127, 129, 131, 132, 142, 147, 148, 149, 155, 157, 181, 182, 187, 188, 200, 205, 212, 217, 229, 231, 241, 244, 249, 250, 251, 252, 255, 256, 261, 267, 268, 269], "blob": [4, 65, 271], "belong": [4, 84, 87, 99, 103, 174, 176, 187, 196, 208, 241, 250, 256, 259], "artifactori": [4, 13, 59, 70, 114, 152, 235, 237], "describ": [4, 5, 6, 8, 10, 45, 55, 77, 79, 82, 116, 127, 129, 135, 145, 183, 188, 189, 217, 263, 270], "approach": [4, 6, 8, 13, 29, 41, 56, 70, 73, 74, 78, 80, 98, 116, 129, 130, 131, 132, 133, 134, 136, 147, 149, 155, 175, 185, 187, 199, 227, 241, 248, 255, 256, 267, 270], "deal": [4, 9, 119, 131], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 51, 53, 56, 70, 79, 80, 81, 84, 87, 96, 102, 105, 108, 114, 116, 127, 128, 131, 133, 142, 146, 149, 159, 175, 181, 182, 185, 187, 188, 192, 193, 196, 211, 221, 231, 242, 251, 252, 257, 258, 261, 263, 266, 267, 268, 270, 271], "travers": [4, 144], "until": [4, 8, 63, 74, 144, 145, 150], "client": [4, 7, 13, 31, 63, 70, 73, 82, 85, 106, 113, 114, 116, 145, 158, 236, 237, 242, 250], "regard": [4, 70, 75, 102, 149, 158, 196, 257], "capabl": [4, 7, 97, 98, 147, 188, 244, 271], "1": [4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 65, 70, 72, 73, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 108, 109, 112, 113, 114, 116, 120, 127, 128, 131, 132, 133, 135, 136, 139, 140, 142, 146, 147, 148, 149, 156, 157, 158, 175, 181, 183, 185, 186, 187, 188, 191, 193, 194, 196, 198, 200, 203, 206, 208, 211, 217, 219, 221, 222, 223, 224, 227, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270, 271], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 79, 80, 81, 86, 93, 98, 99, 101, 102, 103, 105, 113, 114, 116, 120, 127, 137, 142, 147, 149, 175, 180, 181, 187, 188, 193, 198, 208, 211, 213, 240, 241, 243, 244, 245, 248, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267, 269, 270, 271], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 58, 73, 85, 91, 96, 106, 151, 206, 240, 242, 248, 249, 250, 251, 252, 254, 257], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 51, 53, 55, 79, 84, 116, 124, 129, 130, 187, 196, 211, 240, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268], "net": [4, 85, 91, 96, 114, 146], "fossil": 4, "gz": [4, 116, 196, 198], "madler": 4, "v1": [4, 183], "newli": 4, "therefor": [4, 8, 63, 119, 196, 231, 254], "dure": [4, 8, 26, 56, 63, 116, 123, 133, 185, 217, 250, 262, 269], "address": [4, 8, 131, 149, 265], "scenario": [4, 7, 40, 41, 42, 56, 58, 80, 116, 118, 119, 132, 133, 147, 255, 271], "ce": [4, 70, 235], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 52, 54, 56, 62, 67, 70, 73, 74, 86, 105, 114, 116, 117, 118, 120, 128, 133, 142, 155, 158, 175, 210, 211, 212, 214, 232, 235, 237, 239, 242, 244, 246, 250, 252, 253, 254, 258, 261, 262, 269, 270], "suffici": [4, 114], "instruct": [4, 58, 63, 73, 117, 130, 149, 242], "author": [4, 6, 8, 56, 91, 128, 150, 250], "agent": [4, 56], "done": [5, 6, 36, 38, 51, 70, 73, 74, 77, 101, 103, 108, 114, 118, 119, 120, 127, 132, 133, 135, 136, 145, 147, 149, 151, 156, 157, 158, 167, 175, 179, 187, 188, 192, 193, 194, 203, 234, 241, 243, 244, 248, 250, 251, 259, 261, 262, 263, 264, 269, 270, 271], "much": [5, 6, 74, 118, 125, 136, 175, 250, 262, 271], "fulli": [5, 35, 56, 70, 101, 103, 116, 133, 134, 135, 157, 181, 182, 188, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229, 261, 271], "fork": [5, 8, 116], "maintain": [5, 8, 18, 70, 101, 116, 131, 142, 147, 158, 208, 243, 264], "pr": [5, 42, 49, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 147, 211, 213, 241], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 53, 55, 56, 58, 59, 63, 70, 72, 73, 75, 79, 81, 84, 85, 87, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 108, 109, 112, 113, 114, 116, 120, 125, 127, 128, 130, 132, 133, 135, 139, 142, 146, 147, 148, 149, 156, 159, 175, 181, 187, 193, 194, 198, 199, 203, 206, 208, 211, 219, 221, 224, 240, 241, 242, 243, 244, 245, 247, 250, 254, 255, 261, 266, 267, 268, 269, 270], "13": [5, 6, 13, 24, 35, 42, 79, 81, 84, 87, 95, 96, 98, 99, 102, 106, 108, 109, 112, 113, 120, 142, 147, 149, 156, 206, 240, 243, 247], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 70, 80, 85, 86, 87, 99, 108, 116, 117, 120, 123, 125, 126, 129, 130, 131, 133, 146, 147, 149, 175, 233, 235, 247, 248, 249, 250, 251, 252, 258, 259, 262, 263, 268, 270], "mostli": [5, 31, 45, 116, 133, 149, 158, 231], "proprietari": [5, 70, 150, 207], "idea": [5, 127, 146, 267, 271], "further": [5, 78, 116, 120, 149, 188, 271], "soon": [5, 59, 70, 271], "straightforward": [5, 77, 86, 98, 127, 260, 266], "mani": [5, 6, 45, 49, 56, 58, 65, 70, 73, 74, 80, 101, 105, 127, 147, 175, 192, 238, 261, 264, 267, 271], "advantag": [5, 58, 156, 182, 222, 244], "mitig": [5, 192], "risk": [5, 56, 73, 146], "befor": [5, 6, 7, 10, 26, 45, 53, 55, 56, 112, 116, 118, 122, 127, 129, 136, 139, 147, 157, 158, 175, 192, 196, 205, 210, 213, 217, 223, 227, 231, 241, 242, 244, 245, 248, 249, 252, 256, 263, 267, 271], "No": [5, 24, 116, 123, 242, 254, 270], "central": [5, 70, 233], "outag": 5, "adapt": [5, 77, 105, 106, 116], "perfectli": [5, 73, 142], "minut": [5, 99, 108], "week": [5, 99, 108, 264], "appli": [5, 8, 49, 51, 74, 80, 82, 83, 84, 86, 90, 93, 95, 96, 98, 101, 102, 103, 106, 111, 114, 116, 118, 119, 123, 126, 127, 132, 136, 146, 147, 149, 181, 188, 190, 200, 213, 241, 242, 243, 245, 246, 248, 249, 254, 255, 258, 266, 269, 271], "wouldn": [5, 58, 63, 185], "elimin": [5, 261], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 53, 152], "diff": [5, 51, 95, 99, 200], "trim": [5, 102], "don": [5, 10, 13, 24, 31, 39, 40, 45, 63, 73, 79, 95, 98, 99, 107, 115, 116, 136, 145, 147, 155, 175, 187, 189, 240, 241, 242, 243, 254, 255, 257, 261, 264], "fire": [5, 136, 175, 263], "effici": [5, 35, 55, 70, 78, 116, 131, 221, 240, 271], "thank": [5, 26, 39, 40, 45, 55, 80, 152, 155, 255], "secondari": [5, 70], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 56, 63, 65, 74, 105, 120, 122, 123, 128, 131, 132, 145, 147, 156, 157, 187, 189, 196, 203, 213, 222, 233, 236, 237, 239, 240, 241, 243, 246, 249, 250, 251, 257, 259, 265, 266, 269, 270], "good": [5, 19, 56, 70, 71, 78, 103, 105, 114, 116, 118, 120, 121, 127, 128, 132, 133, 146, 166, 222, 224, 235, 247, 248, 251, 258, 262, 266, 267, 270], "experiment": [6, 7, 13, 31, 70, 91, 97, 105, 112, 113, 116, 120, 122, 123, 124, 131, 132, 142, 145, 147, 149, 150, 153, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213, 227, 271], "subject": [6, 7, 13, 31, 70, 91, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213], "stabil": [6, 7, 13, 31, 65, 70, 97, 99, 106, 113, 120, 122, 123, 124, 131, 144, 145, 147, 149, 150, 153, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 189, 196, 206, 210, 211, 212, 264], "typic": [6, 8, 13, 27, 39, 40, 56, 58, 63, 73, 80, 116, 122, 125, 126, 127, 129, 132, 133, 147, 150, 159, 179, 180, 186, 187, 189, 192, 208, 214, 220, 225, 231, 241, 242, 244, 248, 249, 251, 254, 255, 256, 261, 262, 264, 271], "compos": [6, 98, 132, 146, 147, 163, 170, 180, 191, 254], "But": [6, 7, 13, 29, 39, 40, 56, 70, 80, 90, 99, 104, 116, 119, 127, 138, 140, 141, 147, 155, 159, 187, 208, 211, 241, 243, 244, 250, 254, 256, 266, 267, 268], "normal": [6, 35, 42, 67, 73, 108, 116, 124, 155, 158, 191, 261, 269], "consumpt": [6, 21, 70, 117, 142], "complianc": [6, 119], "technic": [6, 116], "busi": 6, "reason": [6, 8, 41, 56, 73, 74, 86, 90, 103, 136, 150, 256, 263, 266, 268], "suit": [6, 142, 147, 214, 248, 254], "heavi": [6, 29, 70, 116, 118, 154], "pdb": [6, 29], "coverag": [6, 187], "sanit": 6, "analysi": [6, 85, 146], "exact": [6, 47, 48, 74, 78, 84, 101, 103, 108, 116, 119, 147, 182, 196, 222, 243, 250, 261, 262, 263, 268, 270], "machin": [6, 29, 58, 80, 90, 106, 114, 116, 124, 149, 151, 183, 187, 203, 208, 216, 217, 221, 231, 233, 238, 241, 242, 259, 268], "relat": [6, 45, 58, 67, 116, 127, 146, 182, 188, 196, 208, 217, 244, 249, 250, 262, 271], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 56, 58, 63, 70, 72, 73, 80, 85, 98, 105, 108, 114, 116, 118, 125, 129, 130, 131, 139, 140, 146, 151, 158, 175, 187, 188, 191, 214, 231, 235, 236, 244, 248, 249, 251, 255, 256, 261, 265, 266, 268, 271], "regul": 6, "insid": [6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 74, 79, 81, 85, 99, 105, 116, 120, 129, 132, 144, 146, 149, 155, 156, 158, 179, 188, 192, 196, 201, 214, 231, 237, 244, 246, 249, 250, 257, 261, 263, 267, 271], "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 56, 73, 81, 86, 108, 118, 125, 126, 127, 130, 131, 132, 145, 150, 151, 155, 192, 240, 243, 245, 249, 250, 254, 261, 263, 266, 267, 269, 271], "lot": [6, 8, 258, 269, 271], "impact": [6, 8], "experi": [6, 116, 118, 237, 269, 271], "cost": [6, 74], "furthermor": [6, 53, 74, 271], "append": [6, 26, 49, 58, 85, 114, 116, 132, 134, 135, 146, 147, 153, 159, 185, 187, 188, 191, 192, 196, 204, 205, 206, 222, 223, 256], "highlight": [6, 26, 141, 191, 211, 252], "probabl": [6, 31, 188, 214, 221, 243], "scan": [6, 201], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 70, 72, 75, 78, 79, 84, 87, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 113, 114, 116, 120, 127, 128, 131, 133, 136, 137, 139, 140, 142, 147, 149, 156, 157, 175, 185, 186, 187, 188, 191, 193, 194, 196, 198, 199, 200, 203, 208, 211, 217, 219, 221, 222, 223, 224, 231, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 53, 56, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 147, 149, 150, 153, 154, 155, 156, 157, 158, 159, 160, 175, 177, 179, 180, 181, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 270], "Or": [6, 85, 118, 127, 147, 188, 207, 223, 229], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 51, 56, 85, 142, 146, 176, 184, 188, 214, 241, 244, 250, 252, 254, 256, 259, 261, 262, 263], "mybuild": [6, 116], "recipe_fold": [6, 16, 18, 56, 91, 96, 125, 126, 127, 128, 134, 135], "dst": [6, 17, 38, 116, 124, 196, 257], "join": [6, 16, 17, 18, 19, 36, 39, 40, 51, 73, 116, 126, 128, 129, 130, 132, 134, 135, 138, 147, 158, 159, 175, 187, 188, 191, 196, 214, 244, 248, 254, 255, 256, 257, 259, 263], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 53, 55, 59, 61, 62, 66, 67, 68, 69, 70, 74, 80, 82, 86, 99, 100, 102, 116, 121, 130, 131, 133, 134, 143, 146, 175, 186, 188, 189, 196, 214, 223, 231, 232, 240, 247, 256, 259, 260, 262, 266, 267], "mylog": 6, "build_fold": [6, 17, 74, 91, 96, 97, 127, 129, 130, 158, 186, 196, 211, 216, 254, 255, 256, 257], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 58, 63, 75, 78, 80, 84, 96, 98, 101, 103, 105, 108, 114, 116, 118, 128, 131, 132, 136, 138, 141, 142, 147, 149, 157, 159, 175, 181, 187, 188, 202, 217, 231, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 257, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "clutter": [6, 214], "accross": [6, 78], "sai": [6, 13, 16, 18, 38, 41, 51, 80, 84, 95, 98, 103, 116, 146, 147, 181, 221, 249, 263], "no_copy_sourc": [6, 118, 254], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 53, 70, 73, 79, 80, 81, 84, 99, 104, 105, 116, 136, 147, 149, 150, 157, 175, 177, 182, 187, 192, 211, 231, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 263, 266, 267, 268, 270, 271], "post_export": [6, 158], "post_sourc": [6, 158], "post_build": [6, 152, 158], "usag": [6, 27, 31, 35, 37, 39, 40, 41, 63, 70, 74, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 119, 129, 132, 133, 145, 146, 147, 149, 151, 157, 189, 196, 198, 200, 203, 207, 214, 223, 243, 256, 261], "similar": [6, 8, 18, 58, 65, 70, 87, 90, 103, 112, 114, 116, 129, 137, 147, 155, 187, 189, 191, 227, 240, 247, 249, 252, 254, 263, 269], "effect": [6, 8, 49, 73, 76, 77, 78, 98, 116, 127, 131, 136, 146, 152, 221, 231, 249, 267], "To": [6, 24, 26, 29, 31, 36, 55, 56, 58, 63, 64, 73, 99, 103, 106, 108, 116, 120, 128, 129, 136, 141, 146, 147, 150, 153, 158, 181, 186, 187, 188, 193, 194, 196, 203, 204, 205, 214, 240, 242, 244, 245, 251, 252, 261, 263, 267, 270], "achiev": [6, 8, 39, 56, 74, 118, 131, 157, 182, 187, 196, 222, 239, 244, 250, 254, 267, 270, 271], "didn": [6, 47, 56, 73, 79, 250, 254], "far": [6, 242, 243, 244, 247, 249, 261, 271], "r": [6, 13, 31, 35, 56, 65, 73, 79, 81, 83, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 108, 109, 111, 112, 227, 236, 238, 243, 264, 268], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 254], "By": [6, 21, 41, 48, 70, 73, 78, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 111, 112, 114, 116, 132, 145, 146, 151, 175, 187, 188, 191, 203, 205, 206, 208, 210, 217, 231, 267, 268], "situat": [6, 13, 35, 39, 40, 80, 101, 108, 116, 118, 130, 131, 135, 147, 175, 187, 208, 265, 266], "sometim": [6, 7, 29, 51, 73, 86, 116, 137, 243, 248, 252, 254, 260], "mix": [6, 80, 175], "recov": [6, 56, 196], "previous": [6, 13, 24, 31, 36, 58, 98, 103, 145, 147, 149, 188, 191, 213, 245, 252, 255, 266], "under": [6, 8, 36, 61, 66, 68, 69, 70, 81, 114, 116, 129, 131, 147, 155, 158, 200, 217, 231, 237, 240, 250, 255, 260, 269], "collect": [6, 36, 96, 98, 127, 132, 136, 196, 206, 249, 258], "recal": [6, 101, 103, 108, 120, 123, 147, 151, 181, 185, 188], "At": [6, 10, 21, 26, 63, 70, 74, 93, 103, 116, 127, 149, 196, 204, 212, 213], "moment": [6, 7, 35, 74, 114, 127, 132, 149, 204, 212], "addit": [6, 8, 58, 59, 85, 86, 100, 116, 133, 146, 147, 149, 178, 188, 196, 198, 205, 217, 222, 223, 244, 245, 251], "quit": [6, 146, 175, 237], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 74, 98, 103, 116, 120, 125, 126, 128, 130, 136, 142, 181, 182, 239, 248, 249, 267, 269], "metatada": 6, "best": [6, 7, 13, 35, 56, 78, 80, 84, 86, 99, 101, 106, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 139, 147, 150, 170, 175, 245, 256, 266, 268, 270], "mandatori": [6, 36, 80, 101, 105, 116, 154, 157, 175, 250], "frequent": [6, 8, 196], "excepcion": 6, "decompress": [6, 196, 198, 240, 245, 260], "consid": [6, 7, 8, 21, 45, 70, 78, 79, 80, 84, 116, 119, 121, 181, 183, 188, 217, 244, 268], "zip": [6, 8, 19, 51, 85, 106, 112, 116, 136, 150, 196, 198, 235, 236, 246, 262], "yourself": 6, "categori": [6, 241], "illustr": [6, 79, 270], "later": [6, 7, 13, 26, 63, 65, 86, 96, 119, 123, 126, 132, 141, 147, 196, 227, 233, 238, 243, 244, 248, 249, 255, 265, 267], "necessarili": [6, 116, 267], "ton": 6, "assum": [6, 29, 35, 63, 70, 74, 78, 79, 84, 87, 95, 99, 108, 112, 116, 128, 132, 137, 147, 149, 151, 181, 187, 211, 221, 240, 242, 244, 245, 270], "stage": [6, 26, 58, 86, 90, 149, 158], "applic": [6, 8, 27, 38, 45, 48, 53, 55, 58, 70, 73, 79, 80, 96, 116, 120, 131, 133, 139, 187, 194, 196, 208, 221, 232, 237, 239, 240, 245, 246, 250, 253, 254, 256, 259, 261, 266, 271], "cp": [6, 35, 56], "todo": [6, 166], "hear": 6, "feedback": [6, 70, 269], "continu": [7, 70, 74, 101, 114, 234, 263, 267], "conveni": [7, 13, 65, 99, 105, 116, 136, 137, 147, 157, 160, 175, 187, 191, 193, 194, 243, 256, 259], "recent": [7, 21, 99, 108, 264], "transfer": [7, 8, 114, 271], "job": [7, 56, 74, 85, 146, 147, 183, 185, 216, 271], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 99], "b": [7, 21, 24, 29, 42, 51, 58, 83, 84, 86, 90, 93, 95, 96, 98, 102, 106, 111, 136, 146, 200, 206, 211, 241, 248, 249, 251, 252, 254, 257, 263], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "consider": 7, "well": [7, 56, 70, 72, 90, 99, 113, 116, 129, 149, 185, 187, 188, 208, 217, 250, 271], "pkg773791b8c97aa": 7, "substitut": [7, 151, 231], "storag": [7, 70, 84, 114, 152, 198, 237, 268], "transitori": 7, "strategi": [7, 8, 56, 131, 136, 262, 271], "proof": 7, "stabl": [7, 58, 99, 105, 106, 116, 146, 147], "expect": [7, 10, 42, 45, 56, 74, 90, 95, 98, 116, 118, 136, 146, 149, 197, 214, 250, 252, 262, 268], "fantast": 8, "resourc": [8, 57, 96, 132, 244, 268], "1500": 8, "contribut": [8, 70, 192, 200, 232, 233], "great": [8, 58, 70, 73, 236, 271], "knowledg": [8, 57, 70, 73], "wide": [8, 58, 80, 242, 244, 245, 250], "variant": [8, 66], "On": [8, 45, 80, 114, 137, 149, 213, 237, 240, 241, 242, 250], "top": [8, 133, 147, 227], "contributor": [8, 70], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 87, 116, 188, 242], "snapshot": [8, 243, 267], "contrari": 8, "e": [8, 42, 58, 70, 73, 84, 87, 88, 91, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 120, 146, 147, 148, 149, 179, 183, 185, 188, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 251, 252, 271], "g": [8, 35, 42, 47, 48, 73, 83, 84, 87, 88, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 146, 147, 148, 149, 156, 167, 179, 183, 185, 188, 193, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 240, 241, 242, 244, 245, 252, 261, 262, 263], "opencv": [8, 114, 137, 154], "greater": 8, "remain": [8, 114, 116, 151, 181, 191, 217], "older": [8, 70, 101, 104, 268, 269, 270], "push": [8, 56, 70, 227], "ecosystem": [8, 80, 213], "themselv": [8, 105, 175, 249], "hand": [8, 70, 80, 102, 118, 137], "combin": [8, 83, 86, 93, 95, 96, 98, 102, 104, 106, 111, 130, 136, 270], "mean": [8, 13, 29, 31, 35, 39, 40, 58, 63, 70, 73, 74, 78, 79, 80, 84, 87, 95, 96, 97, 98, 99, 108, 112, 116, 118, 120, 123, 127, 131, 132, 136, 139, 142, 147, 149, 151, 154, 166, 174, 175, 181, 187, 191, 192, 196, 203, 205, 214, 231, 242, 243, 254, 258, 260, 263, 266, 267, 268, 269], "languag": [8, 38, 42, 45, 49, 53, 55, 70, 182, 240], "pip": [8, 56, 114, 237], "pypi": [8, 58], "npm": 8, "cargo": 8, "discourag": [8, 84, 116, 150, 175, 217, 252], "unconstrain": 8, "manner": [8, 261], "guidelin": [8, 57, 58, 70, 71, 176], "seri": [8, 116, 260], "highli": [8, 24, 31, 36, 45, 53, 55], "mention": [8, 91, 96, 131, 133, 147, 181, 187, 205, 212, 217, 223, 248, 258, 263, 271], "earlier": [8, 70, 269], "caus": [8, 74, 116, 120, 133, 139, 187, 208, 250, 252, 266, 267, 268], "solver": 8, "actual": [8, 13, 19, 39, 40, 70, 73, 80, 90, 108, 112, 118, 127, 133, 137, 147, 149, 192, 193, 194, 196, 231, 238, 243, 263, 266, 267, 270], "4": [8, 10, 21, 26, 48, 53, 73, 78, 79, 96, 99, 103, 113, 114, 116, 121, 127, 131, 137, 142, 146, 147, 149, 175, 188, 211, 241, 244, 247, 254, 264, 270], "5": [8, 10, 63, 73, 78, 85, 93, 98, 101, 102, 103, 104, 116, 120, 127, 131, 147, 149, 160, 198, 221, 243, 267, 269, 270], "greatli": [8, 271], "encourag": [8, 70, 116, 250, 262], "consist": [8, 18, 78, 80, 85, 86, 266, 267, 270, 271], "rust": 8, "technologi": [8, 149], "upstream": [8, 56, 120, 127, 133, 174, 187, 261, 266], "period": [8, 264], "downtim": 8, "schedul": 8, "effort": [8, 127, 271], "made": [8, 84, 271], "unschedul": 8, "rare": [8, 118, 132, 134], "treat": [8, 85, 133, 146, 149, 196], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 114, 149, 235, 237], "strong": [8, 70, 80, 147], "uptim": 8, "protect": [8, 58, 115, 149], "transient": 8, "network": [8, 21, 85, 114, 143], "extern": [8, 19, 26, 49, 58, 246, 250, 252, 255, 257, 268], "These": [8, 21, 31, 45, 68, 70, 78, 85, 86, 98, 114, 125, 126, 127, 129, 141, 143, 146, 147, 150, 151, 155, 186, 188, 189, 203, 204, 208, 217, 241, 242, 249, 250, 254, 255, 259, 263, 267, 271], "industri": 8, "financ": 8, "robot": 8, "embed": [8, 70, 78, 79, 116, 133, 149], "stronger": 8, "licens": [8, 36, 55, 70, 91, 96, 97, 98, 105, 125, 126, 127, 128, 130, 158, 235, 240, 246, 250, 258, 262, 268], "medic": 8, "automot": 8, "advis": [8, 134, 135, 147], "instanc": [8, 31, 42, 63, 91, 96, 114, 116, 120, 129, 130, 131, 146, 147, 155, 177, 179, 183, 187, 188, 191, 192, 193, 194, 205, 213, 217, 219, 220, 221, 224, 227, 251, 259], "backport": [8, 200, 271], "suitabl": [8, 149], "review": [8, 63, 253, 254, 256, 263], "tight": 8, "subsect": 8, "come": [10, 58, 127, 147, 155, 183, 188, 208, 217, 236, 242, 255, 271], "glanc": 10, "becom": [10, 58, 80, 125, 126, 175, 268, 271], "unfeas": 10, "benefit": 10, "interest": [10, 13, 70, 84, 86], "pick": [10, 243], "action": [10, 31, 53, 56, 63, 114, 243, 251], "summar": [10, 271], "libpng": [10, 93, 97, 181], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 60, 64, 65, 70, 74, 81, 136, 243, 250, 262, 266], "8": [10, 73, 78, 98, 109, 116, 121, 127, 149, 180, 193, 194, 196, 200, 217, 221, 222, 224, 243, 247, 248, 249, 258, 259, 269], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 53, 58, 70, 73, 78, 99, 113, 114, 121, 136, 139, 149, 181, 200, 207, 241, 243, 244, 245], "40": [10, 99, 268], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 51, 73, 78, 85, 102, 120, 121, 127, 142, 146, 147, 149, 198, 241, 269], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 70, 79, 81, 87, 116, 127, 142, 208, 211], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 99, 255], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 79, 81, 96, 99, 120], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 51, 53, 55, 63, 90, 104, 125, 133, 142, 147, 188, 214, 221, 238, 240, 253, 254, 256, 259, 261, 263, 266, 269], "usual": [10, 58, 116, 133, 138, 147, 152, 157, 181, 191, 261, 263, 267], "behaviour": [10, 114, 187, 231, 249, 250, 251], "googl": [11, 42, 43, 53, 62, 76, 85, 146, 176, 200, 210, 211, 212], "ndk": [11, 25, 26, 60, 116, 132, 177, 188, 217, 241], "macro": [11, 37, 45], "modul": [11, 37, 45, 58, 65, 114, 116, 127, 128, 147, 152, 156, 175, 187, 211], "concaten": [13, 87, 112], "11": [13, 24, 55, 73, 81, 84, 85, 91, 95, 98, 99, 108, 109, 116, 127, 133, 142, 146, 147, 148, 149, 156, 181, 187, 193, 194, 200, 203, 208, 211, 221, 224, 240, 241, 242, 243, 244, 245, 247, 248, 254, 258, 259, 262, 269], "sent": 13, "12": [13, 21, 24, 26, 27, 91, 99, 108, 109, 142, 147, 149, 183, 200, 208, 217, 237, 243, 250, 254, 255, 268], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 102], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 99], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 51, 56, 58, 69, 73, 80, 81, 84, 87, 91, 95, 96, 97, 99, 106, 108, 112, 116, 119, 122, 123, 128, 131, 132, 137, 140, 147, 149, 157, 160, 168, 177, 179, 180, 181, 182, 185, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 221, 222, 223, 224, 229, 231, 240, 241, 242, 243, 244, 248, 250, 252, 254, 255, 256, 259, 267, 268], "x86_64": [13, 24, 26, 27, 35, 42, 73, 80, 81, 91, 95, 99, 106, 122, 129, 137, 147, 149, 157, 160, 180, 181, 183, 188, 193, 194, 231, 240, 241, 242, 244, 245, 248, 250, 255, 256, 259, 262, 267, 268], "singl": [13, 26, 47, 48, 70, 78, 82, 87, 103, 106, 116, 158, 171, 181, 185, 186, 187, 188, 189, 193, 194, 196, 217, 221, 244, 252, 255, 263, 271], "invoc": [13, 36, 61, 62, 67, 68, 69, 74, 118, 141, 152, 154, 179, 180, 181, 182, 185, 188, 193, 203, 210, 211, 220, 222], "almost": [13, 78, 82], "myremot": [13, 87, 108, 112, 114, 145, 264, 268], "slow": 13, "promot": 13, "magnitud": 13, "faster": [13, 80, 227, 243, 270], "dedupl": 13, "One": [13, 70, 73, 116, 156, 182, 188, 196, 217, 222, 241, 248], "mypkg": [13, 80, 84, 98, 105, 116, 134, 136, 137, 147, 156, 187, 191, 211], "cmake_lib": [13, 27, 79, 84, 105, 186, 250, 255, 268], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 84, 268], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 80, 91, 93, 97, 149], "known": [13, 149, 198, 243, 254, 271], "destruct": 13, "natur": [13, 80, 266, 268], "cannot": [13, 27, 42, 56, 74, 80, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 117, 118, 119, 128, 136, 140, 142, 146, 151, 155, 175, 183, 187, 188, 189, 242, 250, 254, 255, 260, 266, 267], "OR": [13, 26, 84, 87, 99, 108, 112, 168, 223, 269], "leav": [13, 26, 80, 108, 114, 127, 146, 149, 264], "subproject": [14, 15, 129, 263], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 51, 53, 55, 56, 58, 79, 187, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 271], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 63, 64, 74, 84, 105, 116, 130, 185, 186, 187, 188, 214, 240, 244, 245, 247, 248, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "h": [16, 17, 18, 21, 26, 31, 42, 45, 53, 55, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 130, 155, 196, 240, 241, 242, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 261, 262, 263], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 51, 126, 200], "cmake_fil": 16, "real": [17, 26, 56, 70, 112, 132, 139, 196, 266, 270, 271], "editable_compon": 17, "greet": [17, 155, 217], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 51, 53, 56, 79, 96, 99, 105, 116, 127, 155, 175, 185, 186, 187, 188, 210, 217, 238, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 261, 262, 263, 268], "bye": [17, 18, 155, 261, 268], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 51, 56, 74, 125, 126, 175, 188, 250, 252, 254, 256, 263, 268, 270], "src_folder": [17, 19, 186, 214, 262], "dir": [17, 19, 21, 27, 85, 105, 116, 132, 147, 189, 206, 213, 227, 248, 249, 250, 251, 254, 259, 262, 263], "bt": [17, 86], "package_fold": [17, 38, 39, 40, 41, 91, 96, 97, 115, 124, 127, 129, 130, 132, 158, 179, 181, 188, 191, 196, 203, 206, 208, 216, 254, 255, 256, 257], "keep_path": [17, 130, 196, 255, 256, 257], "cmake_file_nam": [17, 132, 187], "myg": 17, "cmake_target_nam": [17, 21, 132, 187, 251], "mygreet": 17, "myhello": [17, 251], "myby": 17, "beyond": 17, "filenam": [17, 48, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 111, 147, 157, 159, 192, 196, 198, 216], "besid": [17, 31, 48, 56, 66, 98, 146, 147, 149, 152, 181, 187, 189, 240, 249, 251, 252, 258, 262], "app": [17, 26, 38, 55, 69, 79, 80, 85, 103, 114, 127, 133, 146, 180, 182, 183, 185, 187, 188, 191, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 222, 229, 236, 240, 269, 270], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 63, 105, 187, 240, 245, 248, 251, 258, 259], "add_execut": [17, 21, 63, 187, 240, 245, 248, 251, 259], "target_link_librari": [17, 21, 26, 42, 63, 187, 240, 245, 248, 251, 258, 259], "adio": 17, "multiple_subproject": 18, "sibl": 18, "myhead": [18, 198], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 85, 114, 116, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 259, 262, 263], "world": [18, 27, 47, 48, 51, 53, 56, 70, 79, 116, 155, 188, 210, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 268], "fine": [18, 19, 42, 103, 114, 116, 237, 250], "principl": [18, 266, 267], "must": [18, 56, 58, 62, 74, 84, 100, 101, 103, 114, 116, 122, 123, 125, 126, 131, 136, 146, 147, 154, 155, 159, 185, 187, 196, 200, 203, 205, 207, 240, 243, 244, 245, 250, 251, 267], "third_party_librari": 19, "whose": [19, 82, 83, 86, 93, 95, 96, 98, 102, 111, 136, 147], "mypatch": 19, "sour": 19, "libhello": [19, 27, 51, 247, 248, 249, 251, 252, 255, 257, 258, 259, 262], "archiv": [19, 51, 84, 85, 136, 179, 196, 207, 252, 262], "head": [19, 51, 136, 227, 247, 248, 251, 252, 258, 262, 268], "strip_root": [19, 51, 196, 198, 252, 262], "awar": [19, 39, 40, 58, 64, 87, 106, 122, 123, 144, 227, 247, 248, 249, 251, 252, 255, 258, 262, 271], "branch": [19, 58, 74, 135, 136, 227, 246, 247, 248, 251, 258, 262, 265, 268, 270], "tag": [19, 58, 74, 85, 116, 135, 136, 141, 146, 227, 247, 248, 250, 251, 252, 258, 262, 268, 270], "patch_fil": [19, 51, 200], "7kb": [19, 252, 262], "50": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "cmakefil": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "libcrypto": [21, 132], "libssl": [21, 132], "abstract": [21, 49, 61, 68, 69, 74, 80, 180, 185, 203, 210, 220, 251], "rest": [21, 70, 80, 104, 146, 147, 196, 199, 208, 235, 236], "game": [21, 105, 266, 267], "algorithm": [21, 198], "ai": [21, 105], "coupl": [21, 29, 119, 240, 248, 251, 259], "package_nam": [21, 105, 142, 181, 231, 236], "component_nam": [21, 187, 189, 211], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 63, 85, 106, 146, 149, 187, 231, 240, 242, 243, 244, 245, 248, 251, 257, 258, 259], "packagetest": [21, 248, 251, 259], "barbarian": [21, 96, 106], "d6e361d329116": 21, "j16": [21, 251], "25": [21, 35, 79, 80, 147, 149, 248, 251, 256, 268], "37": [21, 181], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 248, 251], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 266], "NOT": [21, 26, 116, 136, 175, 187, 228, 248], "stack": 21, "incomplet": [21, 101, 104, 149], "occur": [21, 141, 198], "22": [21, 79, 81, 99, 147, 149, 241, 243, 244, 245, 250, 254, 255], "conanexcept": [21, 36, 56, 197, 198], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 149, 179, 180], "7": [24, 53, 56, 73, 78, 85, 121, 149, 269], "cortexa15t2hf": 24, "rc": [24, 53, 62, 85, 146, 188, 210, 212, 223], "rewrit": [24, 102], "sub": [24, 100, 107, 116, 147, 155, 196, 262], "conan_hom": [24, 36, 74, 96, 106, 144, 146, 147, 148, 149, 156, 157, 158], "myuser": [24, 29, 42, 56, 116, 145, 147, 150], "pkgconan": [24, 147, 216], "gnu98": [24, 149], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 85, 146, 147, 149, 205, 213, 241], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 211], "right": [24, 26, 59, 74, 98, 118, 175, 187, 261, 262, 267, 269], "2023": [24, 79, 81, 99, 268], "02": [24, 81, 99, 203, 268], "16": [24, 85, 99, 142, 146, 147, 149], "06": [24, 243], "42": [24, 80, 85, 99, 116, 175], "10": [24, 45, 53, 56, 85, 99, 113, 146, 147, 149, 217, 243], "utc": [24, 79, 81, 99, 243, 250, 254, 255, 268], "wizard": 26, "myconanappl": 26, "minimum": [26, 116, 137, 217, 250, 258], "suggest": [26, 70, 116, 123], "21": [26, 27, 99, 113, 120, 149, 188, 217], "rememb": [26, 36, 114, 213, 244], "api_level": [26, 27, 149, 217], "standard": [26, 27, 35, 70, 116, 119, 129, 143, 146, 147, 177, 182, 187, 188, 217, 221, 222, 227, 240, 241, 247, 249, 254, 258, 262, 269], "choic": [26, 149, 257], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 51, 205, 212, 248, 258, 268], "zlibvers": [26, 55, 240], "newstringutf": 26, "c_str": 26, "prepar": [26, 74, 112, 118, 127, 139, 174, 232, 241, 246, 250, 262, 271], "my_conan_app": 26, "view": [26, 29, 63, 99, 116, 121, 131, 153, 249], "past": [26, 84, 99], "task": [26, 56, 74, 136, 151, 152, 255, 267, 271], "conaninstal": 26, "element": [26, 31, 74, 108, 221, 222], "conanexecut": 26, "builddir": [26, 38, 41, 91, 96, 132, 187], "mkdir": [26, 56, 79, 195, 255, 268], "armv7": [26, 27, 149, 177, 180, 231], "x86": [26, 27, 84, 85, 87, 99, 108, 112, 146, 149, 168, 183, 196, 220, 224, 231, 267], "n": [26, 36, 42, 45, 51, 53, 55, 149, 159, 186, 220, 227, 240, 242, 247, 248, 258, 268], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 84, 141, 151], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 79, 122, 149, 183, 213, 224, 241, 250, 255, 267], "defaultconfig": 26, "adjust": [26, 27, 129, 179, 187, 188, 205, 206, 208, 249], "focu": [26, 258], "proil": 26, "_static": [26, 27, 149], "14": [26, 27, 73, 96, 99, 105, 106, 116, 147, 149, 160, 208, 224, 240, 241, 242, 250, 254, 258], "ndk_path": [26, 27, 85, 116, 132, 146, 188, 217], "luism": [26, 254, 256], "7075529": 26, "bin": [26, 27, 35, 39, 40, 53, 91, 96, 132, 147, 179, 188, 205, 206, 208, 211, 236, 241, 254, 256, 257], "android31": [26, 27], "llvm": [26, 27, 149], "prebuilt": [26, 27, 79, 95, 246, 253, 262], "darwin": [26, 27, 53, 96, 106, 147], "_share": [26, 27, 149], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 204, 205], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "respons": [26, 39, 40, 58, 64, 73, 85, 90, 98, 115, 116, 118, 123, 132, 134, 135, 146, 158, 196, 200, 217, 227, 250], "android_abi": [26, 176, 188], "exit": [26, 31, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 139], "prematur": 26, "essenti": [26, 45, 70, 147, 148], "absent": 26, "cmake_build_typ": [26, 187, 188], "endif": [26, 51, 242, 247, 248, 251, 258], "strequal": [26, 248], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 85, 127, 146, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "elseif": 26, "v8a": [26, 177], "armeabi": [26, 177], "v7a": [26, 177], "Not": [26, 74, 91, 96, 116, 123, 127, 154, 240, 245, 252, 266], "add_librari": [26, 42, 251, 257, 258], "virtual": [26, 58, 70, 114, 147, 242, 245, 249], "devic": [26, 27], "pair": [26, 114], "qr": 26, "click": [26, 29, 63, 208, 236], "brew": [27, 58, 85, 146, 230], "usr": [27, 114, 147, 207, 241], "choos": [27, 116, 187, 203, 231, 240, 258], "fit": [27, 82, 183, 267], "balanc": [27, 78], "unless": [27, 70, 84, 98, 108, 112, 114, 116, 125, 126, 146, 151, 200, 221, 240, 264], "know": [27, 31, 78, 86, 90, 116, 140, 149, 155, 187, 203, 242, 249, 251, 256, 263, 270], "bare": [29, 70, 250], "symbol": [29, 63, 144, 179, 188], "box": [29, 263], "consuming_packag": [29, 240, 241, 242, 243, 244, 245], "simple_cmake_project": [29, 240], "finish": [29, 53], "successfulli": [29, 53, 64, 241, 251, 259, 261], "23": [29, 47, 48, 86, 98, 102, 120, 142, 149, 188, 254, 255, 256, 261, 262, 263, 268], "compressor": [29, 35, 55, 187, 240, 241, 242, 244, 245], "sln": [29, 68, 220], "solut": [29, 68, 70, 74, 114, 129, 133, 221, 222, 235, 237, 266], "startup": 29, "breakpoint": 29, "void": [29, 42, 51, 55, 240, 242, 247, 258, 268], "deflateinit": [29, 55, 240], "defstream": [29, 55, 240], "z_best_compress": [29, 55, 240], "deflat": [29, 55, 240], "z_finish": [29, 55, 240], "f5": 29, "stop": [29, 98, 188], "Into": 29, "navig": [29, 63, 236], "zlib4f7275ba0a71f": 29, "zexport": 29, "deflateinit_": 29, "strm": 29, "stream_siz": 29, "z_streamp": 29, "const": 29, "deflateinit2_": 29, "z_deflat": 29, "max_wbit": 29, "def_mem_level": 29, "z_default_strategi": 29, "next_in": [29, 55, 240], "inspir": 30, "agnost": [30, 33, 98, 157], "enough": [31, 56, 58, 74, 90, 120, 127, 131, 146, 147, 151, 189, 244, 257, 266], "cmd_clean": 31, "your_conan_hom": [31, 155, 263], "Will": [31, 39, 40, 83, 86, 87, 93, 95, 96, 98, 102, 104, 108, 111, 116, 127, 136, 160, 179, 182, 187, 188, 192, 217, 231], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "conanoutput": [31, 155], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "group": [31, 85, 116, 271], "add_argu": [31, 155], "store_tru": 31, "parse_arg": [31, 155], "request_boolean": 31, "non_interact": [31, 85, 145, 146, 151], "output_remot": 31, "writeln": 31, "f": [31, 36, 39, 40, 56, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 105, 106, 107, 108, 109, 111, 112, 113, 116, 132, 136, 150, 156, 158, 159, 175, 188, 208, 223], "fg": [31, 247, 258], "all_rrev": 31, "recipe_revis": [31, 78, 116, 243], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 78], "latest_prev": 31, "argpars": [31, 155], "argumentpars": [31, 155], "visit": [31, 80, 82, 103, 114, 118, 236], "websit": [31, 155], "proce": [31, 42, 242], "translat": [31, 63, 68, 69, 73, 132, 182, 188, 205, 217, 221, 222, 244, 250, 251], "bg": 31, "font": 31, "foreground": 31, "background": [31, 151], "apart": [31, 53, 211], "predefin": [31, 47, 82, 105, 120, 142, 176, 188, 261, 263], "success": [31, 116, 141], "remotesapi": [31, 161, 171], "remoteregistri": 31, "searchapi": [31, 161, 173], "listapi": [31, 161, 168], "removeapi": [31, 161, 172], "deserv": [31, 146], "especi": [31, 58, 116, 255, 260, 271], "attent": [31, 146, 257], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 58], "elsewher": [35, 116, 135], "place": [35, 36, 42, 73, 80, 93, 96, 116, 118, 120, 132, 144, 156, 158, 175, 191, 196, 244, 250, 255, 256, 257, 269], "conanbuild": [35, 45, 53, 127, 132, 147, 185, 191, 192, 193, 203, 205, 224, 241, 244, 245, 256, 262], "17": [35, 63, 79, 85, 99, 113, 146, 147, 149, 212, 250, 254, 255], "2022": [35, 63, 75, 99, 113, 149, 243, 250, 254, 255], "big": [35, 114, 125, 149], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 185, 187, 240, 241, 242, 244, 245, 255, 261, 262, 263], "fact": [35, 114, 249], "limit": [35, 99, 108, 132, 183, 192, 196, 217, 240, 271], "ticket": 35, "manual": [35, 45, 63, 84, 100, 101, 103, 114, 127, 133, 267, 270], "exclus": [35, 83, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 108, 111, 112, 116, 117, 120, 132, 133, 136, 221], "cwd": [36, 98, 105, 134, 135, 141, 157, 170], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 105, 118, 221], "dependencies_sourc": 36, "preprocess": 36, "accomplish": 36, "source_deploi": 36, "kwarg": [36, 154, 157, 159, 200, 231], "robust": [36, 154], "dependency_sourc": 36, "iter": [36, 98, 103, 157, 159, 188, 190], "said": [36, 249, 267], "advanc": [37, 39, 40, 63, 70, 75, 116, 133, 147, 184, 189, 227, 235, 236, 267, 271], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 86, 101, 102, 103, 104, 117, 127, 133, 147, 187, 208, 211, 241, 243, 244, 256, 267], "different_opt": 39, "myoption": [39, 119, 139], "echo": [39, 40, 154, 175, 256], "off": [39, 40, 59, 64, 156, 188, 212, 248, 262], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 56, 74, 114, 116, 131, 132, 136, 244, 250, 259, 264], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 159, 188, 192], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 53, 116, 148, 175, 187, 203, 211, 213, 240, 248, 251, 259], "anyth": [39, 40, 70, 74, 194, 231, 241, 255, 256, 259, 268, 271], "identifi": [39, 40, 65, 77, 79, 81, 108, 116, 117, 242, 249, 256, 263], "construct": [39, 40], "Of": [39, 40, 70, 266], "cours": [39, 40, 266], "invis": [39, 40], "exactli": [39, 40, 70, 78, 127, 129, 131, 231, 256], "obtain": [39, 40, 56, 81, 82, 84, 117, 131, 137, 147, 179, 180, 185, 190, 192, 193, 194, 217, 220, 222, 227, 270], "disambigu": [39, 40, 187, 208], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 116, 175], "cmake_build_modul": [41, 187], "tc": [41, 48, 116, 127, 149, 182, 185, 188, 204, 205, 212, 217, 222, 223, 229, 248, 250, 252, 256, 258, 262], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 132, 187], "build_context": [41, 187, 219], "behav": [42, 203, 242], "protobuf": [42, 116, 120, 132, 187, 208], "perhap": 42, "pb": 42, "nonetheless": [42, 254], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 116, 117, 123, 127, 246, 249, 250, 252], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 257, 258], "build_interfac": 42, "cmake_current_source_dir": 42, "cmake_current_binary_dir": 42, "install_interfac": 42, "set_target_properti": [42, 251, 257, 258], "public_head": [42, 257, 258], "iostream": [42, 116, 258], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 146], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 51, 258, 268], "alloc": [42, 211], "shutdownprotobuflibrari": 42, "simpli": [42, 62, 147, 213, 214, 261], "argc": [42, 200], "argv": [42, 200], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 96, 102], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 91, 99], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 63, 84, 248, 254], "notic": [42, 63, 85, 116, 148, 155, 205, 208, 210, 211, 216, 217, 242, 247, 248, 249, 258], "arm": [42, 80, 149, 220, 241, 244], "mach": 42, "64": [42, 149, 183, 213, 224, 241, 267], "bit": [42, 51, 56, 122, 132, 147, 149, 155, 183, 196, 224, 241, 250, 255, 259, 270], "arbitrari": [43, 46, 63, 70, 101, 103, 131, 152, 269], "bazel": [43, 52, 57, 59, 85, 105, 146, 176, 209, 211, 212, 240], "popular": [45, 53, 55, 59, 66, 70, 149, 231, 240], "fmt": [45, 53, 102, 247, 248, 249, 258, 259], "mac": [45, 183, 259], "string_formatt": [45, 53], "ac": 45, "www": [45, 96, 97, 114, 116, 271], "org": [45, 58, 96, 97, 116, 146, 198], "softwar": [45, 96, 213, 231, 271], "autoconf": 45, "60": [45, 53], "html_node": 45, "configure_002eac": 45, "_": [45, 74, 116, 147, 151, 156, 176, 182, 208, 221, 255], "cstdlib": [45, 53], "exit_success": [45, 53, 55, 240, 242], "ac_prog_cxx": 45, "pkg_check_modul": 45, "ac_init": 45, "stringformatt": 45, "am_init_automak": 45, "wall": 45, "foreign": 45, "ac_config_srcdir": 45, "ac_config_fil": 45, "ac_output": 45, "automake_opt": 45, "subdir": [45, 114, 196], "aclocal_amflag": 45, "aclocal_flag": 45, "bin_program": 45, "string_formatter_sourc": 45, "string_formatter_cppflag": 45, "fmt_cflag": 45, "string_formatter_ldadd": 45, "fmt_lib": 45, "automak": 45, "pkgconf": 45, "vari": [45, 58, 74, 80], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 205], "conanbuildenv": [45, 193, 256, 262], "conanrun": [45, 53, 132, 138, 147, 185, 192, 194, 242, 259, 262], "conanrunenv": [45, 194, 262], "deactivate_conanbuild": [45, 193, 241, 244, 245, 262], "deactivate_conanrun": [45, 242, 262, 263], "_fmt": 45, "run_exampl": 45, "u": [45, 70, 73, 83, 86, 93, 95, 96, 98, 102, 111, 120, 244, 252], "ldflag": [45, 116, 132, 146, 147, 204, 205, 217, 223], "pkg_config_path": [45, 205, 207, 217], "m4": 45, "second": [45, 56, 79, 85, 114, 130, 146, 181, 198, 249, 256], "cmake_ex": [47, 79, 105], "foo": [47, 48, 49, 87, 114, 116, 129, 187, 188, 192, 196, 205, 207, 223], "correspond": [47, 63, 116, 188, 193, 194, 205, 208, 219, 242, 249, 251], "binarydir": 47, "sinc": [47, 48, 63, 96, 203, 231, 238, 261, 262, 263, 268], "everytim": [47, 48, 241, 261, 262, 263], "multi": [47, 48, 103, 132, 157, 181, 184, 185, 187, 221, 242, 244, 255, 261, 263, 265], "did": [47, 84, 175, 241, 242, 245, 247, 250, 252, 263, 270], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 188], "displaynam": 48, "buildpreset": [48, 188], "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 77, 120], "appconan": 49, "myvar1": [49, 147, 191], "my_user_var1": 49, "myvar": [49, 116, 132, 147, 175, 188, 191, 217, 256], "myprofil": [49, 98, 106, 147], "profile_dir": [49, 147], "evalu": [49, 78, 97, 98, 100, 102, 106, 114, 116, 125, 127, 133, 139, 146, 150, 166, 244, 267], "myvalue1": [49, 191], "system_nam": [49, 85, 146, 188], "simplest": [51, 118, 252, 257, 270], "hellorecip": [51, 56, 247, 248, 249, 250, 251, 252, 255, 258, 262, 268], "friend": [51, 248], "rule": [51, 78, 84, 114, 115, 116, 131, 150, 152, 153, 205, 208, 211, 264, 266, 269], "ifdef": [51, 242, 247, 258, 268], "ndebug": [51, 205, 242, 247, 258, 268], "hello_patch": 51, "conan_data": [51, 56, 125, 127, 200, 252], "complex": [51, 116, 128, 147, 175, 196, 219, 269], "bazeltoolchain": [53, 62, 105, 176, 209, 210], "workspac": [53, 62, 88, 211, 256], "demo": [53, 56, 114], "charg": [53, 130], "bzl": [53, 62, 211], "load_conan_depend": [53, 211], "rules_cc": [53, 211], "cc_binari": 53, "bazeldep": [53, 62, 105, 176, 209], "bazel_layout": [53, 142, 211], "conan_bzl": [53, 62, 210, 212], "franchuti": [53, 91], "bazelrc": [53, 85, 146, 210, 212], "38": [53, 96, 255], "272": 53, "lc": 53, "date": 53, "elaps": 53, "180": [53, 149], "critic": [53, 84, 250, 268], "68": [53, 95, 99], "sandbox": 53, "total": [53, 98, 142, 146, 149, 192, 248, 254], "simple_meson_project": 55, "stdlib": [55, 149, 188, 205, 240, 242], "stdio": [55, 240], "buffer_in": [55, 240], "256": [55, 198, 240], "mit": [55, 70, 105, 116, 128, 235, 240, 268], "easili": [55, 56, 73, 80, 114, 118, 119, 132, 136, 150, 157, 188, 189, 240, 248, 270, 271], "buffer_out": [55, 240], "z_stream": [55, 240], "zalloc": [55, 240], "z_null": [55, 240], "zfree": [55, 240], "opaqu": [55, 240], "avail_in": [55, 240], "uint": [55, 240], "strlen": [55, 240], "bytef": [55, 240], "avail_out": [55, 240], "sizeof": [55, 240], "next_out": [55, 240], "deflateend": [55, 240], "printf": [55, 240, 242], "size": [55, 192, 240, 242, 244, 245, 264], "lu": [55, 240], "conan_meson_": 55, "ini": [55, 67, 216, 240], "conan_meson_n": [55, 216], "233": [55, 240, 242, 244, 245], "147": [55, 240, 242, 244, 245], "pragmat": 56, "someon": [56, 267], "coordin": [56, 136, 196, 227], "who": [56, 269], "tri": [56, 95, 160, 240, 243], "capture_scm": 56, "update_conandata": [56, 195], "scm_url": 56, "scm_commit": 56, "get_url_and_commit": [56, 227], "checkout": [56, 58, 73, 74, 227, 247, 248, 251, 252, 258, 268], "myfold": [56, 98, 196], "m": [56, 58, 85, 87, 99, 108, 112, 146, 185, 193, 194, 207, 220, 221, 224, 248, 254, 270], "wip": 56, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 56, "buildabl": 56, "techniqu": 56, "imposs": [56, 79, 80, 147, 266, 267], "squash": 56, "19": [56, 73, 99, 149, 250, 255], "xdf": [56, 261], "gitignor": [56, 227], "anywai": [56, 116], "encod": [56, 150, 196, 222, 268], "password": [56, 107, 114, 145, 150, 151, 198, 236], "repeat": [56, 70, 116, 186, 193, 194, 255, 264], "consequ": 56, "orthogon": [56, 152, 158, 271], "ssh": [56, 150], "actor": 56, "ubuntu": [56, 70, 149, 231, 241], "v3": [56, 149, 245], "secret": [56, 114, 150, 151], "ssh_private_kei": 56, "v4": [56, 149], "webfactori": 56, "v0": [56, 237], "privat": [56, 70, 73, 74, 114, 128, 132, 146, 150, 175, 176, 235, 236, 237, 250, 258], "care": [56, 80], "receiv": [56, 73, 80, 100, 120, 154, 155, 158, 159, 160, 189, 217, 227, 250, 256, 264, 269], "riski": 56, "disclos": 56, "welcom": 57, "decentr": 57, "blog": [57, 63, 72], "social": 57, "mail": 57, "tracker": [57, 70], "question": [57, 70], "tabl": 57, "introduct": [57, 59, 103, 133, 143, 152, 232, 236, 239, 247, 255, 267, 271], "devop": 57, "clion": [57, 59, 188], "jfrog": [57, 59, 70, 236], "cheat": [57, 71], "sheet": [57, 71], "faq": [57, 70, 71, 116, 268], "video": [57, 70, 71, 266], "changelog": 57, "solari": [58, 70, 231], "suno": [58, 70, 149], "modern": [58, 73, 127, 200, 258, 271], "carefulli": 58, "sudo": [58, 85, 116, 132, 146, 231], "virtualenv": [58, 85, 146, 192, 193, 194, 245], "virtualenvwrapp": 58, "readthedoc": 58, "en": [58, 73, 196, 271], "venv": 58, "restart": [58, 63], "logout": [58, 82], "termin": [58, 70, 85, 99, 146, 154], "upgrad": [58, 187, 266, 271], "inconsist": 58, "somehow": 58, "userhom": 58, "attempt": [58, 63, 74, 85, 127, 136, 146, 149, 198], "yield": 58, "xyz": 58, "mark": [58, 63, 139], "interfer": 58, "pep": 58, "668": 58, "isol": [58, 74, 262, 267, 269], "isn": [58, 63], "debian": [58, 70, 149, 198, 231], "ensurepath": 58, "number": [58, 65, 70, 85, 131, 146, 149, 183, 186, 198, 200, 219, 220, 231, 254, 255, 269, 270, 271], "gatekeep": 58, "quarantin": 58, "browser": 58, "curl": [58, 63], "wget": 58, "util": [58, 63, 73, 81, 89, 116, 136, 179, 192, 196, 203, 231, 241, 257], "interpret": [58, 146, 175, 241], "conan_src": 58, "develop2": 58, "beta": [58, 116], "matter": [58, 98, 140, 146, 151, 201, 255, 266], "seamless": 59, "shelf": [59, 64, 156], "though": [59, 86, 99, 114, 116, 130, 146, 237, 243, 269], "yet": [59, 63, 78, 91, 95, 96, 127, 129, 155, 166, 204, 251], "resum": 59, "enhanc": 59, "autotoolsdep": [61, 176, 202], "wrapper": [61, 62, 67, 68, 69, 76, 141, 152, 179, 180, 185, 187, 198, 203, 210, 220, 227, 231, 250], "jetbrain": 63, "marketplac": 63, "higher": [63, 80, 98, 132, 133, 141, 145, 267, 269], "brows": 63, "conan_provid": 63, "cmake_project_top_level_includ": 63, "bear": [63, 248], "mind": [63, 240, 248, 259], "24": [63, 98, 147, 149, 203, 237, 255], "button": [63, 236], "appear": [63, 155, 157, 236, 262], "bottom": 63, "toolbar": 63, "wheel": 63, "checkbox": 63, "sequenti": [63, 70], "uncheck": 63, "haven": [63, 78, 251, 261, 264], "disappear": 63, "libcurl": 63, "imag": [63, 70, 81, 97, 105, 132, 236], "internet": [63, 96, 150, 255], "along": [63, 64, 84, 116, 187, 249], "ey": 63, "icon": 63, "snippet": 63, "project_nam": [63, 187, 240, 245], "cmake_cxx_standard": [63, 188], "reload": [63, 114], "recollect": [65, 136], "down": [65, 78, 79, 248, 254, 267, 268], "segment": 65, "histori": 65, "servic": [65, 234], "offer": [65, 116, 147], "dedic": [65, 70, 86, 107, 112, 120, 244, 268], "sf": [65, 85], "art": 65, "tf": [65, 79, 85, 86, 90, 248, 249, 257], "create_releas": 65, "mybuildname_releas": 65, "my_artifactori": 65, "mybuildname_aggreg": 65, "readme_build_info": 65, "md": [65, 116, 125, 126, 222, 262, 271], "bsd": 66, "maketoolchain": 66, "prop": [68, 127, 187, 221, 222], "myproject": [68, 220], "xcodebuild": [69, 176, 178, 181], "xcodetoolchain": [69, 176, 178, 181], "xcodeproj": [69, 180], "mobil": 70, "metal": 70, "scon": [70, 76, 176], "acceler": 70, "matur": [70, 116], "polici": [70, 73, 116, 175, 187, 188, 255, 264], "creator": [70, 73, 82, 106, 155, 243], "thousand": 70, "compani": [70, 116, 158, 235, 236], "high": [70, 104, 126, 198], "consol": [70, 141, 217, 227, 242], "logic": [70, 74, 117, 122, 123, 127, 131, 136, 149, 153, 156, 181, 182, 188, 214, 244, 264, 267, 269], "creation": [70, 74, 117, 149, 158, 227, 243], "webui": [70, 236], "protocol": [70, 116], "ldap": [70, 114], "topologi": 70, "conan_serv": [70, 114, 237], "boost": [70, 132, 142, 146, 154, 187], "poco": [70, 127, 136, 142], "signific": 70, "truth": [70, 75], "redhat": 70, "archlinux": 70, "raspbian": [70, 231], "desktop": 70, "likewis": [70, 120, 123, 131, 132, 136, 267, 269, 270], "runtim": [70, 116, 120, 132, 147, 149, 160, 191, 194, 203, 205, 217, 219, 222, 223, 242, 259], "onward": 70, "goal": [70, 119, 131, 138], "evolv": [70, 149, 175, 243, 265], "backward": 70, "incompat": [70, 120, 149, 175, 261], "disrupt": [70, 267], "label": [70, 91, 96, 97, 210, 211, 222], "preview": [70, 99, 121, 144, 153, 157, 159, 187, 196, 264], "year": [70, 271], "life": [70, 270], "eol": 70, "tomtom": 70, "audi": 70, "rti": 70, "continent": 70, "plex": 70, "electrolux": 70, "merced": 70, "benz": 70, "amaz": 70, "5k": 70, "star": 70, "count": 70, "300": 70, "cpplang": [70, 73], "slack": [70, 73], "discuss": [70, 166], "discord": 70, "plai": [70, 116, 183], "exercis": 70, "narr": 70, "explan": [70, 77, 95, 102, 116, 131, 149], "conduct": 70, "thread": [70, 85, 146, 149], "bad": [70, 136, 217, 252, 268], "confer": [70, 75], "talk": [70, 75], "evolut": [70, 267], "troubleshoot": 71, "concept": [72, 79, 239, 249, 263, 265, 267], "handi": [72, 116, 186, 252], "pdf": 72, "png": [72, 97, 105], "post": [72, 152, 158, 257], "goe": [72, 267], "behind": [73, 114], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [73, 99, 250, 262], "gnu11": [73, 149, 242, 250], "precompil": [73, 84, 98, 116, 130, 132, 211, 232, 255], "mayb": [73, 187, 249, 257], "influenc": [73, 242], "overcom": 73, "nest": [73, 196, 261], "agre": 73, "spell": [73, 149], "submit": [73, 127, 234], "Such": [73, 74, 243, 271], "httpconnect": 73, "debuglevel": 73, "netrc": 73, "honor": 73, "crlf": [73, 74, 268], "lf": [73, 268], "gitattribut": 73, "gitconfig": 73, "editor": 73, "notepad": 73, "playground": 74, "colleagu": 74, "kept": 74, "kind": [74, 103, 114, 125, 126, 149, 150, 151, 158, 236, 255, 269], "unit": [74, 118, 131, 138, 248, 250, 259], "among": [74, 78, 116, 130, 132, 149, 196, 222, 243, 244], "convert": [74, 105, 132, 179, 201, 249, 257], "reduc": [74, 137], "flat": [74, 175, 196], "strictli": [74, 90, 116, 120, 132, 205, 244, 250, 266], "extrem": [74, 267, 269], "complic": [74, 133], "workaround": [74, 133, 266], "Its": [74, 105, 116, 133, 231], "whenev": [74, 116, 125, 133, 136, 147, 183, 248], "abus": [74, 128, 256], "ninja": [74, 80, 85, 98, 104, 120, 127, 141, 146, 185, 188, 217, 245, 256], "entrant": 74, "undefin": [74, 80, 101, 103, 160, 196, 250, 252], "indirect": [74, 133], "reserv": [74, 80, 115], "namespac": [74, 187, 203, 205, 248], "_conan": [74, 114, 115], "sens": [74, 90, 101, 123, 134, 147, 149, 227, 242, 249], "rewritten": 74, "checksum": [74, 81, 84, 116, 176, 195, 198, 268], "educ": 75, "outdat": 75, "accu": 75, "diego": 75, "rodriguez": 75, "losada": 75, "fall": [78, 270], "ill": 78, "form": [78, 84, 87, 95, 99, 105, 108, 112, 114, 116, 120, 125, 126, 132, 136, 138, 231, 243, 244, 250, 268, 269], "taken": [78, 130, 149, 175, 188], "eras": [78, 131], "decid": [78, 114, 116, 120, 131, 134, 135, 244, 248, 266, 268, 269], "del": [78, 122, 131, 140, 249, 250, 252, 256], "gcc5": 78, "lost": 78, "default_xxx": 78, "default_build_mod": [78, 85, 146], "default_embed_mod": [78, 85, 146], "full_mod": [78, 79, 85, 116, 146, 271], "default_non_embed_mod": [78, 85, 146], "minor_mod": [78, 79, 85, 116, 133, 146, 175, 271], "default_python_mod": [78, 85, 146, 175], "default_unknown_mod": [78, 85, 146], "semver_mod": [78, 85, 116, 146], "confus": [78, 269], "safeti": 78, "emb": 78, "package_id_xxxx_mod": 78, "package_id_embed_mod": [78, 116], "package_id_non_embed_mod": [78, 116], "package_id_unknown_mod": [78, 116], "patch_mod": [78, 116, 175], "package_id_": 78, "non_emb": 78, "_mode": 78, "package_id_mod": [78, 91, 116, 249, 271], "differenti": [78, 149, 241], "expand": [78, 81, 123, 131, 144], "major_mod": [78, 116], "inlin": [79, 81, 254], "pure": [79, 132, 182, 188, 205, 212, 217, 222, 223, 255], "linker": [79, 85, 96, 132, 146, 182, 188, 203, 205, 212, 217, 222, 223, 241, 242], "8879e931d726a8aad7f372e28470faa1": [79, 81], "09": [79, 81, 99, 243], "52": [79, 81], "54": [79, 81], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [79, 81], "z": [79, 80, 81, 95, 116, 175, 206, 250], "quickli": [79, 90, 255], "632e236936211ac2293ec33339ce582b": 79, "34": [79, 254, 268], "3ca530d20914cf632eb00efbccc564da48190314": 79, "d125304fb1fb088d5b92d4f8135f4dff": 79, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": 79, "bump": [79, 175, 243, 271], "moon": [79, 155], "1c90e8b8306c359b103da31faeee824c": 79, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 79, "rebuilt": [79, 266, 268], "wil": 79, "49": [79, 99], "embed_mod": 79, "subset": [80, 123, 131, 149, 188], "new_subset": 80, "subvalue1": 80, "subvalue2": 80, "new_root_set": 80, "value1": [80, 116, 147], "value2": [80, 116, 147], "implictli": 80, "explicilti": 80, "implicitli": [80, 116, 149, 175], "build_test": [80, 86, 116, 188, 248], "option2": [80, 116], "option1": [80, 116], "wherebi": 80, "therebi": 80, "comment": [80, 99, 105, 144, 149, 153, 160, 187, 259, 266], "tune": [80, 250], "realli": [80, 86, 123, 149, 261, 266, 270], "retri": [80, 85, 145, 146, 196, 198], "spirit": 80, "myconf": [80, 116, 129, 131, 132, 146, 147], "myitem": [80, 131], "x64": [80, 129, 149, 220], "settings_build": [80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 256], "outcom": [80, 212], "irrelev": [80, 142], "reflect": [80, 179, 243], "97d5730b529b4224045fe7090592d4c1": [81, 99], "08": [81, 99, 268], "51": [81, 99, 269], "57": [81, 99], "d62dff20d86436b9c58ddc0162499d197be9de1": [81, 99], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [81, 99], "sha1": [81, 197, 198, 241], "cat": [81, 101, 102, 103, 104, 204, 242, 267], "compilerruntim": 81, "dynam": [81, 99, 116, 117, 134, 135, 147, 149, 158, 160, 217, 241, 242, 244, 270, 271], "compilerruntime_typ": 81, "193": [81, 149], "sha1sum": [81, 197], "386": 81, "seen": [81, 177, 243, 266, 270], "worthi": 82, "deployer_fold": [83, 96, 98], "nr": [83, 86, 88, 89, 90, 93, 95, 96, 97, 98, 102, 111], "profile_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "lockfile_out": [83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111], "lockfile_overrid": [83, 86, 90, 93, 95, 96, 98, 102, 111], "posit": [83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 111, 112], "vquiet": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "verror": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vwarn": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vnotic": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vstatu": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vverbos": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vdebug": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "disallow": [83, 86, 93, 95, 96, 98, 102, 111], "cascad": [83, 86, 93, 95, 96, 98, 102, 111], "fnmatch": [83, 85, 86, 93, 95, 96, 98, 102, 107, 111, 116, 196], "wildcard": [83, 86, 87, 93, 95, 96, 97, 98, 99, 102, 107, 109, 111, 196], "satisfi": [83, 86, 93, 95, 96, 98, 102, 111, 147, 243], "with_qt": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "cdc0d9d0e8f554d3df2388c535137d77": 84, "5cb229164ec1d245": 84, "conanmanifest": [84, 159, 240, 245], "liter": [84, 105, 147], "ident": [84, 116, 131, 175, 238, 242], "1cae77d6250c23b7": 84, "al": 84, "eventu": [84, 187], "extract": [84, 124, 132, 145, 196, 207, 252, 257], "package_queri": [84, 87, 99, 108, 112], "AND": [84, 87, 99, 108, 112, 168], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 84, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 84, "verify_ssl": [85, 148], "target_fold": 85, "origin2": 85, "target2": 85, "submodul": 85, "conan_config": [85, 181, 182], "recurs": [85, 144, 196], "deduc": [85, 116, 186, 192, 194, 198, 199, 223, 270], "verif": [85, 146, 198], "certif": [85, 114, 148, 198], "my_set": 85, "retry_wait": [85, 146, 198], "wait": [85, 146, 198], "gzip": [85, 146, 196], "compresslevel": [85, 146], "cacert_path": [85, 114, 146], "cacert": [85, 114, 146], "clean_system_proxi": [85, 146], "proxi": [85, 114, 146], "discard": [85, 133, 146], "client_cert": [85, 146], "tupl": [85, 116, 128, 146, 147, 196, 198, 227], "cert": [85, 146], "max_retri": [85, 146], "maximum": [85, 114, 116, 146, 183, 220, 250, 258], "no_proxy_match": [85, 146], "timeout": [85, 146], "allow_uppercase_pkg_nam": [85, 146], "temporarili": [85, 146, 147, 151], "uppercas": [85, 146, 151], "default_build_profil": [85, 146, 151], "default_profil": [85, 146, 151], "cmake_android_ndk": [85, 146], "enable_arc": [85, 146, 188], "arc": [85, 146, 188], "enable_bitcod": [85, 146, 188], "bitcod": [85, 146, 188], "enable_vis": [85, 146, 188], "sdk_path": [85, 146, 179, 180, 217], "cross_build": [85, 146, 217, 241, 259], "can_run": [85, 118, 138, 146, 259], "bool": [85, 146, 148, 183, 210, 216, 217, 219], "cuda": [85, 146, 188, 205], "objc": [85, 146, 188, 217], "objcxx": [85, 146], "fortran": [85, 146, 188, 205], "asm": [85, 146, 149, 188, 223], "hip": [85, 146, 188], "ispc": [85, 146, 188], "exelinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_exe_linker_flags_init": [85, 146, 188], "jx": [85, 146], "mp": [85, 146, 188], "linker_script": [85, 146, 188, 205, 212, 217], "sharedlinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_shared_linker_flags_init": [85, 146, 188], "skip_test": [85, 118, 146, 188, 210, 248, 254], "sysroot": [85, 91, 96, 146, 179, 188, 205, 217], "find_package_prefer_config": [85, 146], "cmake_find_package_prefer_config": [85, 146, 188], "presets_environ": [85, 146, 188], "wether": [85, 146], "system_processor": [85, 146, 188], "cmake_system_processor": [85, 146, 188], "system_vers": [85, 146, 188], "cmake_system_vers": [85, 146, 188], "toolchain_fil": [85, 146, 147, 188], "toolset_arch": [85, 146, 188], "toolset": [85, 146, 149, 188, 213, 219], "cmake_generator_toolset": [85, 146, 188], "install_strip": [85, 146, 185], "strip": [85, 146, 179, 185, 196, 200, 217, 227, 241], "launcher": [85, 146, 192, 193, 194, 204, 205, 224, 256, 259], "define_libcxx11_abi": [85, 146], "glibcxx_use_cxx11_abi": [85, 146], "host_triplet": [85, 146], "pkg_config": [85, 146, 207, 208, 217], "bazelrc_path": [85, 146, 210], "rcpath1": [85, 146, 210], "config1": [85, 146, 210], "installation_path": [85, 146, 213, 224], "oneapi": [85, 146, 149, 213], "setvars_arg": [85, 146, 213], "onto": [85, 146], "setvar": [85, 146, 213], "backend": [85, 114, 146, 217], "vs2010": [85, 146, 217], "vs2012": [85, 146], "vs2013": [85, 146], "vs2015": [85, 146, 217], "vs2017": [85, 146, 213, 217], "extra_machine_fil": [85, 146, 216], "bash": [85, 116, 146, 224, 237], "msy": [85, 146, 149, 237], "cygwin": [85, 146, 149], "wsl": [85, 146, 149], "sfu": [85, 146], "2019": [85, 146, 149, 213, 224], "max_cpu_count": [85, 132, 146, 147, 185, 220], "vs_version": [85, 146, 147, 149], "exclude_code_analysi": [85, 146, 221], "suppress": [85, 146, 188], "compile_opt": [85, 116, 132, 146, 222], "sudo_askpass": [85, 146, 231], "yum": [85, 146, 230], "pacman": [85, 146, 230], "choco": [85, 146, 231], "zypper": [85, 146, 230], "pkgutil": [85, 146, 230], "30": [85, 93, 99, 255], "test_fold": [86, 90, 248], "serv": [86, 114, 236, 242], "misus": 86, "mutual": [87, 98, 108, 112], "packagelist": [87, 112], "pgkg": 87, "resid": [88, 106], "my_project": [88, 93, 95, 96, 98, 102], "variou": [89, 133, 149, 262], "sb": 90, "vendor": [90, 150], "this_pkg": 90, "slower": [90, 125], "y": [90, 95, 116, 250], "invalid_build": [91, 96], "homepag": [91, 96, 97, 127], "win_bash_run": 91, "options_descript": 91, "options_definit": [91, 97], "generators_fold": [91, 96, 97, 127, 187, 188, 221], "srcdir": [91, 96, 132], "resdir": [91, 96, 132, 188, 205, 217], "frameworkdir": [91, 96, 132], "framework": [91, 96, 120, 132, 133, 208, 221, 229, 241, 248, 256], "ffa77daf83a57094149707928bdce823": [91, 99], "massiv": [91, 96], "spiffi": [91, 96], "delic": [91, 96], "unobtrus": [91, 96], "unencumb": [91, 96], "patent": [91, 96], "zlib774aa77541f8b": 91, "resolved_rang": 91, "closest": [92, 95], "why": [92, 95, 249, 254, 256], "5c0f3a1a222eebb6bff34980bcd3e024": 93, "be7ccd6109b8a8f9da81fd00ee143a1f5bbd5bbf": 93, "build_arg": 93, "ed8593b3f837c6c9aa766f231c917a5b": 93, "235f6d8c648e7c618d86155a8c3c6efb96d61fa1": 93, "pref": [93, 114, 127], "closest_binari": 95, "dc0e384f0551386cd76dc29cc964c95": 95, "1692672717": [95, 99], "b647c43bfefae3f830561ca202b6cfd935b56205": 95, "package_filt": [96, 155], "df": 96, "dot": [96, 155, 269], "myproject_fold": 96, "binutil": 96, "0dc90586530d3e194d01d17cb70d9461": 96, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 96, "cci": 96, "degrad": 96, "gpl": 96, "assembl": 96, "objcopi": 96, "objdump": 96, "multilib": 96, "target_arch": 96, "target_o": 96, "target_triplet": 96, "with_libquadmath": 96, "binut53bd9b3ee9490": 96, "416618fa04d433c6bd94279ed2e93638": 96, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 96, "866f53e31e2d9b04d49d0bb18606e88": 96, "zlibbcf9063fcc882": 96, "digraph": 96, "vi": 96, "j": [96, 116, 149, 216], "css": 96, "cloudfar": 96, "cdnj": 96, "cloudflar": 96, "ajax": 96, "info_graph": 96, "basi": [96, 105], "neon": 97, "msa": 97, "sse": 97, "vsx": 97, "api_prefix": 97, "graphic": 97, "redirect": [97, 99, 113, 114, 141, 151, 185, 261, 271], "deployer_packag": 98, "recomput": 98, "fallback": [98, 180, 271], "myconan": [98, 116], "bzip2": [98, 127, 193, 194, 221, 224], "compound": 98, "left": [98, 114, 250, 263, 269], "highest": 98, "myprofile3": 98, "myprofile1": [98, 147], "myprofile2": [98, 147], "minim": [98, 105, 183, 259], "immedi": [98, 132, 138, 146, 147, 221, 259], "uniqu": [98, 116, 118, 131, 146, 242, 249, 254, 268], "strict": [98, 101, 103, 147, 196, 267, 271], "newpkg": 98, "gb": 99, "graph_binari": 99, "gr": 99, "graph_recip": 99, "5d": [99, 108], "dai": [99, 108], "4w": [99, 108, 264], "hour": [99, 108], "26": 99, "mycompani": 99, "20": [99, 147, 149, 160, 193, 247, 250], "lite": 99, "shortest": 99, "46": 99, "53": [99, 113], "placehold": [99, 112, 191, 192, 250], "8b23adc7acd6f1d6e220338a78e3a19": 99, "ce3665ce19f82598aa0f7ac0b71ee966": 99, "31ee767cb2828e539c42913a471e821a": 99, "05": [99, 243], "39": [99, 243, 255], "d77ee68739fcbe5bf37b8a4690eea6ea": 99, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 99, "implicit": [99, 200, 267], "e4e1703f72ed07c15d73a555ec3a2fa1": 99, "07": [99, 113], "04": 99, "45": [99, 243, 254, 269], "fdb823f07bc228621617c6397210a5c6c4c8807b": 99, "4834a9b0d050d7cf58c3ab391fe32e25": 99, "33": [99, 254, 255], "31": [99, 120, 250, 268], "6a6451bbfcb0e591333827e9784d7dfa": 99, "29": [99, 243, 268], "67bb089d9d968cbc4ef69e657a03de84": 99, "47": [99, 243], "36": [99, 255], "5e196dbea832f1efee1e70e058a7eead": 99, "26475a416fa5b61cb962041623748d73": 99, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [99, 250], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 99, "human": 99, "zli": 99, "b58eeddfe2fd25ac3a105f72836b3360": 99, "01": [99, 203, 268], "d9b1e9044ee265092e81db7028ae10e0": 99, "192": [99, 114, 149, 160, 219], "denomin": 99, "deviat": 99, "mypytool": 101, "sort": [101, 103, 104, 132, 159, 189, 196, 267, 271], "manipul": [101, 103, 136, 196, 257], "moreov": 101, "scratch": [102, 260, 261], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 102, "1675126491": 102, "773": 102, "5f184bc602682bcea668356d75e7563b": 102, "1676913225": 102, "027": [102, 271], "733": 102, "e747928f85b03f48aaf227ff897d9634": 102, "1675126490": 102, "952": 102, "lock1": 103, "lock2": 103, "consolid": 103, "diverg": 103, "simplic": 103, "pkgb": 103, "app1": 103, "pkgawin": 103, "pkganix": 103, "gone": [103, 248, 259], "nix": [103, 196], "math": [104, 105, 133, 196, 266], "85d927a4a067a531b1a9c7619522c015": 104, "1702683583": 104, "3411012": 104, "fd2b006646a54397c16a1478ac4111ac": 104, "3544693": 104, "mytool": [104, 211], "othertool": 104, "downgrad": 104, "unlock": 104, "meson_lib": 105, "meson_ex": 105, "msbuild_lib": 105, "msbuild_ex": 105, "bazel_lib": 105, "bazel_ex": 105, "autotools_lib": 105, "autotools_ex": 105, "aid": 105, "boilerpl": [105, 116], "requires1": 105, "requires2": 105, "tool_requires1": 105, "tool_requires2": 105, "magic": 105, "mygam": 105, "mytempl": 105, "full_path": 105, "conan_vers": [105, 146], "parametr": 105, "brack": 105, "not_templ": 105, "image2": 105, "guess": [106, 147, 170, 240], "Be": [106, 122, 123, 144, 227, 249], "carlosz": 106, "ios_bas": 106, "ios_simul": 106, "clang_15": 106, "package_set": 106, "build_env": 106, "registri": [107, 236], "usernam": [107, 114, 147, 151], "insert": 107, "conan_login_": 107, "expos": [107, 114, 127, 147, 227], "new_nam": 107, "keyword": [108, 154, 200, 203], "intact": 108, "smell": [108, 268], "manifest": [112, 116, 258], "sys_vers": 113, "1316": 113, "mainli": [114, 237], "pro": [114, 235, 237], "conan_server_hom": 114, "server_dir": 114, "server_directori": 114, "prior": [114, 158], "hot": 114, "relaunch": 114, "jwt_secret": 114, "ijkhyoiouinmxcrtytrr": 114, "jwt_expire_minut": 114, "120": 114, "ssl_enabl": 114, "port": [114, 237], "9300": [114, 237], "public_port": 114, "host_nam": 114, "localhost": [114, 198, 236, 237], "authorize_timeout": 114, "1800": 114, "disk_storage_path": 114, "disk_authorize_timeout": 114, "updown_secret": 114, "hjhjujkjkjkjkluyyuuyhj": 114, "write_permiss": 114, "lasot": 114, "default_us": 114, "default_user2": 114, "read_permiss": 114, "jwt": 114, "random": [114, 187], "safe": [114, 116, 136, 183], "anytim": 114, "amount": 114, "ip": [114, 198], "domain": 114, "168": 114, "docker": [114, 236], "9999": 114, "p9300": 114, "traffic": 114, "somedir": [114, 207], "crt": 114, "pem": [114, 146], "reject": 114, "regist": 114, "plain": [114, 116], "premis": 114, "firewal": 114, "trust": 114, "sysadmin": 114, "restrict": [114, 116, 149], "comma": [114, 116], "allowed_user1": 114, "allowed_user2": 114, "packagea": 114, "john": [114, 116], "peter": 114, "custom_authent": 114, "authenticator_nam": 114, "collabor": [114, 163], "htpasswd": 114, "schiffner": 114, "uilianri": 114, "my_authent": 114, "get_class": 114, "myauthent": 114, "valid_us": 114, "plain_password": 114, "factori": 114, "custom_author": 114, "authorizer_nam": 114, "my_author": 114, "authenticationexcept": 114, "forbiddenexcept": 114, "myauthor": 114, "_check_conan": 114, "deni": [114, 196], "_check_packag": 114, "_check": 114, "check_read_conan": 114, "check_write_conan": 114, "check_delete_conan": 114, "check_read_packag": 114, "check_write_packag": 114, "check_delete_packag": 114, "conform": 114, "check_": 114, "conanfilerefer": 114, "meanwhil": 114, "_packag": 114, "packagerefer": 114, "443": 114, "server_nam": 114, "myservernam": 114, "mydomain": 114, "proxy_pass": 114, "ssl_certif": 114, "ssl_certificate_kei": 114, "mod_wsgi": 114, "apache2": 114, "site": [114, 116], "0_conan": 114, "virtualhost": 114, "80": 114, "wsgiscriptalia": 114, "dist": 114, "server_launch": 114, "wsgicallableobject": 114, "wsgipassauthor": 114, "grant": 114, "srv": 114, "helloconan": [115, 116, 179, 203, 255], "varieti": 115, "member": [115, 116, 127, 175], "_my_data": 115, "_my_help": 115, "lowercas": [116, 250], "101": 116, "charact": [116, 151, 191, 192, 250], "shorter": [116, 192], "z0": 116, "9_": 116, "alphanumer": [116, 250], "ing": 116, "pkgname": [116, 221, 243], "pre1": [116, 250, 269], "build2": [116, 250], "pkgversion": 116, "programmat": 116, "mychannel": 116, "short": [116, 250], "incred": 116, "spdx": 116, "peopl": 116, "smith": 116, "protocinstallerconan": 116, "protoc_instal": 116, "buffer": 116, "rpc": 116, "overview": 116, "eigenconan": 116, "eigen": 116, "tuxfamili": 116, "mylibconan": 116, "otherlib": 116, "otherus": 116, "bracket": [116, 269], "alpha": [116, 269], "tool_a": 116, "tool_b": 116, "gtest": [116, 120, 127, 133, 142, 221, 241, 248, 254, 259], "downstream": [116, 120, 132, 133, 175, 187, 266], "other_test_tool": 116, "pyreq": [116, 128, 156, 175], "myconanfilebas": [116, 128], "utilsbas": 116, "tmp": [116, 188, 196, 248, 249, 251, 252, 254, 257], "got": [116, 256, 262, 267], "shutil": [116, 136], "emul": [116, 149, 222, 267], "mistak": 116, "yaml": 116, "mylib": [116, 120, 147, 188, 205, 271], "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 116, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 116, "opt": [116, 192, 212, 213, 269, 271], "7zip": [116, 142, 147], "7z": 116, "determin": [116, 133, 147, 191, 242], "gnu20": [116, 149], "get_saf": [116, 122, 123, 214, 244], "compiler_vers": [116, 147, 183], "feasibl": [116, 132], "is_android": 116, "option3": 116, "option4": 116, "comparison": [116, 235, 269], "encapsul": 116, "zwave": 116, "reference_pattern": 116, "option_nam": 116, "condition": [116, 118, 119, 123, 127, 136, 221, 222, 244, 246, 251, 258], "otherpkg": 116, "some_opt": 116, "overridden": [116, 175, 198], "particularli": [116, 129, 131], "explanatori": 116, "reference_conanfile_methods_package_id": 116, "semver": [116, 228, 269, 271], "modif": [116, 131, 149, 191, 243, 268, 271], "unrelated_mod": 116, "ever": 116, "pocotimerconan": 116, "foorecip": 116, "myrecip": 116, "methodconan": 116, "export_fold": [116, 125], "codebas": 116, "androidndk": [116, 132], "define_path": [116, 129, 132, 191], "fill": [116, 158, 174, 207], "append_path": [116, 132, 191], "runtime_var": 116, "flag3": [116, 132], "flag1": [116, 132, 146, 147, 212], "flag2": [116, 132, 146, 147], "expandattributedsourc": [116, 132], "unset": [116, 132, 146, 147, 149, 191, 204], "flag0": [116, 132], "pop": [116, 217, 242], "friendli": 116, "emit": 116, "taskflow": 116, "odr": [116, 133], "violat": [116, 133], "libressl": 116, "boringssl": 116, "libav": 116, "ffmpeg": [116, 154], "mariadb": 116, "mysql": 116, "libjpeg": 116, "9d": 116, "turbo": 116, "libjpegturbo": 116, "openbla": 116, "cbla": 116, "lapack": 116, "redund": 116, "myconsum": [116, 256], "my_android_ndk": 116, "var1": [116, 147], "green": 116, "neutral": 116, "white": [116, 151], "yellow": 116, "red": 116, "three": [116, 129, 146, 182, 191, 222, 231], "distinct": 116, "tend": 116, "auto_shared_fp": 116, "auto_header_onli": 116, "parenthes": 116, "validate_build": 117, "mybuildsystem": 118, "interrupt": 118, "lift": 118, "info_build": 119, "myvalu": [119, 188, 191, 217], "fullsourc": 119, "theori": [120, 244], "parameter": 120, "ran": [120, 137, 157, 248, 254], "nutshel": [120, 205], "mylibrecip": 120, "myapprecip": 120, "myapp": [120, 271], "gettext": 120, "libgettext": 120, "constrain": 122, "sse2": 122, "with_sse2": 122, "elif": 123, "deploy_fold": [124, 167, 191], "destinaton": 124, "mor": 124, "destin": [125, 126, 196, 198, 221], "intrins": 125, "myfil": [126, 175, 196, 271], "export_conandata_patch": [126, 195], "conanvcvar": [127, 188, 217, 222, 223, 224], "repetit": [127, 132], "mygener": [127, 156], "mygen": [127, 156], "dylib": [127, 132, 179, 196, 203, 242, 249, 257], "dll": [127, 130, 132, 192, 242, 257], "xxxdir": 127, "indirectli": 127, "buildenv_info": [127, 129, 191, 193, 251, 256], "runenv_info": [127, 129, 191, 193, 194, 251], "is_build_context": 127, "fashion": 127, "pcre": 127, "44": 127, "expat": 127, "35": [127, 255, 268], "1k": 127, "criteria": 127, "direct_host": 127, "direct_build": 127, "heavili": 127, "mycomp": 127, "mylicens": 128, "overwritten": [128, 132, 136], "baseconan": 128, "derivedconan": 128, "deriv": [128, 136], "uncondition": 128, "datafil": 128, "my": [128, 129, 132, 147, 149, 158, 175, 198, 205, 217], "awesom": 128, "me": 128, "word": [128, 149, 268], "__init__": [128, 156, 158, 180, 223], "constructor": [128, 189, 200, 203, 205, 218, 227, 231], "subdirectori": 129, "classic": [129, 149, 213, 253], "hopefulli": 129, "release64": 129, "stub": 129, "my_includ": 129, "sayconan": [129, 263], "mydata_path": 129, "obvious": 129, "mydata_path2": 129, "my_conf_fold": 129, "creating_packages_package_method": 130, "relax": [131, 267], "assumpt": [131, 244, 267], "couldn": 131, "disadvantag": [131, 270], "lose": 131, "although": [131, 192, 259], "predict": 131, "obj": 132, "preprocessor": [132, 182, 188, 205, 217, 222, 223], "property_nam": 132, "property_valu": 132, "xml": [132, 222], "pkg_config_nam": [132, 208], "zmq": 132, "zmq_static": 132, "ws2_32": 132, "get_properti": 132, "crypto": [132, 208, 211], "define_crypto": 132, "headers_ssl": 132, "obj_ext": 132, "prepend_path": [132, 191], "mypath": [132, 191, 256], "myarmarch": 132, "otherarch": 132, "my_android_arch": 132, "myrunpath": 132, "settin": 132, "mypkghom": 132, "ti": 132, "former": [132, 267], "virtualrunenv": [132, 147, 176, 188, 190, 191, 192, 242, 251, 256], "transmit": [132, 271], "exceptionhandl": [132, 146], "async": [132, 146, 200], "bundl": [132, 236], "android_ndk": 132, "albeit": 132, "switch": [132, 160, 181, 221, 222], "adequ": 132, "claus": 133, "catch2": [133, 248], "seem": 133, "ambigu": [133, 271], "priorit": [134, 135, 189, 196, 266, 267], "tarbal": [136, 227, 235, 268], "check_sha1": [136, 195], "pococonan": 136, "zip_nam": 136, "pocoproject": 136, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 136, "unlink": 136, "bypass": 136, "appar": 136, "problemat": [136, 267], "destroi": [136, 149, 160], "lead": [136, 244], "frozen": 136, "realiz": [137, 243, 267], "gtk": 137, "undesir": 137, "libgtk": 137, "pkg1": [137, 187, 231], "pkg2": [137, 187, 231], "prove": [138, 259], "conaninvalidconfigur": [139, 140, 183, 244, 266], "succe": [139, 231], "cfc18fcc7a50ead278a7c1820be74e56": 139, "warn_tag": 141, "custom_tag": 141, "ignore_error": 141, "appropri": 141, "unnot": 141, "ninja_stdout": 141, "w": [141, 159], "stringio": 141, "pin": [142, 243, 268, 270], "revision1": 142, "70": 142, "revision2": 142, "00": [142, 203, 268], "inde": 142, "vs_layout": [142, 176, 214, 218], "aka": [143, 179], "preced": [144, 176, 188, 191, 205, 208], "project1": [144, 221], "project2": [144, 221], "unauthor": 145, "ask": [145, 151], "conan_login_usernam": [145, 151], "conan_login_username_": [145, 151], "conan_password": [145, 151], "conan_password_": [145, 151], "admin": [145, 236], "emptiv": 145, "getenv": [145, 147, 150, 192], "mytk": [145, 150], "mytoken": [145, 150], "briefli": [146, 233, 249, 250], "whatev": [146, 147, 155, 213], "confvar": [146, 147], "hint": [146, 147], "yyi": [146, 147], "ins": 146, "zzz": [146, 147], "everywher": 146, "discret": 146, "establish": 146, "packagenam": [146, 187], "orgnam": 146, "cpu_count": 146, "myconf1": 146, "detect_o": [146, 147], "myconf2": 146, "detect_arch": [146, 147], "conan_home_fold": 146, "eval": 146, "integ": [146, 228], "unmodifi": 146, "rid": [146, 147], "f1": 146, "f2": 146, "f0": 146, "pai": [146, 257], "tl": [146, 148, 198], "constitut": 146, "implic": [146, 249], "tool1": 147, "tool4": 147, "environmentvar1": 147, "123": [147, 175], "dlib": 147, "ab": 147, "relpath": 147, "my_pkg_opt": 147, "myvalue12": 147, "mypath1": [147, 191], "path11": 147, "path12": 147, "comp": [147, 208], "chanel": 147, "ration": 147, "kitwar": 147, "3488ec5c2829b44387152a6c4b013767": 147, "20496b332552131b67fb99bf425f95f64d0d0818": 147, "profile_var": 147, "my_build_typ": 147, "referenc": [147, 187, 198], "loop": 147, "meant": [147, 250, 259], "judici": 147, "compiler_ex": 147, "detect_default_compil": 147, "default_msvc_runtim": 147, "default_compiler_vers": 147, "default_cppstd": 147, "detect_libcxx": 147, "v143": [147, 149], "gnu14": [147, 149, 205, 241], "default_msvc_ide_vers": 147, "digit": [147, 149, 269, 271], "zlib_clang_profil": 147, "my_var": [147, 256], "statement": 147, "gcc_49": 147, "my_remote_nam": 148, "windowsstor": 149, "windowsc": 149, "ios_vers": 149, "iphoneo": [149, 217], "iphonesimul": 149, "watchsimul": 149, "appletvo": 149, "appletvsimul": 149, "xrsimul": 149, "catalyst": 149, "aix": 149, "arduino": 149, "board": 149, "emscripten": 149, "neutrino": 149, "vxwork": 149, "ppc32be": 149, "ppc32": [149, 183, 231], "ppc64le": [149, 231], "ppc64": [149, 183], "armv4": 149, "armv4i": 149, "armv5el": [149, 177], "armv5hf": [149, 177], "armv6": [149, 177], "armv7hf": [149, 177, 231, 241], "armv7k": 149, "armv8_32": 149, "sparc": [149, 183, 188], "sparcv9": [149, 183], "mip": 149, "mips64": 149, "avr": 149, "s390": 149, "s390x": [149, 231], "wasm": 149, "sh4le": 149, "e2k": 149, "v5": 149, "v6": [149, 177], "v7": 149, "xtensalx6": 149, "xtensalx106": 149, "xtensalx7": 149, "sun": 149, "posix": 149, "libcstd": 149, "libstdcxx": 149, "libstlport": 149, "win32": 149, "mingw": [149, 239, 245], "dwarf2": 149, "sjlj": 149, "seh": 149, "98": 149, "gnu23": 149, "170": 149, "190": 149, "191": 149, "v110_xp": 149, "v120_xp": 149, "v140_xp": 149, "v141_xp": 149, "runtime_vers": 149, "v140": 149, "v141": 149, "v142": 149, "2021": [149, 213], "icx": [149, 213], "dpcpp": [149, 213], "03": [149, 243, 268], "gnu03": 149, "gpp": 149, "ne": 149, "accp": 149, "acpp": 149, "ecpp": 149, "mcst": 149, "lcc": 149, "relwithdebinfo": 149, "minsizerel": 149, "hardwar": 149, "microprocessor": 149, "microcontrol": 149, "famili": 149, "2015": 149, "2017": [149, 213, 240, 242, 244, 245], "finer": 149, "1913": 149, "dpc": [149, 213], "suppos": 149, "311": 149, "brief": [149, 236, 239], "arch_build": 149, "arch_target": 149, "powerpc": [149, 231], "endian": 149, "littl": [149, 155], "soft": 149, "float": 149, "swift": 149, "a6": 149, "a6x": 149, "chip": 149, "iphon": 149, "5c": 149, "ipad": 149, "k": 149, "aarch32": 149, "ilp32": 149, "a12": 149, "chipset": 149, "xr": [149, 196], "scalabl": [149, 235, 236], "microsystem": 149, "interlock": 149, "pipelin": [149, 151], "formerli": 149, "atmel": 149, "microchip": 149, "390": 149, "ibm": 149, "javascript": 149, "low": 149, "assembli": 149, "byte": [149, 196], "hitachi": 149, "superh": 149, "2000": 149, "512": 149, "vliw": 149, "2cm": 149, "2c": 149, "moscow": 149, "4c": 149, "8c": 149, "8c1": 149, "1c": 149, "1ck": 149, "8c2": 149, "8cb": 149, "2c3": 149, "12c": 149, "16c": 149, "32c": 149, "xtensa": 149, "lx6": 149, "dpu": 149, "esp32": 149, "esp8266": 149, "lx7": 149, "s2": 149, "s3": 149, "_glibcxx_use_cxx11_abi": [149, 188, 205], "abi": [149, 177, 241], "wise": 149, "cento": [149, 231], "rogu": 149, "wave": 149, "stlport": 149, "apach": 149, "dinkum": 149, "abridg": 149, "rhel6": 149, "cache_vari": 149, "some_centos_flag": 149, "usabl": 149, "anymor": 149, "mycompil": 149, "my_custom_compil": 149, "sync": [149, 200], "tarballnam": 150, "bearer": 150, "mypassword": 150, "hardcod": [150, 259, 269], "difficult": [150, 175, 248, 270], "remote_nam": 151, "challeng": 151, "unauthent": 151, "unattend": 151, "stuck": 151, "autodetect": [151, 188], "tty": 151, "no_color": 151, "conan_color_dark": 151, "scheme": [151, 269, 271], "light": 151, "dark": 151, "mypythoncod": [152, 264], "altogeth": [152, 155, 188], "pre_build": [152, 158], "complement": 152, "qualiti": [152, 158], "facilit": [152, 157], "intercept": 154, "commmand": 154, "startswith": 154, "caller": 154, "heavy_pkg": 154, "qt": 154, "abseil": 154, "_commands_": 155, "cmd_": 155, "your_command_nam": 155, "cmd_hello": 155, "cmd_bye": 155, "topic_nam": 155, "topic1": 155, "topic2": 155, "cmd_command": 155, "output_json": 155, "parser": 155, "hello_moon": 155, "subpars": 155, "act": 155, "narg": 155, "add_reference_arg": 155, "mygroup": 155, "mycommand": 155, "mycommand_mysubcommand": 155, "add_my_common_arg": 155, "chose": 155, "format_graph_html": 155, "format_graph_info": 155, "field_filt": 155, "format_graph_json": 155, "format_graph_dot": 155, "graph_info": 155, "deps_graph": [155, 167], "command_subcommand": 155, "child": 155, "arg1": [155, 185, 213], "arg2": [155, 185, 213], "arg3": 155, "_conanfil": 156, "deps_info": 156, "repeatedli": [157, 271], "my_custom_deploy": 157, "hook_exampl": 158, "pre_export": 158, "field_valu": 158, "getattr": 158, "abort": 158, "hook_": 158, "replace_in_fil": [158, 195, 248], "post_packag": 158, "isdir": 158, "custom_modul": 158, "hook_print": 158, "my_print": 158, "hook_ful": 158, "pre_sourc": 158, "pre_packag": 158, "pre_package_info": 158, "post_package_info": 158, "artifacts_fold": 159, "signature_fold": 159, "conan_packag": [159, 240, 245], "written": [159, 251, 271], "twice": 159, "conan_sourc": 159, "signer": 159, "asc": 159, "listdir": 159, "isfil": 159, "profile_plugin": 160, "ordereddict": [160, 189], "profilesapi": [161, 170], "installapi": [161, 167], "graphapi": [161, 166], "exportapi": [161, 165], "newapi": [161, 169], "uploadapi": [161, 174], "downloadapi": [161, 164], "cache_fold": 162, "global_conf": 163, "settings_yml": 163, "load_root_test_conanfil": 166, "tested_refer": 166, "tested_python_requir": 166, "recipe_consum": 166, "load_graph": 166, "root_nod": 166, "check_upd": 166, "load_root_nod": 166, "analyze_binari": 166, "build_mod": 166, "build_modes_test": 166, "tested_graph": 166, "buildmod": 166, "install_binari": 167, "intal": 167, "install_system_requir": 167, "only_info": 167, "install_sourc": 167, "install_consum": 167, "deploy_packag": 167, "filter_packages_configur": 168, "pkg_configur": 168, "pkgrefer": 168, "pkgconfigur": 168, "get_templ": 169, "template_fold": 169, "get_home_templ": 169, "template_nam": 169, "get_default_host": 170, "get_default_build": 170, "get_profil": 170, "get_path": 170, "sin": 170, "alphabet": [170, 269], "only_en": 171, "check_upstream": 174, "package_list": 174, "enabled_remot": 174, "upload_data": 174, "get_backup_sourc": 174, "234": 175, "mybas": 175, "cool": 175, "super": [175, 205], "pyreq_path": 175, "myfile_path": 175, "mynumb": 175, "gradual": 175, "hierarchi": 175, "is_apple_o": [176, 178], "to_apple_arch": [176, 178], "envvar": [176, 190, 191, 193, 194], "intelcc": 176, "basic_layout": 176, "nmaketoolchain": [176, 218], "sconsdep": 176, "armv5": 177, "lc_id_dylib": [179, 203], "lc_load_dylib": [179, 203], "rpath": [179, 188, 203], "lc_rpath": [179, 203], "outlin": 179, "libnam": 179, "my_execut": 179, "add_rpath": 179, "executable_path": 179, "use_settings_target": 179, "ranlib": 179, "lipo": 179, "codesign": 179, "isysroot": [179, 217], "sdk_platform_path": 179, "sdk_platform_vers": 179, "libtool": 179, "alltarget": 180, "i386": [180, 217], "sdkroot": 180, "ios8": 180, "skd": 180, "conan_libpng": 181, "conan_libpng_libpng": 181, "conan_libpng_libpng_debug_x86_64": 181, "conan_libpng_libpng_release_x86_64": 181, "conan_zlib": [181, 221], "conan_zlib_zlib": 181, "conan_zlib_zlib_debug_x86_64": 181, "conan_zlib_zlib_release_x86_64": 181, "system_header_search_path": 181, "gcc_preprocessor_definit": 181, "other_cflag": 181, "other_cplusplusflag": 181, "framework_search_path": 181, "library_search_path": 181, "other_ldflag": 181, "conan_libpng_debug_x86_64": 181, "package_root_": 181, "releaseshar": [181, 187, 221, 258], "mycustomconfig": [181, 221], "conantoolchain_release_x86_64": 182, "conantoolchain_debug_x86_64": 182, "conantoolchain": [182, 222], "conan_global_flag": 182, "conantoolchain_": [182, 222], "_x86_64": 182, "clang_cxx_librari": 182, "clang_cxx_language_standard": 182, "macosx_deployment_target": 182, "mmacosx": 182, "_cpu_count": 183, "cgroup": 183, "skip_x64_x86": 183, "m1": [183, 217, 259], "gnu_extens": 183, "cppstd_default": 183, "dxxx": 185, "dvar": 185, "build_tool_arg": 185, "barg1": 185, "barg2": 185, "underli": 185, "diagnost": 185, "dcmake_verbose_makefil": 185, "maxcpucount": 185, "cmake_gener": 186, "shared_fals": 186, "shared_tru": 186, "chosen": [186, 213], "cmake_prefix_path": [187, 188], "cmake_module_path": [187, 188], "findxxx": 187, "conandeps_legaci": 187, "cmake_binary_dir": 187, "enumer": 187, "overal": 187, "releasedshar": 187, "my_tool": [187, 208, 211], "collid": [187, 208, 271], "capnproto": [187, 208], "_build": [187, 208], "81": 187, "fakecomp": 187, "cmake_module_file_nam": 187, "cmake_module_target_nam": 187, "dep_nam": 187, "get_cmake_package_nam": 187, "module_mod": 187, "get_find_mod": 187, "cmake_target_alias": 187, "rout": 187, "cmake_set_interface_link_directori": 187, "pragma": 187, "nosonam": 187, "sonam": 187, "cmake_config_version_compat": 187, "samemajorvers": 187, "sameminorvers": 187, "exactvers": 187, "configvers": 187, "myfilenam": [187, 198], "myfooalia": 187, "mycompon": [187, 208, 211], "varcompon": 187, "myfilenameconfig": 187, "findmyfilenam": 187, "zlibconan": 187, "alter": 187, "colon": 187, "new_component_target_nam": 187, "buildir": 187, "popul": [187, 241], "cmake_map_imported_config_": 187, "dcmake_map_imported_config_coverag": 187, "myvar_valu": 188, "mydefin": [188, 217], "mydef_valu": [188, 217], "cmake_path": 188, "cmake_position_independent_cod": 188, "nmake": [188, 189, 223], "easier": [188, 271], "schema": [188, 196, 222], "testpreset": 188, "jon": 188, "mydef": [188, 217], "myconfigdef": 188, "mydebugvalu": 188, "myreleasevalu": 188, "add_definit": 188, "cachevari": 188, "foo2": 188, "ON": [188, 241, 262], "myconfigvar": 188, "sentenc": 188, "extra_cxxflag": [188, 205, 223], "extra_cflag": [188, 205, 223], "extra_sharedlinkflag": 188, "extra_exelinkflag": 188, "clash": 188, "filepath": 188, "mytoolchainpackag": 188, "mytoolchain": 188, "mytoolrequir": 188, "toolchain1": 188, "toolchain2": 188, "yyyi": 188, "ninclud": 188, "generic_system": 188, "cmake_c_compil": 188, "cmake_cxx_compil": 188, "android_system": 188, "android_platform": 188, "android_stl": 188, "android_ndk_path": 188, "apple_system": 188, "cmake_osx_architectur": 188, "cmake_osx_sysroot": 188, "arch_flag": [188, 205], "m32": 188, "m64": 188, "vs_runtim": 188, "cmake_msvc_runtime_librari": 188, "cmake_cxx_extens": 188, "cmake_flags_init": 188, "cmake_xxx_flag": 188, "conan_xxx": 188, "cmake_cxx_flags_init": 188, "conan_cxx_flag": 188, "try_compil": 188, "in_try_compil": 188, "find_path": 188, "cmake_skip_rpath": 188, "skip_rpath": 188, "build_shared_lib": [188, 251, 262], "output_dir": 188, "cmake_install_xxx": 188, "cmake_install_prefix": [188, 257], "cmake_install_bindir": 188, "cmake_install_sbindir": 188, "cmake_install_libexecdir": 188, "cmake_install_libdir": 188, "cmake_install_includedir": 188, "cmake_install_oldincludedir": 188, "cmake_install_datarootdir": 188, "mybin": [188, 205], "myinclud": [188, 205], "myre": [188, 205], "block_nam": 188, "new_tmp": 188, "other_toolset": 188, "generic_block": 188, "methodtyp": 188, "mygenericblock": 188, "helloworld": 188, "myblock": 188, "mynewblock": 188, "64bit": [188, 267], "32bit": [188, 267], "ppc": 188, "r23c": 188, "cmake_c_flags_init": 188, "cmake_xcode_attribute_enable_bitcod": 188, "cmake_xcode_attribute_clang_enable_objc_arc": 188, "cmake_xcode_attribute_gcc_symbols_private_extern": 188, "cmake_sysroot": 188, "cmp0149": 188, "cmake_rc_compil": 188, "cmake_objc_compil": 188, "objcpp": [188, 217], "cmake_objcxx_compil": 188, "cmake_cuda_compil": 188, "cmake_fortran_compil": 188, "cmake_asm_compil": 188, "cmake_hip_compil": 188, "cmake_ispc_compil": 188, "collaps": 189, "aggregated_cpp_info": 189, "topological_sort": 189, "revers": 189, "dep_cppinfo": 189, "get_sorted_compon": 189, "fewer": 189, "other_cppinfo": 189, "myvar2": 191, "myvalue2": 191, "myvar3": 191, "myvalue3": 191, "myvar4": 191, "mypath2": 191, "mypath3": 191, "env1": [191, 192], "env2": 191, "compose_env": 191, "prevail": [191, 266], "autootoolsdep": 191, "buildenv": [191, 213, 241], "runenv": 191, "mypkg_data_dir": 191, "datadir": [191, 208, 217], "filesystem": [191, 198], "deploy_base_fold": 191, "save_script": 192, "my_env_fil": 192, "ps1": [192, 193, 194, 245], "var2": 192, "variable_refer": 192, "penv": 192, "32k": 192, "2048": 192, "closer": 192, "varnam": 192, "ld_library_path": [193, 194, 242, 251, 256], "deactivate_conanbuildenv": [193, 241, 244, 245, 248], "accumul": [193, 194, 204, 229], "auto_gener": [193, 194], "dyld_library_path": [194, 242], "dyld_framework_path": [194, 242], "deactivate_conanrunenv": 194, "rm": 195, "rmdir": 195, "chdir": 195, "trim_conandata": 195, "collect_lib": 195, "check_md5": 195, "check_sha256": 195, "absolute_to_relative_symlink": [195, 257], "remove_external_symlink": 195, "remove_broken_symlink": 195, "ignore_cas": 196, "insensit": 196, "utf": [196, 222], "otherfil": 196, "robocopi": 196, "abe2h9f": 196, "file_path": [196, 197], "mydir": 196, "newdir": 196, "do_someth": 196, "tzb2": 196, "bz2": 196, "txz": 196, "xz": 196, "keep_permiss": [196, 198], "bigfil": 196, "danger": 196, "inter": 196, "libmylib": [196, 203], "stare": 196, "libmath": 196, "other_libdir": 196, "rwxr": 196, "lrwxr": 196, "md5sum": 197, "sha256sum": 197, "md5": 198, "ftp": 198, "impli": [198, 268, 271], "overriden": 198, "httpbasic": 198, "sha": 198, "someurl": 198, "somefil": 198, "e5d695597e9fa520209d1b41edad2a27": 198, "ia64": 198, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 198, "base_path": 200, "patch_str": 200, "fuzz": 200, "fuzzi": 200, "0001": 200, "buildflatbuff": 200, "0002": 200, "patch_typ": 200, "patch_sourc": 200, "flatbuff": 200, "5650": 200, "patch_descript": 200, "misc": 200, "1232": 200, "1292": 200, "g_test_add_func": 200, "paus": 200, "cancel": 200, "do_pause_cancel_test": 200, "g_test_add_data_func": 200, "steal": 200, "gint_to_point": 200, "do_stealing_test": 200, "length": 200, "do_response_informational_content_length_test": 200, "ret": 200, "g_test_run": 200, "0003": 200, "base_fold": 201, "configure_arg": 203, "make_arg": 203, "_conanbuild": [203, 205], "destdir": 203, "unix_path": [203, 218], "install_nam": 203, "cmdsize": 203, "48": 203, "offset": 203, "stamp": 203, "jan": 203, "1970": 203, "loader": 203, "wl": [203, 207], "conanautotoolsdep": 204, "undesired_valu": 204, "seamlessli": 205, "precalcul": 205, "my_argu": 205, "sbindir": [205, 217], "oldincludedir": 205, "datarootdir": 205, "he": 205, "extra_defin": [205, 223], "extra_ldflag": [205, 223], "gcc_cxx11_abi": 205, "build_type_flag": 205, "sysroot_flag": 205, "apple_arch_flag": [205, 217], "apple_isysroot_flag": [205, 217], "msvc_runtime_flag": [205, 218], "myflag": 205, "update_configure_arg": 205, "updated_flag": 205, "update_make_arg": 205, "update_autoreconf_arg": 205, "xxxxxx_arg": 205, "prune": [205, 267], "gold": [205, 217], "lld": [205, 217], "nvcc": 205, "fc": 205, "mk": 206, "conan_dep": 206, "conan_name_zlib": 206, "conan_version_zlib": 206, "conan_reference_zlib": 206, "conan_root_zlib": 206, "zlib273508b343e8c": 206, "conan_include_dirs_zlib": 206, "conan_include_dir_flag": 206, "conan_lib_dirs_zlib": 206, "conan_lib_dir_flag": 206, "conan_bin_dirs_zlib": 206, "conan_bin_dir_flag": 206, "conan_libs_zlib": 206, "conan_lib_flag": 206, "conan_include_dir": 206, "conan_lib_dir": 206, "conan_bin_dir": 206, "conan_lib": [206, 263], "conan_define_flag": 206, "conan_system_lib_flag": 206, "lz": [206, 208], "libastr": 207, "_use_libastr": 207, "astral": 207, "linkflag": [207, 229], "tmp_dir": 207, "is_system": 207, "rt": 207, "your_us": 208, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 208, "pkg_config_alias": 208, "xxxxx": [208, 212, 217], "freeform": 208, "component_vers": 208, "custom_cont": 208, "mynam": 208, "componentnam": 208, "alias1": 208, "alias2": 208, "rcpath": 210, "bz": [210, 211], "fresh": 210, "new_local_repositori": 211, "build_fil": 211, "cc_import": 211, "cc_librari": 211, "z_precompil": 211, "static_librari": 211, "libz": [211, 242], "hdr": 211, "glob": 211, "filegroup": 211, "zlib_binari": 211, "bazel_target_nam": 211, "bazel_repository_nam": 211, "my_target": 211, "my_repo": 211, "cxxopt": 212, "dynamic_mod": 212, "compilation_mod": 212, "force_p": 212, "copt": 212, "flagn": 212, "conlyopt": 212, "linkopt": 212, "dbg": 212, "crosstool_top": 212, "icpx": 213, "conanintelsetvar": 213, "intelprofil": 213, "ms_toolset": 213, "batch": 213, "argn": 213, "intel64": 213, "ia32": 213, "ia": 213, "mysrcfold": 214, "reconfigur": 216, "dprefix": 216, "conan_meson_cross": 216, "n_job": 216, "55": [217, 243], "default_librari": 217, "buildtyp": 217, "libexecdir": 217, "localedir": 217, "mandir": 217, "infodir": 217, "wrap_mod": 217, "nofallback": 217, "cpp_arg": 217, "c_arg": 217, "c_link_arg": 217, "cpp_link_arg": 217, "conan_meson_xxxx": 217, "with_msg": 217, "hi": 217, "everyon": 217, "contrast": 217, "packageopt": 217, "upon": 217, "mio": 217, "ios_host_profil": 217, "objc_arg": 217, "objc_link_arg": 217, "objcpp_arg": 217, "objcpp_link_arg": 217, "android_host_profil": 217, "c_ld": 217, "cc_ld": 217, "cpp_ld": 217, "cxx_ld": 217, "as_": 217, "AS": [217, 223], "windr": 217, "macosx": 217, "apple_min_version_flag": 217, "objcflag": 217, "objcxxflag": 217, "check_min_v": 218, "is_msvc": 218, "is_msvc_static_runtim": 218, "msvs_toolset": 218, "raise_invalid": 219, "visualstudio": 219, "worth": 219, "mt": [219, 222], "neither": 219, "myreleas": 220, "myplatform": 220, "conan_zlib_vars_release_x64": 221, "conanzlibxxxx": 221, "conanzlibincludedir": 221, "conanzliblib": 221, "conan_zlib_vars_debug_x64": 221, "conanzlib": 221, "conan_zlib_release_x64": 221, "conan_zlib_debug_x64": 221, "conan_bzip": 221, "bzip": 221, "conan_bzip2": 221, "conan_pkgname_compname_vars_release_x64": 221, "compnam": 221, "conan_pkgname_compname_release_x64": 221, "conan_pkgname_compnam": 221, "conan_pkgnam": 221, "conan_pkgname_vars_release_x64": 221, "gather": [221, 269], "catch": 221, "executablepath": 221, "binarydirectori": 221, "custombuild": 221, "caexcludepath": 221, "uncondit": 221, "conan_": 221, "_var": 221, "conantoolchain_release_x86": 222, "mtd": 222, "mdd": 222, "clcompil": 222, "windowstargetplatformvers": 222, "additionalopt": 222, "preprocessordefinit": 222, "vcvarsal": [222, 224], "includeextern": 222, "xmln": 222, "2003": 222, "itemdefinitiongroup": 222, "propertygroup": 222, "conannmakedep": 223, "_link_": 223, "conannmaketoolchain": 223, "my_flag": 223, "env_var": 223, "cl_env_var": 223, "winsdk": 224, "thin": [227, 250], "repourl": 227, "children": 227, "get_commit": 227, "rev": 227, "get_remote_url": 227, "commit_in_remot": 227, "occurr": 227, "get_repo_root": 227, "toplevel": 227, "fetch_commit": 227, "qualifi": [228, 269], "sconscript_conandep": 229, "cpppath": 229, "binpath": 229, "frameworkpath": 229, "cppdefin": 229, "ccflag": 229, "shlinkflag": 229, "sconscript": 229, "mergeflag": 229, "chocolatei": 230, "libgl": 231, "libglvnd": 231, "devel": 231, "mesa": 231, "linuxmint": 231, "pidora": 231, "scientif": 231, "xenserv": 231, "amazon": 231, "oracl": 231, "amzn": 231, "almalinux": 231, "rocki": 231, "fedora": 231, "rhel": 231, "mageia": 231, "manjaro": 231, "opensus": 231, "sle": 231, "host_packag": 231, "install_substitut": 231, "packages_substitut": 231, "pkg3": 231, "_arch_nam": 231, "multiarch": 231, "arch_nam": 231, "libxcb": 231, "util0": 231, "packages_altern": 231, "amd64": 231, "conan_arch_set": 231, "apt_arch_set": 231, "86": 231, "armv7hl": 231, "lib32": 231, "c3i": 234, "profession": 235, "matrix": [235, 266, 267], "8081": 236, "8082": 236, "bintrai": 236, "jdk": 236, "dialog": 236, "bottl": 237, "wsgirefserv": 237, "ctrl": 237, "my_local_serv": 238, "lan": 238, "easiest": 240, "conan_export": 240, "f1fadf0d3b196dc0332750354ad8ab7b": [240, 245], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 240, "dd7bf2a1ab4eb5d1943598c09b616121": 240, "raspberri": 241, "pi": 241, "someprofil": 241, "gnueabihf": 241, "compressorrecip": [241, 243, 244], "identif": 241, "elf": 241, "lsb": 241, "eabi5": 241, "sysv": 241, "armhf": 241, "buildid": 241, "2a216076864a1b1f30211debf297ac37a9195196": 241, "different_configur": 242, "anywher": 242, "tutorial_us": 242, "zlib1": 242, "reinstal": 242, "wonder": 242, "answer": 242, "li": [242, 269], "factor": 242, "breakdown": 242, "approxim": [243, 269], "87a7211557b6690ef5bf7fc599dd8349": 243, "f305019023c2db74d1001c5afa5cf362": 243, "82202701ea360c0863f1db5008067122": 243, "bd533fb124387a214816ab72c8d1df28": 243, "59": [243, 250], "58": 243, "3b9e037ae1c615d045a06c67d88491a": 243, "chronolog": 243, "tediou": [243, 261, 270], "occas": 243, "4524fcdd41f33e8df88ece6e755a5dcc": 243, "1650538915": 243, "154": 243, "stai": 243, "conanfile_pi": 244, "neater": 244, "auxiliari": 244, "v8": 244, "base64": 244, "cmake_vers": 245, "3e3d8f3a848b2a60afafbe7a0955085a": 245, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 245, "48bc7191ec1ee467f1e951033d7d41b2": 245, "f2f48d9745706caf77ea883a5855538256e7f2d4": 245, "6c519070f013da19afd56b52c465b596": 245, "scaffold": 246, "walkthrough": 246, "peculiar": 246, "fanci": 247, "colour": [247, 258], "creating_packag": [247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259], "add_requir": 247, "check_max_cppstd": [247, 258], "check_min_cppstd": [247, 254, 258], "require_fmt": 247, "crimson": [247, 258], "emphasi": [247, 258], "bold": [247, 258], "__x86_64__": [247, 250, 252, 255, 262], "__cplusplu": 247, "201103": 247, "__gnuc__": 247, "__gnuc_minor__": 247, "__clang_major__": 247, "__clang_minor__": 247, "__apple_build_version__": 247, "13160021": 247, "build_method": 248, "with_test": 248, "with_fmt": [248, 249, 258], "test_hello": [248, 251], "novelti": 248, "compose_messag": 248, "add_subdirectori": 248, "googletest": [248, 254], "gtest_main": [248, 254], "hellotest": 248, "composemessag": 248, "expect_eq": 248, "c51d80ef47661865": 248, "3ad4c6873a47059c": 248, "tear": [248, 254], "82b6c0c858e739929f74f59c25c187b927d514f3": 248, "particular": 248, "uncommon": 248, "configure_options_set": 249, "constraint": [249, 250, 267, 271], "nevertheless": 249, "meet": 249, "ng": 249, "738feca714b7251063cc51448da0cf4811424e7c": 249, "7fe7f5af0ef27552": 249, "3bd9faedc711cbb4fdf10b295268246": 249, "e6b11fb0cb64e3777f8d62f4543cd6b3": 249, "5c497cbb5421cbda": 249, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 249, "19a2e552db727a2b": 249, "67b887a0805c2a535b58be404529c1f": 249, "c7796386fcad5369": 249, "depict": 249, "diagram": 249, "intuit": 249, "2a899fd0da3125064bf9328b8db681cd82899d56": 249, "f0d1385f4f90ae465341c15740552d7": 249, "8a55286c6595f662": 249, "601209640bd378c906638a8de90070f7": 249, "d1b3f3666400710fec06446a697f9eeddd1235aa": 249, "24a2edf207deeed4151bd87bca4af51c": 249, "concret": 250, "email": 250, "leverag": 250, "__cplusplus199711": [250, 252, 255], "__gnuc__4": [250, 252, 255, 262], "__gnuc_minor__2": [250, 252, 255, 262], "__clang_major__13": [250, 252, 255], "__clang_minor__1": [250, 252, 255], "__apple_build_version__13160021": [250, 252, 255], "fa5f6b17d0adc4de6030c9ab71cdbed": 250, "pid": [250, 254, 255], "6679492451b5d0750f14f9024fdbf84e19d2941b": 250, "customis": 250, "breakag": [250, 252], "package_inform": 251, "output_nam": 251, "a311fcf8a63f3206": 251, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [251, 257, 259], "44d78a68b16b25c5e6d7e8884b8f58b8": 251, "a8cb81b31dc10d96": 251, "handle_sourc": 252, "mutabl": 252, "0fcb5ffd11025446": 252, "update_sourc": 252, "369786d0fb355069": 252, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 252, "saw": [253, 254, 267], "other_packag": [254, 255, 256], "sumconan": 254, "sum": 254, "8d9f1fb3655adcb348befcd8374c5292": 254, "header_only_gtest": 254, "test_sum": 254, "9bf83ef65d5ff0d6": 254, "sumtest": 254, "basicsum": 254, "lack": 254, "3rd": 255, "circumst": 255, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 255, "deep": 255, "local_include_fold": 255, "local_lib_fold": 255, "prebuilt_binari": 255, "vendor_hello_librari": 255, "_o": 255, "_arch": 255, "9c7634dfe0369907f569c4e583f9bc50": 255, "522dcea5982a3f8a5b624c16477e47195da2f84f": 255, "63fead0844576fc02943e16909f08fcdddd6f44b": 255, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [255, 256], "28": 255, "a0cd51c51fe9010370187244af885b0efcc5b69b": 255, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 255, "dcf68e932572755309a5f69f3cee1bede410e907": 255, "somewher": 255, "prebuilt_remote_binari": 255, "base_url": 255, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 255, "secure_scannerrecip": 256, "secure_scann": 256, "scanner": 256, "secure_scannertestconan": 256, "tested_reference_str": [256, 259], "my_consum": 256, "enviorn": 256, "overwrot": 256, "rundenv_info": 256, "package_method": 257, "predetermin": 257, "b5857f2e70d1b2fd": 257, "bf7f5b9a3bb2c957742be4be216dfcbb": 257, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [257, 259], "47b4c4c61c8616e5": 257, "222db0532bba7cbc": 257, "50f91e204d09b64b24b29df3b87a2f3a": 257, "96ed9fb1f78bc96708b1abf4841523b0": 257, "21ec37b931782de8": 257, "preparing_the_build": 258, "optional_fmt": 258, "target_compile_definit": 258, "using_fmt": 258, "endl": 258, "debugshar": 258, "testing_packag": 259, "hellotestconan": 259, "cd132b054cf999f31bd2fd2424053ddc": 259, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 259, "1d9bb4c015de50bcb4a338c07229b3bc": 259, "4ff3fd65a1d37b52436bf62ea6eaac04": 259, "d136b3379fdb29bdfe31404b916b29e1": 259, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 259, "ee8cbd2bf32d1c89e553bdd9d5606127": 259, "costli": 260, "entir": 260, "depth": 260, "developing_packag": [261, 262, 263], "editable_packag": 261, "fledg": 261, "perspect": 261, "inconveni": 261, "increment": 261, "trial": 262, "phase": 262, "local_package_development_flow": 262, "ve": 262, "cmakedeps_macro": 262, "f09ef573c22f3919ba26ee91ae444eaa": 262, "__cplusplus201103": 262, "__clang_major__14": 262, "__apple_build_version__14000029": 262, "po": 262, "examin": 263, "package_layout": 263, "sayb3ea744527a91": 263, "say830097e941e10": 263, "libsai": 263, "say8938ceae216fc": 263, "say_say_releas": 263, "local_fold": 263, "expir": 264, "increas": [264, 265], "oppos": [264, 271], "intent": 264, "intro": [266, 267], "credit": 266, "videogam": 266, "0fe4e6890766f7b8e21f764f0049aec7": 266, "d639998c2e55cf36d261ab319801c322": 266, "905c3f0babc520684c84127378fefdd0": [266, 267], "converg": 266, "variat": 266, "mathemat": 267, "sound32": 267, "sound": 267, "1675278126": 267, "0552447": 267, "83d4b7bf607b3b60a6546f8b58b5cdd7": 267, "1675278904": 267, "0791488": 267, "1675278900": 267, "0103245": 267, "enforc": 267, "paramount": 267, "1675278901": 267, "7527816": 267, "harm": 267, "1675294635": 267, "6049662": 267, "1675294637": 267, "9775107": 267, "2475ece651f666f42c155623228c75d2": 268, "2b547b7f20f5541c16d0b5cbcf207502": 268, "licenc": 268, "1d674b4349d2b1ea06aa6419f5f99dd9": 268, "chat": 268, "17b45a168519b8e0ed178d822b7ad8c8": 268, "12f87e1b8a881da6b19cc7f229e16c76": 268, "ago": 268, "determinist": 268, "subsequ": 268, "8b8c3deef5ef47a8009d4afaebfe952": 268, "8e8d380347e6d067240c4c00132d42b1": 268, "c347faaedc1e7e3282d3bfed31700019": 268, "wast": 268, "pkgrecip": [269, 270], "apprecip": [269, 270], "newest": 269, "hold": 269, "letter": [269, 271], "becam": 269, "evid": 269, "demand": 269, "entiti": 269, "numer": 269, "tild": 269, "caret": 269, "include_prereleas": 269, "henc": 269, "fast": 270, "blown": 270, "intervent": 270, "excit": 271, "lesson": 271, "youtub": 271, "watch": 271, "kkgglzm5ou": 271, "tribe": 271, "026": 271, "requirements_trait": 271, "modular": 271, "subapi": 271, "redesign": 271, "send": 271, "thorough": 271, "mydeploi": 271, "meaning": 271, "mylib_a": 271, "mylib_b": 271, "034": 271, "new_lockfil": 271, "enviro": 271, "shorten": 271, "short_path": 271, "incredibuild": 271, "grow": 271, "sigstor": 271, "accur": 271}, "objects": {"conan.api.conan_api": [[162, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[163, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[163, 1, 1, "", "global_conf"], [163, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[164, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.export": [[165, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[166, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[166, 2, 1, "", "analyze_binaries"], [166, 2, 1, "", "load_graph"], [166, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[167, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[167, 2, 1, "", "install_binaries"], [167, 2, 1, "", "install_consumer"], [167, 2, 1, "", "install_sources"], [167, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[168, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[168, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[169, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[169, 2, 1, "", "get_home_template"], [169, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[170, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[170, 2, 1, "", "detect"], [170, 2, 1, "", "get_default_build"], [170, 2, 1, "", "get_default_host"], [170, 2, 1, "", "get_path"], [170, 2, 1, "", "get_profile"], [170, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[171, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[171, 2, 1, "", "list"]], "conan.api.subapi.remove": [[172, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[173, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[174, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[174, 2, 1, "", "check_upstream"], [174, 2, 1, "", "get_backup_sources"], [174, 2, 1, "", "prepare"]], "conan.tools.android": [[177, 3, 1, "", "android_abi"]], "conan.tools.apple": [[179, 0, 1, "", "XCRun"], [179, 3, 1, "", "fix_apple_shared_install_name"], [179, 3, 1, "", "is_apple_os"], [179, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[179, 1, 1, "", "ar"], [179, 1, 1, "", "cc"], [179, 1, 1, "", "cxx"], [179, 2, 1, "", "find"], [179, 1, 1, "", "install_name_tool"], [179, 1, 1, "", "libtool"], [179, 1, 1, "", "otool"], [179, 1, 1, "", "ranlib"], [179, 1, 1, "", "sdk_path"], [179, 1, 1, "", "sdk_platform_path"], [179, 1, 1, "", "sdk_platform_version"], [179, 1, 1, "", "sdk_version"], [179, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[180, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[180, 2, 1, "", "__init__"], [180, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[183, 3, 1, "", "check_max_cppstd"], [183, 3, 1, "", "check_min_cppstd"], [183, 3, 1, "", "default_cppstd"], [183, 3, 1, "", "supported_cppstd"], [183, 3, 1, "", "valid_max_cppstd"], [183, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[183, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[183, 3, 1, "", "can_run"], [183, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[185, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[185, 2, 1, "", "build"], [185, 2, 1, "", "configure"], [185, 2, 1, "", "ctest"], [185, 2, 1, "", "install"], [185, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[187, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[187, 2, 1, "", "generate"], [187, 2, 1, "", "get_cmake_package_name"], [187, 2, 1, "", "get_find_mode"], [187, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[186, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[188, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[188, 2, 1, "", "generate"]], "conan.tools.env.environment": [[192, 0, 1, "", "EnvVars"], [191, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[192, 2, 1, "", "apply"], [192, 2, 1, "", "get"], [192, 2, 1, "", "items"], [192, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[191, 2, 1, "", "append"], [191, 2, 1, "", "append_path"], [191, 2, 1, "", "compose_env"], [191, 2, 1, "", "define"], [191, 2, 1, "", "deploy_base_folder"], [191, 2, 1, "", "dumps"], [191, 2, 1, "", "prepend"], [191, 2, 1, "", "prepend_path"], [191, 2, 1, "", "remove"], [191, 2, 1, "", "unset"], [191, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[193, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[193, 2, 1, "", "environment"], [193, 2, 1, "", "generate"], [193, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[194, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[194, 2, 1, "", "environment"], [194, 2, 1, "", "generate"], [194, 2, 1, "", "vars"]], "conan.tools.files": [[196, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[196, 3, 1, "", "trim_conandata"], [196, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[196, 3, 1, "", "copy"]], "conan.tools.files.files": [[196, 3, 1, "", "chdir"], [197, 3, 1, "", "check_md5"], [197, 3, 1, "", "check_sha1"], [197, 3, 1, "", "check_sha256"], [198, 3, 1, "", "download"], [198, 3, 1, "", "ftp_download"], [198, 3, 1, "", "get"], [196, 3, 1, "", "load"], [196, 3, 1, "", "mkdir"], [196, 3, 1, "", "rename"], [196, 3, 1, "", "replace_in_file"], [196, 3, 1, "", "rm"], [196, 3, 1, "", "rmdir"], [196, 3, 1, "", "save"], [196, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[200, 3, 1, "", "apply_conandata_patches"], [200, 3, 1, "", "export_conandata_patches"], [200, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[201, 3, 1, "", "absolute_to_relative_symlinks"], [201, 3, 1, "", "remove_broken_symlinks"], [201, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[206, 0, 1, "", "MakeDeps"], [207, 0, 1, "", "PkgConfig"], [208, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[206, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[207, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[208, 1, 1, "", "content"], [208, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[203, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[203, 2, 1, "", "autoreconf"], [203, 2, 1, "", "configure"], [203, 2, 1, "", "install"], [203, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[204, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[204, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[205, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[205, 2, 1, "", "update_autoreconf_args"], [205, 2, 1, "", "update_configure_args"], [205, 2, 1, "", "update_make_args"]], "conan.tools.google": [[210, 0, 1, "", "Bazel"], [211, 0, 1, "", "BazelDeps"], [212, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[210, 2, 1, "", "build"], [210, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[211, 4, 1, "", "build_context_activated"], [211, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[212, 4, 1, "", "compilation_mode"], [212, 4, 1, "", "compiler"], [212, 4, 1, "", "conlyopt"], [212, 4, 1, "", "copt"], [212, 4, 1, "", "cppstd"], [212, 4, 1, "", "cpu"], [212, 4, 1, "", "crosstool_top"], [212, 4, 1, "", "cxxopt"], [212, 4, 1, "", "dynamic_mode"], [212, 4, 1, "", "force_pic"], [212, 2, 1, "", "generate"], [212, 4, 1, "", "linkopt"]], "conan.tools.intel": [[213, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[213, 4, 1, "", "arch"], [213, 1, 1, "", "command"], [213, 2, 1, "", "generate"], [213, 1, 1, "", "installation_path"], [213, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[216, 0, 1, "", "Meson"], [217, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[216, 2, 1, "", "build"], [216, 2, 1, "", "configure"], [216, 2, 1, "", "install"], [216, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[217, 4, 1, "", "apple_arch_flag"], [217, 4, 1, "", "apple_isysroot_flag"], [217, 4, 1, "", "apple_min_version_flag"], [217, 4, 1, "", "ar"], [217, 4, 1, "", "as_"], [217, 4, 1, "", "c"], [217, 4, 1, "", "c_args"], [217, 4, 1, "", "c_ld"], [217, 4, 1, "", "c_link_args"], [217, 4, 1, "", "cpp"], [217, 4, 1, "", "cpp_args"], [217, 4, 1, "", "cpp_ld"], [217, 4, 1, "", "cpp_link_args"], [217, 4, 1, "", "cross_build"], [217, 2, 1, "", "generate"], [217, 4, 1, "", "ld"], [217, 4, 1, "", "objc"], [217, 4, 1, "", "objc_args"], [217, 4, 1, "", "objc_link_args"], [217, 4, 1, "", "objcpp"], [217, 4, 1, "", "objcpp_args"], [217, 4, 1, "", "objcpp_link_args"], [217, 4, 1, "", "pkg_config_path"], [217, 4, 1, "", "pkgconfig"], [217, 4, 1, "", "preprocessor_definitions"], [217, 4, 1, "", "project_options"], [217, 4, 1, "", "properties"], [217, 4, 1, "", "strip"], [217, 4, 1, "", "windres"]], "conan.tools.microsoft": [[220, 0, 1, "", "MSBuild"], [221, 0, 1, "", "MSBuildDeps"], [222, 0, 1, "", "MSBuildToolchain"], [224, 0, 1, "", "VCVars"], [219, 3, 1, "", "unix_path"], [225, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[220, 2, 1, "", "build"], [220, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[221, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[222, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[219, 3, 1, "", "check_min_vs"], [219, 3, 1, "", "is_msvc"], [219, 3, 1, "", "is_msvc_static_runtime"], [219, 3, 1, "", "msvc_runtime_flag"], [219, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[228, 0, 1, "", "Version"]], "conan.tools.scm.git": [[227, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[227, 2, 1, "", "checkout"], [227, 2, 1, "", "clone"], [227, 2, 1, "", "commit_in_remote"], [227, 2, 1, "", "fetch_commit"], [227, 2, 1, "", "get_commit"], [227, 2, 1, "", "get_remote_url"], [227, 2, 1, "", "get_repo_root"], [227, 2, 1, "", "get_url_and_commit"], [227, 2, 1, "", "included_files"], [227, 2, 1, "", "is_dirty"], [227, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[231, 0, 1, "", "Apk"], [231, 0, 1, "", "Apt"], [231, 0, 1, "", "Brew"], [231, 0, 1, "", "Chocolatey"], [231, 0, 1, "", "PacMan"], [231, 0, 1, "", "Pkg"], [231, 0, 1, "", "PkgUtil"], [231, 0, 1, "", "Yum"], [231, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conans.model.conf.Conf": [[132, 2, 1, "", "append"], [132, 2, 1, "", "define"], [132, 2, 1, "", "prepend"], [132, 2, 1, "", "remove"], [132, 2, 1, "", "unset"], [132, 2, 1, "", "update"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function", "4": "py:attribute"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"]}, "titleterms": {"page": 0, "Not": 0, "found": 0, "changelog": 1, "2": [1, 57, 271], "0": [1, 57, 261, 271], "17": 1, "10": 1, "jan": 1, "2024": 1, "16": 1, "21": 1, "dec": 1, "2023": 1, "15": 1, "20": 1, "14": 1, "nov": 1, "13": 1, "28": 1, "sept": 1, "12": 1, "26": 1, "11": 1, "18": 1, "29": 1, "aug": 1, "9": 1, "19": 1, "jul": 1, "8": 1, "7": 1, "jun": 1, "6": 1, "mai": 1, "5": 1, "4": 1, "apr": 1, "3": 1, "03": 1, "mar": 1, "1": [1, 261], "22": 1, "feb": 1, "beta10": 1, "beta9": 1, "31": 1, "beta8": 1, "beta7": 1, "2022": 1, "beta6": 1, "02": 1, "beta5": 1, "beta4": 1, "oct": 1, "beta3": 1, "beta2": 1, "27": 1, "beta1": 1, "devop": 2, "guid": [2, 271], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 86, 102, 114, 192, 236, 246, 250, 268], "an": [3, 244], "artifactori": [3, 65, 236], "backup": [3, 4, 84], "repo": [3, 236], "your": [3, 5, 24, 36, 47, 48, 114, 241, 248, 250], "sourc": [3, 4, 29, 36, 51, 58, 70, 110, 116, 136, 248, 251, 252, 262, 263], "back": 4, "up": [4, 235, 237], "third": [4, 19], "parti": [4, 19], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 53, 55, 57, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 156, 162, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 203, 209, 213, 214, 215, 217, 218, 219, 226, 229, 230, 231, 233, 234, 235, 236, 237, 240, 241, 245, 249, 250, 251, 257, 259, 262, 263, 264, 271], "configur": [4, 22, 23, 63, 80, 114, 123, 129, 143, 146, 157, 181, 187, 213, 221, 231, 242, 244, 249, 251, 267, 271], "overview": 4, "usag": 4, "set": [4, 24, 73, 78, 80, 98, 107, 116, 147, 149, 186, 235, 237, 242, 249, 251, 256], "necessari": 4, "config": [4, 85, 163], "run": [4, 31, 36, 114, 133, 141, 192, 236, 248], "normal": 4, "upload": [4, 6, 13, 84, 112, 174, 238, 268], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 57, 70, 73, 99, 116, 130, 159, 231, 238, 239, 242, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 268, 271], "repositori": [4, 233, 252], "host": [5, 241], "own": [5, 114], "conancent": [5, 8], "binari": [5, 70, 77, 78, 80, 116, 153, 249, 255], "updat": [5, 58, 107], "from": [5, 7, 13, 29, 36, 58, 78, 141, 158, 187, 252, 264], "upstream": 5, "manag": [6, 56, 57, 70, 205, 231, 257, 271], "metadata": [6, 87, 116], "file": [6, 23, 50, 143, 146, 175, 187, 188, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 204, 205, 206, 208, 211, 212, 217, 221, 252, 257], "recip": [6, 31, 43, 78, 99, 141, 176, 248, 249, 251, 256], "hook": [6, 158], "ad": [6, 131, 149], "command": [6, 12, 31, 32, 65, 82, 141, 154, 155, 271], "download": [6, 13, 87, 164, 198, 255], "remov": [6, 13, 88, 104, 107, 108, 172, 256, 264], "test_packag": 6, "save": [7, 84, 196], "restor": [7, 84], "cach": [7, 84, 136, 250, 264, 271], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 51, 53, 55, 58, 63, 86, 114, 156, 187, 188, 203, 217, 236, 240, 241, 242, 244, 245, 252, 257, 261, 268], "product": 8, "environ": [8, 22, 129, 151, 191, 192, 205, 223, 251, 271], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 78, 80, 105, 114, 149, 155, 156, 157, 181, 187, 188, 189, 204, 205, 206, 208, 211, 213, 217, 220, 221, 222, 223, 224, 271], "version": [9, 10, 39, 40, 78, 98, 113, 116, 228, 243, 265, 269, 270], "handl": [10, 252], "rang": [10, 243, 269], "pre": [10, 255], "releas": [10, 242], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 105], "list": [13, 85, 88, 99, 106, 107, 168, 264], "them": 13, "one": 13, "remot": [13, 107, 148, 151, 171, 235, 252], "differ": [13, 39, 40, 73, 242, 268], "build": [13, 25, 26, 27, 29, 45, 47, 51, 53, 55, 65, 70, 80, 83, 86, 93, 94, 116, 118, 132, 133, 183, 188, 203, 217, 240, 241, 242, 245, 248, 255, 258, 261, 262, 263, 271], "conanfil": [14, 15, 16, 20, 26, 98, 115, 142, 244], "method": [14, 51, 78, 117, 231, 244, 248, 251, 257], "layout": [15, 16, 18, 19, 116, 129, 142, 214, 244, 263], "declar": [16, 18, 19, 191], "when": [16, 18, 19, 203], "i": [16, 81, 203], "insid": [16, 41], "subfold": 16, "compon": [17, 21, 132, 181, 251], "edit": [17, 88, 236, 261], "we": 18, "have": 18, "multipl": [18, 21, 242, 251], "subproject": 18, "librari": [19, 21, 132, 149, 203, 242, 248, 249, 251, 254], "package_info": [20, 132, 251], "defin": [21, 181, 251], "provid": [21, 116, 251], "propag": [22, 251], "inform": [22, 56, 78, 116, 131, 132, 146, 189, 251], "consum": [22, 78, 116, 187, 239, 251], "settings_us": [24, 149], "yml": [24, 149, 252], "locat": [24, 31, 36, 155], "new": [24, 26, 105, 149, 169, 270, 271], "cross": [25, 27, 80, 188, 217, 241], "integr": [26, 59, 84, 271], "android": [26, 27, 60, 177, 217], "studio": [26, 29, 68], "project": [26, 45, 47, 53, 55, 187, 240, 248], "introduc": [26, 242, 248, 251], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 78, 79, 116, 127, 221, 242, 247, 251, 261, 266], "txt": [26, 142, 244], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 64, 184, 185, 187, 240, 257], "cmakelist": 26, "applic": [26, 241, 242], "ndk": 27, "read": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "more": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "develop": [28, 35, 260, 262], "tool": [28, 39, 40, 43, 44, 46, 50, 51, 52, 54, 146, 176, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 209, 213, 214, 215, 218, 219, 226, 229, 230, 231, 245, 256, 257], "flow": [28, 262], "debug": [29, 242], "step": [29, 257], "visual": [29, 68, 219], "extens": [30, 65, 152, 271], "clean": [31, 84], "old": 31, "revis": [31, 73, 99, 243, 268, 271], "code": [31, 36, 248], "tour": [31, 36], "parser": 31, "user": [31, 98, 107, 116, 146, 271], "input": 31, "output": [31, 86, 89, 99, 116, 141], "public": [31, 271], "api": [31, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 271], "builtin": 33, "deploy": [33, 34, 36, 98, 157, 271], "agnost": 35, "deploi": [35, 36, 124], "copi": [36, 196, 257], "all": [36, 70], "graph": [37, 91, 92, 93, 94, 95, 96, 99, 166, 271], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 86, 98, 116, 133, 137, 142, 175, 221, 244, 256, 270], "option": [39, 78, 80, 98, 116, 142, 147, 186, 217, 242, 249, 251, 266], "modul": [41, 158], "tool_requir": [41, 42, 116, 120, 142, 147], "transpar": 41, "autotool": [44, 45, 61, 203], "simpl": [45, 53, 55, 240, 256], "linux": [45, 73], "maco": [45, 203], "cmaketoolchain": [47, 48, 49, 188], "cmakepreset": [47, 48], "gener": [47, 48, 65, 98, 116, 127, 142, 156, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 217, 221, 251], "toolchain": [47, 188], "extend": [48, 80, 175, 188], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 129, 151, 181, 188, 191, 192], "patch": [51, 200, 248], "replace_in_fil": [51, 196], "apply_conandata_patch": [51, 200], "googl": [52, 209], "bazel": [53, 62, 210], "meson": [54, 55, 67, 215, 216, 217], "captur": 56, "git": [56, 227, 252], "scm": [56, 226], "credenti": [56, 145], "c": [57, 149, 217, 236, 249], "document": [57, 70], "instal": [58, 63, 65, 85, 98, 167, 187, 257, 262], "pip": 58, "recommend": 58, "known": 58, "issu": 58, "pipx": 58, "system": [58, 70, 137, 149, 230, 231, 248, 271], "self": [58, 127, 129, 263], "contain": 58, "execut": 58, "android_logo": 60, "autotools_logo": 61, "bazel_logo": 62, "clion_logo": 63, "clion": 63, "introduct": [63, 70, 146, 147, 175, 243], "plugin": [63, 78, 160, 271], "cmake_logo": 64, "jfrog_logo": 65, "jfrog": 65, "info": [65, 91, 96, 116], "how": [65, 81, 203, 231, 241], "gnu_make_logo": 66, "makefil": 66, "meson_logo": 67, "visual_studio_logo": 68, "xcode_logo": 69, "xcode": 69, "open": 70, "decentr": 70, "platform": 70, "compil": [70, 149, 188, 241], "stabl": 70, "commun": [70, 236], "navig": 70, "knowledg": 71, "cheat": 72, "sheet": 72, "faq": 73, "troubleshoot": 73, "error": [73, 244], "miss": 73, "prebuilt": [73, 255], "invalid": 73, "authenticationexcept": 73, "obtain": [73, 191], "window": 73, "core": 74, "guidelin": 74, "good": 74, "practic": 74, "forbidden": 74, "video": 75, "refer": [76, 99, 116, 162, 180, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 224, 231], "The": [77, 78, 79], "model": [77, 80, 116, 241, 251, 271], "compat": [78, 121, 153, 249, 271], "erasur": [78, 131], "package_id": [78, 79, 81, 131, 175, 256, 271], "py": [78, 115, 244, 271], "global": [78, 146, 156], "default": [78, 133, 217], "mode": [78, 79, 261], "effect": [79, 175], "non": [79, 244], "emb": [79, 116], "v": [80, 244], "conf": [80, 98, 116, 146, 147, 180, 182, 185, 188, 198, 205, 207, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224], "target": [80, 187], "comput": 81, "formatt": [82, 91, 155], "path": [84, 98, 106], "check": 84, "home": 85, "show": [85, 106], "add": [88, 101, 107, 149, 247], "export": [89, 90, 116, 125, 165, 262], "format": [89, 99], "pkg": [90, 231, 262], "json": [91, 99, 145, 148, 150], "order": [93, 94], "merg": [94, 103], "explain": 95, "inspect": 97, "profil": [98, 106, 147, 160, 170, 241, 271], "name": [98, 116, 155, 208, 211], "channel": [98, 116], "lockfil": [98, 243, 267, 271], "id": [99, 242, 249], "artifact": 99, "html": 99, "compact": 99, "lock": [100, 101, 102, 103, 104], "templat": [105, 146], "detect": 106, "auth": 107, "disabl": [107, 187], "enabl": 107, "login": [107, 151], "logout": 107, "renam": [107, 196], "search": [109, 173], "test": [111, 133, 138, 175, 248, 254, 259], "server": [114, 237], "paramet": [114, 155], "permiss": 114, "authent": 114, "author": [114, 116], "ssl": 114, "nginx": 114, "subdirectori": 114, "apach": 114, "attribut": [116, 205, 208, 217, 220, 222, 223], "descript": 116, "licens": [116, 257], "topic": 116, "homepag": 116, "url": 116, "build_requir": [116, 120], "test_requir": [116, 120, 142], "python_requir": [116, 156, 175, 264], "python_requires_extend": 116, "exports_sourc": 116, "conan_data": 116, "source_buildenv": 116, "package_typ": [116, 133], "default_opt": 116, "default_build_opt": 116, "options_descript": 116, "package_id_": 116, "non_emb": 116, "unknown": 116, "_mode": 116, "build_polici": 116, "win_bash": 116, "win_bash_run": 116, "folder": [116, 129, 263], "source_fold": 116, "export_sources_fold": 116, "build_fold": 116, "package_fold": 116, "recipe_fold": 116, "recipe_metadata_fold": 116, "package_metadata_fold": 116, "no_copy_sourc": 116, "cpp": [116, 129, 263], "cpp_info": [116, 127, 132], "buildenv_info": [116, 132], "runenv_info": [116, 132], "conf_info": [116, 132], "deprec": [116, 147], "other": [116, 253, 264], "content": [116, 188, 233, 239, 246, 253, 265], "revision_mod": 116, "upload_polici": 116, "required_conan_vers": 116, "implement": [116, 122, 123, 131], "alia": 116, "build_id": 119, "host_vers": 120, "config_opt": 122, "avail": [122, 123, 131, 231], "automat": [122, 123, 131], "auto_shared_fp": [122, 123], "export_sourc": 126, "interfac": [127, 158], "iter": [127, 192], "init": 128, "auto_header_onli": 131, "partial": 131, "properti": [132, 187, 208, 210, 211, 231, 251], "trait": [133, 221], "header": [133, 249, 254], "lib": 133, "visibl": 133, "transitive_head": 133, "transitive_lib": 133, "package_id_mod": 133, "forc": [133, 136], "overrid": [133, 266], "direct": 133, "infer": 133, "each": 133, "kind": 133, "set_nam": 134, "set_vers": 135, "retriev": 136, "system_requir": 137, "collect": 137, "valid": [139, 244], "validate_build": 140, "text": 141, "conanrc": 144, "data": [146, 217], "type": [146, 217, 253], "oper": [146, 149, 196], "pattern": [146, 147], "about": [146, 203, 250], "built": [146, 157, 203, 255], "network": 146, "client": 146, "certif": 146, "ux": 146, "skip": 146, "warn": 146, "section": 147, "system_tool": 147, "buildenv": 147, "runenv": 147, "replace_requir": 147, "replace_tool_requir": 147, "platform_requir": 147, "platform_tool_requir": 147, "render": 147, "includ": 147, "msvc": 149, "intel": [149, 213], "cc": 149, "architectur": 149, "standard": 149, "aka": 149, "libcxx": 149, "sub": 149, "valu": 149, "source_credenti": 150, "conan_hom": 151, "conan_default_profil": 151, "termin": 151, "color": 151, "log": 151, "wrapper": [154, 271], "scope": 155, "decor": 155, "conan_command": 155, "group": 155, "none": 155, "conan_subcommand": 155, "argument": [155, 217], "definit": [155, 191], "pars": 155, "full_deploi": 157, "direct_deploi": 157, "structur": 158, "import": [158, 187, 264], "storag": 158, "activ": 158, "share": [158, 203, 242], "offici": 158, "sign": [159, 271], "python": [161, 175, 271], "base": 175, "class": 175, "reus": 175, "resolut": 175, "android_abi": 177, "appl": [178, 179, 217], "fix_apple_shared_install_nam": 179, "is_apple_o": 179, "to_apple_arch": 179, "xcrun": 179, "xcodebuild": 180, "xcodedep": 181, "addit": 181, "support": [181, 221, 244], "xcodetoolchain": 182, "build_job": 183, "cross_build": 183, "can_run": 183, "cppstd": 183, "check_min_cppstd": 183, "check_max_cppstd": 183, "valid_min_cppstd": 183, "valid_max_cppstd": 183, "default_cppstd": 183, "supported_cppstd": 183, "cmake_layout": 186, "multi": [186, 267, 271], "cmakedep": 187, "build_context_activ": [187, 208, 211], "build_context_suffix": [187, 208], "build_context_build_modul": 187, "check_components_exist": 187, "overwrit": 187, "side": 187, "set_properti": 187, "For": 187, "map": 187, "": [187, 271], "preprocessor_definit": [188, 217], "cache_vari": 188, "user_presets_path": 188, "extra": 188, "flag": [188, 206], "presets_prefix": 188, "advanc": 188, "block": 188, "cppinfo": 189, "aggreg": 189, "env": 190, "composit": 191, "envvar": 192, "appli": 192, "virtualbuildenv": 193, "virtualrunenv": 194, "basic": 196, "load": 196, "rm": 196, "mkdir": 196, "rmdir": 196, "chdir": 196, "unzip": 196, "update_conandata": 196, "trim_conandata": 196, "collect_lib": 196, "checksum": 197, "check_md5": 197, "check_sha1": 197, "check_sha256": 197, "get": 198, "ftp_download": 198, "autopackag": 199, "export_conandata_patch": 200, "symlink": [201, 257], "absolute_to_relative_symlink": 201, "remove_external_symlink": 201, "remove_broken_symlink": 201, "gnu": 202, "A": [203, 250, 256], "note": [203, 250], "relocat": 203, "helper": 203, "why": 203, "thi": 203, "problem": 203, "address": 203, "autotoolsdep": 204, "autotoolstoolchain": 205, "configure_arg": 205, "make_arg": 205, "autoreconf_arg": 205, "makedep": 206, "pkgconfig": 207, "pkgconfigdep": 208, "bazeldep": 211, "bazeltoolchain": 212, "intelcc": 213, "predefin": 214, "basic_layout": 214, "mesontoolchain": 217, "conan_meson_n": 217, "ini": 217, "conan_meson_cross": 217, "directori": 217, "project_opt": 217, "proper": 217, "object": 217, "microsoft": [218, 219], "check_min_v": 219, "msvc_runtime_flag": 219, "is_msvc": 219, "is_msvc_static_runtim": 219, "msvs_toolset": 219, "subsystem": 219, "unix_path": 219, "msbuild": 220, "msbuilddep": 221, "msbuildtoolchain": 222, "nmakedep": 223, "nmaketoolchain": 223, "constructor": 223, "vcvar": 224, "vs_layout": 225, "scon": 229, "sconsdep": 229, "package_manag": 231, "affect": 231, "ar": 231, "invok": 231, "apk": 231, "apt": 231, "yum": 231, "dnf": 231, "pacman": 231, "zypper": 231, "brew": 231, "pkgutil": 231, "chocolatei": 231, "tutori": 232, "work": [233, 261], "tabl": [233, 239, 246, 253, 265], "contribut": 234, "center": 234, "ce": 236, "context": 241, "two": 241, "static": 242, "modifi": 242, "its": 242, "link": 242, "between": 242, "concept": 242, "understand": [244, 263], "flexibl": 244, "rais": 244, "condit": 244, "chang": [248, 251], "condition": 248, "select": 248, "onli": [249, 254], "first": 250, "specif": 251, "zip": 252, "store": 252, "branch": 252, "conandata": 252, "local": [255, 260], "alreadi": 255, "prepar": 258, "put": 261, "sai": 261, "revert": 261, "featur": 264, "unus": 264, "conflict": 266, "resolv": 266, "evolv": 267, "semant": 269, "express": 269, "autom": 270, "what": 271, "migrat": 271, "cli": 271, "checker": 271, "immut": 271, "optim": 271}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"Page Not Found": [[0, "page-not-found"]], "Changelog": [[1, "changelog"]], "2.0.17 (10-Jan-2024)": [[1, "jan-2024"]], "2.0.16 (21-Dec-2023)": [[1, "dec-2023"]], "2.0.15 (20-Dec-2023)": [[1, "id8"]], "2.0.14 (14-Nov-2023)": [[1, "nov-2023"]], "2.0.13 (28-Sept-2023)": [[1, "sept-2023"]], "2.0.12 (26-Sept-2023)": [[1, "id90"]], "2.0.11 (18-Sept-2023)": [[1, "id102"]], "2.0.10 (29-Aug-2023)": [[1, "aug-2023"]], "2.0.9 (19-Jul-2023)": [[1, "jul-2023"]], "2.0.8 (13-Jul-2023)": [[1, "id188"]], "2.0.7 (21-Jun-2023)": [[1, "jun-2023"]], "2.0.6 (26-May-2023)": [[1, "may-2023"]], "2.0.5 (18-May-2023)": [[1, "id257"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id317"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id366"]], "2.0.0 (22-Feb-2023)": [[1, "feb-2023"]], "2.0.0-beta10 (16-Feb-2023)": [[1, "beta10-16-feb-2023"]], "2.0.0-beta9 (31-Jan-2023)": [[1, "beta9-31-jan-2023"]], "2.0.0-beta8 (12-Jan-2023)": [[1, "beta8-12-jan-2023"]], "2.0.0-beta7 (22-Dec-2022)": [[1, "beta7-22-dec-2022"]], "2.0.0-beta6 (02-Dec-2022)": [[1, "beta6-02-dec-2022"]], "2.0.0-beta5 (11-Nov-2022)": [[1, "beta5-11-nov-2022"]], "2.0.0-beta4 (11-Oct-2022)": [[1, "beta4-11-oct-2022"]], "2.0.0-beta3 (12-Sept-2022)": [[1, "beta3-12-sept-2022"]], "2.0.0-beta2 (27-Jul-2022)": [[1, "beta2-27-jul-2022"]], "2.0.0-beta1 (20-Jun-2022)": [[1, "beta1-20-jun-2022"]], "Devops guide": [[2, "devops-guide"]], "Creating an Artifactory backup repo for your sources": [[3, "creating-an-artifactory-backup-repo-for-your-sources"]], "Backing up third-party sources with Conan": [[4, "backing-up-third-party-sources-with-conan"]], "Configuration overview": [[4, "configuration-overview"]], "Usage": [[4, "usage"]], "Setting up the necessary configs": [[4, "setting-up-the-necessary-configs"]], "Run Conan as normal": [[4, "run-conan-as-normal"]], "Upload the packages": [[4, "upload-the-packages"]], "Creating the backup repository": [[4, "creating-the-backup-repository"]], "Creating and hosting your own ConanCenter binaries": [[5, "creating-and-hosting-your-own-conancenter-binaries"]], "Updating from upstream": [[5, "updating-from-upstream"]], "Managing package metadata files": [[6, "managing-package-metadata-files"]], "Creating metadata in recipes": [[6, "creating-metadata-in-recipes"]], "Creating metadata with hooks": [[6, "creating-metadata-with-hooks"]], "Adding metadata with commands": [[6, "adding-metadata-with-commands"]], "Uploading metadata": [[6, "uploading-metadata"]], "Downloading metadata": [[6, "downloading-metadata"], [87, "downloading-metadata"]], "Removing metadata": [[6, "removing-metadata"]], "test_package as metadata": [[6, "test-package-as-metadata"]], "Save and restore packages from/to the cache": [[7, "save-and-restore-packages-from-to-the-cache"]], "Using ConanCenter packages in production environments": [[8, "using-conancenter-packages-in-production-environments"]], "Repeatability and reproducibility": [[8, "repeatability-and-reproducibility"]], "Service reliability": [[8, "service-reliability"]], "Compliance and security": [[8, "compliance-and-security"]], "Control and customization": [[8, "control-and-customization"]], "Versioning": [[9, "versioning"], [265, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [105, "examples"]], "Conan commands examples": [[12, "conan-commands-examples"]], "Using packages-lists": [[13, "using-packages-lists"]], "Listing packages and downloading them": [[13, "listing-packages-and-downloading-them"]], "Downloading from one remote and uploading to a different remote": [[13, "downloading-from-one-remote-and-uploading-to-a-different-remote"]], "Building and uploading packages": [[13, "building-and-uploading-packages"]], "Removing packages lists": [[13, "removing-packages-lists"]], "ConanFile methods examples": [[14, "conanfile-methods-examples"]], "ConanFile layout() examples": [[15, "conanfile-layout-examples"]], "Declaring the layout when the Conanfile is inside a subfolder": [[16, "declaring-the-layout-when-the-conanfile-is-inside-a-subfolder"]], "Using components and editable packages": [[17, "using-components-and-editable-packages"]], "Declaring the layout when we have multiple subprojects": [[18, "declaring-the-layout-when-we-have-multiple-subprojects"]], "Declaring the layout when creating packages for third-party libraries": [[19, "declaring-the-layout-when-creating-packages-for-third-party-libraries"]], "ConanFile package_info() examples": [[20, "conanfile-package-info-examples"]], "Define components for Conan packages that provide multiple libraries": [[21, "define-components-for-conan-packages-that-provide-multiple-libraries"], [251, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [251, "propagating-environment-or-configuration-information-to-consumers"]], "Configuration files examples": [[23, "configuration-files-examples"]], "Customize your settings: create your settings_user.yml": [[24, "customize-your-settings-create-your-settings-user-yml"]], "Locate the settings_user.yml": [[24, "locate-the-settings-user-yml"]], "Use your new settings": [[24, "use-your-new-settings"]], "Cross-building examples": [[25, "cross-building-examples"]], "Integrating Conan in Android Studio": [[26, "integrating-conan-in-android-studio"]], "Creating a new project": [[26, "creating-a-new-project"]], "Introducing dependencies with Conan": [[26, "introducing-dependencies-with-conan"]], "conanfile.txt": [[26, "conanfile-txt"], [142, "conanfile-txt"]], "build.gradle": [[26, "build-gradle"]], "conan_android_toolchain.cmake": [[26, "conan-android-toolchain-cmake"]], "CMakeLists.txt": [[26, "cmakelists-txt"]], "Building the application": [[26, "building-the-application"]], "Cross building to Android with the NDK": [[27, "cross-building-to-android-with-the-ndk"]], "Read more": [[27, "read-more"], [107, "read-more"], [112, "read-more"], [142, "read-more"], [155, "read-more"], [162, "read-more"], [217, "read-more"], [238, "read-more"], [240, "read-more"], [241, "read-more"], [242, "read-more"], [243, "read-more"], [244, "read-more"], [245, "read-more"], [247, "read-more"], [248, "read-more"], [249, "read-more"], [250, "read-more"], [251, "read-more"], [252, "read-more"], [256, "read-more"], [257, "read-more"], [258, "read-more"], [259, "read-more"], [267, "read-more"]], "Developer tools and flows": [[28, "developer-tools-and-flows"]], "Debugging and stepping into dependencies": [[29, "debugging-and-stepping-into-dependencies"]], "Building from source": [[29, "building-from-source"]], "Step into a dependency with Visual Studio": [[29, "step-into-a-dependency-with-visual-studio"]], "Conan extensions examples": [[30, "conan-extensions-examples"]], "Custom command: Clean old recipe and package revisions": [[31, "custom-command-clean-old-recipe-and-package-revisions"]], "Locate the command": [[31, "locate-the-command"]], "Run it": [[31, "run-it"], [36, "run-it"]], "Code tour": [[31, "code-tour"], [36, "code-tour"]], "parser": [[31, "parser"]], "User input and user output": [[31, "user-input-and-user-output"]], "Conan public API": [[31, "conan-public-api"]], "Custom commands": [[32, "custom-commands"], [155, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [157, "custom-deployers"]], "Creating a Conan-agnostic deploy of dependencies for developer use": [[35, "creating-a-conan-agnostic-deploy-of-dependencies-for-developer-use"]], "Copy sources from all your dependencies": [[36, "copy-sources-from-all-your-dependencies"]], "Locate the deployer": [[36, "locate-the-deployer"]], "deploy()": [[36, "deploy"], [124, "deploy"]], "Graph examples": [[37, "graph-examples"]], "Use a CMake macro packaged in a dependency": [[38, "use-a-cmake-macro-packaged-in-a-dependency"]], "Depending on same version of a tool-require with different options": [[39, "depending-on-same-version-of-a-tool-require-with-different-options"]], "Depending on different versions of the same tool-require": [[40, "depending-on-different-versions-of-the-same-tool-require"]], "Use cmake modules inside a tool_requires transparently": [[41, "use-cmake-modules-inside-a-tool-requires-transparently"]], "Using the same requirement as a requires and as a tool_requires": [[42, "using-the-same-requirement-as-a-requires-and-as-a-tool-requires"]], "Conan recipe tools examples": [[43, "conan-recipe-tools-examples"]], "tools.autotools": [[44, "tools-autotools"]], "Build a simple Autotools project using Conan": [[45, "build-a-simple-autotools-project-using-conan"]], "Building on Linux and macOS": [[45, "building-on-linux-and-macos"]], "tools.cmake": [[46, "tools-cmake"]], "CMakeToolchain: Building your project using CMakePresets": [[47, "cmaketoolchain-building-your-project-using-cmakepresets"]], "Generating the toolchain": [[47, "generating-the-toolchain"]], "Building the project using CMakePresets": [[47, "building-the-project-using-cmakepresets"]], "CMakeToolchain: Extending your CMakePresets with Conan generated ones": [[48, "cmaketoolchain-extending-your-cmakepresets-with-conan-generated-ones"]], "CMakeToolchain: Inject arbitrary CMake variables into dependencies": [[49, "cmaketoolchain-inject-arbitrary-cmake-variables-into-dependencies"]], "tools.files": [[50, "tools-files"]], "Patching sources": [[51, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[51, "patching-using-replace-in-file"]], "in source() method": [[51, "in-source-method"]], "in build() method": [[51, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[51, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[51, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[52, "tools-google"]], "Build a simple Bazel project using Conan": [[53, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[54, "tools-meson"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Capturing Git scm information": [[56, "capturing-git-scm-information"]], "Credentials management": [[56, "credentials-management"]], "Conan 2.0 - C and C++ Package Manager Documentation": [[57, "conan-2-0-c-and-c-package-manager-documentation"]], "Install": [[58, "install"]], "Install with pip (recommended)": [[58, "install-with-pip-recommended"]], "Known installation issues with pip": [[58, "known-installation-issues-with-pip"]], "Update": [[58, "update"]], "Install with pipx": [[58, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[58, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[58, "install-from-source"]], "Integrations": [[59, "integrations"]], "android_logo Android": [[60, "android-logo-android"]], "autotools_logo Autotools": [[61, "autotools-logo-autotools"]], "bazel_logo Bazel": [[62, "bazel-logo-bazel"]], "clion_logo CLion": [[63, "clion-logo-clion"]], "Introduction": [[63, "introduction"], [70, "introduction"], [175, "introduction"]], "Installing the plugin": [[63, "installing-the-plugin"]], "Configuring the plugin": [[63, "configuring-the-plugin"]], "Using the plugin": [[63, "using-the-plugin"]], "cmake_logo CMake": [[64, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[65, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[65, "artifactory-build-info"]], "How to install the build info extension commands": [[65, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[65, "generating-a-build-info"]], "gnu_make_logo Makefile": [[66, "gnu-make-logo-makefile"]], "meson_logo Meson": [[67, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[68, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[69, "xcode-logo-xcode"]], "Open Source": [[70, "open-source"]], "Decentralized package manager": [[70, "decentralized-package-manager"]], "Binary management": [[70, "binary-management"]], "All platforms, all build systems and compilers": [[70, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[70, "stable"]], "Community": [[70, "community"]], "Navigating the documentation": [[70, "navigating-the-documentation"]], "Knowledge": [[71, "knowledge"]], "Cheat sheet": [[72, "cheat-sheet"]], "FAQ": [[73, "faq"]], "Troubleshooting": [[73, "troubleshooting"]], "ERROR: Missing prebuilt package": [[73, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[73, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[73, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[73, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[74, "core-guidelines"]], "Good practices": [[74, "good-practices"]], "Forbidden practices": [[74, "forbidden-practices"]], "Videos": [[75, "videos"]], "Reference": [[76, "reference"], [180, "reference"], [185, "reference"], [186, "reference"], [187, "reference"], [188, "reference"], [191, "reference"], [192, "reference"], [193, "reference"], [194, "reference"], [203, "reference"], [204, "reference"], [205, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [213, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [222, "reference"], [224, "reference"], [231, "reference"], [231, "id4"], [231, "id6"], [231, "id7"], [231, "id8"], [231, "id9"], [231, "id10"], [231, "id11"], [231, "id12"]], "The binary model": [[77, "the-binary-model"]], "Customizing the binary compatibility": [[78, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[78, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[78, "information-erasure-in-package-id-method"]], "The compatibility() method": [[78, "the-compatibility-method"]], "The compatibility.py plugin": [[78, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[78, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[78, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[78, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[78, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[79, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[79, "non-embed-mode"]], "Embed mode": [[79, "embed-mode"]], "Extending the binary model": [[80, "extending-the-binary-model"]], "Custom settings": [[80, "custom-settings"]], "Custom options": [[80, "custom-options"]], "Settings vs options vs conf": [[80, "settings-vs-options-vs-conf"]], "Custom configuration": [[80, "custom-configuration"]], "Cross build target settings": [[80, "cross-build-target-settings"]], "How the package_id is computed": [[81, "how-the-package-id-is-computed"]], "Commands": [[82, "commands"]], "Command formatters": [[82, "command-formatters"]], "conan build": [[83, "conan-build"], [262, "conan-build"]], "conan cache": [[84, "conan-cache"]], "conan cache path": [[84, "conan-cache-path"]], "conan cache clean": [[84, "conan-cache-clean"]], "conan cache check-integrity": [[84, "conan-cache-check-integrity"]], "conan cache backup-upload": [[84, "conan-cache-backup-upload"]], "conan cache save": [[84, "conan-cache-save"]], "conan cache restore": [[84, "conan-cache-restore"]], "conan config": [[85, "conan-config"]], "conan config home": [[85, "conan-config-home"]], "conan config install": [[85, "conan-config-install"]], "conan config list": [[85, "conan-config-list"]], "conan config show": [[85, "conan-config-show"]], "conan create": [[86, "conan-create"]], "Using conan create with build requirements": [[86, "using-conan-create-with-build-requirements"]], "Conan create output": [[86, "conan-create-output"]], "conan download": [[87, "conan-download"]], "conan editable": [[88, "conan-editable"]], "conan editable add": [[88, "conan-editable-add"]], "conan editable remove": [[88, "conan-editable-remove"]], "conan editable list": [[88, "conan-editable-list"]], "conan export": [[89, "conan-export"]], "Output Formats": [[89, "output-formats"]], "conan export-pkg": [[90, "conan-export-pkg"], [262, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[91, "formatter-graph-info-json"]], "conan graph": [[92, "conan-graph"]], "conan graph build-order": [[93, "conan-graph-build-order"]], "conan graph build-order-merge": [[94, "conan-graph-build-order-merge"]], "conan graph explain": [[95, "conan-graph-explain"]], "conan graph info": [[96, "conan-graph-info"]], "conan inspect": [[97, "conan-inspect"]], "conan install": [[98, "conan-install"], [262, "conan-install"]], "Conanfile path or \u2013requires": [[98, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[98, "profiles-settings-options-conf"]], "Generators and deployers": [[98, "generators-and-deployers"]], "Name, version, user, channel": [[98, "name-version-user-channel"]], "Lockfiles": [[98, "lockfiles"], [243, "lockfiles"], [267, "lockfiles"]], "conan list": [[99, "conan-list"]], "Listing recipe references": [[99, "listing-recipe-references"]], "Listing recipe revisions": [[99, "listing-recipe-revisions"]], "Listing package IDs": [[99, "listing-package-ids"]], "Listing package revisions": [[99, "listing-package-revisions"]], "Listing graph artifacts": [[99, "listing-graph-artifacts"]], "List json output format": [[99, "list-json-output-format"]], "List html output format": [[99, "list-html-output-format"]], "List compact output format": [[99, "list-compact-output-format"]], "conan lock": [[100, "conan-lock"]], "conan lock add": [[101, "conan-lock-add"]], "conan lock create": [[102, "conan-lock-create"]], "conan lock merge": [[103, "conan-lock-merge"]], "conan lock remove": [[104, "conan-lock-remove"]], "conan new": [[105, "conan-new"], [105, "id1"]], "Custom templates": [[105, "custom-templates"]], "conan profile": [[106, "conan-profile"]], "conan profile detect": [[106, "conan-profile-detect"]], "conan profile list": [[106, "conan-profile-list"]], "conan profile path": [[106, "conan-profile-path"]], "conan profile show": [[106, "conan-profile-show"]], "conan remote": [[107, "conan-remote"]], "conan remote add": [[107, "conan-remote-add"]], "conan remote auth": [[107, "conan-remote-auth"]], "conan remote disable": [[107, "conan-remote-disable"]], "conan remote enable": [[107, "conan-remote-enable"]], "conan remote list": [[107, "conan-remote-list"]], "conan remote list-users": [[107, "conan-remote-list-users"]], "conan remote login": [[107, "conan-remote-login"]], "conan remote logout": [[107, "conan-remote-logout"]], "conan remote remove": [[107, "conan-remote-remove"]], "conan remote rename": [[107, "conan-remote-rename"]], "conan remote set-user": [[107, "conan-remote-set-user"]], "conan remote update": [[107, "conan-remote-update"]], "conan remove": [[108, "conan-remove"]], "conan search": [[109, "conan-search"]], "conan source": [[110, "conan-source"], [262, "conan-source"]], "conan test": [[111, "conan-test"]], "conan upload": [[112, "conan-upload"]], "conan version": [[113, "conan-version"]], "Conan Server": [[114, "conan-server"]], "Configuration": [[114, "configuration"]], "Server Parameters": [[114, "server-parameters"]], "Permissions Parameters": [[114, "permissions-parameters"]], "Authentication": [[114, "authentication"]], "Create Your Own Custom Authenticator": [[114, "create-your-own-custom-authenticator"]], "Authorizations": [[114, "authorizations"]], "Create Your Own Custom Authorizer": [[114, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[114, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[114, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[114, "running-conan-server-using-apache"]], "conanfile.py": [[115, "conanfile-py"]], "Attributes": [[116, "attributes"], [208, "attributes"], [217, "attributes"], [222, "attributes"], [223, "attributes"]], "Package reference": [[116, "package-reference"]], "name": [[116, "name"]], "version": [[116, "version"]], "user": [[116, "user"]], "channel": [[116, "channel"]], "Metadata": [[116, "metadata"]], "description": [[116, "description"]], "license": [[116, "license"]], "author": [[116, "author"]], "topics": [[116, "topics"]], "homepage": [[116, "homepage"]], "url": [[116, "url"]], "Requirements": [[116, "requirements"]], "requires": [[116, "requires"]], "tool_requires": [[116, "tool-requires"]], "build_requires": [[116, "build-requires"]], "test_requires": [[116, "test-requires"], [120, "test-requires"]], "python_requires": [[116, "python-requires"], [264, "python-requires"]], "python_requires_extend": [[116, "python-requires-extend"]], "Sources": [[116, "sources"]], "exports": [[116, "exports"]], "exports_sources": [[116, "exports-sources"]], "conan_data": [[116, "conan-data"]], "source_buildenv": [[116, "source-buildenv"]], "Binary model": [[116, "binary-model"]], "package_type": [[116, "package-type"]], "settings": [[116, "settings"]], "options": [[116, "options"]], "default_options": [[116, "default-options"]], "default_build_options": [[116, "default-build-options"]], "options_description": [[116, "options-description"]], "info": [[116, "info"]], "package_id_{embed,non_embed,unknown}_mode": [[116, "package-id-embed-non-embed-unknown-mode"]], "Build": [[116, "build"]], "generators": [[116, "generators"]], "build_policy": [[116, "build-policy"]], "win_bash": [[116, "win-bash"]], "win_bash_run": [[116, "win-bash-run"]], "Folders and layout": [[116, "folders-and-layout"]], "source_folder": [[116, "source-folder"]], "export_sources_folder": [[116, "export-sources-folder"]], "build_folder": [[116, "build-folder"]], "package_folder": [[116, "package-folder"]], "recipe_folder": [[116, "recipe-folder"]], "recipe_metadata_folder": [[116, "recipe-metadata-folder"]], "package_metadata_folder": [[116, "package-metadata-folder"]], "no_copy_source": [[116, "no-copy-source"]], "Layout": [[116, "layout"]], "folders": [[116, "folders"]], "cpp": [[116, "cpp"]], "layouts": [[116, "layouts"]], "Package information for consumers": [[116, "package-information-for-consumers"]], "cpp_info": [[116, "cpp-info"]], "buildenv_info": [[116, "buildenv-info"]], "runenv_info": [[116, "runenv-info"]], "conf_info": [[116, "conf-info"], [132, "conf-info"]], "deprecated": [[116, "deprecated"]], "provides": [[116, "provides"]], "Other": [[116, "other"]], "dependencies": [[116, "dependencies"]], "conf": [[116, "conf"], [180, "conf"], [182, "conf"], [185, "conf"], [188, "conf"], [198, "conf"], [205, "conf"], [207, "conf"], [210, "conf"], [212, "conf"], [213, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [222, "conf"], [223, "conf"], [224, "conf"]], "Output": [[116, "output"]], "Output contents": [[116, "output-contents"]], "revision_mode": [[116, "revision-mode"]], "upload_policy": [[116, "upload-policy"]], "required_conan_version": [[116, "required-conan-version"]], "implements": [[116, "implements"]], "alias": [[116, "alias"]], "Methods": [[117, "methods"]], "build()": [[118, "build"]], "build_id()": [[119, "build-id"]], "build_requirements()": [[120, "build-requirements"]], "tool_requires()": [[120, "tool-requires"]], "": [[120, "host-version"]], "compatibility()": [[121, "compatibility"]], "config_options()": [[122, "config-options"]], "Available automatic implementations": [[122, "available-automatic-implementations"], [123, "available-automatic-implementations"], [131, "available-automatic-implementations"]], "auto_shared_fpic": [[122, "auto-shared-fpic"], [123, "auto-shared-fpic"]], "configure()": [[123, "configure"]], "export()": [[125, "export"]], "export_sources()": [[126, "export-sources"]], "generate()": [[127, "generate"]], "self.dependencies": [[127, "self-dependencies"]], "Dependencies interface": [[127, "dependencies-interface"]], "Iterating dependencies": [[127, "iterating-dependencies"]], "Dependencies cpp_info interface": [[127, "dependencies-cpp-info-interface"]], "init()": [[128, "init"]], "layout()": [[129, "layout"]], "self.folders": [[129, "self-folders"], [263, "self-folders"]], "self.cpp": [[129, "self-cpp"], [263, "self-cpp"]], "Environment variables and configuration": [[129, "environment-variables-and-configuration"]], "package()": [[130, "package"]], "package_id()": [[131, "package-id"]], "auto_header_only": [[131, "auto-header-only"]], "Information erasure": [[131, "information-erasure"]], "Partial information erasure": [[131, "partial-information-erasure"]], "Adding information": [[131, "adding-information"]], "package_info()": [[132, "package-info"]], "cpp_info: Library and build information": [[132, "cpp-info-library-and-build-information"]], "Properties": [[132, "properties"], [187, "properties"], [208, "properties"], [210, "properties"], [211, "properties"]], "Components": [[132, "components"]], "buildenv_info, runenv_info": [[132, "buildenv-info-runenv-info"]], "requirements()": [[133, "requirements"]], "Requirement traits": [[133, "requirement-traits"]], "headers": [[133, "headers"]], "libs": [[133, "libs"]], "build": [[133, "build"]], "run": [[133, "run"]], "visible": [[133, "visible"]], "transitive_headers": [[133, "transitive-headers"]], "transitive_libs": [[133, "transitive-libs"]], "test": [[133, "test"]], "package_id_mode": [[133, "package-id-mode"]], "force": [[133, "force"]], "override": [[133, "override"]], "direct": [[133, "direct"]], "package_type trait inferring": [[133, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[133, "default-traits-for-each-kind-of-requires"]], "set_name()": [[134, "set-name"]], "set_version()": [[135, "set-version"]], "source()": [[136, "source"]], "Source caching": [[136, "source-caching"]], "Forced retrieval of sources": [[136, "forced-retrieval-of-sources"]], "system_requirements()": [[137, "system-requirements"]], "Collecting system requirements": [[137, "collecting-system-requirements"]], "test()": [[138, "test"]], "validate()": [[139, "validate"]], "validate_build()": [[140, "validate-build"]], "Running and output": [[141, "running-and-output"]], "Output text from recipes": [[141, "output-text-from-recipes"]], "Running commands": [[141, "running-commands"]], "[requires]": [[142, "requires"]], "[tool_requires]": [[142, "tool-requires"], [147, "tool-requires"]], "[test_requires]": [[142, "test-requires"]], "[generators]": [[142, "generators"]], "[options]": [[142, "options"], [147, "options"]], "[layout]": [[142, "layout"]], "Configuration files": [[143, "configuration-files"]], ".conanrc": [[144, "conanrc"]], "credentials.json": [[145, "credentials-json"]], "global.conf": [[146, "global-conf"]], "Introduction to configuration": [[146, "introduction-to-configuration"]], "User/Tools configurations": [[146, "user-tools-configurations"]], "Configuration file template": [[146, "configuration-file-template"]], "Configuration data types": [[146, "configuration-data-types"]], "Configuration data operators": [[146, "configuration-data-operators"]], "Configuration patterns": [[146, "configuration-patterns"]], "Information about built-in confs": [[146, "information-about-built-in-confs"]], "Networking confs": [[146, "networking-confs"]], "Configuration of client certificates": [[146, "configuration-of-client-certificates"]], "UX confs": [[146, "ux-confs"]], "Skip warnings": [[146, "skip-warnings"]], "profiles": [[147, "profiles"]], "Introduction to profiles": [[147, "introduction-to-profiles"]], "Profile sections": [[147, "profile-sections"]], "[settings]": [[147, "settings"]], "[system_tools] (DEPRECATED)": [[147, "system-tools-deprecated"]], "[buildenv]": [[147, "buildenv"]], "[runenv]": [[147, "runenv"]], "[conf]": [[147, "conf"]], "[replace_requires]": [[147, "replace-requires"]], "[replace_tool_requires]": [[147, "replace-tool-requires"]], "[platform_requires]": [[147, "platform-requires"]], "[platform_tool_requires]": [[147, "platform-tool-requires"]], "Profile rendering": [[147, "profile-rendering"]], "Profile patterns": [[147, "profile-patterns"]], "Profile includes": [[147, "profile-includes"]], "remotes.json": [[148, "remotes-json"]], "settings.yml": [[149, "settings-yml"]], "Operating systems": [[149, "operating-systems"]], "Compilers": [[149, "compilers"]], "msvc": [[149, "msvc"]], "intel-cc": [[149, "intel-cc"]], "Architectures": [[149, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[149, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[149, "customizing-settings"]], "Adding new settings": [[149, "adding-new-settings"]], "Adding new sub-settings": [[149, "adding-new-sub-settings"]], "Add new values": [[149, "add-new-values"]], "settings_user.yml": [[149, "settings-user-yml"]], "source_credentials.json": [[150, "source-credentials-json"]], "Environment variables": [[151, "environment-variables"]], "CONAN_HOME": [[151, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[151, "conan-default-profile"]], "Remote login variables": [[151, "remote-login-variables"]], "Terminal color variables": [[151, "terminal-color-variables"]], "Logging": [[151, "logging"]], "Extensions": [[152, "extensions"]], "Binary compatibility": [[153, "binary-compatibility"]], "Command wrapper": [[154, "command-wrapper"], [271, "command-wrapper"]], "Location and naming": [[155, "location-and-naming"]], "Scoping": [[155, "scoping"]], "Decorators": [[155, "decorators"]], "conan_command(group=None, formatters=None)": [[155, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[155, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[155, "argument-definition-and-parsing"]], "Formatters": [[155, "formatters"]], "Commands parameters": [[155, "commands-parameters"]], "Custom Conan generators": [[156, "custom-conan-generators"]], "Custom generators as python_requires": [[156, "custom-generators-as-python-requires"]], "Using global custom generators": [[156, "using-global-custom-generators"]], "Deployers": [[157, "deployers"]], "Built-in deployers": [[157, "built-in-deployers"]], "full_deploy": [[157, "full-deploy"]], "direct_deploy": [[157, "direct-deploy"]], "configuration": [[157, "configuration"], [187, "configuration"]], "Hooks": [[158, "hooks"]], "Hook structure": [[158, "hook-structure"]], "Importing from a module": [[158, "importing-from-a-module"]], "Hook interface": [[158, "hook-interface"]], "Storage, activation and sharing": [[158, "storage-activation-and-sharing"]], "Official Hooks": [[158, "official-hooks"]], "Package signing": [[159, "package-signing"], [271, "package-signing"]], "Profile plugin": [[160, "profile-plugin"]], "Python API": [[161, "python-api"]], "Conan API Reference": [[162, "conan-api-reference"]], "Config API": [[163, "config-api"]], "Download API": [[164, "download-api"]], "Export API": [[165, "export-api"]], "Graph API": [[166, "graph-api"]], "Install API": [[167, "install-api"]], "List API": [[168, "list-api"]], "New API": [[169, "new-api"]], "Profiles API": [[170, "profiles-api"]], "Remotes API": [[171, "remotes-api"]], "Remove API": [[172, "remove-api"]], "Search API": [[173, "search-api"]], "Upload API": [[174, "upload-api"]], "Python requires": [[175, "python-requires"]], "Extending base classes": [[175, "extending-base-classes"]], "Reusing files": [[175, "reusing-files"]], "Testing python-requires": [[175, "testing-python-requires"]], "Effect in package_id": [[175, "effect-in-package-id"]], "Resolution of python_requires": [[175, "resolution-of-python-requires"]], "Recipe tools": [[176, "recipe-tools"]], "conan.tools.android": [[177, "conan-tools-android"]], "android_abi()": [[177, "android-abi"]], "conan.tools.apple": [[178, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[179, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[179, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[179, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[179, "conan-tools-apple-xcrun"]], "XcodeBuild": [[180, "xcodebuild"]], "XcodeDeps": [[181, "xcodedeps"]], "Additional variables defined": [[181, "additional-variables-defined"]], "Components support": [[181, "components-support"]], "Custom configurations": [[181, "custom-configurations"], [213, "custom-configurations"]], "XcodeToolchain": [[182, "xcodetoolchain"]], "conan.tools.build": [[183, "conan-tools-build"]], "Building": [[183, "building"]], "conan.tools.build.build_jobs()": [[183, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[183, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[183, "conan-tools-build-can-run"]], "Cppstd": [[183, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[183, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[183, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[183, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[183, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[183, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[183, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[184, "conan-tools-cmake"]], "CMake": [[185, "cmake"]], "cmake_layout": [[186, "cmake-layout"]], "Multi-setting/option cmake_layout": [[186, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[187, "cmakedeps"]], "Generated files": [[187, "generated-files"], [188, "generated-files"], [193, "generated-files"], [194, "generated-files"], [204, "generated-files"], [205, "generated-files"], [206, "generated-files"], [208, "generated-files"], [211, "generated-files"], [212, "generated-files"], [217, "generated-files"], [221, "generated-files"]], "Customization": [[187, "customization"], [188, "customization"], [204, "customization"], [205, "customization"], [206, "customization"], [208, "customization"], [211, "customization"], [217, "customization"], [220, "customization"], [221, "customization"], [222, "customization"], [224, "customization"]], "build_context_activated": [[187, "build-context-activated"], [208, "build-context-activated"], [211, "build-context-activated"]], "build_context_suffix": [[187, "build-context-suffix"], [208, "build-context-suffix"]], "build_context_build_modules": [[187, "build-context-build-modules"]], "check_components_exist": [[187, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[187, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[187, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[187, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[188, "cmaketoolchain"]], "preprocessor_definitions": [[188, "preprocessor-definitions"], [217, "preprocessor-definitions"]], "cache_variables": [[188, "cache-variables"]], "variables": [[188, "variables"]], "user_presets_path": [[188, "user-presets-path"]], "Extra compilation flags": [[188, "extra-compilation-flags"]], "presets_prefix": [[188, "presets-prefix"]], "Using a custom toolchain file": [[188, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[188, "extending-and-advanced-customization"]], "Customizing the content blocks": [[188, "customizing-the-content-blocks"]], "Cross building": [[188, "cross-building"]], "conan.tools.CppInfo": [[189, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[189, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[190, "conan-tools-env"]], "Environment": [[191, "environment"]], "Variable declaration": [[191, "variable-declaration"]], "Composition": [[191, "composition"]], "Obtaining environment variables": [[191, "obtaining-environment-variables"]], "Environment definition": [[191, "environment-definition"]], "EnvVars": [[192, "envvars"]], "Creating environment files": [[192, "creating-environment-files"]], "Running with environment files": [[192, "running-with-environment-files"]], "Applying the environment variables": [[192, "applying-the-environment-variables"]], "Iterating the variables": [[192, "iterating-the-variables"]], "VirtualBuildEnv": [[193, "virtualbuildenv"]], "VirtualRunEnv": [[194, "virtualrunenv"]], "conan.tools.files": [[195, "conan-tools-files"]], "conan.tools.files basic operations": [[196, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[196, "conan-tools-files-copy"]], "conan.tools.files.load()": [[196, "conan-tools-files-load"]], "conan.tools.files.save()": [[196, "conan-tools-files-save"]], "conan.tools.files.rename()": [[196, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[196, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[196, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[196, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[196, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[196, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[196, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[196, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[196, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[196, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[197, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[197, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[197, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[197, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[198, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[198, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[198, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[198, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[199, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[200, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[200, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[200, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[200, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[201, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[201, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[201, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[201, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[202, "conan-tools-gnu"]], "Autotools": [[203, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[203, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[203, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[203, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[204, "autotoolsdeps"]], "AutotoolsToolchain": [[205, "autotoolstoolchain"]], "Customizing the environment": [[205, "customizing-the-environment"], [223, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[205, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[206, "makedeps"]], "Flags": [[206, "flags"]], "PkgConfig": [[207, "pkgconfig"]], "PkgConfigDeps": [[208, "pkgconfigdeps"]], "Naming": [[208, "naming"], [211, "naming"]], "conan.tools.google": [[209, "conan-tools-google"]], "Bazel": [[210, "bazel"]], "BazelDeps": [[211, "bazeldeps"]], "BazelToolchain": [[212, "bazeltoolchain"]], "conan.tools.intel": [[213, "conan-tools-intel"]], "IntelCC": [[213, "intelcc"]], "conan.tools.layout": [[214, "conan-tools-layout"]], "Predefined layouts": [[214, "predefined-layouts"]], "basic_layout": [[214, "basic-layout"]], "conan.tools.meson": [[215, "conan-tools-meson"]], "Meson": [[216, "meson"]], "MesonToolchain": [[217, "mesontoolchain"]], "conan_meson_native.ini": [[217, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[217, "conan-meson-cross-ini"]], "Default directories": [[217, "default-directories"]], "project_options": [[217, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[217, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[217, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[217, "objective-c-arguments"]], "conan.tools.microsoft": [[218, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[219, "conan-tools-microsoft-visual"]], "check_min_vs": [[219, "check-min-vs"]], "msvc_runtime_flag": [[219, "msvc-runtime-flag"]], "is_msvc": [[219, "is-msvc"]], "is_msvc_static_runtime": [[219, "is-msvc-static-runtime"]], "msvs_toolset": [[219, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[219, "conan-tools-microsoft-subsystems"]], "unix_path": [[219, "unix-path"]], "MSBuild": [[220, "msbuild"]], "attributes": [[220, "attributes"]], "MSBuildDeps": [[221, "msbuilddeps"]], "Requirement traits support": [[221, "requirement-traits-support"]], "Configurations": [[221, "configurations"]], "Dependencies": [[221, "dependencies"]], "MSBuildToolchain": [[222, "msbuildtoolchain"]], "NMakeDeps": [[223, "nmakedeps"]], "NMakeToolchain": [[223, "nmaketoolchain"]], "constructor": [[223, "constructor"]], "VCVars": [[224, "vcvars"]], "vs_layout": [[225, "vs-layout"]], "conan.tools.scm": [[226, "conan-tools-scm"]], "Git": [[227, "git"]], "Version": [[228, "version"]], "conan.tools.scons": [[229, "conan-tools-scons"]], "SConsDeps": [[229, "sconsdeps"]], "conan.tools.system": [[230, "conan-tools-system"]], "conan.tools.system.package_manager": [[231, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[231, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[231, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[231, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[231, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[231, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[231, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[231, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[231, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[231, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[231, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[231, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[231, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[232, "tutorial"]], "Working with Conan repositories": [[233, "working-with-conan-repositories"]], "Table of contents": [[233, null], [239, null], [246, null], [253, null], [265, null]], "Contributing to Conan Center": [[234, "contributing-to-conan-center"]], "Setting up a Conan remote": [[235, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[236, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[236, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[236, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[237, "setting-up-a-conan-server"]], "Uploading Packages": [[238, "uploading-packages"]], "Consuming packages": [[239, "consuming-packages"]], "Build a simple CMake project using Conan": [[240, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[241, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[241, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[241, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[242, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[242, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[242, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[242, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[242, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[243, "introduction-to-versioning"]], "Version ranges": [[243, "version-ranges"], [269, "version-ranges"]], "Revisions": [[243, "revisions"], [268, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[244, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[244, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[244, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[244, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[245, "using-build-tools-as-conan-packages"]], "Creating packages": [[246, "creating-packages"]], "Add dependencies to packages": [[247, "add-dependencies-to-packages"]], "Build packages: the build() method": [[248, "build-packages-the-build-method"]], "Build and run tests for your project": [[248, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[248, "changes-introduced-in-the-recipe"], [251, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[248, "changes-introduced-in-the-library-sources"], [251, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[248, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[248, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[249, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[249, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[249, "c-libraries"]], "Header-only libraries": [[249, "header-only-libraries"]], "Create your first Conan package": [[250, "create-your-first-conan-package"]], "A note about the Conan cache": [[250, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[251, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[251, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[251, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[251, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[252, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[252, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[252, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[252, "using-the-conandata-yml-file"]], "Other types of packages": [[253, "other-types-of-packages"]], "Header-only packages": [[254, "header-only-packages"]], "Header-only library with tests": [[254, "header-only-library-with-tests"]], "Package prebuilt binaries": [[255, "package-prebuilt-binaries"]], "Locally building binaries": [[255, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[255, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[255, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[256, "tool-requires-packages"]], "A simple tool require recipe": [[256, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[256, "removing-settings-in-package-id"]], "Package files: the package() method": [[257, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[257, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[257, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[257, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[258, "preparing-the-build"]], "Testing Conan packages": [[259, "testing-conan-packages"]], "Developing packages locally": [[260, "developing-packages-locally"]], "Packages in editable mode": [[261, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[261, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[261, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[261, "working-with-editable-packages"]], "Building editable dependencies": [[261, "building-editable-dependencies"]], "Revert the editable mode": [[261, "revert-the-editable-mode"]], "Package Development Flow": [[262, "package-development-flow"]], "Understanding the Conan Package layout": [[263, "understanding-the-conan-package-layout"]], "cpp.package": [[263, "cpp-package"]], "cpp.source and cpp.build": [[263, "cpp-source-and-cpp-build"]], "Other important Conan features": [[264, "other-important-conan-features"]], "Packages lists": [[264, "packages-lists"]], "Removing unused packages from the cache": [[264, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[266, "dependencies-conflicts"]], "Resolving conflicts": [[266, "resolving-conflicts"]], "Overriding options": [[266, "overriding-options"]], "Multi-configuration lockfiles": [[267, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[267, "evolving-lockfiles"]], "Creating different revisions": [[268, "creating-different-revisions"]], "Using revisions": [[268, "using-revisions"]], "Uploading revisions": [[268, "uploading-revisions"]], "Package revisions": [[268, "package-revisions"]], "Semantic versioning": [[269, "semantic-versioning"]], "Range expressions": [[269, "range-expressions"]], "Versions": [[270, "versions"]], "Automating versions": [[270, "automating-versions"]], "Requiring the new versions": [[270, "requiring-the-new-versions"]], "What\u2019s new in Conan 2.0": [[271, "what-s-new-in-conan-2-0"]], "Conan 2.0 migration guide": [[271, "conan-2-0-migration-guide"]], "New graph model": [[271, "new-graph-model"]], "New public Python API": [[271, "new-public-python-api"]], "New build system integrations": [[271, "new-build-system-integrations"]], "New custom user commands": [[271, "new-custom-user-commands"]], "New CLI": [[271, "new-cli"]], "New deployers": [[271, "new-deployers"]], "New package_id": [[271, "new-package-id"]], "compatibility.py": [[271, "compatibility-py"]], "New lockfiles": [[271, "new-lockfiles"]], "New configuration and environment management": [[271, "new-configuration-and-environment-management"]], "Multi-revision cache": [[271, "multi-revision-cache"]], "New extensions plugins": [[271, "new-extensions-plugins"]], "Profile checker": [[271, "profile-checker"]], "Package immutability optimizations": [[271, "package-immutability-optimizations"]]}, "indexentries": {"append() (conf method)": [[132, "conans.model.conf.Conf.append"]], "define() (conf method)": [[132, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[132, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[132, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[132, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[132, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[162, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[163, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[164, "conan.api.subapi.download.DownloadAPI"]], "exportapi (class in conan.api.subapi.export)": [[165, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[166, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[167, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[168, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[168, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[169, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[170, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[171, "conan.api.subapi.remotes.RemotesAPI"]], "list() (remotesapi method)": [[171, "conan.api.subapi.remotes.RemotesAPI.list"]], "removeapi (class in conan.api.subapi.remove)": [[172, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[173, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[174, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.prepare"]], "android_abi() (in module conan.tools.android)": [[177, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[179, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[179, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[179, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[179, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[179, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[179, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[179, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[179, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[179, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[179, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[179, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[179, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[179, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[183, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[185, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[186, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[191, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[191, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[191, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[191, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[191, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[191, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[191, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[191, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[191, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[191, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[192, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[196, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[196, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[203, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[206, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[206, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[207, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[207, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[208, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[208, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[208, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[210, "conan.tools.google.Bazel"]], "build() (bazel method)": [[210, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[210, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[211, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[211, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[211, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[212, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[212, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[213, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[213, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[213, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[213, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[213, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[213, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[216, "conan.tools.meson.Meson"]], "build() (meson method)": [[216, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[216, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[216, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[216, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[217, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[217, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[219, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[220, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[221, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[221, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[222, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[222, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[224, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[225, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[227, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[227, "conan.tools.scm.git.Git.checkout"]], "clone() (git method)": [[227, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[227, "conan.tools.scm.git.Git.commit_in_remote"]], "fetch_commit() (git method)": [[227, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[227, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[227, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[227, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[227, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[227, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[228, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[231, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[231, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[231, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[231, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[231, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[231, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[231, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[231, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["404", "changelog", "devops", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo", "devops/backup_sources/sources_backup", "devops/conancenter/hosting_binaries", "devops/metadata", "devops/save_restore", "devops/using_conancenter", "devops/versioning", "devops/versioning/resolve_prereleases", "examples", "examples/commands", "examples/commands/pkglists", "examples/conanfile", "examples/conanfile/layout", "examples/conanfile/layout/conanfile_in_subfolder", "examples/conanfile/layout/editable_components", "examples/conanfile/layout/multiple_subprojects", "examples/conanfile/layout/third_party_libraries", "examples/conanfile/package_info", "examples/conanfile/package_info/components", "examples/conanfile/package_info/package_info_conf_and_env", "examples/config_files", "examples/config_files/settings/settings_user", "examples/cross_build", "examples/cross_build/android/android_studio", "examples/cross_build/android/ndk", "examples/dev_flow", "examples/dev_flow/debug/step_into_dependencies", "examples/extensions", "examples/extensions/commands/clean/custom_command_clean_revisions", "examples/extensions/commands/custom_commands", "examples/extensions/deployers/builtin_deployers", "examples/extensions/deployers/custom_deployers", "examples/extensions/deployers/dev/development_deploy", "examples/extensions/deployers/sources/custom_deployer_sources", "examples/graph", "examples/graph/requires/consume_cmake_macro", "examples/graph/tool_requires/different_options", "examples/graph/tool_requires/different_versions", "examples/graph/tool_requires/use_cmake_modules", "examples/graph/tool_requires/using_protobuf", "examples/tools", "examples/tools/autotools/autotools", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain", "examples/tools/cmake/cmake", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables", "examples/tools/files/files", "examples/tools/files/patches/patch_sources", "examples/tools/google/bazel", "examples/tools/google/bazeltoolchain/build_simple_bazel_project", "examples/tools/meson/meson", "examples/tools/meson/mesontoolchain/build_simple_meson_project", "examples/tools/scm/git/capture_scm/git_capture_scm", "index", "installation", "integrations", "integrations/android", "integrations/autotools", "integrations/bazel", "integrations/clion", "integrations/cmake", "integrations/jfrog", "integrations/makefile", "integrations/meson", "integrations/visual_studio", "integrations/xcode", "introduction", "knowledge", "knowledge/cheatsheet", "knowledge/faq", "knowledge/guidelines", "knowledge/videos", "reference", "reference/binary_model", "reference/binary_model/custom_compatibility", "reference/binary_model/dependencies", "reference/binary_model/extending", "reference/binary_model/package_id", "reference/commands", "reference/commands/build", "reference/commands/cache", "reference/commands/config", "reference/commands/create", "reference/commands/download", "reference/commands/editable", "reference/commands/export", "reference/commands/export-pkg", "reference/commands/formatters/graph_info_json_formatter", "reference/commands/graph", "reference/commands/graph/build_order", "reference/commands/graph/build_order_merge", "reference/commands/graph/explain", "reference/commands/graph/info", "reference/commands/inspect", "reference/commands/install", "reference/commands/list", "reference/commands/lock", "reference/commands/lock/add", "reference/commands/lock/create", "reference/commands/lock/merge", "reference/commands/lock/remove", "reference/commands/new", "reference/commands/profile", "reference/commands/remote", "reference/commands/remove", "reference/commands/search", "reference/commands/source", "reference/commands/test", "reference/commands/upload", "reference/commands/version", "reference/conan_server", "reference/conanfile", "reference/conanfile/attributes", "reference/conanfile/methods", "reference/conanfile/methods/build", "reference/conanfile/methods/build_id", "reference/conanfile/methods/build_requirements", "reference/conanfile/methods/compatibility", "reference/conanfile/methods/config_options", "reference/conanfile/methods/configure", "reference/conanfile/methods/deploy", "reference/conanfile/methods/export", "reference/conanfile/methods/export_sources", "reference/conanfile/methods/generate", "reference/conanfile/methods/init", "reference/conanfile/methods/layout", "reference/conanfile/methods/package", "reference/conanfile/methods/package_id", "reference/conanfile/methods/package_info", "reference/conanfile/methods/requirements", "reference/conanfile/methods/set_name", "reference/conanfile/methods/set_version", "reference/conanfile/methods/source", "reference/conanfile/methods/system_requirements", "reference/conanfile/methods/test", "reference/conanfile/methods/validate", "reference/conanfile/methods/validate_build", "reference/conanfile/running_and_output", "reference/conanfile_txt", "reference/config_files", "reference/config_files/conanrc", "reference/config_files/credentials", "reference/config_files/global_conf", "reference/config_files/profiles", "reference/config_files/remotes", "reference/config_files/settings", "reference/config_files/source_credentials", "reference/environment", "reference/extensions", "reference/extensions/binary_compatibility", "reference/extensions/command_wrapper", "reference/extensions/custom_commands", "reference/extensions/custom_generators", "reference/extensions/deployers", "reference/extensions/hooks", "reference/extensions/package_signing", "reference/extensions/profile_plugin", "reference/extensions/python_api", "reference/extensions/python_api/ConanAPI", "reference/extensions/python_api/ConfigAPI", "reference/extensions/python_api/DownloadAPI", "reference/extensions/python_api/ExportAPI", "reference/extensions/python_api/GraphAPI", "reference/extensions/python_api/InstallAPI", "reference/extensions/python_api/ListAPI", "reference/extensions/python_api/NewAPI", "reference/extensions/python_api/ProfilesAPI", "reference/extensions/python_api/RemotesAPI", "reference/extensions/python_api/RemoveAPI", "reference/extensions/python_api/SearchAPI", "reference/extensions/python_api/UploadAPI", "reference/extensions/python_requires", "reference/tools", "reference/tools/android", "reference/tools/apple", "reference/tools/apple/other", "reference/tools/apple/xcodebuild", "reference/tools/apple/xcodedeps", "reference/tools/apple/xcodetoolchain", "reference/tools/build", "reference/tools/cmake", "reference/tools/cmake/cmake", "reference/tools/cmake/cmake_layout", "reference/tools/cmake/cmakedeps", "reference/tools/cmake/cmaketoolchain", "reference/tools/cpp_info", "reference/tools/env", "reference/tools/env/environment", "reference/tools/env/envvars", "reference/tools/env/virtualbuildenv", "reference/tools/env/virtualrunenv", "reference/tools/files", "reference/tools/files/basic", "reference/tools/files/checksum", "reference/tools/files/downloads", "reference/tools/files/packaging", "reference/tools/files/patches", "reference/tools/files/symlinks", "reference/tools/gnu", "reference/tools/gnu/autotools", "reference/tools/gnu/autotoolsdeps", "reference/tools/gnu/autotoolstoolchain", "reference/tools/gnu/makedeps", "reference/tools/gnu/pkgconfig", "reference/tools/gnu/pkgconfigdeps", "reference/tools/google", "reference/tools/google/bazel", "reference/tools/google/bazeldeps", "reference/tools/google/bazeltoolchain", "reference/tools/intel", "reference/tools/layout", "reference/tools/meson", "reference/tools/meson/meson", "reference/tools/meson/mesontoolchain", "reference/tools/microsoft", "reference/tools/microsoft/helpers", "reference/tools/microsoft/msbuild", "reference/tools/microsoft/msbuilddeps", "reference/tools/microsoft/msbuildtoolchain", "reference/tools/microsoft/nmake", "reference/tools/microsoft/vcvars", "reference/tools/microsoft/visual_layout", "reference/tools/scm", "reference/tools/scm/git", "reference/tools/scm/version", "reference/tools/scons", "reference/tools/system", "reference/tools/system/package_manager", "tutorial", "tutorial/conan_repositories", "tutorial/conan_repositories/conan_center", "tutorial/conan_repositories/setting_up_conan_remotes", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server", "tutorial/conan_repositories/uploading_packages", "tutorial/consuming_packages", "tutorial/consuming_packages/build_simple_cmake_project", "tutorial/consuming_packages/cross_building_with_conan", "tutorial/consuming_packages/different_configurations", "tutorial/consuming_packages/intro_to_versioning", "tutorial/consuming_packages/the_flexibility_of_conanfile_py", "tutorial/consuming_packages/use_tools_as_conan_packages", "tutorial/creating_packages", "tutorial/creating_packages/add_dependencies_to_packages", "tutorial/creating_packages/build_packages", "tutorial/creating_packages/configure_options_settings", "tutorial/creating_packages/create_your_first_package", "tutorial/creating_packages/define_package_information", "tutorial/creating_packages/handle_sources_in_packages", "tutorial/creating_packages/other_types_of_packages", "tutorial/creating_packages/other_types_of_packages/header_only_packages", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages", "tutorial/creating_packages/package_method", "tutorial/creating_packages/preparing_the_build", "tutorial/creating_packages/test_conan_packages", "tutorial/developing_packages", "tutorial/developing_packages/editable_packages", "tutorial/developing_packages/local_package_development_flow", "tutorial/developing_packages/package_layout", "tutorial/other_features", "tutorial/versioning", "tutorial/versioning/conflicts", "tutorial/versioning/lockfiles", "tutorial/versioning/revisions", "tutorial/versioning/version_ranges", "tutorial/versioning/versions", "whatsnew"], "filenames": ["404.rst", "changelog.rst", "devops.rst", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.rst", "devops/backup_sources/sources_backup.rst", "devops/conancenter/hosting_binaries.rst", "devops/metadata.rst", "devops/save_restore.rst", "devops/using_conancenter.rst", "devops/versioning.rst", "devops/versioning/resolve_prereleases.rst", "examples.rst", "examples/commands.rst", "examples/commands/pkglists.rst", "examples/conanfile.rst", "examples/conanfile/layout.rst", "examples/conanfile/layout/conanfile_in_subfolder.rst", "examples/conanfile/layout/editable_components.rst", "examples/conanfile/layout/multiple_subprojects.rst", "examples/conanfile/layout/third_party_libraries.rst", "examples/conanfile/package_info.rst", "examples/conanfile/package_info/components.rst", "examples/conanfile/package_info/package_info_conf_and_env.rst", "examples/config_files.rst", "examples/config_files/settings/settings_user.rst", "examples/cross_build.rst", "examples/cross_build/android/android_studio.rst", "examples/cross_build/android/ndk.rst", "examples/dev_flow.rst", "examples/dev_flow/debug/step_into_dependencies.rst", "examples/extensions.rst", "examples/extensions/commands/clean/custom_command_clean_revisions.rst", "examples/extensions/commands/custom_commands.rst", "examples/extensions/deployers/builtin_deployers.rst", "examples/extensions/deployers/custom_deployers.rst", "examples/extensions/deployers/dev/development_deploy.rst", "examples/extensions/deployers/sources/custom_deployer_sources.rst", "examples/graph.rst", "examples/graph/requires/consume_cmake_macro.rst", "examples/graph/tool_requires/different_options.rst", "examples/graph/tool_requires/different_versions.rst", "examples/graph/tool_requires/use_cmake_modules.rst", "examples/graph/tool_requires/using_protobuf.rst", "examples/tools.rst", "examples/tools/autotools/autotools.rst", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.rst", "examples/tools/cmake/cmake.rst", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables.rst", "examples/tools/files/files.rst", "examples/tools/files/patches/patch_sources.rst", "examples/tools/google/bazel.rst", "examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst", "examples/tools/meson/meson.rst", "examples/tools/meson/mesontoolchain/build_simple_meson_project.rst", "examples/tools/scm/git/capture_scm/git_capture_scm.rst", "index.rst", "installation.rst", "integrations.rst", "integrations/android.rst", "integrations/autotools.rst", "integrations/bazel.rst", "integrations/clion.rst", "integrations/cmake.rst", "integrations/jfrog.rst", "integrations/makefile.rst", "integrations/meson.rst", "integrations/visual_studio.rst", "integrations/xcode.rst", "introduction.rst", "knowledge.rst", "knowledge/cheatsheet.rst", "knowledge/faq.rst", "knowledge/guidelines.rst", "knowledge/videos.rst", "reference.rst", "reference/binary_model.rst", "reference/binary_model/custom_compatibility.rst", "reference/binary_model/dependencies.rst", "reference/binary_model/extending.rst", "reference/binary_model/package_id.rst", "reference/commands.rst", "reference/commands/build.rst", "reference/commands/cache.rst", "reference/commands/config.rst", "reference/commands/create.rst", "reference/commands/download.rst", "reference/commands/editable.rst", "reference/commands/export.rst", "reference/commands/export-pkg.rst", "reference/commands/formatters/graph_info_json_formatter.rst", "reference/commands/graph.rst", "reference/commands/graph/build_order.rst", "reference/commands/graph/build_order_merge.rst", "reference/commands/graph/explain.rst", "reference/commands/graph/info.rst", "reference/commands/inspect.rst", "reference/commands/install.rst", "reference/commands/list.rst", "reference/commands/lock.rst", "reference/commands/lock/add.rst", "reference/commands/lock/create.rst", "reference/commands/lock/merge.rst", "reference/commands/lock/remove.rst", "reference/commands/new.rst", "reference/commands/profile.rst", "reference/commands/remote.rst", "reference/commands/remove.rst", "reference/commands/search.rst", "reference/commands/source.rst", "reference/commands/test.rst", "reference/commands/upload.rst", "reference/commands/version.rst", "reference/conan_server.rst", "reference/conanfile.rst", "reference/conanfile/attributes.rst", "reference/conanfile/methods.rst", "reference/conanfile/methods/build.rst", "reference/conanfile/methods/build_id.rst", "reference/conanfile/methods/build_requirements.rst", "reference/conanfile/methods/compatibility.rst", "reference/conanfile/methods/config_options.rst", "reference/conanfile/methods/configure.rst", "reference/conanfile/methods/deploy.rst", "reference/conanfile/methods/export.rst", "reference/conanfile/methods/export_sources.rst", "reference/conanfile/methods/generate.rst", "reference/conanfile/methods/init.rst", "reference/conanfile/methods/layout.rst", "reference/conanfile/methods/package.rst", "reference/conanfile/methods/package_id.rst", "reference/conanfile/methods/package_info.rst", "reference/conanfile/methods/requirements.rst", "reference/conanfile/methods/set_name.rst", "reference/conanfile/methods/set_version.rst", "reference/conanfile/methods/source.rst", "reference/conanfile/methods/system_requirements.rst", "reference/conanfile/methods/test.rst", "reference/conanfile/methods/validate.rst", "reference/conanfile/methods/validate_build.rst", "reference/conanfile/running_and_output.rst", "reference/conanfile_txt.rst", "reference/config_files.rst", "reference/config_files/conanrc.rst", "reference/config_files/credentials.rst", "reference/config_files/global_conf.rst", "reference/config_files/profiles.rst", "reference/config_files/remotes.rst", "reference/config_files/settings.rst", "reference/config_files/source_credentials.rst", "reference/environment.rst", "reference/extensions.rst", "reference/extensions/binary_compatibility.rst", "reference/extensions/command_wrapper.rst", "reference/extensions/custom_commands.rst", "reference/extensions/custom_generators.rst", "reference/extensions/deployers.rst", "reference/extensions/hooks.rst", "reference/extensions/package_signing.rst", "reference/extensions/profile_plugin.rst", "reference/extensions/python_api.rst", "reference/extensions/python_api/ConanAPI.rst", "reference/extensions/python_api/ConfigAPI.rst", "reference/extensions/python_api/DownloadAPI.rst", "reference/extensions/python_api/ExportAPI.rst", "reference/extensions/python_api/GraphAPI.rst", "reference/extensions/python_api/InstallAPI.rst", "reference/extensions/python_api/ListAPI.rst", "reference/extensions/python_api/NewAPI.rst", "reference/extensions/python_api/ProfilesAPI.rst", "reference/extensions/python_api/RemotesAPI.rst", "reference/extensions/python_api/RemoveAPI.rst", "reference/extensions/python_api/SearchAPI.rst", "reference/extensions/python_api/UploadAPI.rst", "reference/extensions/python_requires.rst", "reference/tools.rst", "reference/tools/android.rst", "reference/tools/apple.rst", "reference/tools/apple/other.rst", "reference/tools/apple/xcodebuild.rst", "reference/tools/apple/xcodedeps.rst", "reference/tools/apple/xcodetoolchain.rst", "reference/tools/build.rst", "reference/tools/cmake.rst", "reference/tools/cmake/cmake.rst", "reference/tools/cmake/cmake_layout.rst", "reference/tools/cmake/cmakedeps.rst", "reference/tools/cmake/cmaketoolchain.rst", "reference/tools/cpp_info.rst", "reference/tools/env.rst", "reference/tools/env/environment.rst", "reference/tools/env/envvars.rst", "reference/tools/env/virtualbuildenv.rst", "reference/tools/env/virtualrunenv.rst", "reference/tools/files.rst", "reference/tools/files/basic.rst", "reference/tools/files/checksum.rst", "reference/tools/files/downloads.rst", "reference/tools/files/packaging.rst", "reference/tools/files/patches.rst", "reference/tools/files/symlinks.rst", "reference/tools/gnu.rst", "reference/tools/gnu/autotools.rst", "reference/tools/gnu/autotoolsdeps.rst", "reference/tools/gnu/autotoolstoolchain.rst", "reference/tools/gnu/makedeps.rst", "reference/tools/gnu/pkgconfig.rst", "reference/tools/gnu/pkgconfigdeps.rst", "reference/tools/google.rst", "reference/tools/google/bazel.rst", "reference/tools/google/bazeldeps.rst", "reference/tools/google/bazeltoolchain.rst", "reference/tools/intel.rst", "reference/tools/layout.rst", "reference/tools/meson.rst", "reference/tools/meson/meson.rst", "reference/tools/meson/mesontoolchain.rst", "reference/tools/microsoft.rst", "reference/tools/microsoft/helpers.rst", "reference/tools/microsoft/msbuild.rst", "reference/tools/microsoft/msbuilddeps.rst", "reference/tools/microsoft/msbuildtoolchain.rst", "reference/tools/microsoft/nmake.rst", "reference/tools/microsoft/vcvars.rst", "reference/tools/microsoft/visual_layout.rst", "reference/tools/scm.rst", "reference/tools/scm/git.rst", "reference/tools/scm/version.rst", "reference/tools/scons.rst", "reference/tools/system.rst", "reference/tools/system/package_manager.rst", "tutorial.rst", "tutorial/conan_repositories.rst", "tutorial/conan_repositories/conan_center.rst", "tutorial/conan_repositories/setting_up_conan_remotes.rst", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.rst", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server.rst", "tutorial/conan_repositories/uploading_packages.rst", "tutorial/consuming_packages.rst", "tutorial/consuming_packages/build_simple_cmake_project.rst", "tutorial/consuming_packages/cross_building_with_conan.rst", "tutorial/consuming_packages/different_configurations.rst", "tutorial/consuming_packages/intro_to_versioning.rst", "tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst", "tutorial/consuming_packages/use_tools_as_conan_packages.rst", "tutorial/creating_packages.rst", "tutorial/creating_packages/add_dependencies_to_packages.rst", "tutorial/creating_packages/build_packages.rst", "tutorial/creating_packages/configure_options_settings.rst", "tutorial/creating_packages/create_your_first_package.rst", "tutorial/creating_packages/define_package_information.rst", "tutorial/creating_packages/handle_sources_in_packages.rst", "tutorial/creating_packages/other_types_of_packages.rst", "tutorial/creating_packages/other_types_of_packages/header_only_packages.rst", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.rst", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages.rst", "tutorial/creating_packages/package_method.rst", "tutorial/creating_packages/preparing_the_build.rst", "tutorial/creating_packages/test_conan_packages.rst", "tutorial/developing_packages.rst", "tutorial/developing_packages/editable_packages.rst", "tutorial/developing_packages/local_package_development_flow.rst", "tutorial/developing_packages/package_layout.rst", "tutorial/other_features.rst", "tutorial/versioning.rst", "tutorial/versioning/conflicts.rst", "tutorial/versioning/lockfiles.rst", "tutorial/versioning/revisions.rst", "tutorial/versioning/version_ranges.rst", "tutorial/versioning/versions.rst", "whatsnew.rst"], "titles": ["Page Not Found", "Changelog", "Devops guide", "Creating an Artifactory backup repo for your sources", "Backing up third-party sources with Conan", "Creating and hosting your own ConanCenter binaries", "Managing package metadata files", "Save and restore packages from/to the cache", "Using ConanCenter packages in production environments", "Versioning", "Handling version ranges and pre-releases", "Examples", "Conan commands examples", "Using packages-lists", "ConanFile methods examples", "ConanFile layout() examples", "Declaring the layout when the Conanfile is inside a subfolder", "Using components and editable packages", "Declaring the layout when we have multiple subprojects", "Declaring the layout when creating packages for third-party libraries", "ConanFile package_info() examples", "Define components for Conan packages that provide multiple libraries", "Propagating environment or configuration information to consumers", "Configuration files examples", "Customize your settings: create your settings_user.yml", "Cross-building examples", "Integrating Conan in Android Studio", "Cross building to Android with the NDK", "Developer tools and flows", "Debugging and stepping into dependencies", "Conan extensions examples", "Custom command: Clean old recipe and package revisions", "Custom commands", "Builtin deployers", "Custom deployers", "Creating a Conan-agnostic deploy of dependencies for developer use", "Copy sources from all your dependencies", "Graph examples", "Use a CMake macro packaged in a dependency", "Depending on same version of a tool-require with different options", "Depending on different versions of the same tool-require", "Use cmake modules inside a tool_requires transparently", "Using the same requirement as a requires and as a tool_requires", "Conan recipe tools examples", "tools.autotools", "Build a simple Autotools project using Conan", "tools.cmake", "CMakeToolchain: Building your project using CMakePresets", "CMakeToolchain: Extending your CMakePresets with Conan generated ones", "CMakeToolchain: Inject arbitrary CMake variables into dependencies", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "Capturing Git scm information", "Conan 2.0 - C and C++ Package Manager Documentation", "Install", "Integrations", " Android", " Autotools", " Bazel", " CLion", " CMake", " JFrog", " Makefile", " Meson", " Visual Studio", " Xcode", "Introduction", "Knowledge", "Cheat sheet", "FAQ", "Core guidelines", "Videos", "Reference", "The binary model", "Customizing the binary compatibility", "The effect of dependencies on package_id", "Extending the binary model", "How the package_id is computed", "Commands", "conan build", "conan cache", "conan config", "conan create", "conan download", "conan editable", "conan export", "conan export-pkg", "Formatter: Graph-info JSON", "conan graph", "conan graph build-order", "conan graph build-order-merge", "conan graph explain", "conan graph info", "conan inspect", "conan install", "conan list", "conan lock", "conan lock add", "conan lock create", "conan lock merge", "conan lock remove", "conan new", "conan profile", "conan remote", "conan remove", "conan search", "conan source", "conan test", "conan upload", "conan version", "Conan Server", "conanfile.py", "Attributes", "Methods", "build()", "build_id()", "build_requirements()", "compatibility()", "config_options()", "configure()", "deploy()", "export()", "export_sources()", "generate()", "init()", "layout()", "package()", "package_id()", "package_info()", "requirements()", "set_name()", "set_version()", "source()", "system_requirements()", "test()", "validate()", "validate_build()", "Running and output", "conanfile.txt", "Configuration files", ".conanrc", "credentials.json", "global.conf", "profiles", "remotes.json", "settings.yml", "source_credentials.json", "Environment variables", "Extensions", "Binary compatibility", "Command wrapper", "Custom commands", "Custom Conan generators", "Deployers", "Hooks", "Package signing", "Profile plugin", "Python API", "Conan API Reference", "Config API", "Download API", "Export API", "Graph API", "Install API", "List API", "New API", "Profiles API", "Remotes API", "Remove API", "Search API", "Upload API", "Python requires", "Recipe tools", "conan.tools.android", "conan.tools.apple", "conan.tools.apple.fix_apple_shared_install_name()", "XcodeBuild", "XcodeDeps", "XcodeToolchain", "conan.tools.build", "conan.tools.cmake", "CMake", "cmake_layout", "CMakeDeps", "CMakeToolchain", "conan.tools.CppInfo", "conan.tools.env", "Environment", "EnvVars", "VirtualBuildEnv", "VirtualRunEnv", "conan.tools.files", "conan.tools.files basic operations", "conan.tools.files checksums", "conan.tools.files downloads", "conan.tools.files AutoPackager", "conan.tools.files patches", "conan.tools.files.symlinks", "conan.tools.gnu", "Autotools", "AutotoolsDeps", "AutotoolsToolchain", "MakeDeps", "PkgConfig", "PkgConfigDeps", "conan.tools.google", "Bazel", "BazelDeps", "BazelToolchain", "conan.tools.intel", "conan.tools.layout", "conan.tools.meson", "Meson", "MesonToolchain", "conan.tools.microsoft", "conan.tools.microsoft.visual", "MSBuild", "MSBuildDeps", "MSBuildToolchain", "NMakeDeps", "VCVars", "vs_layout", "conan.tools.scm", "Git", "Version", "conan.tools.scons", "conan.tools.system", "conan.tools.system.package_manager", "Tutorial", "Working with Conan repositories", "Contributing to Conan Center", "Setting up a Conan remote", "Artifactory Community Edition for C/C++", "Setting-up a Conan Server", "Uploading Packages", "Consuming packages", "Build a simple CMake project using Conan", "How to cross-compile your applications using Conan: host and build contexts", "Building for multiple configurations: Release, Debug, Static and Shared", "Introduction to versioning", "Understanding the flexibility of using conanfile.py vs conanfile.txt", "Using build tools as Conan packages", "Creating packages", "Add dependencies to packages", "Build packages: the build() method", "Configure settings and options in recipes", "Create your first Conan package", "Define information for consumers: the package_info() method", "Handle sources in packages", "Other types of packages", "Header-only packages", "Package prebuilt binaries", "Tool requires packages", "Package files: the package() method", "Preparing the build", "Testing Conan packages", "Developing packages locally", "Packages in editable mode", "Package Development Flow", "Understanding the Conan Package layout", "Other important Conan features", "Versioning", "Dependencies conflicts", "Lockfiles", "Revisions", "Version ranges", "Versions", "What\u2019s new in Conan 2.0"], "terms": {"unfortun": 0, "you": [0, 1, 2, 4, 5, 6, 8, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 64, 70, 73, 74, 80, 81, 84, 85, 86, 87, 96, 99, 105, 106, 108, 112, 114, 116, 117, 118, 119, 120, 122, 123, 127, 128, 129, 131, 132, 136, 141, 142, 144, 146, 147, 149, 151, 152, 155, 156, 157, 158, 160, 175, 180, 181, 182, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 208, 211, 213, 214, 216, 217, 220, 221, 222, 223, 227, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 270, 271], "ar": [0, 1, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 51, 53, 55, 56, 58, 61, 62, 63, 65, 66, 67, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 101, 102, 103, 105, 108, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 155, 157, 158, 159, 166, 167, 174, 175, 176, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 196, 200, 201, 203, 205, 208, 210, 211, 213, 214, 217, 221, 227, 230, 235, 236, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 51, 53, 55, 63, 81, 83, 86, 88, 89, 90, 93, 95, 96, 98, 99, 101, 102, 103, 111, 116, 145, 146, 147, 148, 149, 154, 155, 157, 166, 188, 211, 212, 231, 240, 241, 244, 245, 250, 251, 252, 259, 262], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 53, 56, 58, 64, 65, 74, 78, 79, 80, 83, 84, 85, 86, 93, 95, 96, 97, 98, 101, 102, 103, 105, 111, 114, 116, 119, 120, 126, 127, 136, 137, 145, 146, 147, 160, 175, 187, 192, 196, 203, 205, 227, 231, 243, 244, 245, 247, 249, 264, 269, 271], "exist": [0, 1, 6, 7, 8, 21, 56, 58, 70, 73, 78, 80, 83, 84, 85, 86, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 116, 118, 120, 121, 122, 123, 125, 127, 131, 133, 136, 144, 145, 146, 147, 149, 155, 166, 170, 179, 183, 187, 188, 191, 192, 196, 203, 205, 207, 217, 227, 238, 243, 249, 250, 255, 259, 266, 267, 268, 270, 271], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 51, 56, 65, 78, 79, 84, 86, 95, 98, 103, 119, 130, 131, 134, 135, 141, 149, 153, 160, 181, 182, 188, 196, 199, 203, 242, 245, 247, 248, 250, 251, 254, 259, 262, 266, 267, 268, 269, 270], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 58, 70, 78, 80, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 98, 100, 102, 103, 106, 111, 112, 116, 122, 123, 131, 132, 146, 149, 152, 153, 155, 158, 160, 161, 179, 188, 191, 196, 198, 199, 201, 204, 205, 217, 232, 238, 244, 249, 250, 253, 254, 255, 257, 258, 261, 263, 267, 268, 269, 270, 271], "can": [0, 1, 4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 171, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 227, 229, 231, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 53, 55, 56, 63, 70, 79, 84, 103, 136, 149, 175, 181, 186, 213, 214, 221, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 262, 263, 267, 270], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 57, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 75, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 108, 109, 111, 112, 115, 120, 121, 127, 130, 131, 132, 137, 142, 146, 147, 149, 152, 153, 155, 159, 161, 166, 168, 174, 175, 176, 178, 184, 190, 196, 202, 209, 214, 215, 218, 237, 238, 241, 242, 245, 247, 249, 250, 251, 252, 257, 258, 261, 262, 269, 271], "tree": [0, 65, 147, 157, 187], "us": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 18, 19, 21, 23, 26, 27, 29, 30, 31, 33, 36, 37, 39, 40, 43, 44, 46, 48, 49, 52, 54, 56, 57, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 157, 158, 159, 160, 166, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 237, 238, 239, 243, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271], "search": [0, 1, 31, 35, 51, 63, 74, 82, 99, 106, 114, 116, 144, 148, 152, 161, 179, 196, 203, 236, 238, 240, 242, 249, 251, 263, 271], "bar": [0, 114, 196, 205, 223], "desir": [0, 1, 4, 40, 49, 80, 87, 98, 105, 114, 116, 117, 131, 149, 157, 192, 193, 194, 229], "topic": [0, 1, 9, 70, 91, 96, 97, 155, 250], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 109, 112, 114, 116, 119, 121, 122, 123, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 139, 144, 145, 146, 147, 148, 149, 150, 151, 155, 174, 179, 180, 181, 182, 183, 186, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 203, 204, 205, 207, 208, 213, 214, 217, 219, 221, 223, 227, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 261, 262, 263, 264, 266, 267, 268, 270, 271], "think": [0, 42, 73, 93], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 37, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 56, 57, 63, 70, 73, 74, 78, 79, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 111, 112, 114, 116, 119, 122, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 158, 159, 160, 166, 170, 179, 182, 183, 185, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 211, 213, 217, 220, 223, 227, 228, 231, 239, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271], "error": [0, 1, 6, 21, 31, 39, 40, 56, 58, 79, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 114, 116, 118, 127, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 149, 151, 158, 160, 166, 187, 196, 198, 203, 217, 231, 239, 242, 247, 249, 261, 262, 265, 266, 267, 271], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 51, 53, 55, 56, 58, 63, 66, 70, 74, 78, 80, 81, 86, 98, 99, 105, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 145, 150, 151, 157, 158, 159, 160, 166, 174, 175, 180, 182, 185, 187, 188, 193, 196, 200, 206, 211, 216, 217, 223, 227, 236, 240, 241, 242, 244, 247, 248, 249, 250, 251, 254, 262, 263, 266, 267, 268, 269, 270, 271], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 60, 61, 64, 66, 68, 69, 70, 73, 74, 75, 87, 101, 106, 107, 112, 114, 116, 127, 146, 147, 153, 158, 159, 188, 214, 217, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "open": [0, 4, 5, 8, 26, 29, 48, 55, 56, 57, 63, 73, 116, 118, 141, 146, 150, 159, 196, 222, 227, 233, 235, 237, 240, 242, 261], "issu": [0, 1, 6, 8, 39, 40, 57, 70, 73, 80, 114, 127, 128, 129, 146, 149, 187, 250, 252, 267, 268], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 56, 58, 61, 63, 65, 66, 68, 69, 74, 78, 79, 80, 84, 85, 87, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 112, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 157, 158, 160, 166, 175, 179, 180, 181, 182, 183, 186, 188, 189, 192, 196, 200, 205, 206, 208, 211, 213, 214, 217, 220, 221, 224, 231, 235, 236, 238, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 257, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "more": [1, 4, 6, 7, 8, 13, 16, 18, 19, 31, 36, 42, 45, 47, 51, 56, 58, 60, 63, 65, 70, 73, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 113, 116, 118, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 152, 153, 154, 157, 159, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 182, 183, 187, 188, 189, 193, 194, 196, 203, 206, 208, 210, 211, 212, 214, 215, 216, 221, 223, 233, 234, 235, 239, 246, 253, 255, 261, 262, 263, 264, 265, 268, 269, 271], "detail": [1, 8, 42, 51, 58, 63, 65, 70, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 149, 182, 196, 217, 220, 245, 249, 250, 252, 255, 257, 259, 263], "descript": [1, 91, 96, 97, 105, 127, 128, 158, 208, 250], "major": [1, 5, 35, 39, 40, 56, 70, 98, 106, 116, 147, 175, 188, 235, 240, 266, 269, 271], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 51, 56, 70, 72, 73, 74, 78, 79, 80, 81, 84, 86, 91, 97, 101, 102, 103, 105, 106, 113, 114, 116, 119, 120, 122, 123, 124, 131, 132, 136, 145, 146, 147, 149, 150, 151, 153, 154, 155, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 186, 187, 188, 189, 192, 196, 203, 205, 206, 208, 210, 211, 212, 213, 217, 220, 223, 227, 231, 240, 242, 243, 244, 247, 249, 250, 252, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 271], "conan": [1, 2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 24, 25, 27, 29, 33, 36, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 91, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 204, 205, 206, 208, 210, 211, 212, 216, 220, 221, 222, 223, 224, 227, 232, 238, 239, 242, 243, 244, 246, 247, 248, 252, 254, 255, 256, 258, 260, 261, 265, 266, 267, 268, 269, 270], "bring": [1, 59, 147, 252], "compar": [1, 149, 183, 228, 268, 269], "x": [1, 58, 70, 72, 85, 90, 116, 146, 149, 158, 187, 196, 199, 219, 250, 254, 267, 269, 271], "read": [1, 3, 4, 6, 8, 16, 18, 19, 24, 31, 36, 42, 45, 47, 53, 55, 58, 63, 70, 74, 78, 80, 83, 84, 85, 86, 88, 90, 98, 99, 102, 106, 110, 111, 114, 116, 120, 121, 123, 126, 127, 129, 131, 132, 134, 135, 137, 141, 146, 147, 152, 153, 159, 161, 175, 183, 185, 196, 200, 203, 205, 207, 213, 215, 233, 234, 236, 239, 246, 253, 261, 262, 265, 270, 271], "what": [1, 4, 5, 13, 24, 56, 57, 70, 78, 92, 95, 98, 99, 112, 116, 117, 151, 188, 191, 192, 199, 241, 243, 244, 245, 249, 250, 251, 254, 255, 258, 263, 266, 267, 268], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 60, 62, 63, 65, 70, 73, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 107, 111, 112, 114, 116, 120, 121, 131, 132, 133, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 160, 179, 181, 182, 183, 188, 198, 203, 205, 210, 211, 212, 213, 217, 221, 222, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 57, 58, 63, 70, 73, 74, 78, 79, 80, 81, 82, 84, 98, 100, 101, 102, 103, 104, 106, 107, 116, 130, 131, 147, 152, 154, 155, 157, 159, 161, 163, 175, 179, 181, 182, 186, 187, 188, 189, 191, 193, 194, 205, 213, 221, 222, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 258, 262, 263, 265, 266, 267, 268, 269], "fix": [1, 5, 8, 35, 70, 116, 136, 150, 175, 179, 200, 242, 243, 266], "automat": [1, 3, 6, 31, 41, 47, 58, 63, 70, 80, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 105, 111, 114, 116, 125, 132, 133, 136, 145, 146, 147, 149, 158, 170, 175, 179, 185, 186, 187, 188, 191, 192, 194, 199, 200, 203, 206, 207, 208, 210, 212, 213, 216, 222, 231, 234, 240, 242, 243, 245, 248, 249, 251, 252, 256, 259, 264, 265, 266, 267, 268, 269], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 57, 63, 65, 69, 70, 73, 74, 78, 79, 80, 82, 84, 89, 90, 91, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 117, 118, 119, 120, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 148, 149, 152, 155, 156, 157, 158, 162, 166, 175, 181, 182, 185, 187, 188, 189, 190, 193, 194, 196, 198, 207, 208, 210, 211, 212, 213, 217, 222, 223, 224, 227, 229, 232, 233, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 53, 55, 56, 58, 63, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 115, 117, 119, 124, 125, 126, 127, 130, 136, 144, 146, 147, 151, 152, 154, 155, 156, 157, 158, 159, 160, 169, 179, 185, 186, 187, 188, 191, 196, 198, 200, 201, 203, 205, 211, 214, 216, 217, 224, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 266, 267, 271], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 51, 56, 57, 58, 63, 70, 74, 79, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 108, 111, 116, 119, 124, 125, 126, 127, 129, 130, 134, 135, 145, 146, 147, 150, 151, 152, 153, 154, 157, 158, 159, 160, 166, 168, 170, 174, 182, 185, 188, 192, 196, 203, 210, 217, 222, 227, 232, 233, 238, 240, 242, 243, 245, 246, 249, 251, 254, 255, 257, 259, 260, 261, 262, 263, 266, 267, 268, 270], "save": [1, 2, 6, 31, 39, 40, 53, 56, 57, 70, 90, 100, 106, 114, 116, 119, 126, 146, 147, 156, 187, 188, 192, 195, 198, 208, 217], "file": [1, 2, 3, 4, 7, 8, 10, 11, 13, 16, 17, 18, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58, 61, 62, 63, 64, 65, 67, 68, 69, 70, 73, 74, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 108, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 141, 142, 144, 145, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 170, 174, 176, 179, 180, 181, 182, 184, 185, 186, 189, 190, 191, 202, 203, 207, 209, 210, 213, 214, 215, 216, 218, 220, 222, 224, 227, 229, 232, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 261, 262, 263, 264, 267, 268, 269, 270, 271], "subfold": [1, 7, 14, 15, 17, 19, 85, 129, 157, 158, 179, 186, 196, 200, 203, 236, 252, 255, 263], "tgz": [1, 7, 84, 136, 159, 196, 198, 240, 245, 255], "doesn": [1, 6, 7, 35, 49, 56, 73, 74, 80, 90, 96, 102, 103, 114, 116, 120, 122, 123, 127, 131, 133, 139, 140, 145, 149, 158, 174, 175, 183, 186, 188, 192, 196, 197, 198, 214, 221, 227, 242, 243, 249, 250, 252, 254, 256, 259, 266, 267, 268, 271], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 56, 58, 63, 70, 73, 74, 78, 79, 80, 84, 85, 90, 95, 96, 98, 99, 101, 102, 103, 107, 108, 114, 115, 116, 120, 122, 123, 127, 130, 131, 132, 133, 136, 139, 140, 145, 147, 149, 155, 158, 174, 175, 176, 183, 185, 186, 187, 188, 189, 192, 196, 197, 198, 205, 212, 214, 217, 221, 227, 240, 241, 242, 243, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 266, 267, 268, 271], "15409": 1, "bugfix": [1, 8, 70], "libcxx": [1, 24, 26, 27, 31, 73, 91, 96, 106, 116, 123, 131, 143, 147, 182, 188, 205, 213, 217, 240, 241, 242, 249, 250], "detect": [1, 6, 56, 70, 74, 85, 146, 147, 170, 183, 188, 207, 217, 240, 241, 242, 251], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 88, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 107, 111, 114, 116, 117, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 147, 149, 150, 151, 155, 157, 159, 160, 175, 177, 179, 181, 182, 183, 185, 187, 188, 192, 193, 194, 196, 198, 205, 208, 210, 211, 213, 216, 217, 219, 221, 222, 228, 231, 233, 236, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "cc": [1, 42, 53, 179, 205, 211, 213, 217, 223, 241, 248, 254], "cxx": [1, 19, 21, 27, 42, 85, 146, 149, 179, 205, 213, 217, 223, 241, 248, 249, 250, 251, 254, 257, 258, 259, 262, 263], "env": [1, 24, 26, 39, 40, 53, 74, 76, 85, 107, 132, 133, 138, 141, 146, 147, 151, 176, 185, 191, 192, 193, 194, 205, 222, 223, 229, 240, 242, 245, 256, 259, 262], "var": [1, 39, 40, 74, 85, 107, 114, 133, 146, 147, 151, 187, 188, 191, 192, 193, 194, 204, 213, 223], "15418": 1, "doc": [1, 8, 57, 58, 70, 73, 114, 203, 236, 244, 245, 271], "here": [1, 4, 19, 27, 41, 42, 57, 82, 99, 116, 123, 127, 128, 129, 133, 149, 158, 175, 187, 188, 192, 196, 208, 211, 231, 242, 247, 249, 250, 252, 255, 262, 263], "solv": [1, 29, 56, 58, 74, 133, 147, 152, 155, 187, 208, 266, 268], "winsdk_vers": [1, 85, 146, 188, 222, 224], "bug": [1, 8, 57, 70], "cmaketoolchain": [1, 16, 17, 18, 26, 35, 38, 41, 42, 43, 46, 51, 56, 64, 69, 73, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 132, 142, 146, 147, 149, 176, 184, 185, 186, 187, 240, 241, 242, 243, 244, 245, 248, 250, 252, 254, 256, 258, 259, 262, 263, 271], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 53, 55, 56, 61, 62, 64, 66, 67, 68, 69, 70, 74, 76, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 103, 105, 106, 111, 112, 114, 117, 118, 119, 121, 123, 128, 129, 131, 132, 133, 136, 137, 146, 147, 149, 150, 151, 152, 153, 154, 157, 158, 159, 160, 167, 175, 176, 177, 181, 182, 184, 185, 186, 190, 191, 192, 196, 202, 203, 209, 213, 214, 215, 216, 218, 222, 223, 224, 227, 229, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 269, 271], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 63, 187, 240, 245, 248, 251, 257, 258, 259], "15373": 1, "visibl": [1, 39, 40, 79, 85, 91, 114, 120, 146, 188, 211], "trait": [1, 37, 39, 74, 78, 116, 120, 266, 271], "propag": [1, 8, 14, 20, 116, 120, 132, 133, 142, 191, 208, 246, 254, 266], "build": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 16, 17, 18, 19, 21, 24, 28, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 73, 74, 76, 78, 79, 81, 82, 84, 85, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 106, 111, 115, 117, 119, 120, 123, 124, 125, 127, 129, 130, 131, 135, 136, 138, 139, 140, 141, 142, 146, 147, 149, 152, 154, 155, 156, 157, 158, 166, 170, 175, 176, 177, 179, 180, 181, 182, 184, 185, 186, 187, 189, 191, 192, 193, 194, 196, 200, 202, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 234, 239, 243, 244, 246, 247, 249, 250, 251, 252, 253, 254, 256, 257, 259, 260, 264, 266, 267, 268, 269, 270], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 51, 56, 73, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 111, 114, 116, 118, 120, 122, 123, 127, 128, 131, 132, 133, 136, 137, 141, 142, 145, 146, 147, 148, 170, 171, 179, 181, 183, 185, 186, 187, 188, 192, 193, 194, 196, 198, 200, 205, 207, 210, 212, 216, 217, 219, 221, 222, 227, 231, 242, 244, 245, 248, 249, 250, 252, 254, 258, 262, 266, 267, 269], "15357": 1, "package_id": [1, 6, 7, 13, 31, 74, 76, 77, 80, 84, 85, 87, 91, 93, 95, 96, 99, 108, 112, 116, 117, 119, 123, 127, 133, 139, 140, 146, 152, 166, 242, 249, 253, 254, 266, 268], "calcul": [1, 132, 193, 194, 200, 205, 223, 249, 254], "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 53, 55, 58, 59, 63, 65, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 91, 96, 98, 99, 100, 101, 108, 116, 120, 127, 129, 130, 131, 132, 133, 143, 149, 157, 175, 181, 182, 186, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 213, 217, 221, 222, 240, 241, 242, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 68, 74, 76, 78, 83, 84, 85, 86, 90, 93, 95, 96, 102, 106, 111, 114, 118, 123, 127, 128, 131, 132, 141, 143, 149, 151, 157, 163, 170, 178, 186, 192, 193, 194, 203, 215, 218, 231, 237, 245, 248, 254, 271], "valu": [1, 21, 26, 27, 39, 49, 73, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 144, 145, 146, 147, 148, 151, 155, 160, 163, 171, 177, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 196, 198, 203, 204, 205, 212, 214, 216, 217, 219, 220, 221, 222, 223, 228, 231, 242, 244, 248, 249, 250, 251, 254, 256, 258, 259, 262, 263, 266, 268], "thru": 1, "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 53, 55, 56, 57, 58, 61, 62, 63, 64, 66, 67, 68, 69, 70, 76, 78, 80, 83, 85, 86, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 106, 111, 116, 118, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 142, 143, 147, 149, 152, 154, 156, 157, 158, 175, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 227, 232, 236, 239, 240, 241, 242, 244, 246, 247, 248, 250, 252, 253, 254, 255, 258, 259, 262, 263, 270, 271], "info": [1, 6, 13, 24, 31, 36, 53, 56, 59, 73, 78, 79, 80, 81, 82, 85, 86, 92, 95, 97, 99, 102, 127, 131, 132, 133, 136, 137, 139, 140, 141, 146, 155, 158, 166, 175, 198, 217, 229, 231, 241, 249, 254, 256, 267, 268], "15356": 1, "order": [1, 4, 8, 13, 31, 36, 92, 98, 100, 101, 104, 114, 115, 116, 118, 131, 132, 146, 149, 150, 157, 170, 175, 188, 189, 192, 196, 205, 241, 243, 261, 267, 268, 269], "item": [1, 4, 36, 70, 80, 85, 100, 104, 108, 127, 131, 146, 149, 151, 156, 188, 192, 269], "dump": [1, 155, 191], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 69, 70, 73, 74, 75, 79, 80, 81, 84, 85, 87, 90, 103, 105, 106, 107, 114, 116, 118, 120, 122, 123, 124, 127, 128, 131, 132, 137, 142, 147, 149, 154, 155, 156, 158, 170, 174, 175, 180, 181, 182, 186, 187, 188, 192, 196, 198, 203, 205, 214, 217, 220, 221, 222, 231, 232, 233, 234, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 267, 269, 270], "allow": [1, 3, 4, 6, 13, 49, 55, 63, 68, 70, 74, 80, 82, 83, 85, 86, 88, 93, 95, 96, 98, 99, 101, 102, 106, 107, 111, 114, 116, 117, 118, 119, 120, 125, 126, 129, 131, 132, 145, 146, 147, 149, 150, 151, 152, 153, 154, 160, 167, 186, 187, 188, 189, 191, 196, 203, 217, 219, 221, 222, 231, 240, 243, 244, 250, 252, 262, 264, 267, 269, 270, 271], "reproduc": [1, 4, 6, 56, 70, 106, 119, 175, 196, 227, 239, 243, 255, 265, 267, 268, 270], "independ": [1, 21, 80, 114, 125, 126, 131, 136, 157, 189, 263, 271], "were": [1, 6, 24, 29, 56, 90, 123, 145, 157, 211, 240, 242, 248, 251, 257, 266, 269, 271], "declar": [1, 14, 15, 21, 47, 51, 70, 78, 84, 116, 121, 122, 123, 127, 129, 131, 132, 133, 147, 149, 151, 152, 155, 156, 175, 181, 182, 183, 185, 186, 187, 188, 190, 192, 208, 211, 217, 221, 223, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 263, 266, 271], "revert": [1, 70, 151], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 53, 63, 70, 73, 77, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 101, 102, 105, 106, 108, 109, 111, 112, 114, 116, 124, 128, 129, 131, 132, 136, 137, 142, 145, 146, 147, 148, 149, 151, 153, 160, 166, 170, 174, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 220, 221, 222, 223, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 256, 257, 258, 261, 263, 264, 266, 267, 268, 269, 271], "source_buildenv": 1, "make": [1, 6, 8, 26, 29, 38, 39, 40, 45, 56, 58, 59, 61, 66, 70, 85, 90, 98, 99, 101, 116, 123, 125, 127, 130, 131, 134, 137, 141, 146, 147, 149, 152, 154, 159, 175, 182, 187, 191, 203, 205, 206, 217, 227, 242, 244, 247, 248, 249, 257, 260, 261, 263, 270, 271], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 51, 56, 73, 80, 81, 85, 91, 95, 96, 97, 99, 106, 108, 114, 116, 120, 122, 123, 127, 128, 130, 132, 133, 141, 146, 147, 148, 157, 166, 167, 174, 179, 181, 183, 185, 187, 188, 193, 194, 196, 198, 200, 205, 207, 216, 217, 219, 221, 227, 228, 231, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 266, 269], "15319": 1, "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 57, 58, 63, 64, 65, 70, 86, 97, 113, 116, 120, 121, 122, 123, 124, 131, 132, 144, 145, 146, 147, 149, 150, 153, 158, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 185, 189, 199, 206, 210, 211, 212, 232, 236, 241, 244, 251, 254, 259, 260, 261, 262, 263, 271], "lock": [1, 8, 70, 82, 83, 86, 90, 93, 95, 96, 97, 98, 106, 111, 166, 175, 243, 267], "command": [1, 4, 7, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 53, 57, 58, 61, 62, 67, 68, 69, 70, 72, 73, 74, 76, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 129, 130, 134, 135, 136, 139, 145, 147, 148, 149, 151, 152, 156, 158, 160, 162, 166, 169, 180, 181, 182, 185, 187, 188, 192, 203, 210, 211, 212, 213, 216, 220, 221, 222, 224, 227, 229, 231, 238, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 267, 268, 269, 270], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 51, 53, 55, 56, 58, 61, 63, 64, 65, 70, 74, 76, 77, 78, 79, 80, 81, 83, 84, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 104, 105, 106, 114, 115, 117, 120, 121, 127, 128, 129, 131, 132, 139, 140, 146, 147, 148, 149, 150, 152, 155, 156, 157, 158, 166, 181, 183, 185, 187, 188, 193, 194, 196, 204, 206, 207, 208, 211, 213, 217, 222, 223, 224, 229, 231, 236, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "from": [1, 2, 3, 4, 6, 8, 12, 16, 18, 21, 24, 26, 27, 28, 30, 31, 34, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 152, 155, 156, 157, 159, 166, 168, 169, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 233, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 268, 269, 270, 271], "lockfil": [1, 8, 82, 83, 86, 89, 90, 93, 95, 96, 97, 100, 101, 102, 103, 104, 106, 111, 166, 175, 232, 239, 265], "15284": 1, "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 29, 35, 37, 42, 43, 47, 48, 51, 53, 55, 56, 57, 59, 63, 68, 69, 70, 73, 74, 76, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 104, 105, 106, 111, 116, 118, 120, 127, 129, 130, 131, 132, 133, 142, 146, 147, 149, 154, 176, 186, 188, 193, 200, 214, 232, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262, 263, 271], "ctest": [1, 185, 248], "helper": [1, 18, 45, 53, 55, 61, 62, 64, 67, 68, 69, 70, 73, 85, 116, 118, 126, 127, 136, 137, 141, 146, 149, 150, 155, 180, 183, 185, 187, 188, 191, 192, 196, 202, 205, 207, 210, 212, 216, 219, 220, 227, 228, 254], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 56, 57, 61, 68, 70, 74, 76, 80, 82, 83, 84, 90, 97, 98, 105, 106, 110, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 152, 156, 157, 158, 159, 175, 179, 180, 181, 182, 185, 187, 188, 191, 192, 193, 194, 196, 199, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 230, 232, 239, 246, 247, 249, 250, 252, 254, 255, 256, 258, 259, 261, 262, 263, 266, 270], "launch": [1, 21, 114, 141, 145, 180, 213, 236, 237, 246, 248], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 58, 63, 68, 74, 82, 88, 90, 93, 95, 96, 98, 101, 102, 106, 118, 127, 133, 147, 149, 156, 180, 185, 196, 200, 210, 217, 222, 240, 243, 244, 255, 256, 261, 262, 266, 270], "instead": [1, 4, 5, 8, 19, 35, 56, 58, 63, 68, 70, 74, 80, 84, 85, 88, 93, 95, 96, 98, 102, 105, 108, 114, 116, 127, 131, 132, 141, 146, 149, 175, 180, 185, 187, 188, 192, 221, 227, 242, 243, 244, 245, 247, 248, 250, 251, 252, 258, 261, 262, 263, 266, 267, 269, 270], "via": [1, 4, 7, 10, 13, 31, 38, 49, 58, 64, 65, 70, 74, 78, 80, 85, 90, 116, 127, 129, 133, 146, 155, 157, 160, 175, 185, 187, 188, 189, 191, 234, 240, 241, 269, 271], "target": [1, 8, 17, 18, 19, 21, 27, 42, 53, 56, 63, 70, 74, 85, 98, 105, 116, 118, 131, 149, 157, 177, 180, 183, 185, 203, 210, 211, 212, 213, 216, 217, 220, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 262, 263, 268, 271], "run_test": [1, 118, 185], "15282": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 51, 56, 63, 73, 80, 82, 84, 85, 100, 102, 103, 104, 105, 108, 114, 116, 131, 132, 146, 150, 155, 158, 159, 180, 181, 185, 187, 188, 191, 196, 198, 203, 205, 206, 208, 210, 211, 212, 216, 217, 221, 223, 231, 232, 236, 241, 243, 244, 245, 246, 248, 249, 251, 256, 258, 259, 261, 263, 266, 267, 270], "track": [1, 6, 65, 70, 120, 243, 268], "syntax": [1, 31, 68, 69, 73, 98, 105, 116, 120, 127, 133, 145, 163, 175, 182, 187, 188, 192, 206, 208, 222, 240, 243, 250, 266, 270], "host_vers": [1, 42], "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 51, 56, 58, 61, 62, 64, 65, 66, 67, 69, 70, 74, 77, 78, 79, 80, 81, 82, 84, 85, 90, 95, 96, 98, 99, 102, 103, 104, 106, 112, 114, 116, 117, 118, 119, 120, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 142, 146, 147, 149, 151, 152, 155, 156, 157, 158, 175, 181, 182, 186, 187, 188, 192, 193, 194, 196, 200, 208, 213, 214, 219, 221, 222, 227, 231, 236, 239, 240, 241, 244, 245, 246, 249, 250, 251, 254, 255, 256, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271], "15274": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 63, 66, 68, 69, 70, 73, 86, 98, 101, 102, 105, 116, 122, 123, 128, 130, 133, 146, 147, 154, 155, 157, 159, 170, 175, 179, 181, 182, 188, 191, 200, 203, 205, 212, 221, 222, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 267, 271], "microsoft": [1, 68, 76, 85, 116, 127, 132, 146, 147, 149, 176, 185, 188, 203, 213, 220, 221, 222, 223, 224], "vcvar": [1, 85, 127, 146, 149, 176, 218, 220, 222], "given": [1, 6, 8, 31, 36, 42, 78, 79, 80, 84, 85, 88, 96, 101, 102, 103, 104, 122, 131, 132, 139, 141, 147, 150, 151, 166, 170, 188, 189, 192, 196, 198, 200, 205, 211, 217, 219, 227, 243, 264, 267, 268, 270, 271], "15272": 1, "pkglist": [1, 6, 13, 87, 89, 108, 112, 264], "formatt": [1, 45, 87, 96, 112, 152], "export": [1, 5, 6, 7, 10, 16, 38, 56, 74, 82, 84, 86, 91, 101, 106, 117, 126, 127, 128, 129, 130, 134, 135, 136, 152, 158, 159, 161, 175, 196, 200, 227, 247, 250, 251, 252, 255, 258, 260, 261, 263, 268, 270], "15266": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 53, 56, 70, 74, 77, 78, 80, 84, 85, 88, 90, 91, 96, 98, 99, 101, 103, 105, 106, 107, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 157, 160, 163, 170, 175, 178, 180, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 200, 203, 204, 205, 206, 207, 208, 211, 213, 214, 217, 221, 222, 223, 224, 232, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 252, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "conan_log_level": [1, 151], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 56, 58, 74, 78, 101, 102, 104, 126, 132, 133, 136, 141, 145, 147, 187, 189, 191, 196, 213, 217, 227, 250, 259, 261, 265, 271], "verbos": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 132, 141, 146, 147, 151, 180, 185, 205, 216, 220, 263], "global": [1, 3, 4, 7, 10, 42, 58, 73, 76, 80, 85, 116, 121, 127, 131, 143, 147, 151, 152, 158, 163, 175, 188, 189, 207, 208, 211, 221, 248, 254, 271], "level": [1, 13, 16, 18, 21, 27, 29, 63, 70, 73, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 117, 121, 126, 131, 137, 141, 146, 149, 150, 151, 175, 180, 187, 198, 208, 211, 263, 271], "15263": 1, "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 51, 53, 56, 58, 74, 81, 82, 83, 85, 86, 88, 89, 90, 93, 95, 96, 97, 99, 102, 103, 105, 110, 111, 114, 116, 126, 127, 128, 129, 130, 132, 133, 134, 135, 138, 144, 146, 147, 155, 157, 158, 159, 166, 170, 175, 176, 179, 180, 185, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 207, 210, 211, 212, 213, 214, 217, 219, 223, 224, 240, 242, 244, 245, 248, 250, 251, 254, 255, 256, 257, 259, 261, 262, 263, 271], "xxx": [1, 6, 13, 87, 132, 134, 135, 146, 147, 185, 187, 188, 191, 217], "xxxx": [1, 7, 68, 80, 82, 85, 91, 127, 134, 135, 188, 210, 212, 221, 271], "rais": [1, 6, 21, 36, 56, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 111, 114, 116, 118, 127, 136, 137, 139, 140, 141, 146, 149, 158, 160, 183, 187, 196, 197, 198, 219, 227, 231, 239, 247, 249, 266], "request": [1, 31, 57, 70, 73, 85, 95, 98, 107, 108, 114, 116, 121, 145, 146, 151, 158, 234], "15257": 1, "oper": [1, 6, 8, 49, 58, 59, 64, 65, 70, 80, 84, 98, 106, 108, 115, 118, 124, 143, 147, 150, 158, 176, 182, 188, 191, 195, 227, 231, 233, 240, 241, 242, 249, 250, 252, 255, 260, 264, 267, 269, 271], "support": [1, 8, 17, 26, 27, 47, 48, 49, 51, 57, 59, 60, 63, 64, 65, 66, 70, 73, 80, 96, 99, 105, 114, 120, 129, 132, 134, 135, 139, 142, 146, 147, 149, 151, 152, 156, 157, 160, 178, 183, 187, 205, 208, 213, 217, 219, 231, 239, 247, 252, 258, 261, 262, 263, 271], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 63, 70, 74, 76, 78, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 105, 106, 110, 111, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 146, 147, 149, 150, 153, 154, 156, 157, 158, 159, 163, 166, 167, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 51, 56, 74, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 150, 152, 154, 155, 156, 157, 158, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 266, 267, 268, 270, 271], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 51, 53, 55, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 80, 81, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 117, 120, 123, 125, 128, 131, 132, 133, 136, 137, 139, 142, 146, 147, 154, 156, 157, 158, 166, 167, 170, 175, 179, 181, 182, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 206, 208, 211, 212, 213, 216, 217, 218, 223, 229, 231, 232, 236, 239, 240, 241, 243, 244, 245, 246, 248, 249, 250, 255, 256, 258, 259, 262, 263, 264, 265, 267, 268, 269, 270, 271], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 56, 64, 69, 98, 116, 127, 132, 142, 157, 176, 184, 185, 188, 240, 241, 243, 244, 245, 247, 248, 250, 251, 254, 259, 262, 271], "conandep": [1, 181, 206, 221, 229], "aggreg": [1, 24, 53, 103, 106, 132, 170, 176, 181, 182, 192, 204, 221, 240, 245, 262], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 67, 69, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 106, 107, 108, 109, 111, 112, 114, 116, 119, 123, 125, 126, 127, 129, 131, 132, 134, 135, 136, 142, 144, 145, 146, 147, 149, 151, 154, 155, 156, 157, 158, 163, 166, 170, 171, 174, 175, 176, 179, 180, 181, 182, 187, 188, 189, 192, 193, 194, 196, 198, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 217, 221, 222, 224, 229, 231, 232, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 259, 261, 262, 263, 264, 266, 268, 271], "direct": [1, 36, 91, 98, 114, 116, 120, 127, 132, 157, 181, 187, 193, 221, 266], "like": [1, 4, 6, 7, 8, 10, 13, 16, 18, 19, 21, 26, 27, 29, 31, 35, 39, 40, 41, 42, 45, 47, 48, 49, 56, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 158, 160, 166, 167, 168, 175, 176, 177, 179, 180, 181, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 207, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 229, 231, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "style": [1, 83, 86, 93, 95, 96, 98, 102, 107, 111, 179, 196], "15207": 1, "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 57, 58, 61, 76, 80, 85, 96, 105, 106, 114, 116, 127, 132, 141, 144, 145, 146, 147, 150, 176, 185, 187, 188, 190, 193, 194, 204, 207, 213, 217, 218, 222, 224, 240, 241, 242, 244, 245, 246, 248, 254, 256, 258, 259, 262], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 53, 55, 58, 60, 63, 64, 68, 69, 73, 74, 75, 76, 81, 82, 83, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 117, 118, 119, 120, 122, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 142, 143, 144, 145, 147, 149, 150, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 181, 185, 188, 191, 194, 196, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 221, 229, 232, 235, 238, 240, 241, 242, 244, 245, 246, 249, 250, 252, 254, 258, 259, 262, 263, 264, 268, 269, 271], "configur": [1, 3, 6, 7, 8, 11, 14, 16, 17, 18, 19, 20, 21, 26, 29, 31, 35, 38, 41, 42, 45, 47, 48, 49, 51, 53, 56, 57, 58, 59, 61, 62, 68, 69, 70, 73, 74, 76, 77, 78, 79, 82, 85, 86, 93, 95, 96, 98, 99, 102, 103, 106, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 131, 132, 136, 139, 140, 147, 149, 150, 151, 158, 163, 166, 170, 175, 178, 180, 182, 183, 185, 186, 188, 193, 194, 198, 203, 205, 207, 210, 212, 216, 217, 218, 219, 220, 222, 224, 230, 232, 233, 236, 239, 240, 241, 245, 246, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 268, 269, 270], "preset": [1, 29, 47, 48, 64, 85, 118, 129, 146, 186, 188, 261, 262, 263], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 51, 53, 55, 56, 58, 63, 64, 70, 74, 76, 80, 85, 86, 91, 95, 96, 102, 108, 112, 115, 116, 117, 118, 119, 120, 127, 129, 131, 132, 135, 138, 144, 146, 147, 149, 152, 154, 155, 157, 158, 182, 183, 185, 187, 188, 190, 191, 194, 203, 208, 210, 211, 212, 213, 216, 220, 221, 223, 224, 227, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 267, 268, 270, 271], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 51, 58, 70, 74, 82, 85, 86, 87, 90, 91, 96, 99, 103, 106, 114, 116, 117, 118, 119, 120, 127, 131, 142, 146, 152, 166, 185, 188, 200, 210, 216, 221, 227, 232, 237, 241, 246, 247, 250, 251, 252, 253, 255, 256, 258, 261, 262, 267, 271], "15192": 1, "warn": [1, 24, 53, 56, 63, 73, 79, 85, 106, 108, 116, 134, 135, 141, 147, 158, 196, 217, 227, 249, 271], "about": [1, 4, 6, 16, 18, 19, 21, 24, 31, 37, 42, 45, 47, 51, 53, 55, 56, 63, 64, 65, 69, 70, 74, 76, 78, 80, 82, 83, 86, 88, 90, 92, 96, 98, 102, 105, 106, 110, 111, 113, 116, 117, 118, 120, 122, 123, 127, 128, 129, 131, 132, 136, 137, 139, 142, 143, 147, 149, 151, 155, 160, 188, 202, 208, 214, 217, 229, 234, 236, 239, 240, 242, 246, 248, 249, 251, 252, 254, 258, 259, 261, 262, 265, 268, 269, 271], "potenti": [1, 5, 40, 58, 87, 119, 133, 134, 135, 188, 192, 268], "migrat": [1, 70, 219, 244], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 56, 58, 73, 74, 80, 90, 98, 101, 103, 108, 114, 116, 118, 120, 125, 127, 131, 132, 133, 134, 135, 136, 146, 147, 149, 150, 154, 157, 159, 175, 186, 188, 189, 192, 203, 211, 227, 240, 241, 242, 243, 248, 251, 254, 256, 257, 266, 267, 268, 269, 270], "print": [1, 4, 26, 39, 40, 45, 49, 53, 72, 79, 96, 99, 105, 108, 116, 141, 151, 155, 159, 160, 207, 217, 247, 256, 258], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 63, 70, 74, 80, 81, 84, 85, 98, 116, 127, 130, 131, 145, 146, 147, 150, 157, 159, 181, 182, 188, 192, 210, 211, 221, 222, 240, 244, 245, 255, 256, 260, 261, 264, 267, 268, 270, 271], "time": [1, 6, 8, 10, 24, 26, 42, 53, 56, 63, 70, 74, 81, 90, 99, 106, 108, 114, 116, 119, 120, 124, 125, 126, 127, 128, 129, 132, 133, 147, 152, 159, 175, 185, 187, 188, 193, 194, 198, 203, 208, 240, 243, 244, 245, 249, 252, 255, 256, 257, 260, 261, 263, 264, 265, 266, 268, 269, 271], "fail": [1, 4, 6, 21, 56, 58, 73, 79, 83, 86, 93, 95, 96, 98, 102, 106, 111, 116, 118, 137, 139, 151, 154, 157, 166, 185, 219, 231, 249, 254, 255, 261, 266, 267], "15174": 1, "deploi": [1, 30, 33, 53, 56, 83, 96, 98, 117, 131, 157, 167, 240, 245, 256, 262], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 51, 56, 57, 64, 69, 70, 73, 74, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 101, 102, 103, 105, 106, 108, 109, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 139, 142, 146, 147, 148, 149, 150, 152, 154, 155, 156, 157, 158, 159, 166, 168, 174, 175, 179, 183, 185, 186, 187, 188, 191, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 208, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 232, 233, 238, 240, 242, 243, 244, 245, 246, 247, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "explicit": [1, 41, 84, 98, 130, 145, 199, 223, 264, 265, 267, 270, 271], "per": [1, 6, 68, 70, 80, 105, 118, 127, 130, 132, 136, 147, 175, 181, 210, 211, 221], "deploy": [1, 6, 11, 30, 35, 74, 76, 83, 84, 85, 87, 96, 124, 136, 146, 152, 192, 217], "15172": 1, "sourc": [1, 2, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 28, 30, 31, 34, 35, 38, 39, 40, 42, 43, 45, 48, 49, 50, 53, 55, 56, 57, 73, 74, 75, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 115, 117, 118, 125, 126, 127, 129, 132, 139, 146, 147, 150, 158, 159, 166, 167, 174, 175, 185, 186, 187, 188, 192, 193, 196, 198, 200, 204, 205, 208, 214, 227, 232, 233, 234, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 254, 255, 256, 257, 258, 259, 260, 261, 265, 268, 270], "inject": [1, 39, 40, 43, 46, 62, 63, 85, 116, 131, 132, 141, 145, 146, 147, 150, 152, 154, 212, 223, 245, 248, 258], "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 56, 84, 114, 115, 116, 120, 123, 127, 136, 149, 157, 175, 196, 198, 204, 207, 219, 221, 258], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 53, 55, 56, 57, 58, 74, 84, 85, 105, 114, 115, 126, 129, 147, 152, 158, 159, 175, 176, 196, 200, 208, 211, 217, 222, 240, 242, 243, 244, 250, 252, 259, 260, 262, 263, 268], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 51, 56, 63, 64, 67, 68, 69, 74, 76, 77, 79, 81, 82, 83, 85, 86, 87, 90, 91, 93, 95, 96, 97, 99, 102, 106, 108, 111, 114, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 141, 143, 144, 145, 146, 150, 152, 153, 155, 157, 160, 163, 170, 177, 179, 180, 181, 182, 183, 184, 185, 187, 188, 191, 192, 193, 194, 198, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 229, 231, 232, 233, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 257, 258, 259, 262, 263, 267, 268], "yml": [1, 4, 7, 11, 23, 51, 56, 63, 73, 74, 76, 80, 85, 116, 125, 126, 127, 128, 136, 143, 147, 159, 196, 200, 246], "settings_us": [1, 11, 23, 73, 80, 143], "configapi": [1, 161, 163], "15151": 1, "builtin": [1, 11, 30, 70, 149], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 57, 58, 60, 63, 64, 65, 68, 69, 70, 73, 80, 105, 112, 118, 127, 132, 138, 149, 156, 159, 177, 234, 249, 250, 259, 267], "15150": 1, "core": [1, 3, 4, 10, 31, 45, 53, 57, 71, 78, 80, 84, 85, 114, 116, 131, 141, 145, 146, 147, 151, 175, 269], "warnings_as_error": [1, 85, 141, 146], "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 51, 56, 63, 67, 68, 69, 73, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 117, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 132, 139, 140, 146, 148, 152, 153, 155, 157, 158, 170, 181, 182, 183, 184, 185, 187, 188, 196, 198, 203, 205, 212, 213, 215, 220, 221, 222, 232, 235, 239, 244, 246, 248, 250, 252, 254, 256, 258, 265, 268, 269, 271], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 51, 107, 146, 150, 198, 256, 271], "argument": [1, 6, 7, 26, 29, 31, 35, 36, 47, 49, 64, 73, 74, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 124, 134, 135, 141, 145, 146, 151, 152, 154, 156, 157, 159, 166, 170, 174, 180, 181, 185, 186, 187, 188, 189, 191, 192, 196, 203, 205, 210, 213, 214, 220, 227, 231, 241, 242, 244, 248, 249, 250, 252, 255, 261, 262, 264, 267, 269, 270], "ftp_download": [1, 195], "commun": [1, 3, 8, 73, 85, 114, 132, 146, 149, 224, 235, 237], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 53, 56, 58, 63, 70, 74, 76, 78, 80, 82, 83, 85, 86, 90, 93, 95, 96, 102, 111, 116, 120, 123, 132, 143, 146, 149, 151, 152, 157, 161, 163, 166, 188, 191, 205, 212, 213, 216, 217, 219, 223, 239, 240, 242, 244, 245, 249, 254, 266, 267, 268, 269], "redefin": [1, 98, 147], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 58, 61, 63, 64, 65, 67, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 98, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 149, 151, 152, 153, 154, 155, 156, 157, 158, 166, 167, 168, 174, 175, 179, 181, 182, 185, 187, 188, 189, 191, 192, 194, 196, 199, 203, 205, 207, 208, 210, 211, 214, 216, 217, 221, 222, 227, 230, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 258, 265, 266, 267, 269, 270], "replac": [1, 19, 35, 49, 51, 73, 85, 116, 147, 151, 163, 188, 192, 196, 257], "zlibng": [1, 147], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 70, 73, 79, 81, 84, 85, 87, 91, 93, 95, 96, 98, 99, 102, 108, 109, 112, 116, 127, 132, 133, 142, 146, 147, 148, 156, 181, 187, 193, 194, 206, 208, 211, 221, 224, 229, 239, 240, 241, 242, 243, 244, 245, 250], "conflict": [1, 39, 40, 58, 74, 98, 115, 116, 120, 133, 147, 166, 187, 191, 208, 217, 232, 254, 265], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 58, 59, 64, 65, 70, 73, 74, 75, 78, 79, 80, 81, 82, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 105, 111, 116, 117, 118, 119, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 144, 145, 146, 147, 149, 150, 151, 153, 154, 155, 156, 158, 175, 181, 187, 188, 189, 191, 196, 198, 203, 204, 205, 207, 208, 212, 213, 214, 217, 223, 227, 231, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "system": [1, 5, 7, 8, 35, 39, 40, 42, 45, 51, 53, 55, 56, 57, 59, 61, 63, 64, 68, 73, 76, 80, 85, 98, 106, 113, 114, 116, 117, 118, 120, 127, 130, 132, 133, 136, 141, 143, 144, 146, 147, 150, 152, 156, 157, 158, 170, 176, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 196, 204, 205, 207, 221, 240, 241, 242, 244, 245, 246, 249, 250, 251, 255, 257, 258, 261, 262, 267, 268], "altern": [1, 56, 70, 86, 90, 92, 95, 116, 134, 135, 147, 175, 192, 227, 255], "wrap": [1, 118, 141, 147, 192, 213, 217, 224, 271], "anoth": [1, 7, 13, 35, 41, 51, 79, 116, 119, 120, 127, 137, 147, 149, 155, 187, 191, 203, 211, 231, 233, 238, 240, 241, 248, 249, 251, 255, 257, 258, 261, 268], "15136": 1, "stderr": [1, 70, 141, 185, 271], "captur": [1, 6, 11, 43, 86, 102, 136, 193, 194, 196, 227, 231, 241, 243, 244, 245, 248, 252, 267], "15121": 1, "platform_requir": 1, "definit": [1, 17, 61, 63, 64, 66, 67, 70, 80, 85, 90, 98, 105, 106, 107, 116, 123, 132, 136, 146, 147, 149, 152, 182, 188, 190, 192, 193, 194, 204, 205, 217, 221, 222, 223, 227, 244, 258, 261, 263, 270], "platform": [1, 8, 17, 39, 40, 55, 57, 58, 59, 67, 68, 73, 74, 80, 84, 95, 106, 122, 125, 126, 127, 130, 132, 136, 145, 146, 147, 149, 179, 188, 217, 219, 220, 221, 222, 231, 239, 240, 241, 244, 248, 259, 261, 268], "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 78, 80, 83, 84, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 105, 108, 109, 110, 111, 114, 117, 118, 124, 127, 130, 132, 133, 134, 135, 142, 145, 146, 147, 149, 150, 154, 157, 166, 185, 187, 188, 189, 191, 192, 196, 198, 200, 205, 207, 208, 217, 229, 242, 243, 244, 246, 255, 257, 258, 265, 267, 270, 271], "14871": 1, "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 57, 73, 74, 78, 80, 82, 85, 86, 97, 98, 100, 101, 102, 103, 106, 116, 117, 123, 127, 132, 133, 136, 137, 139, 142, 146, 147, 152, 155, 157, 161, 167, 181, 192, 221, 231, 239, 240, 241, 243, 245, 249, 264, 265, 266, 267, 268, 270], "explain": [1, 5, 56, 63, 70, 73, 78, 81, 92, 136, 146, 147, 149, 182, 189, 199, 231, 233, 239, 241, 242, 244, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 263, 265, 267, 270], "miss": [1, 5, 26, 35, 36, 42, 45, 53, 55, 78, 79, 80, 81, 83, 84, 86, 91, 92, 93, 95, 96, 98, 102, 111, 116, 137, 147, 158, 231, 240, 241, 242, 244, 245, 247, 248, 249, 251, 254, 255, 257, 258, 266, 268, 271], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 51, 53, 56, 57, 58, 60, 73, 74, 76, 79, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 115, 117, 118, 119, 120, 121, 124, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 146, 147, 148, 149, 152, 157, 167, 175, 179, 182, 187, 196, 203, 208, 217, 232, 233, 234, 235, 236, 238, 240, 241, 242, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 86, 91, 96, 129, 181, 187, 188, 189, 194, 196, 205, 206, 207, 208, 211, 250, 251, 252, 254, 255, 256, 263], "initi": [1, 6, 56, 63, 117, 128, 132, 134, 135, 166, 217, 225, 270], "compon": [1, 14, 15, 20, 127, 129, 178, 185, 187, 189, 206, 207, 208, 211, 221, 246], "13994": 1, "accept": [1, 5, 7, 89, 97, 98, 99, 102, 107, 109, 116, 141, 144, 147, 149, 180, 185, 188, 196, 200, 208, 213, 216, 220, 231], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 53, 57, 61, 63, 66, 68, 69, 73, 79, 80, 81, 82, 84, 87, 97, 101, 103, 105, 108, 109, 112, 114, 116, 117, 121, 127, 128, 131, 132, 141, 142, 145, 146, 147, 148, 152, 155, 161, 166, 170, 171, 174, 182, 183, 185, 186, 187, 188, 192, 196, 198, 203, 205, 206, 208, 210, 212, 217, 220, 221, 222, 223, 227, 229, 231, 232, 238, 243, 250, 251, 254, 255, 261, 262, 267, 268, 270, 271], "15297": 1, "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 53, 56, 57, 58, 70, 72, 73, 74, 77, 78, 80, 82, 83, 85, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 104, 105, 106, 110, 114, 117, 120, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 143, 144, 145, 147, 148, 149, 150, 151, 152, 157, 158, 160, 169, 170, 187, 188, 191, 196, 198, 200, 205, 208, 217, 221, 227, 228, 236, 237, 240, 242, 243, 245, 248, 249, 250, 251, 252, 254, 256, 257, 261, 262, 266, 269], "scope": [1, 116, 129, 141, 142, 146, 147, 191, 192, 193, 194, 213, 219, 224], "separ": [1, 21, 56, 82, 86, 108, 114, 116, 119, 129, 147, 151, 186, 187, 191, 192, 217, 237, 245, 251, 263, 269], "15296": 1, "rang": [1, 8, 9, 70, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 111, 116, 131, 133, 142, 146, 147, 149, 175, 232, 239, 250, 265, 267, 270], "escap": [1, 107, 151], "report": [1, 6, 13, 57, 58, 70, 85, 95, 98, 114, 137, 146, 149, 167, 231], "involv": [1, 261, 262], "15222": 1, "hard": [1, 149], "set_nam": [1, 97, 117, 127], "set_vers": [1, 97, 116, 117, 127, 175, 227, 270], "mutat": 1, "name": [1, 3, 4, 6, 7, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 56, 58, 65, 74, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 105, 106, 107, 109, 110, 114, 117, 120, 127, 128, 129, 131, 132, 134, 135, 136, 137, 139, 140, 142, 145, 146, 147, 148, 149, 151, 152, 154, 156, 157, 158, 170, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 206, 207, 212, 213, 217, 220, 221, 222, 224, 227, 229, 231, 236, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 266, 267, 268, 269, 270, 271], "version": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 35, 37, 38, 41, 42, 45, 47, 48, 49, 51, 55, 56, 57, 58, 59, 63, 65, 70, 73, 74, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 112, 114, 117, 120, 121, 127, 128, 131, 133, 135, 136, 137, 139, 140, 142, 146, 147, 149, 150, 152, 154, 156, 157, 160, 166, 175, 176, 179, 182, 183, 186, 187, 188, 191, 196, 199, 200, 203, 207, 208, 213, 217, 219, 222, 223, 224, 226, 227, 231, 232, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 271], "line": [1, 8, 10, 21, 26, 29, 31, 49, 56, 61, 62, 67, 68, 69, 70, 73, 74, 80, 83, 86, 93, 95, 96, 98, 102, 105, 106, 111, 114, 116, 118, 134, 135, 145, 146, 151, 154, 155, 156, 160, 180, 181, 185, 187, 188, 196, 203, 210, 211, 216, 220, 222, 224, 240, 242, 245, 247, 248, 250, 252, 257, 268, 269, 270, 271], "15211": 1, "format": [1, 6, 7, 13, 51, 65, 72, 82, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 106, 107, 108, 109, 111, 112, 113, 116, 121, 127, 132, 136, 137, 145, 149, 150, 154, 175, 189, 192, 196, 198, 206, 208, 214, 217, 222, 235, 248, 255, 256, 264, 271], "text": [1, 99, 114, 115, 116, 135, 146, 147, 155, 175, 196, 270], "stdout": [1, 70, 97, 99, 105, 113, 116, 141, 185, 271], "15170": 1, "avoid": [1, 5, 6, 10, 56, 58, 70, 74, 83, 85, 86, 90, 93, 95, 96, 97, 98, 102, 105, 108, 111, 114, 115, 116, 119, 120, 123, 127, 128, 133, 136, 146, 150, 151, 153, 159, 175, 187, 188, 192, 196, 203, 205, 214, 245, 248, 249, 254, 259, 261, 266, 267, 268], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 51, 55, 56, 63, 65, 70, 74, 76, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 124, 127, 131, 136, 146, 147, 151, 155, 157, 158, 175, 196, 198, 200, 207, 214, 217, 227, 240, 242, 244, 245, 247, 248, 251, 258, 259, 263, 268, 271], "due": [1, 81, 116, 263], "cmake_policy_default_cmp0091": 1, "unus": [1, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 232, 267], "variabl": [1, 26, 35, 36, 43, 45, 46, 57, 61, 76, 78, 80, 85, 105, 114, 116, 127, 131, 132, 144, 145, 146, 147, 150, 178, 182, 185, 187, 189, 190, 193, 194, 204, 205, 206, 207, 208, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224, 231, 241, 242, 244, 245, 248, 256, 257, 258, 259, 268, 269, 271], "15127": 1, "deprec": [1, 70, 85, 91, 141, 146, 149, 199, 205, 217], "system_tool": [1, 245], "favor": [1, 116], "platform_tool_requir": 1, "align": [1, 7, 149], "regular": [1, 41, 116, 127, 129, 132, 147, 151, 158, 175, 187, 198, 208, 221, 237, 239, 241, 254], "ensur": [1, 4, 8, 36, 42, 58, 63, 78, 86, 120, 149, 188, 196, 210, 213, 242], "have": [1, 4, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 45, 49, 51, 53, 55, 56, 58, 63, 65, 70, 73, 74, 78, 79, 80, 81, 82, 83, 84, 86, 93, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 120, 123, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 151, 155, 156, 158, 166, 175, 179, 181, 182, 187, 188, 196, 198, 203, 205, 208, 211, 213, 214, 217, 221, 222, 231, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "least": [1, 3, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 133, 243, 247, 254, 258, 264], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 51, 53, 55, 58, 65, 70, 73, 74, 85, 98, 105, 106, 116, 135, 136, 150, 176, 196, 226, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 270], "is_dirti": [1, 227], "statu": [1, 38, 49, 141, 227], "sure": [1, 8, 24, 29, 38, 42, 58, 99, 127, 130, 137, 141, 159, 175, 196, 217, 270], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 51, 53, 56, 63, 70, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 93, 95, 96, 97, 98, 99, 102, 105, 107, 108, 111, 112, 115, 116, 119, 120, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 166, 167, 175, 176, 181, 182, 183, 185, 186, 187, 188, 189, 193, 194, 196, 198, 203, 204, 205, 207, 208, 211, 212, 217, 221, 229, 231, 239, 241, 242, 243, 245, 246, 248, 250, 251, 252, 253, 255, 256, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "process": [1, 5, 7, 26, 53, 56, 58, 63, 70, 74, 80, 91, 101, 103, 105, 114, 116, 117, 118, 123, 132, 147, 151, 155, 157, 158, 188, 193, 217, 238, 242, 243, 246, 250, 255, 257, 267, 270, 271], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 58, 64, 66, 67, 68, 69, 70, 73, 74, 78, 80, 84, 85, 90, 98, 101, 105, 107, 114, 116, 117, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 139, 140, 144, 146, 147, 153, 160, 174, 175, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 238, 240, 241, 242, 244, 245, 247, 248, 250, 256, 261, 263, 267], "whole": [1, 6, 10, 17, 70, 78, 80, 84, 98, 116, 139, 175, 187, 188, 192, 207], "repo": [1, 4, 5, 6, 16, 56, 58, 65, 70, 105, 106, 158, 227, 263, 270], "similarli": [1, 147, 236, 269], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 56, 57, 58, 66, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 108, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 140, 146, 147, 149, 150, 151, 152, 155, 175, 176, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 210, 217, 222, 223, 227, 231, 232, 236, 238, 240, 241, 243, 244, 245, 246, 247, 249, 250, 252, 256, 258, 260, 261, 262, 263, 267, 268, 270], "15289": 1, "clear": [1, 107, 116, 131, 132, 139, 191, 244, 249, 254, 267], "header": [1, 6, 17, 35, 39, 40, 42, 74, 79, 80, 81, 91, 116, 120, 129, 130, 131, 132, 138, 139, 150, 179, 187, 189, 198, 221, 246, 250, 251, 253, 255, 256, 257, 261, 263, 271], "python_requir": [1, 74, 97, 101, 102, 103, 104, 117, 127, 128, 152, 166, 188, 214, 232, 243, 267, 269], "tool_requir": [1, 11, 35, 37, 39, 40, 74, 79, 80, 86, 90, 93, 95, 96, 98, 102, 105, 106, 117, 127, 131, 132, 133, 136, 175, 187, 188, 193, 204, 208, 211, 221, 241, 242, 243, 244, 245, 256, 259, 269], "15285": 1, "restor": [1, 2, 57, 192, 193, 194, 242, 243, 245], "portabl": [1, 70, 116], "across": [1, 8, 55, 146, 152, 153, 240], "window": [1, 8, 13, 17, 26, 29, 35, 39, 40, 42, 48, 55, 58, 59, 70, 74, 80, 81, 84, 85, 87, 99, 102, 103, 108, 112, 116, 119, 122, 127, 130, 132, 136, 139, 146, 147, 149, 160, 168, 192, 196, 204, 205, 213, 217, 231, 236, 237, 240, 242, 244, 245, 248, 249, 250, 251, 252, 255, 256, 261, 263, 268, 271], "oss": [1, 103, 132, 149, 268], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 101, 102, 104, 108, 111, 112, 116, 118, 119, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 141, 145, 146, 147, 149, 150, 151, 155, 157, 175, 183, 187, 188, 191, 196, 203, 217, 227, 231, 238, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 263, 264, 266, 267, 268, 270, 271], "relativ": 1, "absolut": [1, 35, 36, 49, 85, 105, 127, 144, 146, 147, 157, 169, 187, 188, 196, 198, 200, 201, 257], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 51, 64, 70, 80, 81, 85, 119, 122, 131, 143, 146, 147, 179, 180, 182, 183, 188, 205, 213, 217, 220, 231, 240, 241, 242, 244, 255, 259, 267], "cmakepreset": [1, 43, 46, 64, 85, 127, 146, 185, 186, 188, 244, 261, 262, 263, 271], "ignor": [1, 6, 29, 53, 74, 124, 134, 135, 151, 185, 200, 201, 227, 231, 267], "toolchain": [1, 26, 27, 45, 46, 61, 62, 64, 68, 69, 80, 85, 118, 127, 129, 146, 147, 149, 182, 185, 203, 205, 212, 217, 222, 240, 241, 242, 244, 245, 246, 249, 250, 256, 258, 262], "15215": 1, "html": [1, 45, 58, 73, 96, 155, 271], "mislead": 1, "node": [1, 13, 91, 137, 166], "15196": 1, "serial": [1, 7, 116], "show": [1, 21, 31, 39, 40, 42, 47, 48, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 120, 146, 147, 214, 227, 239, 242, 246, 250, 252, 258, 260, 261, 262, 263], "json": [1, 3, 4, 6, 13, 21, 47, 48, 56, 65, 76, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 101, 103, 106, 107, 108, 109, 111, 112, 113, 127, 128, 136, 137, 143, 155, 185, 186, 188, 255, 261, 262, 263, 264, 271], "15185": 1, "nmakedep": [1, 176, 189, 218], "quot": [1, 99, 107], "15140": 1, "lru": [1, 99, 108, 264], "data": [1, 6, 8, 80, 114, 116, 119, 126, 127, 128, 129, 132, 143, 183, 187, 196, 208, 215, 237, 252], "storage_path": [1, 85, 146], "15135": 1, "package_metadata_fold": [1, 6], "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 55, 61, 78, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 139, 140, 146, 147, 149, 156, 174, 175, 177, 181, 182, 187, 188, 193, 194, 196, 204, 205, 206, 207, 208, 211, 212, 213, 221, 222, 223, 224, 229, 230, 251, 255, 261, 269, 270], "15126": 1, "pyinstal": [1, 58], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 56, 57, 58, 63, 70, 74, 76, 80, 82, 83, 84, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 116, 121, 125, 127, 128, 129, 134, 135, 136, 137, 138, 139, 142, 147, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 166, 167, 175, 181, 182, 187, 193, 194, 200, 204, 205, 206, 208, 210, 211, 212, 213, 221, 222, 224, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 268, 269, 270], "broken": [1, 5, 65, 70, 129, 136, 201, 257, 268], "python": [1, 8, 31, 51, 56, 58, 61, 68, 70, 74, 76, 83, 85, 100, 101, 104, 113, 114, 116, 128, 141, 146, 147, 152, 154, 155, 156, 158, 160, 166, 185, 188, 192, 203, 205, 208, 210, 217, 220, 223, 244], "useless": [1, 128, 187], "distutil": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 49, 51, 56, 57, 58, 59, 61, 62, 66, 67, 68, 69, 70, 73, 78, 80, 82, 96, 98, 102, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 143, 145, 147, 149, 152, 153, 155, 156, 159, 175, 176, 177, 179, 180, 181, 182, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 229, 231, 232, 241, 243, 244, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 263, 267, 269, 270, 271], "15116": 1, "backup": [1, 7, 85, 114, 146, 174], "download_cach": [1, 4, 85, 146], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 53, 55, 58, 61, 62, 63, 65, 66, 67, 68, 74, 75, 78, 80, 82, 85, 98, 100, 105, 106, 107, 112, 116, 117, 122, 123, 131, 132, 136, 137, 146, 147, 148, 149, 157, 175, 177, 181, 188, 189, 191, 192, 196, 204, 213, 217, 219, 227, 230, 235, 239, 240, 241, 244, 246, 250, 256, 264, 265, 267, 268, 269, 270], "meson": [1, 11, 43, 57, 59, 70, 74, 76, 85, 105, 146, 147, 176, 240, 248, 250], "autotool": [1, 11, 43, 57, 59, 70, 85, 105, 127, 146, 176, 179, 189, 191, 192, 202, 204, 205, 240, 248, 250], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 53, 55, 63, 68, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 87, 91, 92, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 116, 118, 119, 120, 123, 127, 129, 130, 131, 132, 133, 136, 139, 142, 146, 147, 150, 152, 154, 155, 157, 160, 175, 179, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 196, 198, 203, 204, 205, 207, 211, 213, 216, 220, 221, 222, 223, 229, 231, 240, 241, 242, 243, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271], "simultan": [1, 187, 261, 266], "databas": [1, 85, 146, 231], "connect": [1, 53, 73, 85, 96, 107, 114, 146, 236], "15029": 1, "upload": [1, 3, 5, 7, 12, 29, 56, 65, 70, 73, 74, 80, 82, 85, 87, 89, 106, 107, 108, 114, 116, 125, 126, 146, 148, 152, 159, 161, 203, 232, 233, 234, 236, 243, 254, 255, 261, 264, 265, 271], "regardless": [1, 84, 249], "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 53, 55, 56, 58, 61, 62, 63, 66, 72, 73, 74, 79, 80, 82, 83, 84, 85, 86, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 113, 114, 116, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 140, 141, 144, 145, 146, 147, 149, 150, 152, 154, 157, 158, 159, 163, 175, 179, 180, 185, 187, 188, 191, 196, 198, 203, 205, 207, 210, 211, 212, 213, 214, 216, 217, 220, 221, 223, 231, 240, 242, 243, 244, 246, 249, 250, 251, 255, 261, 262, 264, 266, 269, 271], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 61, 62, 65, 66, 67, 69, 70, 73, 74, 75, 78, 79, 80, 84, 86, 87, 90, 92, 96, 97, 98, 100, 101, 103, 114, 116, 118, 120, 121, 123, 127, 129, 132, 133, 136, 137, 142, 145, 146, 147, 149, 150, 151, 155, 157, 158, 166, 175, 177, 179, 182, 185, 188, 196, 201, 210, 214, 217, 222, 227, 231, 238, 242, 243, 246, 249, 250, 251, 252, 254, 255, 256, 263, 264, 266, 267, 268, 269, 271], "15013": 1, "compact": [1, 84], "better": [1, 5, 6, 24, 27, 31, 36, 56, 64, 82, 98, 103, 116, 118, 131, 134, 135, 150, 192, 237, 255, 256, 266, 267, 271], "ux": [1, 109, 143], "15011": 1, "metadata": [1, 2, 7, 57, 65, 84, 112, 115, 131, 174, 250, 268], "pass": [1, 4, 13, 26, 36, 39, 45, 49, 53, 55, 64, 80, 84, 85, 86, 98, 105, 106, 114, 116, 123, 128, 129, 136, 141, 145, 146, 154, 155, 157, 163, 179, 180, 181, 182, 185, 186, 189, 198, 200, 203, 205, 206, 210, 213, 217, 220, 227, 231, 240, 248, 249, 250, 251, 252, 254, 258, 259, 261, 267, 271], "15007": 1, "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 51, 73, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 141, 146, 158, 245, 247, 248, 249, 252, 256, 258, 261, 268, 271], "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 85, 86, 105, 116, 131, 134, 135, 141, 146, 185, 200, 205, 210, 212, 217, 222, 223, 227, 247, 254, 258], "flag": [1, 49, 84, 85, 96, 122, 131, 132, 146, 149, 179, 180, 182, 187, 203, 204, 205, 208, 212, 216, 217, 219, 222, 223, 229, 249], "14966": 1, "implement": [1, 2, 7, 8, 41, 70, 74, 79, 84, 90, 105, 114, 121, 127, 130, 136, 149, 153, 157, 160, 175, 176, 180, 188, 214, 220, 228, 235, 237, 250, 252, 254, 255, 264, 266, 271], "load": [1, 16, 41, 45, 53, 56, 62, 98, 116, 125, 126, 128, 134, 135, 146, 147, 158, 169, 170, 175, 188, 195, 198, 203, 211, 213, 229, 242, 244, 270], "ci": [1, 2, 4, 5, 6, 7, 8, 56, 65, 74, 95, 106, 116, 118, 149, 150, 151, 267, 271], "workflow": [1, 56, 158, 262], "move": [1, 7, 35, 70, 74, 136, 175, 196, 250, 252, 257, 262, 263, 266, 267, 268, 270], "over": [1, 6, 8, 10, 72, 74, 80, 84, 85, 87, 98, 128, 131, 136, 144, 146, 147, 151, 154, 157, 170, 175, 180, 188, 198, 205, 207, 208, 227, 248, 251, 252, 257, 264, 266, 269, 271], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 56, 70, 73, 76, 77, 78, 92, 93, 96, 98, 99, 100, 102, 106, 116, 117, 123, 127, 131, 133, 136, 139, 147, 149, 160, 166, 170, 175, 193, 194, 204, 205, 238, 240, 242, 243, 245, 249, 250, 259, 268], "intersect": [1, 10], "compat": [1, 8, 24, 27, 45, 63, 70, 76, 77, 79, 80, 83, 86, 87, 93, 95, 96, 98, 102, 111, 112, 116, 117, 131, 147, 149, 152, 158, 187, 188, 203, 208, 217, 242, 244, 246, 256], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 68, 69, 70, 74, 83, 86, 87, 93, 95, 96, 98, 102, 111, 114, 116, 127, 129, 131, 147, 150, 157, 175, 181, 185, 187, 188, 189, 193, 203, 205, 214, 217, 221, 231, 232, 233, 236, 239, 246, 261, 263, 267, 269, 271], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 58, 59, 73, 81, 91, 96, 99, 106, 147, 149, 179, 202, 213, 217, 231, 240, 242, 244, 245, 248, 250, 251, 255, 261, 263], "14858": 1, "pkgconfigdep": [1, 45, 55, 61, 67, 132, 176, 202, 217, 248], "listen": [1, 114, 207, 210, 237], "system_package_vers": [1, 187, 208], "properti": [1, 21, 42, 67, 68, 91, 96, 116, 127, 129, 133, 163, 179, 188, 204, 213, 217, 221, 222, 230, 246, 257, 258, 262], "14808": 1, "shorthand": 1, "cli": [1, 10, 13, 31, 70, 91, 96, 146, 148, 151, 155, 185, 210, 236, 270], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 51, 73, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 99, 102, 104, 106, 107, 108, 109, 110, 111, 112, 114, 116, 120, 122, 123, 127, 129, 131, 132, 133, 141, 142, 146, 147, 148, 149, 157, 174, 183, 185, 186, 187, 188, 192, 196, 197, 198, 203, 205, 206, 208, 211, 213, 216, 217, 223, 227, 238, 240, 241, 242, 243, 244, 252, 254, 269, 270], "host": [1, 8, 13, 24, 30, 35, 42, 70, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 146, 147, 157, 166, 170, 177, 183, 187, 188, 189, 194, 198, 205, 208, 213, 217, 219, 221, 223, 231, 232, 235, 236, 239, 242, 256], "14727": 1, "control": [1, 4, 5, 49, 56, 70, 73, 78, 86, 116, 129, 135, 149, 151, 181, 188, 221, 255, 267, 269, 271], "clean": [1, 6, 7, 30, 32, 56, 58, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 196, 210, 255, 261, 267, 268], "artifact": [1, 6, 7, 13, 29, 65, 70, 74, 79, 84, 85, 87, 98, 108, 112, 116, 117, 119, 124, 129, 130, 131, 133, 146, 157, 159, 174, 188, 235, 236, 250, 255, 257, 261, 262, 263, 268, 271], "14054": 1, "overwrit": [1, 7, 24, 78, 83, 86, 90, 93, 95, 96, 98, 102, 105, 106, 111, 136, 175, 191, 208], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 53, 76, 115, 117, 127, 130, 132, 136, 176, 185, 186, 188, 200, 205, 211, 217, 225, 232, 239, 241, 250, 252, 254, 255, 256, 259, 260, 261, 262], "nor": [1, 36, 70, 124, 128, 136, 137, 174, 231], "15058": 1, "astra": 1, "elbru": [1, 149], "altlinux": 1, "distribut": [1, 7, 35, 45, 56, 58, 70, 106, 136, 149, 160, 231, 237], "apt": [1, 58, 85, 117, 137, 146, 230], "systempackagemanag": 1, "15051": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 51, 53, 55, 56, 58, 70, 73, 74, 80, 84, 85, 96, 106, 108, 114, 116, 131, 136, 137, 145, 146, 147, 150, 158, 168, 174, 177, 179, 183, 185, 186, 187, 189, 192, 195, 200, 203, 208, 211, 213, 217, 219, 220, 223, 227, 229, 231, 240, 242, 243, 248, 252, 254, 255, 256, 261, 262, 263, 266, 268, 271], "linux": [1, 8, 26, 27, 35, 44, 48, 55, 58, 59, 70, 80, 81, 85, 87, 95, 99, 102, 103, 137, 139, 146, 147, 149, 183, 198, 213, 231, 240, 241, 242, 244, 245, 248, 251, 255, 261, 263, 268], "mint": [1, 58], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 51, 56, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 106, 107, 111, 112, 114, 116, 118, 129, 131, 132, 136, 137, 139, 140, 146, 147, 149, 151, 152, 155, 158, 160, 166, 167, 174, 182, 183, 187, 192, 196, 197, 198, 203, 211, 213, 214, 217, 219, 227, 231, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 264, 267, 268, 271], "commit": [1, 19, 56, 65, 70, 74, 116, 129, 136, 196, 227, 247, 248, 251, 252, 258, 262, 263, 268, 270], "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 53, 56, 70, 73, 76, 82, 83, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 106, 108, 109, 111, 112, 114, 143, 145, 146, 147, 152, 161, 166, 167, 168, 174, 196, 227, 232, 233, 236, 237, 238, 240, 242, 245, 246, 249, 255, 262, 271], "server": [1, 4, 5, 6, 7, 8, 13, 29, 53, 56, 57, 65, 70, 74, 76, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 102, 105, 106, 107, 108, 111, 112, 116, 125, 126, 131, 145, 146, 150, 151, 159, 166, 198, 203, 232, 235, 236, 238, 240, 243, 252, 254, 264, 268, 271], "even": [1, 4, 6, 35, 36, 47, 51, 58, 59, 70, 73, 74, 79, 81, 87, 98, 103, 107, 112, 116, 118, 120, 123, 127, 133, 134, 135, 136, 137, 146, 147, 148, 149, 154, 157, 158, 175, 196, 214, 221, 238, 241, 243, 248, 249, 250, 254, 265, 266, 267, 268, 269, 270], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 85, 98, 136, 150, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268], "15023": 1, "appl": [1, 24, 42, 69, 70, 73, 76, 81, 85, 91, 96, 99, 106, 146, 147, 149, 176, 180, 181, 182, 186, 188, 203, 205, 215, 240, 242, 250], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 51, 56, 73, 74, 80, 81, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 103, 106, 108, 111, 112, 116, 119, 122, 123, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 145, 146, 147, 149, 150, 158, 159, 160, 168, 175, 179, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 236, 240, 241, 242, 243, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266], "15015": 1, "autotoolstoolchain": [1, 45, 61, 85, 146, 176, 191, 202, 203, 248], "extraflag": 1, "prioriti": [1, 98, 104, 116, 123, 132, 133, 134, 135, 145, 146, 147, 151, 170, 191, 266], "15005": 1, "color": [1, 31, 116, 247, 248, 251, 258, 259], "15002": 1, "sqlite3": [1, 127], "unsupport": [1, 252], "less": [1, 6, 35, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 270], "than": [1, 8, 56, 63, 70, 73, 78, 80, 85, 86, 87, 94, 101, 108, 116, 119, 121, 122, 128, 131, 132, 134, 135, 140, 141, 146, 149, 150, 157, 175, 182, 183, 187, 188, 205, 208, 222, 223, 231, 240, 243, 249, 253, 259, 268, 269, 271], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 70, 74, 75, 80, 98, 104, 105, 116, 119, 120, 125, 127, 131, 133, 134, 135, 136, 142, 147, 149, 150, 158, 176, 183, 185, 186, 188, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 223, 224, 225, 231, 240, 242, 243, 244, 254, 255, 264, 266, 268, 269, 271], "forward": [1, 6, 45, 53, 55, 70, 175, 198, 266, 270], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 56, 63, 74, 78, 79, 119, 120, 146, 147, 175, 188, 205, 211, 217, 251, 261, 262, 271], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 74, 78, 79, 81, 82, 83, 84, 86, 87, 90, 93, 95, 96, 98, 100, 101, 102, 103, 104, 106, 108, 111, 112, 116, 127, 131, 142, 149, 155, 166, 175, 196, 232, 239, 240, 245, 249, 251, 254, 256, 257, 262, 264, 265, 267], "forc": [1, 6, 31, 36, 41, 74, 83, 85, 86, 91, 93, 95, 96, 98, 102, 104, 105, 106, 107, 111, 112, 114, 116, 120, 145, 146, 147, 149, 151, 174, 188, 205, 213, 240, 243, 266, 267, 268], "rebuild": [1, 5, 79, 116, 255, 271], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 58, 70, 74, 75, 77, 78, 80, 85, 98, 104, 116, 117, 123, 132, 133, 141, 146, 147, 149, 157, 200, 208, 214, 239, 242, 258, 260, 261, 262, 264, 269, 270, 271], "previou": [1, 2, 6, 7, 13, 70, 78, 95, 98, 99, 101, 103, 149, 155, 181, 186, 187, 188, 191, 217, 222, 231, 238, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 269, 270], "still": [1, 5, 29, 39, 40, 56, 58, 101, 108, 116, 119, 120, 123, 131, 132, 149, 166, 174, 227, 254, 261, 268, 269, 271], "project": [1, 2, 4, 5, 16, 17, 18, 19, 21, 24, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 78, 80, 85, 86, 105, 114, 116, 117, 129, 132, 146, 157, 175, 180, 181, 182, 186, 203, 206, 210, 211, 212, 213, 214, 217, 221, 222, 225, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 269, 271], "14938": 1, "affect": [1, 5, 6, 10, 58, 78, 80, 81, 98, 116, 122, 123, 131, 133, 147, 149, 175, 182, 185, 187, 188, 196, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 230, 241, 244, 246, 248, 249, 251, 254, 261, 263], "14932": 1, "The": [1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 26, 27, 29, 31, 35, 36, 39, 40, 41, 42, 45, 47, 49, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 76, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 166, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 234, 236, 237, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 53, 55, 56, 57, 59, 70, 73, 74, 78, 79, 80, 81, 82, 83, 86, 87, 90, 91, 93, 95, 96, 99, 100, 101, 102, 105, 106, 111, 114, 116, 117, 118, 124, 127, 129, 130, 133, 134, 135, 136, 137, 139, 140, 142, 146, 147, 149, 152, 154, 156, 157, 158, 159, 160, 161, 166, 179, 180, 181, 182, 185, 186, 188, 193, 194, 203, 204, 205, 207, 210, 211, 212, 213, 216, 217, 221, 222, 224, 229, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 254, 255, 256, 258, 261, 263, 266, 267, 269, 270, 271], "pkgconfig": [1, 85, 146, 176, 202, 217], "fill_cpp_info": [1, 207], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 53, 55, 56, 70, 75, 78, 80, 96, 102, 116, 127, 132, 147, 149, 151, 175, 186, 214, 235, 236, 237, 240, 247, 248, 262, 268, 269, 270], "noisi": 1, "quiet": [1, 85, 141, 146, 180, 185, 216, 220], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 29, 35, 36, 39, 40, 49, 51, 56, 58, 63, 69, 70, 73, 74, 78, 80, 85, 86, 90, 96, 98, 99, 101, 103, 105, 108, 112, 116, 117, 118, 120, 125, 126, 127, 128, 130, 131, 132, 136, 137, 139, 140, 142, 145, 146, 147, 149, 150, 167, 177, 187, 188, 189, 193, 194, 196, 217, 223, 227, 229, 240, 242, 244, 245, 249, 251, 252, 254, 255, 259, 262, 264, 266, 267, 268, 269, 270, 271], "buildinfo": 1, "14886": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 78, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 108, 111, 114, 116, 118, 119, 120, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 144, 146, 147, 149, 150, 152, 154, 156, 157, 158, 160, 166, 174, 175, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 193, 196, 198, 203, 217, 219, 220, 221, 222, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 51, 58, 59, 65, 70, 74, 80, 84, 86, 87, 95, 98, 102, 105, 108, 112, 114, 116, 120, 127, 131, 132, 133, 136, 138, 139, 140, 141, 145, 146, 147, 149, 150, 151, 153, 156, 158, 160, 167, 170, 175, 179, 181, 187, 191, 192, 193, 205, 207, 217, 221, 231, 235, 236, 242, 243, 244, 248, 249, 250, 252, 255, 256, 259, 262, 264, 267, 268, 271], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 55, 56, 58, 63, 64, 68, 70, 74, 77, 78, 79, 82, 85, 90, 92, 96, 97, 101, 102, 105, 108, 112, 114, 116, 120, 122, 123, 128, 129, 131, 132, 133, 134, 135, 137, 141, 142, 146, 149, 150, 151, 152, 155, 156, 175, 179, 186, 187, 188, 189, 191, 200, 204, 205, 206, 213, 217, 220, 223, 227, 231, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 258, 261, 262, 263, 266, 268, 269, 270, 271], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 56, 57, 58, 63, 70, 74, 82, 84, 85, 89, 90, 92, 96, 98, 99, 106, 108, 114, 116, 125, 126, 136, 146, 147, 148, 150, 152, 159, 161, 166, 176, 195, 227, 233, 236, 238, 240, 243, 244, 245, 249, 252, 253, 256, 260, 262, 264, 266, 268, 271], "14852": 1, "min": [1, 96, 182, 217], "xro": [1, 149], "simul": 1, "14776": 1, "unnecessari": [1, 56, 119], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 56, 78, 80, 82, 84, 90, 93, 96, 98, 101, 103, 105, 116, 118, 119, 120, 121, 126, 127, 128, 129, 131, 132, 133, 135, 136, 137, 139, 145, 146, 147, 149, 154, 156, 157, 170, 175, 187, 188, 189, 192, 196, 205, 214, 216, 221, 238, 241, 242, 244, 248, 250, 252, 254, 255, 257, 258, 263, 266, 267, 268, 269, 270], "skip": [1, 4, 36, 85, 86, 87, 90, 91, 96, 116, 118, 141, 174, 179, 187, 188, 233, 241, 248, 249, 254, 259], "transit": [1, 13, 36, 74, 86, 87, 98, 120, 127, 133, 147, 175, 181, 187, 193, 204, 221, 239, 261], "15082": 1, "15042": 1, "download_sourc": [1, 36, 85, 136, 146], "edit": [1, 3, 14, 15, 21, 26, 29, 51, 58, 70, 73, 74, 82, 106, 107, 114, 116, 127, 129, 132, 136, 147, 149, 160, 175, 232, 235, 237, 240, 243, 260, 263, 268], "15004": 1, "incorrectli": 1, "xcconfig": [1, 69, 181, 182], "14898": 1, "export_sourc": [1, 7, 16, 18, 56, 84, 116, 117, 125, 127, 129, 200], "been": [1, 4, 6, 8, 13, 26, 58, 59, 65, 70, 74, 78, 84, 86, 90, 98, 99, 108, 123, 127, 132, 133, 136, 138, 139, 140, 147, 149, 167, 175, 181, 187, 193, 242, 243, 249, 250, 251, 261, 262, 264, 268, 271], "14850": 1, "properli": [1, 97, 146, 250, 259], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 51, 57, 58, 59, 65, 70, 73, 79, 81, 85, 91, 95, 96, 98, 99, 102, 105, 106, 116, 119, 129, 131, 132, 136, 146, 147, 149, 153, 157, 160, 175, 180, 181, 182, 185, 186, 187, 188, 193, 194, 198, 204, 205, 213, 217, 220, 221, 222, 227, 232, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269], "candid": 1, "14846": 1, "end": [1, 4, 70, 73, 74, 120, 133, 146, 147, 157, 158, 188, 192, 216, 242, 251, 259, 268, 269], "activ": [1, 8, 29, 35, 41, 49, 56, 58, 63, 70, 80, 85, 116, 127, 132, 141, 146, 149, 151, 152, 181, 185, 187, 188, 191, 193, 194, 208, 211, 221, 223, 224, 241, 242, 245, 256], "pre": [1, 9, 45, 53, 56, 58, 70, 73, 82, 85, 90, 106, 116, 136, 145, 146, 152, 158, 192, 214, 244, 246, 253, 262, 263, 269], "resolut": [1, 125, 152], "full": [1, 5, 6, 24, 36, 39, 40, 51, 61, 65, 66, 68, 69, 70, 79, 80, 84, 86, 90, 98, 99, 101, 105, 116, 121, 127, 131, 137, 142, 149, 153, 157, 159, 161, 166, 175, 187, 188, 191, 207, 213, 227, 249, 257, 261, 270], "14814": 1, "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 51, 53, 55, 56, 58, 70, 73, 77, 78, 79, 80, 84, 87, 88, 90, 97, 98, 101, 103, 104, 105, 108, 112, 114, 116, 118, 122, 123, 125, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 154, 155, 157, 158, 175, 180, 181, 182, 186, 187, 188, 189, 192, 193, 194, 196, 203, 205, 207, 208, 211, 221, 227, 231, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 263, 264, 266, 267, 268, 269, 270, 271], "correctli": [1, 17, 18, 24, 29, 42, 63, 74, 86, 103, 138, 187, 188, 189, 196, 203, 242, 246, 250, 254, 255, 259], "lower": [1, 214, 243, 255, 269], "bound": [1, 269], "exclud": [1, 39, 40, 83, 84, 85, 86, 93, 95, 96, 98, 102, 111, 116, 196, 221, 227, 243, 269], "upper": [1, 269], "wrong": [1, 92, 95, 130, 136], "cppstd": [1, 24, 26, 27, 73, 78, 91, 96, 106, 116, 123, 131, 147, 149, 160, 176, 182, 188, 205, 212, 223, 240, 241, 242, 249, 250, 254, 271], "newer": [1, 8, 70, 83, 86, 93, 95, 96, 98, 100, 101, 102, 104, 111, 116, 149, 166, 256, 269, 270], "clang": [1, 24, 26, 27, 42, 45, 70, 73, 80, 81, 85, 91, 96, 99, 106, 108, 113, 140, 146, 147, 149, 160, 179, 186, 188, 200, 217, 240, 242, 250], "introduc": [1, 29, 51, 77, 114, 136, 239, 249, 254, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14837": 1, "14781": 1, "dry": [1, 108, 112], "14760": 1, "host_tool": 1, "package_manag": [1, 85, 116, 132, 137, 146, 176, 230], "indic": [1, 4, 26, 63, 73, 85, 86, 90, 133, 146, 148, 185, 191, 196, 210, 211, 224, 242, 244, 256, 266], "whether": [1, 83, 85, 86, 89, 90, 95, 96, 98, 102, 114, 127, 137, 146, 181, 183, 219, 248, 251, 258, 263, 271], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 51, 53, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 85, 91, 96, 97, 98, 105, 116, 117, 119, 120, 123, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 146, 147, 150, 155, 179, 181, 182, 187, 188, 189, 192, 196, 202, 207, 208, 211, 213, 221, 232, 239, 240, 241, 244, 245, 246, 247, 250, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 53, 55, 58, 70, 73, 79, 95, 96, 98, 102, 107, 116, 124, 125, 126, 128, 136, 139, 147, 151, 160, 166, 175, 179, 186, 188, 213, 231, 238, 240, 242, 245, 248, 249, 251, 255, 258, 259, 262, 266, 267, 270], "being": [1, 6, 8, 10, 13, 31, 70, 74, 78, 79, 80, 81, 83, 86, 93, 95, 96, 98, 101, 102, 111, 116, 120, 125, 126, 127, 129, 132, 133, 134, 135, 136, 151, 153, 158, 159, 166, 175, 179, 185, 186, 196, 210, 211, 216, 242, 250, 255, 259, 266, 270, 271], "14819": 1, "set_properti": [1, 17, 21, 41, 132, 208, 211, 251], "14813": 1, "minor": [1, 70, 78, 79, 116, 147, 149, 175, 266, 269, 271], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 80, 131, 179, 256], "none": [1, 31, 36, 38, 49, 78, 85, 91, 96, 97, 98, 116, 127, 129, 139, 141, 146, 147, 158, 162, 166, 167, 170, 171, 174, 179, 180, 183, 185, 186, 187, 188, 191, 192, 196, 198, 200, 201, 203, 205, 206, 207, 210, 216, 217, 219, 220, 227, 231], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 77, 79, 85, 86, 93, 98, 100, 101, 103, 104, 116, 119, 130, 131, 134, 135, 146, 147, 150, 151, 153, 158, 159, 160, 170, 181, 182, 188, 193, 194, 198, 200, 205, 213, 216, 222, 227, 231, 232, 233, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270], "found": [1, 4, 21, 26, 27, 39, 40, 49, 53, 58, 83, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 129, 132, 137, 138, 144, 147, 150, 157, 185, 187, 188, 196, 203, 214, 217, 240, 242, 245, 254, 263, 267], "offlin": [1, 70], "14800": 1, "reus": [1, 29, 41, 70, 116, 117, 127, 128, 130, 132, 136, 152, 233, 240, 250, 251, 259, 264], "session": [1, 58], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 53, 57, 63, 78, 85, 114, 120, 144, 146, 157, 232, 233, 238, 242, 248, 251, 254], "14795": 1, "rel": [1, 5, 18, 35, 36, 63, 81, 105, 114, 116, 117, 118, 129, 132, 134, 135, 144, 147, 157, 158, 179, 187, 188, 191, 196, 200, 201, 257, 262, 263, 266, 268], "partial": [1, 79, 83, 86, 89, 90, 93, 95, 96, 97, 98, 101, 102, 103, 104, 111, 267, 271], "directori": [1, 26, 27, 35, 36, 38, 47, 58, 98, 105, 114, 116, 125, 126, 127, 129, 132, 134, 135, 136, 144, 146, 147, 148, 155, 187, 196, 200, 201, 211, 214, 227, 242, 248, 254, 255, 260, 261, 262], "14782": 1, "14743": 1, "arg": [1, 31, 85, 118, 151, 155, 203, 210, 213, 224, 227, 231, 270], "cmd": [1, 26, 116, 132, 138, 147, 154, 192, 203, 220, 227, 237, 259], "14737": 1, "block": [1, 51, 271], "interfac": [1, 6, 56, 63, 70, 79, 114, 152, 189], "select": [1, 21, 26, 63, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 106, 107, 108, 109, 111, 112, 113, 177, 186, 188, 196, 213, 220, 236, 246, 257, 264], "kei": [1, 56, 85, 105, 114, 116, 127, 132, 146, 150, 155, 188, 200, 205, 217, 222, 223, 236, 252, 260, 261], "14731": 1, "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 58, 70, 74, 79, 84, 85, 98, 99, 105, 114, 116, 117, 124, 125, 126, 127, 129, 130, 136, 146, 152, 157, 175, 195, 199, 200, 238, 246, 250, 251, 252, 254, 255, 256, 258, 260, 271], "larg": [1, 6, 10, 114, 116, 131, 147, 192, 260, 270], "14716": 1, "mesontoolchain": [1, 55, 67, 85, 146, 176, 215, 216], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 56, 70, 73, 74, 78, 79, 80, 84, 85, 86, 87, 91, 97, 98, 99, 101, 103, 105, 106, 108, 109, 114, 116, 118, 119, 120, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 141, 144, 146, 147, 149, 151, 152, 155, 158, 175, 176, 182, 185, 186, 187, 188, 193, 196, 198, 201, 203, 206, 208, 210, 211, 213, 217, 221, 222, 228, 231, 236, 238, 240, 242, 243, 247, 249, 250, 254, 255, 256, 260, 261, 264, 266, 267, 268, 269, 270, 271], "14692": 1, "cl": [1, 70, 223], "plugin": [1, 26, 59, 70, 74, 76, 82, 85, 114, 121, 131, 141, 152, 153, 154, 159, 256], "14682": 1, "mechan": [1, 7, 13, 56, 70, 73, 74, 80, 114, 116, 121, 127, 135, 136, 147, 150, 152, 157, 175, 189, 192, 227, 242, 243, 249, 265, 267, 268, 270, 271], "transform": [1, 151, 196, 217], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 53, 55, 65, 70, 75, 78, 81, 83, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 114, 116, 123, 131, 132, 136, 137, 143, 146, 147, 179, 182, 186, 187, 188, 189, 192, 200, 205, 212, 213, 216, 221, 222, 223, 224, 235, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 258, 262, 264, 268, 269, 271], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 51, 53, 63, 70, 79, 85, 132, 138, 146, 147, 149, 186, 188, 205, 214, 217, 223, 236, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 262, 268], "ld": [1, 53, 96, 205, 217, 241], "blank": [1, 114, 191, 217], "string": [1, 6, 26, 42, 45, 51, 55, 80, 85, 99, 105, 114, 116, 131, 134, 135, 141, 146, 147, 148, 174, 185, 186, 188, 191, 192, 196, 200, 205, 208, 212, 217, 240, 241, 248, 250, 270, 271], "14676": 1, "nobara": 1, "distro": [1, 58, 146, 149, 231], "dnf": [1, 85, 146, 230], "map": [1, 79, 127, 132, 175, 180, 185, 188, 205, 217, 220, 223, 231, 255, 263], "14668": 1, "b_vscrt": [1, 217], "14664": 1, "regex": [1, 80, 116, 131, 187], "pattern": [1, 6, 7, 13, 31, 80, 83, 84, 85, 86, 87, 88, 93, 95, 96, 98, 99, 102, 104, 107, 108, 111, 112, 114, 116, 130, 131, 136, 141, 142, 143, 171, 174, 187, 196, 198, 221, 227, 228, 242, 249, 257, 264], "14621": 1, "makedep": [1, 66, 176, 202], "tweak": [1, 188], "14605": 1, "detect_api": [1, 146, 147], "jinja": [1, 49, 145, 146, 147, 150, 192], "templat": [1, 26, 47, 49, 70, 81, 82, 96, 106, 116, 143, 147, 150, 169, 186, 188, 192], "14578": 1, "14532": 1, "14740": 1, "improv": [1, 6, 70, 118, 271], "conanapi": [1, 31, 155, 161, 162], "init": [1, 56, 117, 127, 175, 270], "failur": [1, 70, 85, 146, 198], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 53, 70, 74, 85, 87, 90, 98, 103, 105, 106, 107, 112, 116, 122, 123, 128, 146, 147, 166, 174, 177, 181, 187, 188, 196, 205, 208, 231, 232, 233, 238, 242, 244, 245, 247, 248, 249, 250, 253, 256, 257, 259, 263, 266, 268, 270, 271], "duplic": [1, 39, 40, 53, 107, 132], "alias": [1, 116, 175, 187, 208], "14644": 1, "regress": [1, 70], "win_bash": [1, 85, 91, 146], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 51, 56, 70, 73, 74, 78, 79, 80, 81, 85, 91, 95, 96, 97, 99, 102, 105, 106, 108, 116, 120, 123, 127, 130, 132, 133, 134, 142, 147, 149, 152, 156, 175, 181, 182, 185, 186, 187, 188, 192, 202, 205, 208, 212, 217, 221, 231, 232, 233, 238, 239, 240, 241, 248, 249, 250, 251, 252, 258, 264, 266, 271], "test_requir": [1, 74, 117, 127, 133, 241, 244, 248, 254, 256, 269], "diamond": [1, 266], "14721": 1, "crash": [1, 6, 74, 266], "test_packag": [1, 21, 27, 42, 56, 74, 86, 90, 105, 106, 111, 117, 138, 166, 175, 246, 247, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 51, 53, 56, 61, 63, 68, 69, 74, 79, 82, 83, 87, 90, 98, 105, 106, 110, 114, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 137, 138, 141, 150, 154, 155, 157, 158, 159, 175, 180, 185, 187, 188, 189, 192, 193, 194, 199, 203, 205, 210, 212, 213, 216, 220, 222, 223, 224, 231, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 265, 266, 268, 271], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 106, 114, 123, 124, 136, 147, 149, 154, 159, 183, 187, 188, 192, 196, 198, 217, 219, 220, 227, 238, 242, 259, 266], "chain": [1, 5, 141, 271], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 55, 56, 58, 62, 70, 74, 78, 83, 84, 85, 86, 90, 93, 95, 96, 97, 98, 99, 101, 102, 107, 108, 111, 114, 116, 118, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 139, 146, 149, 151, 152, 155, 156, 157, 174, 175, 179, 181, 182, 187, 188, 189, 193, 194, 196, 205, 206, 208, 217, 221, 223, 231, 234, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 254, 256, 257, 261, 262, 264, 265, 266, 267, 268], "14673": 1, "cpu": [1, 8, 85, 146, 149, 183, 212, 220], "nativ": [1, 26, 27, 55, 68, 74, 85, 146, 175, 183, 211, 216, 217, 224], "arm64": [1, 26, 42, 149, 177, 180, 220], "14667": 1, "updat": [1, 4, 6, 8, 26, 39, 40, 59, 63, 70, 74, 83, 85, 86, 89, 90, 93, 95, 96, 98, 101, 102, 111, 114, 116, 128, 132, 133, 137, 146, 149, 153, 166, 179, 189, 196, 205, 231, 243, 251, 265, 270, 271], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 53, 55, 56, 58, 59, 65, 79, 81, 84, 95, 96, 116, 157, 159, 175, 181, 187, 211, 213, 236, 238, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "ones": [1, 6, 10, 30, 31, 42, 43, 46, 62, 70, 74, 78, 82, 84, 85, 95, 108, 121, 133, 137, 146, 147, 149, 157, 158, 163, 177, 187, 188, 191, 192, 196, 201, 208, 213, 219, 220, 221, 238, 243, 257, 262, 263, 267, 268, 270], "14643": 1, "unnecessarili": [1, 80], "decor": [1, 152], "sequenc": [1, 45, 92, 114], "14642": 1, "shouldn": [1, 6, 35, 39, 40, 56, 58, 74, 80, 108, 116, 120, 123, 130, 132, 176, 221, 227, 243, 254, 268], "14622": 1, "patch_us": [1, 200], "conandata": [1, 4, 51, 56, 63, 74, 116, 125, 126, 127, 128, 136, 159, 196, 200, 246], "patch": [1, 6, 19, 43, 50, 70, 74, 78, 79, 84, 116, 118, 126, 136, 147, 149, 175, 176, 179, 195, 203, 246, 252, 269, 271], "handl": [1, 6, 9, 56, 73, 114, 116, 132, 149, 191, 200, 232, 246, 248, 263], "apply_conandata_patch": [1, 126, 136, 195], "14576": 1, "xcode": [1, 57, 59, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 146, 180, 181, 182, 185, 186, 213, 217], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 59, 65, 70, 73, 85, 91, 96, 97, 116, 148, 149, 179, 180, 217, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "tvo": [1, 149, 179], "watcho": [1, 149, 179, 217], "14538": 1, "incorrect": [1, 70], "conancent": [1, 2, 13, 29, 56, 57, 70, 73, 79, 81, 91, 95, 96, 99, 109, 116, 132, 146, 148, 234, 240, 243, 245], "web": [1, 4, 6, 58, 116, 149, 235, 236], "url": [1, 3, 4, 56, 84, 85, 91, 96, 97, 105, 107, 114, 127, 136, 146, 148, 150, 158, 196, 198, 227, 236, 237, 247, 248, 250, 251, 252, 255, 258], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 70, 74, 80, 105, 114, 116, 124, 132, 142, 147, 158, 175, 181, 191, 192, 221, 243, 267], "14529": 1, "rrev": [1, 31, 99], "rrev_timestamp": 1, "prev_timestamp": 1, "14526": 1, "resolv": [1, 8, 10, 83, 84, 85, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 104, 111, 114, 120, 146, 147, 170, 192, 196, 243, 265, 267, 268, 269], "14510": 1, "verifi": [1, 5, 51, 74, 84, 85, 140, 146, 148, 152, 159, 198, 252, 255, 259, 271], "14508": 1, "visiono": [1, 149, 179], "14504": 1, "unknown": [1, 78, 91, 96, 141], "14493": 1, "skip_binari": [1, 36, 85, 146], "14466": 1, "symlink": [1, 85, 146, 157, 176, 195, 196, 246], "disabl": [1, 85, 86, 114, 146, 148, 151, 157, 188, 198, 205, 254], "14461": 1, "14413": 1, "cli_arg": [1, 185], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 73, 76, 107, 114, 143, 150, 227, 236], "store": [1, 4, 6, 13, 56, 63, 65, 70, 78, 84, 85, 98, 105, 106, 114, 116, 132, 145, 146, 156, 158, 188, 196, 200, 203, 232, 233, 238, 240, 242, 246, 249, 250, 251, 255, 261, 263, 267, 270, 271], "14392": 1, "apk": [1, 85, 146, 230], "alpin": [1, 231], "14382": 1, "msvc": [1, 81, 85, 99, 116, 132, 146, 147, 160, 205, 219, 222, 244], "invok": [1, 42, 45, 85, 98, 146, 147, 157, 167, 179, 221, 230, 241, 242, 245, 247, 248, 252, 257, 259, 262], "within": [1, 85, 114, 116, 147, 179, 189, 196, 244, 269], "visual": [1, 28, 35, 57, 59, 70, 72, 80, 85, 127, 132, 146, 149, 176, 185, 186, 187, 188, 205, 213, 214, 217, 218, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "studio": [1, 11, 25, 27, 28, 35, 57, 59, 60, 70, 80, 85, 127, 132, 146, 149, 185, 186, 187, 188, 205, 213, 214, 217, 219, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "prompt": [1, 31, 151, 188, 220, 223, 224], "where": [1, 4, 8, 19, 21, 31, 42, 45, 51, 55, 58, 70, 80, 84, 85, 97, 98, 114, 116, 118, 127, 129, 132, 144, 146, 148, 149, 155, 175, 180, 187, 188, 189, 191, 192, 196, 198, 203, 205, 210, 211, 213, 214, 216, 217, 220, 227, 236, 240, 241, 242, 244, 249, 250, 251, 252, 263, 268], "point": [1, 4, 8, 29, 35, 39, 40, 56, 57, 63, 70, 80, 85, 96, 98, 103, 105, 116, 127, 147, 157, 158, 166, 179, 188, 196, 201, 203, 241, 243, 255, 257, 263, 266, 271], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 51, 55, 56, 57, 64, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 105, 106, 108, 111, 112, 116, 119, 121, 123, 127, 130, 131, 132, 133, 136, 140, 143, 146, 147, 160, 168, 179, 180, 181, 182, 183, 185, 186, 187, 191, 193, 194, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 216, 217, 219, 220, 221, 222, 223, 224, 229, 232, 239, 240, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 55, 56, 63, 74, 78, 79, 80, 84, 85, 90, 97, 98, 105, 112, 116, 119, 120, 122, 123, 124, 128, 130, 131, 132, 133, 134, 135, 136, 138, 141, 142, 146, 147, 151, 154, 155, 158, 159, 179, 182, 185, 188, 192, 193, 194, 203, 205, 207, 210, 216, 217, 221, 223, 227, 229, 231, 242, 244, 245, 248, 249, 250, 251, 254, 256, 259, 261, 262, 263, 271], "14364": 1, "document": [1, 3, 4, 26, 27, 58, 65, 74, 75, 80, 87, 108, 116, 124, 127, 132, 137, 149, 152, 160, 175, 176, 188, 189, 196, 199, 213, 217, 235, 236, 244, 245, 249, 263, 271], "mode": [1, 17, 21, 70, 73, 85, 88, 99, 116, 127, 129, 136, 137, 146, 149, 213, 231, 232, 242, 260, 263, 271], "14358": 1, "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 53, 56, 58, 65, 70, 73, 74, 76, 78, 80, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 108, 111, 116, 118, 121, 125, 126, 127, 129, 132, 136, 137, 140, 142, 143, 152, 153, 159, 166, 175, 177, 181, 185, 187, 189, 196, 202, 210, 216, 221, 240, 241, 242, 244, 245, 246, 248, 249, 250, 251, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14347": 1, "default_build_opt": 1, "attribut": [1, 19, 21, 48, 74, 76, 78, 80, 97, 115, 118, 120, 122, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 141, 142, 158, 175, 181, 186, 187, 188, 200, 211, 214, 218, 242, 244, 247, 250, 251, 252, 254, 257, 259, 262, 263, 270], "14340": 1, "match": [1, 4, 10, 17, 26, 31, 35, 45, 53, 58, 78, 80, 82, 83, 84, 85, 86, 87, 92, 93, 95, 96, 98, 99, 102, 107, 108, 111, 112, 114, 116, 120, 131, 132, 136, 141, 145, 146, 147, 149, 150, 160, 183, 187, 196, 197, 198, 200, 220, 223, 240, 242, 243, 244, 245, 249, 250, 256, 263, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 56, 68, 70, 74, 80, 82, 85, 87, 90, 92, 96, 98, 99, 100, 101, 104, 106, 107, 108, 112, 114, 116, 119, 120, 125, 127, 131, 133, 134, 135, 137, 139, 141, 146, 147, 149, 151, 158, 163, 175, 187, 188, 191, 196, 200, 219, 231, 243, 244, 250, 252, 257, 258, 260, 261, 262, 267, 268, 269, 270], "channel": [1, 5, 57, 70, 73, 83, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 110, 114, 127, 147, 243], "14338": 1, "makefil": [1, 45, 57, 59, 70, 185, 186, 203, 205, 206, 223, 244], "14133": 1, "14594": 1, "v2": [1, 149, 158, 183, 237], "readi": [1, 30, 53, 55, 73, 147, 205, 214, 240, 250], "center": [1, 5, 8, 56, 63, 70, 73, 91, 96, 97, 148, 149, 152, 232, 233, 240, 245], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 53, 57, 74, 79, 80, 96, 116, 120, 129, 132, 133, 138, 181, 187, 188, 189, 196, 208, 217, 222, 223, 236, 239, 241, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "14593": 1, "inspect": [1, 6, 7, 36, 63, 82, 84, 106, 166, 223], "14572": 1, "hyphen": [1, 208, 211], "14561": 1, "user_toolchain": [1, 49, 85, 146, 188], "14556": 1, "boolean": [1, 85, 116, 127, 146, 187, 188, 210, 212, 217, 271], "14530": 1, "14511": 1, "14491": 1, "non": [1, 70, 74, 78, 84, 85, 103, 116, 130, 146, 183, 239, 247, 271], "stacktrac": 1, "14444": 1, "conf_info": [1, 127, 129, 146, 188, 251, 258], "14442": 1, "msbuildtoolchain": [1, 68, 85, 116, 132, 146, 176, 218], "msbuilddep": [1, 68, 85, 127, 146, 176, 218], "resourcecompil": [1, 222], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 58, 70, 73, 74, 78, 79, 80, 86, 87, 98, 99, 100, 101, 103, 104, 105, 106, 112, 116, 118, 127, 129, 131, 136, 137, 141, 146, 147, 149, 153, 155, 166, 170, 175, 188, 189, 205, 217, 227, 242, 244, 245, 249, 251, 252, 257, 262, 268, 271], "14376": 1, "processor": [1, 149, 183, 217], "armv8": [1, 26, 27, 42, 45, 80, 96, 106, 116, 132, 147, 149, 177, 183, 217, 231, 244, 255, 259], "aarch64": [1, 96, 149, 231], "14362": 1, "mandat": [1, 191], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 53, 56, 63, 70, 77, 98, 99, 103, 116, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 136, 147, 149, 170, 187, 189, 196, 205, 208, 216, 233, 240, 245, 247, 250, 256, 259, 260, 262, 265, 266, 269, 271], "14342": 1, "default_opt": [1, 42, 51, 56, 80, 91, 97, 123, 128, 181, 185, 188, 217, 221, 248, 249, 250, 252, 258, 266], "xcrun": [1, 176, 178], "14326": 1, "abspath": 1, "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 45, 48, 53, 55, 61, 62, 64, 65, 69, 73, 74, 78, 82, 105, 106, 114, 127, 132, 142, 146, 147, 149, 152, 154, 155, 156, 157, 160, 161, 180, 182, 185, 186, 187, 188, 207, 208, 210, 212, 213, 221, 222, 237, 240, 242, 244, 245, 247, 248, 251, 255, 259, 261, 263, 271], "14183": 1, "build_id": [1, 13, 91, 96, 117], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 102, 108, 116, 117, 119, 120, 121, 127, 129, 131, 133, 134, 135, 136, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 175, 179, 181, 182, 183, 185, 187, 189, 196, 203, 205, 208, 211, 214, 217, 221, 222, 227, 231, 238, 240, 241, 242, 243, 244, 245, 249, 250, 251, 252, 254, 255, 256, 257, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14555": 1, "timestamp": [1, 13, 95, 99, 101, 103], "except": [1, 26, 31, 39, 40, 49, 78, 80, 85, 114, 116, 120, 121, 123, 129, 136, 141, 142, 146, 147, 149, 151, 175, 183, 185, 196, 227, 231, 240, 244, 249, 266], "vtrace": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "14522": 1, "confirm": [1, 31, 108, 112], "interact": [1, 85, 107, 145, 146, 151], "14512": 1, "entri": [1, 57, 63, 83, 85, 86, 90, 93, 95, 96, 98, 102, 111, 116, 127, 145, 150, 179, 186, 187, 188, 198, 200, 213, 269], "filter": [1, 6, 85, 96, 108, 116, 127, 139, 155, 174, 196, 267], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 58, 68, 70, 73, 74, 79, 80, 85, 87, 98, 103, 104, 105, 108, 114, 116, 118, 119, 120, 131, 133, 136, 142, 149, 151, 154, 158, 160, 175, 181, 187, 198, 203, 221, 228, 231, 236, 238, 240, 241, 242, 245, 248, 249, 252, 256, 257, 258, 259, 261, 267, 270, 271], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 51, 56, 63, 74, 80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 118, 119, 125, 126, 130, 133, 136, 140, 158, 167, 175, 196, 198, 234, 236, 254, 261, 262, 268], "14478": 1, "14443": 1, "context": [1, 6, 13, 42, 74, 80, 83, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 142, 146, 147, 157, 177, 187, 188, 191, 192, 193, 194, 196, 208, 211, 217, 219, 221, 232, 239, 242, 256], "14441": 1, "parallel": [1, 63, 74, 80, 85, 146, 151, 152, 154, 183, 188, 271], "14410": 1, "powershel": [1, 85, 146, 192, 193, 194, 245], "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 51, 61, 74, 85, 116, 118, 119, 127, 130, 132, 133, 135, 146, 154, 158, 160, 187, 188, 191, 192, 193, 194, 203, 204, 205, 212, 213, 217, 222, 223, 224, 236, 241, 242, 250, 258, 259, 267], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 73, 74, 85, 87, 98, 107, 112, 116, 136, 150, 152, 158, 211, 227, 231, 232, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "dirti": [1, 6, 56, 227], "outsid": [1, 8, 56, 70, 78, 114, 116, 131, 144, 201], "revision_mod": [1, 91, 96, 97, 268], "scm_folder": [1, 116], "14330": 1, "trace": [1, 141, 255], "14322": 1, "flush": 1, "stream": [1, 70, 185], "after": [1, 6, 10, 24, 26, 36, 42, 45, 58, 59, 63, 70, 98, 120, 122, 127, 132, 138, 139, 146, 155, 158, 182, 185, 187, 188, 192, 193, 194, 203, 212, 217, 222, 229, 239, 240, 242, 245, 246, 248, 250, 254, 257, 259, 261, 262, 263, 271], "write": [1, 4, 27, 45, 53, 70, 74, 98, 105, 114, 119, 129, 152, 159, 175, 187, 188, 196, 205, 244, 250, 252, 258, 262], "14310": 1, "sign": [1, 76, 114, 152], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 56, 84, 188, 255, 261, 262, 263], "inherit": [1, 48, 74, 128, 175, 244], "typo": 1, "14325": 1, "conanpreset": [1, 48, 188], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 53, 55, 56, 61, 62, 66, 70, 78, 79, 80, 81, 83, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 109, 110, 111, 114, 116, 117, 119, 123, 127, 128, 129, 132, 133, 144, 146, 149, 151, 152, 157, 159, 160, 163, 175, 179, 181, 187, 188, 189, 193, 194, 200, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 227, 229, 240, 241, 243, 247, 250, 254, 255, 256, 258, 259, 261, 262, 263, 267, 269, 270, 271], "14296": 1, "prefix": [1, 96, 108, 116, 147, 155, 188, 205, 206, 207, 208, 211, 212, 217, 249, 257], "param": [1, 31, 155, 167, 174, 185, 191, 216], "unix": [1, 147, 185, 186, 196, 244], "14295": 1, "invalid": [1, 6, 96, 114, 117, 139, 140, 183, 187, 266], "loglevel": 1, "14289": 1, "gcc": [1, 24, 39, 40, 45, 70, 74, 78, 80, 81, 83, 84, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 116, 121, 131, 136, 140, 147, 149, 160, 168, 183, 198, 205, 241], "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 63, 79, 80, 81, 84, 93, 96, 98, 99, 103, 120, 131, 146, 147, 154, 155, 160, 181, 187, 211, 221, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "pkg_config_custom_cont": [1, 208], "pc": [1, 45, 55, 206, 207, 208], "14233": 1, "dict": [1, 85, 116, 127, 132, 146, 155, 168, 188, 205, 208, 217, 222, 223], "object": [1, 6, 19, 21, 27, 42, 45, 91, 96, 114, 116, 127, 128, 129, 130, 131, 132, 141, 154, 155, 157, 158, 166, 174, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 219, 220, 221, 222, 223, 224, 225, 231, 241, 242, 248, 249, 250, 251, 254, 259, 262, 263], "fix_apple_shared_install_nam": [1, 176, 178, 203], "otool": [1, 179, 203], "install_name_tool": [1, 179, 203], "program": [1, 29, 45, 53, 55, 85, 128, 146, 203, 224, 240, 242], "14195": 1, "fpic": [1, 42, 51, 56, 73, 80, 81, 91, 96, 97, 99, 116, 122, 123, 185, 188, 205, 212, 217, 248, 249, 250, 252, 258], "header_onli": [1, 80, 116, 123, 131, 254], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 59, 63, 64, 69, 73, 78, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 116, 118, 119, 131, 132, 137, 146, 147, 149, 175, 179, 181, 187, 188, 221, 222, 239, 244, 246, 254, 255, 256, 261, 271], "type": [1, 6, 37, 64, 70, 79, 85, 89, 106, 116, 131, 132, 143, 157, 175, 185, 187, 188, 193, 194, 208, 215, 232, 235, 236, 242, 243, 244, 245, 246, 248, 249, 271], "cmake_package_version_compat": 1, "anynewervers": [1, 187], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 70, 73, 157, 243, 271], "won": [1, 4, 29, 39, 40, 70, 101, 108, 114, 116, 149, 155, 187, 196, 217, 241, 249, 257, 261], "14261": 1, "permit": [1, 269], "empti": [1, 4, 6, 85, 86, 107, 108, 116, 132, 146, 147, 155, 166, 174, 205, 208, 211, 221, 254, 255, 266, 267, 270], "14254": 1, "guarante": [1, 4, 7, 56, 80, 103, 106, 131, 147, 175, 252, 265, 268], "rm_safe": [1, 42, 80, 116, 122, 123, 131, 249], "never": [1, 70, 74, 78, 79, 83, 86, 90, 93, 95, 96, 98, 99, 102, 111, 116, 142, 167, 231, 243, 249, 255], "14238": 1, "gnu": [1, 45, 61, 66, 76, 80, 85, 96, 146, 149, 176, 183, 191, 192, 198, 203, 204, 205, 206, 207, 208, 212, 241], "make_program": [1, 85, 146], "14223": 1, "package_typ": [1, 38, 42, 91, 96, 97, 128, 131, 139, 156, 175, 256, 271], "lib": [1, 17, 21, 26, 35, 42, 84, 91, 95, 96, 114, 116, 120, 127, 129, 130, 132, 149, 179, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 223, 229, 241, 249, 250, 251, 252, 254, 255, 257, 263, 271], "14215": 1, "clarif": [1, 70], "shown": [1, 4, 36, 96, 97, 121, 217], "queri": [1, 84, 85, 87, 96, 99, 108, 109, 112, 168], "14199": 1, "enabl": [1, 8, 10, 63, 73, 85, 116, 146, 148, 183, 188, 196, 205, 231, 254, 269], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 51, 55, 56, 58, 63, 70, 73, 74, 79, 84, 85, 105, 116, 117, 127, 132, 136, 137, 139, 146, 149, 150, 152, 175, 180, 186, 187, 188, 189, 198, 208, 213, 221, 227, 231, 240, 242, 243, 244, 246, 247, 249, 250, 252, 254, 258, 259, 261, 262, 263, 264, 265, 267, 268, 270], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 62, 70, 74, 79, 86, 105, 114, 116, 120, 126, 130, 134, 135, 138, 141, 142, 146, 147, 150, 152, 155, 157, 158, 159, 160, 175, 177, 183, 186, 187, 192, 196, 200, 203, 211, 217, 244, 248, 250, 251, 252, 254, 257, 266, 267, 271], "14177": 1, "xcodedep": [1, 69, 176, 178, 182], "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 51, 56, 65, 73, 78, 80, 81, 91, 95, 96, 97, 98, 99, 106, 116, 119, 123, 131, 132, 140, 147, 149, 153, 160, 180, 181, 182, 185, 186, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 240, 241, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 263, 268], "14168": 1, "respect": [1, 31, 36, 73, 103, 116, 147, 151, 152, 191, 217, 241, 266, 268], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 63, 88, 98, 105, 106, 114, 116, 127, 129, 130, 132, 134, 135, 146, 147, 148, 149, 151, 152, 153, 154, 157, 159, 160, 170, 179, 180, 181, 185, 187, 188, 196, 203, 205, 214, 223, 240, 241, 242, 245, 250, 251, 252, 255, 256, 257, 263, 268], "14164": 1, "intern": [1, 53, 74, 85, 114, 136, 147, 149, 150, 179, 180, 217, 220, 231, 241, 243, 254, 268], "runner": [1, 26], "13985": 1, "leak": [1, 56, 150], "cmake_find_library_suffix": 1, "14253": 1, "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 73, 79, 80, 95, 98, 116, 130, 132, 149, 152, 179, 187, 189, 203, 207, 213, 217, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267], "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 63, 65, 70, 73, 74, 76, 77, 82, 85, 98, 106, 108, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 131, 143, 146, 147, 151, 152, 153, 154, 158, 160, 162, 175, 176, 178, 184, 186, 191, 200, 202, 209, 215, 218, 246, 249, 251, 257, 258, 263], "14227": 1, "displai": [1, 13, 63, 81, 82, 85, 92, 99, 116, 137, 154, 160, 250, 267], "14190": 1, "cross": [1, 11, 26, 42, 55, 57, 58, 60, 70, 85, 118, 131, 132, 136, 146, 147, 183, 184, 187, 205, 208, 212, 215, 216, 231, 232, 239, 242, 259], "osx": [1, 35, 58, 70, 127, 132, 188, 242], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 149], "cmake_generator_platform": [1, 149, 188], "14114": 1, "cppinfo": [1, 21, 76, 116, 127, 132, 176, 187, 251], "public": [1, 3, 4, 42, 53, 56, 70, 74, 82, 97, 106, 114, 115, 152, 155, 176, 187, 189, 211, 217, 237, 257, 258], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 72, 79, 80, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 100, 102, 103, 105, 106, 108, 111, 116, 119, 127, 128, 129, 130, 132, 134, 135, 141, 146, 147, 149, 151, 157, 175, 179, 181, 182, 183, 187, 191, 211, 227, 235, 238, 240, 242, 244, 245, 251, 255, 256, 257, 259, 261, 263, 266, 267, 270, 271], "summari": [1, 4, 8, 78, 213, 251], "delet": [1, 31, 42, 58, 74, 108, 114, 116, 123, 249], "thing": [1, 13, 18, 21, 29, 63, 64, 70, 73, 74, 98, 103, 116, 131, 167, 175, 176, 188, 192, 203, 240, 242, 244, 246, 248, 250, 251, 256, 257, 258, 263, 271], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 64, 70, 73, 116, 214, 233, 238, 239, 241, 242, 248, 250, 254, 256, 259, 260, 261, 267, 271], "14011": 1, "express": [1, 42, 49, 80, 104, 116, 129, 141, 142, 147, 188, 243, 265, 271], "14004": 1, "equival": [1, 56, 84, 85, 98, 99, 102, 109, 116, 118, 120, 125, 126, 132, 133, 142, 149, 175, 185, 189, 191, 227, 241, 242, 243, 244, 250, 251, 262, 263, 267], "14002": 1, "13999": 1, "small": [1, 56, 70, 114, 125, 196, 237, 250, 255, 259, 266, 267], "13989": 1, "packageslist": 1, "input": [1, 8, 74, 78, 80, 85, 87, 89, 96, 98, 99, 100, 101, 102, 104, 105, 108, 112, 131, 136, 145, 146, 151, 196, 217, 222, 242, 244, 254, 264, 268], "13928": 1, "associ": [1, 3, 6, 105, 107, 108, 147, 149, 188, 243], "13918": 1, "13757": 1, "split": [1, 147], "two": [1, 6, 18, 45, 51, 70, 79, 80, 84, 89, 114, 116, 119, 120, 147, 156, 157, 175, 183, 188, 191, 200, 205, 221, 222, 231, 239, 240, 242, 248, 249, 254, 261, 263, 267], "13729": 1, "bindir": [1, 18, 39, 40, 91, 96, 132, 138, 186, 188, 205, 208, 214, 217, 251, 254, 256, 259], "13623": 1, "autopackag": [1, 176, 195], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 58, 70, 98, 107, 114, 116, 130, 149, 191, 269], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 58, 70, 73, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 157, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 189, 206, 210, 211, 212, 213, 219], "subsystem": [1, 85, 116, 132, 146, 149, 176, 192, 218], "msys2": [1, 85, 146, 149, 231, 239], "14061": 1, "intermedi": [1, 98], "aggregated_compon": [1, 189], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 56, 58, 70, 79, 81, 83, 84, 86, 87, 93, 95, 96, 98, 99, 102, 104, 105, 106, 108, 111, 112, 116, 149, 155, 193, 194, 227, 236, 240, 243, 250, 257, 265, 267, 268, 269, 270, 271], "14110": 1, "doubl": [1, 29, 107, 187, 236, 249], "base": [1, 4, 8, 35, 36, 39, 42, 47, 53, 55, 58, 70, 79, 80, 83, 87, 96, 97, 98, 99, 102, 108, 112, 116, 127, 128, 130, 133, 147, 152, 155, 157, 177, 180, 182, 186, 188, 213, 217, 219, 220, 222, 240, 242, 248, 258, 271], "setup": [1, 7, 41, 55, 56, 216, 233], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 196, 250], "14106": 1, "overlap": [1, 217], "14095": 1, "freebsd": [1, 8, 58, 70, 147, 149, 231], "14065": 1, "through": [1, 24, 90, 105, 116, 148, 158, 216, 232, 238, 248, 250, 259], "root": [1, 10, 16, 18, 19, 27, 36, 38, 83, 85, 88, 90, 91, 96, 98, 129, 132, 146, 147, 149, 155, 157, 166, 167, 187, 205, 211, 213, 214, 240, 241, 243, 245, 249, 250, 255], "14051": 1, "return": [1, 6, 26, 29, 31, 42, 45, 53, 55, 78, 81, 82, 84, 85, 92, 97, 99, 106, 113, 114, 116, 121, 127, 141, 147, 153, 154, 155, 163, 166, 168, 170, 171, 175, 177, 179, 180, 183, 187, 188, 189, 191, 192, 193, 194, 196, 204, 205, 213, 219, 220, 223, 227, 231, 240, 242, 244, 254, 256, 259, 268], "irrespect": [1, 116, 131, 134, 135, 137, 221, 227, 244, 250], "problem": [1, 4, 6, 8, 70, 120, 237, 242, 259], "parent": [1, 116, 129, 144, 196, 252], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 56, 58, 70, 73, 91, 96, 97, 107, 152, 179, 234], "libdir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 196, 205, 207, 208, 214, 217, 251, 254, 255, 256, 263], "includedir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 205, 207, 208, 217, 221, 251, 255, 263], "cmake_program": [1, 85, 146, 185], "13940": 1, "str": [1, 17, 31, 36, 116, 131, 157, 168, 181, 192, 196, 213, 214, 216, 217, 219, 220, 221, 224, 244, 248, 255, 263], "int": [1, 29, 42, 45, 53, 55, 183, 200, 240, 242, 254, 259], "13964": 1, "layer": [1, 149, 155, 250, 271], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 53, 56, 57, 70, 73, 74, 79, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 110, 111, 114, 116, 118, 127, 129, 132, 134, 135, 136, 147, 157, 158, 166, 170, 182, 196, 198, 203, 207, 213, 214, 222, 227, 232, 233, 236, 238, 240, 241, 242, 245, 248, 249, 250, 251, 253, 254, 257, 261, 262, 263, 268, 270, 271], "13944": 1, "unzip": [1, 6, 19, 27, 58, 116, 136, 195, 198, 236, 252, 262], "13937": 1, "13929": 1, "13967": 1, "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 56, 57, 64, 68, 69, 79, 82, 86, 106, 115, 117, 120, 127, 129, 132, 133, 140, 142, 147, 166, 167, 175, 181, 189, 191, 203, 206, 208, 211, 221, 229, 232, 242, 243, 244, 245, 246, 247, 250, 254, 255, 256, 259, 260, 261, 263, 266, 268, 270, 271], "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 51, 85, 91, 96, 97, 129, 130, 136, 167, 188, 196, 200, 203, 216, 248, 254, 255, 257], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 53, 56, 70, 86, 96, 98, 99, 101, 103, 108, 116, 124, 127, 131, 132, 134, 135, 136, 139, 147, 149, 157, 158, 174, 188, 231, 235, 236, 251, 255, 258, 261, 263, 271], "publicli": [1, 4], "13934": 1, "premakedep": 1, "13926": 1, "http": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 73, 85, 91, 96, 97, 105, 114, 116, 136, 146, 148, 150, 158, 198, 200, 222, 234, 236, 237, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 85, 91, 96, 97, 114, 116, 127, 136, 149, 152, 158, 200, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 85, 91, 96, 97, 114, 116, 136, 147, 158, 200, 222, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "pull": [1, 70, 73, 200, 234, 267], "13898": 1, "overrid": [1, 39, 40, 74, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 114, 120, 146, 147, 185, 188, 231, 242, 265], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 63, 70, 80, 84, 85, 87, 96, 99, 104, 107, 112, 114, 116, 127, 129, 131, 132, 142, 146, 147, 149, 154, 157, 185, 188, 192, 193, 194, 196, 214, 217, 221, 224, 231, 238, 242, 245, 246, 250, 252, 255, 256, 263, 269], "13923": 1, "v": [1, 26, 48, 78, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 121, 131, 142, 146, 149, 151, 175, 216, 217, 221, 222, 223, 227, 232, 239, 240, 242, 245, 250, 271], "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 53, 56, 63, 114, 116, 122, 123, 147, 185, 203, 213, 246, 249, 255, 258, 261, 262], "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 51, 63, 73, 74, 98, 102, 105, 106, 116, 119, 132, 141, 147, 149, 153, 160, 180, 181, 182, 186, 187, 188, 193, 194, 196, 205, 217, 220, 221, 222, 232, 239, 244, 247, 249, 250, 254, 255, 256, 258, 261, 262, 263], "13833": 1, "relocat": [1, 29, 35, 202, 257], "upload_polici": [1, 91], "build_polici": [1, 90, 91, 255], "debugg": 1, "13810": 1, "possible_valu": [1, 116], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 56, 58, 70, 73, 74, 78, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 108, 111, 112, 116, 118, 119, 120, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 142, 146, 147, 149, 150, 152, 154, 155, 159, 163, 166, 175, 177, 181, 183, 185, 187, 189, 191, 192, 213, 217, 221, 228, 231, 242, 243, 248, 249, 252, 260, 261, 263, 264, 266, 267, 268, 269, 270], "13796": 1, "optim": [1, 70, 90, 116, 119, 254], "hit": [1, 192, 237], "13771": 1, "sh": [1, 35, 39, 40, 45, 53, 85, 127, 146, 149, 191, 192, 193, 194, 204, 205, 213, 223, 236, 241, 242, 244, 245, 248, 256, 262, 263], "shell": [1, 35, 39, 40, 42, 58, 61, 85, 116, 141, 146, 191, 192, 196, 204, 205, 213], "13764": 1, "13748": 1, "auto": [1, 42, 73, 74, 85, 106, 146, 147, 149, 240], "home": [1, 4, 26, 27, 31, 56, 57, 73, 105, 106, 114, 116, 132, 144, 146, 148, 149, 151, 155, 169, 206, 240, 241, 242, 250], "13746": 1, "render": [1, 21, 99, 105, 143, 145, 146, 150], "profile_nam": [1, 147], "13721": 1, "extens": [1, 4, 11, 31, 35, 36, 38, 57, 58, 70, 74, 76, 77, 78, 85, 98, 153, 154, 155, 156, 157, 158, 159, 160, 183, 192, 196, 241, 249, 256, 262], "13718": 1, "understand": [1, 24, 31, 36, 47, 61, 66, 73, 77, 95, 103, 116, 142, 146, 157, 204, 205, 223, 232, 239, 250, 260], "13716": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 51, 55, 56, 58, 64, 70, 73, 78, 79, 84, 85, 96, 97, 98, 99, 101, 104, 105, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 127, 131, 132, 136, 137, 139, 141, 145, 146, 150, 151, 155, 157, 181, 182, 186, 187, 188, 191, 193, 194, 198, 205, 206, 208, 210, 211, 213, 217, 220, 221, 222, 223, 229, 231, 236, 240, 244, 250, 251, 252, 255, 256, 259, 264, 266, 269, 270], "13712": 1, "skip_warn": [1, 85, 141, 146], "silenc": 1, "13706": 1, "info_invalid": [1, 91, 96], "13688": 1, "13680": 1, "mono": [1, 116], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 51, 58, 63, 73, 78, 80, 86, 87, 93, 95, 99, 102, 103, 114, 116, 118, 119, 120, 121, 131, 132, 133, 134, 135, 136, 137, 146, 147, 149, 166, 175, 181, 186, 187, 188, 189, 196, 205, 213, 221, 223, 227, 229, 231, 235, 238, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 261, 262, 263, 264, 266, 267, 268, 269, 270], "scm": [1, 11, 43, 76, 98, 116, 135, 176, 196, 227, 247, 252, 268, 270], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 74], "field": [1, 82, 86, 96, 97, 99, 106, 109, 115, 116, 127, 129, 132, 145, 148, 149, 150, 158, 179, 200, 203, 208, 271], "13870": 1, "compiler_execut": [1, 85, 146, 147, 188, 205, 217, 223, 240], "13867": 1, "13857": 1, "suffix": [1, 155, 187, 208], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 187, 195, 208], "d": [1, 7, 13, 27, 47, 79, 83, 84, 96, 98, 105, 114, 116, 128, 147, 175, 186, 188, 206, 236, 250, 255, 268], "13740": 1, "omit": [1, 21, 116, 146, 263], "l": [1, 83, 84, 86, 87, 89, 90, 93, 95, 96, 97, 98, 102, 108, 111, 112, 203, 204, 206, 208, 227], "libpath": [1, 229], "13704": 1, "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 64, 66, 69, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 118, 119, 120, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 144, 146, 147, 149, 150, 151, 152, 156, 158, 159, 175, 177, 179, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 223, 224, 229, 231, 233, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271], "13855": 1, "out": [1, 26, 29, 31, 36, 53, 55, 56, 70, 72, 80, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111, 114, 124, 127, 213, 217, 248, 252, 263, 267], "13853": 1, "13846": 1, "intel": [1, 42, 70, 76, 85, 146, 176, 219], "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 92, 100, 189, 234, 263, 267, 271], "alia": [1, 105, 187, 203], "13763": 1, "dep": [1, 21, 36, 41, 53, 79, 95, 127, 139, 147, 156, 157, 181, 185, 187, 189, 211, 221, 223, 248], "13762": 1, "cmake_system_nam": [1, 85, 146, 188], "baremet": [1, 149], "13739": 1, "deactiv": [1, 49, 158, 188, 193, 194, 242, 269], "13707": 1, "13597": 1, "extend": [1, 43, 46, 73, 76, 77, 86, 102, 117, 128, 152, 158, 184, 267, 269, 271], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 85, 127, 146, 188, 191, 192, 193, 194, 204, 205, 213, 217, 222, 223, 224, 236, 242, 244, 245], "13607": 1, "preliminari": 1, "dev": [1, 137, 149, 231], "premake5": 1, "13390": 1, "old": [1, 30, 32, 116, 149, 163, 264, 267], "login": [1, 82, 114, 145, 198, 236], "13671": 1, "msg": [1, 141, 155], "13668": 1, "correct": [1, 40, 42, 73, 74, 78, 116, 129, 130, 132, 134, 135, 159, 179, 181, 187, 188, 192, 196, 216, 223, 241, 242, 251, 252, 255, 257, 261], "origin": [1, 4, 6, 8, 13, 24, 56, 58, 85, 98, 116, 120, 130, 145, 149, 191, 192, 217, 227, 243, 252, 255], "13667": 1, "13661": 1, "respond": [1, 70], "forbidden": [1, 71, 101, 103, 120], "13626": 1, "13622": 1, "direct_deploi": [1, 98, 271], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 51, 68, 84, 87, 91, 96, 99, 107, 108, 112, 206, 220, 236, 248, 249, 251, 252, 254, 255, 257, 263], "had": [1, 13, 56, 90, 116, 120, 244, 249, 252, 261, 263, 266], "13662": 1, "13657": 1, "close": [1, 90, 196], "13631": 1, "13618": 1, "full_deploi": [1, 35, 98, 271], "collis": [1, 115, 187, 203, 205], "log": [1, 6, 26, 56, 87, 107, 114, 141, 150, 152, 263], "13610": 1, "13601": 1, "temp": [1, 84], "everyth": [1, 5, 13, 19, 42, 56, 58, 65, 70, 73, 84, 103, 108, 120, 129, 176, 227, 244, 261], "temporari": [1, 6, 7, 24, 74, 84, 130, 133, 196, 198, 249, 257, 262, 266], "13581": 1, "dictionari": [1, 85, 116, 127, 132, 146, 155, 185, 188, 196, 198], "semant": [1, 116, 149, 250, 265], "13571": 1, "sdk": [1, 26, 35, 85, 146, 149, 179, 180, 182, 205, 217], "avail": [1, 3, 4, 8, 24, 26, 36, 51, 63, 70, 72, 73, 85, 90, 95, 97, 99, 104, 105, 108, 114, 116, 121, 129, 133, 142, 146, 147, 158, 175, 179, 183, 188, 230, 240, 243, 244, 249, 250, 254, 255, 256, 261, 262, 271], "13531": 1, "togeth": [1, 56, 67, 70, 84, 106, 116, 125, 126, 136, 174, 175, 185, 188, 216, 223, 243, 250, 264, 271], "13526": 1, "13505": 1, "legaci": [1, 119, 146, 188, 219], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 114, 116, 132, 146, 240, 241, 248, 258, 268], "third": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 198, 227, 255, 262, 263], "parti": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 227, 255, 262, 263], "13461": 1, "android": [1, 8, 11, 25, 57, 59, 70, 76, 85, 116, 132, 146, 149, 176, 188, 215, 241], "cmake_legacy_toolchain": [1, 85, 146, 188], "android_use_legacy_toolchain_fil": [1, 85, 146, 188], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 51, 56, 58, 62, 63, 64, 68, 69, 70, 72, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 101, 103, 104, 105, 106, 108, 109, 112, 116, 118, 119, 120, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 151, 152, 153, 155, 158, 174, 175, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 203, 204, 205, 206, 207, 210, 211, 212, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 235, 236, 237, 240, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 264, 266, 267, 268, 269, 270, 271], "cflag": [1, 45, 85, 91, 96, 132, 146, 147, 182, 188, 204, 205, 208, 212, 217, 222, 223], "cxxflag": [1, 49, 80, 85, 91, 96, 132, 146, 182, 188, 189, 204, 205, 212, 217, 222, 223, 229], "prevent": [1, 114, 116, 188], "13459": 1, "13458": 1, "authent": [1, 3, 56, 73, 106, 107, 145, 148, 150, 151, 198, 235, 236], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 51, 56, 58, 64, 73, 78, 82, 84, 85, 86, 95, 99, 114, 116, 118, 127, 129, 130, 147, 149, 150, 151, 152, 156, 175, 188, 207, 214, 221, 227, 236, 238, 240, 242, 244, 247, 248, 249, 252, 254, 260, 261, 266, 268, 269, 271], "python_requires_extend": [1, 74, 128, 175], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 51, 84, 86, 114, 139, 141, 159, 211, 213, 227, 238, 242, 254, 255, 257, 261, 266, 268], "mydep": [1, 78, 127, 223], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 85, 146, 213, 217], "vs2022": 1, "rather": [1, 8, 78, 85, 131, 146, 149, 205, 223, 253, 263], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 152, 154, 271], "paramet": [1, 31, 53, 62, 82, 132, 152, 157, 166, 168, 171, 177, 179, 180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 224, 225, 227, 231, 250], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 56, 58, 59, 63, 70, 78, 81, 84, 99, 101, 102, 116, 123, 130, 131, 132, 133, 137, 146, 147, 149, 159, 175, 183, 187, 188, 208, 213, 242, 243, 245, 249, 254, 255, 256, 257, 261, 262, 263, 266, 267, 268, 269], "13544": 1, "subcommand": [1, 92, 100, 155, 271], "underscor": [1, 250], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 85, 129, 146, 186, 188], "13488": 1, "composit": [1, 128, 149, 190], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 185, 203, 254], "autoreconf": [1, 203, 205, 248], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 51, 56, 70, 74, 78, 80, 98, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 147, 149, 152, 155, 156, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 223, 224, 227, 228, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 262, 263, 266, 267, 268, 269, 270], "mirror": [1, 4, 198], "behavior": [1, 8, 47, 70, 74, 78, 80, 101, 102, 103, 116, 119, 122, 123, 127, 131, 132, 142, 146, 151, 154, 158, 183, 187, 208, 211, 217, 227, 231, 252, 271], "That": [1, 8, 13, 17, 24, 38, 62, 74, 93, 98, 136, 151, 160, 181, 187, 192, 208, 213, 222, 241, 242, 243, 254, 258, 267, 270, 271], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 105, 106, 146, 147], "inclus": [1, 221], "13336": 1, "13324": 1, "version_rang": [1, 10, 85, 116, 146, 269], "resolve_prereleas": [1, 10, 85, 116, 146, 269], "prereleas": [1, 10, 269], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "help": [1, 8, 31, 36, 45, 48, 58, 61, 62, 66, 67, 68, 70, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 155, 182, 191, 205, 213, 222, 244, 245, 256, 264, 265], "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 73, 91, 96, 106, 147, 149, 188, 217, 240, 242, 250], "13359": 1, "vswhere": [1, 85, 146], "13355": 1, "convers": [1, 82], "13323": 1, "13230": 1, "msbuild": [1, 59, 68, 70, 85, 105, 132, 146, 147, 149, 176, 185, 218, 221, 222, 224], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 70, 120, 127, 131, 145, 170, 262, 269], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 91, 96, 132, 189, 206, 207], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 116, 132, 147, 176, 188, 190, 191, 192, 241, 242, 245, 251, 256], "instanti": [1, 116, 127, 181, 182, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 149], "13326": 1, "insecur": [1, 85, 107], "ssl": [1, 85, 107, 132, 146, 148, 198, 211], "13270": 1, "conanignor": [1, 85], "13269": 1, "traceback": 1, "vv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vvv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 70, 114], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 70, 150, 151, 198], "13285": 1, "unexpect": [1, 73, 74, 141, 217, 267], "13282": 1, "runtime_typ": [1, 149, 160, 205], "reli": [1, 4, 70, 74, 99, 134, 135, 208, 240, 255, 257], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 53, 55, 57, 63, 64, 74, 76, 81, 83, 84, 88, 93, 95, 96, 98, 102, 105, 106, 116, 126, 130, 134, 135, 147, 156, 159, 167, 175, 181, 182, 185, 186, 187, 188, 193, 194, 196, 204, 205, 206, 208, 211, 212, 213, 214, 221, 222, 224, 229, 232, 239, 240, 241, 245, 247, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "pars": [1, 31, 70, 99, 146, 147, 152, 207, 227, 228, 252], "13266": 1, "unifi": [1, 6, 149], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 70, 74, 80, 84, 85, 87, 98, 99, 101, 108, 116, 118, 122, 123, 125, 127, 131, 132, 133, 136, 137, 146, 175, 187, 189, 240, 243, 251, 266, 268, 269, 270], "state": [1, 7, 133, 175, 217, 243], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 51, 56, 57, 58, 59, 67, 70, 73, 74, 82, 87, 88, 98, 103, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 127, 129, 136, 139, 140, 145, 147, 149, 155, 158, 175, 183, 185, 187, 188, 192, 211, 214, 217, 227, 232, 237, 240, 241, 242, 244, 249, 250, 252, 255, 257, 260, 262, 263, 266, 271], "13211": 1, "13207": 1, "readm": [1, 158, 198, 262], "13186": 1, "13298": 1, "certain": [1, 58, 98, 104, 108, 127, 132, 146, 147, 149, 158, 221, 243, 249, 251, 258], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 58, 103, 255], "drive": 1, "13248": 1, "13191": 1, "gnu17": [1, 42, 91, 96, 106, 147, 149, 183, 240], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 57, 64, 67, 70, 74, 82, 85, 98, 102, 103, 106, 114, 116, 117, 119, 123, 127, 129, 130, 131, 132, 138, 146, 147, 149, 151, 152, 159, 179, 180, 187, 188, 189, 191, 193, 194, 204, 205, 208, 217, 221, 224, 235, 236, 239, 240, 249, 252, 254, 255, 258, 263, 268, 270, 271], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 63, 70, 72, 74, 96, 101, 103, 105, 114, 116, 150, 158, 176, 188, 189, 195, 198, 214, 239, 240, 246, 248, 254, 267, 268], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 51, 53, 55, 56, 57, 63, 65, 86, 87, 96, 98, 103, 113, 116, 128, 130, 149, 155, 176, 181, 182, 187, 200, 210, 222, 240, 242, 244, 245, 248, 250, 252, 254, 259, 262, 263, 268, 269, 271], "13117": 1, "13112": 1, "valid": [1, 6, 8, 10, 73, 74, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 127, 140, 146, 149, 150, 160, 166, 183, 188, 198, 205, 206, 208, 217, 219, 222, 239, 247, 250, 254, 255, 258, 259, 262, 266, 267, 269], "13110": 1, "13109": 1, "assign": [1, 74, 78, 116, 122, 131, 134, 135, 186, 187, 188, 207, 217, 227, 249, 256], "13099": 1, "ui": [1, 31, 235, 236], "13093": 1, "abil": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 149, 271], "presets_prefix": 1, "prepend": [1, 132, 146, 147, 191, 192, 207], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 61, 64, 66, 68, 69, 70, 75, 77, 78, 80, 81, 82, 85, 86, 87, 91, 97, 99, 102, 106, 107, 112, 113, 114, 116, 120, 122, 123, 124, 127, 131, 133, 142, 143, 144, 145, 146, 149, 150, 151, 153, 155, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 182, 188, 189, 191, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 232, 233, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 267, 268, 269, 270], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 51, 53, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 80, 84, 86, 96, 105, 106, 115, 116, 117, 118, 122, 123, 125, 126, 127, 128, 131, 132, 136, 141, 146, 147, 149, 152, 155, 156, 157, 158, 159, 160, 175, 177, 180, 181, 182, 183, 186, 188, 196, 203, 205, 211, 212, 213, 214, 216, 217, 221, 223, 227, 229, 231, 232, 233, 238, 239, 240, 242, 244, 245, 246, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 271], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 56, 58, 70, 73, 74, 77, 80, 81, 96, 105, 106, 115, 116, 118, 119, 127, 136, 146, 147, 149, 152, 155, 156, 157, 158, 175, 177, 187, 188, 214, 227, 233, 235, 246, 250, 255, 259, 261, 263], "10166": 1, "13084": 1, "hash": [1, 77, 81, 91, 96, 97, 116, 136, 175, 198, 242, 243, 249, 251, 252, 268, 271], "13011": 1, "13003": 1, "12980": 1, "12937": 1, "pkgconfidep": 1, "get_transitive_requir": 1, "13013": 1, "13010": 1, "12992": 1, "12962": 1, "concurr": [1, 7, 63, 74, 85, 146, 151, 267, 271], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 74, 107, 116, 124, 132, 141, 145, 148, 149, 154, 229, 242, 250, 251, 259, 266, 267], "12913": 1, "system_requir": [1, 91, 96, 117, 127, 231], "12912": 1, "tar": [1, 4, 8, 116, 196, 198], "pax": 1, "python3": [1, 58, 114], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 74, 90, 116, 117, 129, 158, 175, 181, 187, 188, 189, 191, 196, 205, 207, 208, 211, 232, 246, 250, 252, 254, 255, 256, 263], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 78, 80, 81, 84, 86, 90, 95, 98, 100, 102, 104, 114, 115, 116, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 142, 147, 149, 156, 157, 158, 166, 175, 180, 181, 183, 186, 187, 188, 191, 192, 203, 205, 213, 217, 219, 222, 231, 233, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "perform": [1, 4, 65, 84, 85, 98, 101, 103, 106, 107, 108, 112, 114, 116, 146, 151, 158, 174, 179, 196, 212, 227, 231, 235, 236, 244, 260, 262, 271], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 70, 116, 188, 240, 242, 244, 245, 256, 261], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 99], "12801": 1, "prev": [1, 13, 31, 91, 93, 96, 99], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 85, 146, 205], "12881": 1, "ref": [1, 13, 19, 40, 45, 51, 73, 88, 91, 93, 96, 114, 116, 127, 130, 137, 139, 142, 154, 156, 159, 167, 252, 261, 262, 263], "12722": 1, "12699": 1, "required_conan_vers": [1, 85, 146], "between": [1, 7, 13, 27, 51, 78, 85, 95, 98, 116, 121, 127, 131, 132, 146, 175, 198, 235, 239, 241, 261, 266, 271], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 78, 150, 188, 235, 244], "12666": 1, "12636": 1, "simplifi": [1, 13, 103, 142, 249, 250, 271], "conaninfo": [1, 24, 81, 84, 240, 245, 249, 257], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 187], "12578": 1, "12525": 1, "api": [1, 6, 27, 65, 70, 74, 76, 116, 147, 152, 155, 158, 235, 236], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 256], "12351": 1, "12379": 1, "reciperefer": [1, 166], "equal": [1, 84, 105, 116, 136, 191, 269], "12506": 1, "compress": [1, 6, 55, 58, 85, 91, 96, 146, 174, 196, 198, 240, 241, 242, 244, 245], "uncompress": [1, 55, 58, 240, 242, 244, 245], "12378": 1, "12475": 1, "proper": [1, 7, 132, 203, 205, 215, 241], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 56, 58, 59, 63, 68, 73, 80, 81, 82, 87, 92, 98, 100, 103, 116, 119, 146, 147, 155, 175, 181, 187, 188, 211, 227, 231, 235, 236, 240, 242, 248, 250, 252, 257, 259, 262, 264, 265, 266, 269, 271], "loos": 1, "12502": 1, "produc": [1, 73, 74, 80, 84, 85, 98, 100, 101, 103, 116, 119, 127, 129, 132, 146, 149, 175, 187, 188, 193, 194, 196, 252, 266], "drop": [1, 98, 147], "compat_app": 1, "12484": 1, "transitive_head": [1, 91, 271], "12508": 1, "transitive_lib": [1, 91, 271], "static": [1, 8, 19, 21, 27, 38, 51, 78, 79, 80, 81, 91, 96, 102, 116, 123, 130, 132, 133, 149, 168, 170, 181, 186, 205, 221, 232, 239, 240, 248, 249, 250, 251, 263, 266, 271], "uncommit": 1, "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 227], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 122, 123, 136, 146, 149], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 51, 78, 80, 105, 116, 117, 120, 141, 146, 147, 175, 187, 191, 203, 208, 242, 244, 269], "char": [1, 29, 42, 55, 200, 240], "12053": 1, "12032": 1, "clicolor_forc": [1, 151], "12028": 1, "12050": 1, "output_fold": [1, 36, 83, 88, 90, 98, 157, 167], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 76, 143], "11675": 1, "11672": 1, "max": [1, 85, 146, 149], "11610": 1, "post_build_fail": 1, "hook": [1, 70, 74, 76, 85, 152], "11593": 1, "pre_gener": [1, 158], "post_gener": [1, 158], "cover": [1, 65, 129, 149, 233, 239, 256, 260], "around": [1, 8, 61, 62, 67, 68, 69, 70, 180, 185, 203, 210, 220, 231, 246], "brought": 1, "back": [1, 2, 10, 18, 57, 70, 78, 85, 104, 146, 270], "11575": 1, "11522": 1, "model": [1, 17, 21, 57, 70, 73, 75, 76, 81, 114, 115, 121, 127, 131, 132, 133, 137, 149, 153, 239, 246, 249, 250], "relationship": [1, 116, 271], "linkag": [1, 242], "autom": [1, 5, 13, 26, 70, 99, 116, 136, 137, 151, 222, 265, 267, 271], "flexibl": [1, 116, 142, 232, 239, 269, 271], "power": [1, 13, 70, 98, 152, 155, 188, 239, 271], "transpar": [1, 4, 11, 37, 64, 240, 261, 271], "pythonapi": 1, "cleaner": [1, 271], "structur": [1, 6, 18, 42, 45, 51, 53, 55, 74, 97, 98, 99, 113, 132, 144, 147, 152, 166, 186, 211, 240, 244, 245, 250, 251, 252, 254, 255, 263, 266, 271], "take": [1, 6, 21, 29, 30, 56, 81, 85, 86, 103, 108, 114, 116, 127, 134, 135, 138, 144, 145, 146, 149, 180, 181, 186, 187, 188, 191, 205, 208, 221, 228, 231, 241, 242, 244, 249, 250, 256, 258, 259, 264, 271], "account": [1, 6, 29, 78, 114, 116, 127, 130, 149, 175, 180, 186, 188, 191, 228, 241, 249, 256, 258, 264, 271], "simpler": [1, 5, 6, 41, 109, 127, 133], "immut": [1, 6, 19, 74, 78, 136, 150, 243, 247, 248, 251, 252, 258, 262, 268], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 56, 57, 70, 83, 90, 98, 110, 127, 132, 182, 187, 222, 232, 236, 248, 260, 267, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 51, 53, 55, 57, 64, 70, 83, 86, 88, 90, 98, 101, 102, 103, 107, 110, 111, 112, 116, 118, 120, 122, 123, 127, 129, 130, 131, 132, 136, 138, 139, 214, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "aim": [2, 70, 91, 120, 142, 146, 149, 211, 258], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 53, 55, 56, 57, 65, 70, 74, 83, 84, 90, 98, 99, 110, 114, 116, 118, 124, 129, 132, 134, 135, 136, 146, 149, 151, 157, 160, 177, 182, 187, 213, 214, 222, 224, 232, 235, 236, 237, 240, 241, 245, 248, 255, 261, 267], "intend": [2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 59, 70, 74, 80, 84, 85, 98, 99, 120, 124, 125, 126, 127, 138, 147, 158, 175, 185, 187, 188, 192, 210, 216, 227, 231, 242, 245, 248, 256, 267], "engin": [2, 21, 104, 146, 266, 267], "administr": [2, 3, 236], "architect": 2, "adopt": 2, "design": [2, 18, 70, 128, 149, 263, 271], "product": [2, 5, 6, 35, 57, 70, 74, 86, 103, 106, 120, 124, 131, 263], "team": [2, 5, 8, 55, 70, 73, 78, 104, 105, 106, 114, 116, 149, 235, 236, 237, 240, 255], "plan": [2, 127, 132], "we": [3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 65, 74, 78, 79, 80, 81, 84, 93, 95, 98, 99, 102, 103, 104, 105, 114, 116, 119, 121, 123, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 140, 146, 147, 149, 166, 175, 181, 183, 186, 187, 188, 189, 192, 208, 211, 213, 214, 221, 227, 231, 233, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "ll": [3, 4, 31, 45, 53, 55, 63, 96, 147, 155, 188, 213, 222, 224, 240, 262], "free": [3, 4, 70, 91, 96, 114, 235, 236, 237], "tab": [3, 63], "exampl": [3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 60, 63, 64, 65, 67, 70, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 104, 106, 111, 112, 114, 116, 119, 120, 121, 122, 123, 128, 129, 130, 131, 132, 133, 136, 137, 138, 139, 142, 144, 145, 146, 147, 149, 154, 155, 157, 158, 159, 160, 167, 179, 180, 181, 182, 186, 187, 188, 189, 192, 193, 196, 200, 206, 207, 208, 211, 214, 217, 219, 220, 221, 227, 231, 232, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 269, 270, 271], "imagin": [3, 10, 95, 187, 211, 244, 249, 257], "give": [3, 4, 8, 70, 82, 95, 106, 113, 193, 194], "upload_url": [3, 4, 85, 146], "myteam": [3, 4, 146], "myorg": [3, 4], "next": [3, 26, 29, 45, 70, 81, 103, 116, 205, 221, 227, 241, 247, 248, 249, 256, 270], "anonym": [3, 114, 145, 150, 151], "see": [3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 36, 38, 39, 40, 41, 42, 47, 48, 49, 51, 53, 56, 58, 63, 65, 73, 79, 80, 81, 82, 85, 86, 87, 93, 97, 98, 99, 102, 106, 108, 112, 113, 114, 116, 120, 122, 123, 124, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 187, 188, 189, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270], "offici": [3, 31, 97, 152, 155, 213, 233, 271], "guid": [3, 4, 57, 232], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 51, 53, 56, 60, 63, 64, 70, 73, 76, 77, 78, 80, 86, 90, 99, 102, 103, 107, 112, 115, 116, 129, 133, 144, 146, 147, 148, 149, 152, 157, 175, 187, 211, 214, 230, 232, 233, 234, 238, 239, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270], "token": [3, 56, 114, 145, 150, 227], "live": [3, 13, 19, 116, 136, 142, 221, 271], "source_credenti": [3, 4, 76, 143], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 51, 58, 65, 84, 87, 105, 116, 127, 139, 142, 146, 147, 149, 156, 158, 160, 175, 181, 182, 191, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 224, 241, 243, 250, 251, 261, 266, 267], "last": [3, 7, 99, 133, 149, 170, 212, 222, 264, 269, 271], "permiss": [3, 4, 58, 70, 74, 196, 235, 236], "feel": [3, 132], "modifi": [3, 4, 6, 10, 17, 26, 27, 29, 48, 51, 63, 73, 74, 80, 84, 114, 116, 119, 120, 127, 132, 149, 151, 154, 158, 160, 181, 188, 189, 196, 204, 239, 243, 244, 248, 249, 250, 252, 257, 258, 266, 268, 269, 270], "accord": [3, 45, 63, 64, 80, 136, 147, 180, 187, 188, 224, 251, 269], "With": [3, 4, 7, 17, 21, 35, 36, 58, 63, 70, 145, 147, 149, 200, 213, 242, 248, 256, 261], "common": [4, 6, 8, 13, 17, 18, 27, 35, 51, 73, 74, 80, 84, 85, 99, 116, 125, 126, 127, 131, 132, 135, 149, 152, 154, 155, 175, 180, 214, 220, 227, 231, 242, 243, 250, 257, 264, 265], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 56, 70, 71, 78, 80, 84, 86, 99, 101, 103, 105, 106, 114, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 132, 133, 136, 139, 142, 147, 150, 175, 217, 232, 241, 243, 245, 247, 248, 251, 252, 256, 258, 262, 266, 267, 268, 269, 270], "canon": [4, 187], "page": [4, 27, 57, 116, 236], "keep": [4, 6, 18, 26, 56, 65, 74, 103, 104, 128, 149, 158, 175, 186, 187, 188, 196, 240, 243, 244, 255, 256, 264, 270, 271], "record": 4, "traceabl": [4, 6, 70, 256, 265, 270, 271], "purpos": [4, 7, 58, 74, 116, 123, 125, 127, 128, 146, 150, 152, 227, 231, 232, 233, 238, 256, 263, 267, 270], "howev": [4, 5, 21, 35, 39, 40, 58, 59, 65, 96, 114, 119, 142, 146, 149, 158, 187, 243, 244, 245, 249, 252, 266, 267, 268, 270], "often": [4, 29, 129, 269], "long": [4, 7, 70, 73, 116, 129, 149, 175, 267, 269, 271], "term": [4, 7, 250], "futur": [4, 7, 36, 56, 66, 73, 74, 105, 106, 116, 147, 153, 154, 157, 159, 199, 244, 252], "mai": [4, 8, 19, 21, 26, 58, 70, 73, 87, 113, 116, 118, 122, 123, 132, 149, 181, 187, 188, 228, 237, 239, 242, 244, 245, 251, 252, 258], "encount": [4, 116], "thu": [4, 8, 74, 114, 116, 119, 125, 126, 203, 206, 271], "retriev": [4, 6, 7, 8, 56, 74, 84, 87, 96, 114, 116, 121, 198, 227, 240, 242, 245, 246, 247, 250, 252, 255, 268], "addition": [4, 8, 96, 120, 133, 141, 146, 187, 208], "alongsid": [4, 211, 232], "infrastructur": [4, 6], "trigger": [4, 141, 271], "sha256": [4, 116, 197, 198, 252], "signatur": [4, 157, 159, 160, 197], "few": [4, 36, 80, 151, 152, 154, 175, 256], "download_url": [4, 85, 146], "repres": [4, 6, 74, 78, 80, 81, 116, 187, 189, 192, 217, 231, 242, 268, 271], "fetch": [4, 6, 58, 70, 82, 84, 97, 136, 227, 242], "either": [4, 8, 36, 105, 114, 116, 118, 127, 131, 132, 133, 141, 151, 159, 170, 174, 177, 191, 243, 269], "present": [4, 13, 36, 45, 73, 75, 84, 85, 97, 98, 116, 133, 149, 151, 174, 183, 245], "prefer": [4, 47, 48, 58, 63, 78, 150, 180, 188, 205, 227, 255, 261, 262, 263], "ahead": [4, 10], "Being": [4, 175], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 51, 56, 58, 70, 73, 74, 75, 78, 80, 84, 86, 95, 98, 99, 101, 102, 103, 105, 114, 116, 119, 123, 126, 127, 129, 130, 131, 132, 135, 136, 137, 146, 147, 149, 166, 177, 191, 205, 217, 221, 222, 237, 242, 250, 255, 256, 261, 262, 266, 270], "exclude_url": [4, 84, 85, 146], "start": [4, 5, 6, 17, 29, 45, 53, 55, 56, 58, 74, 105, 115, 116, 131, 132, 149, 150, 155, 158, 166, 196, 198, 208, 213, 217, 236, 237, 240, 250, 261, 262, 263, 266, 267, 268, 270, 271], "begin": [4, 70, 85, 146, 147, 239, 246], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 63, 70, 74, 80, 81, 103, 114, 116, 123, 126, 127, 129, 131, 132, 136, 142, 145, 146, 147, 149, 155, 160, 177, 179, 188, 207, 213, 227, 240, 242, 243, 261, 262, 263, 267, 268, 270], "A": [4, 6, 13, 47, 51, 65, 70, 80, 84, 85, 87, 91, 95, 96, 99, 102, 103, 108, 112, 114, 116, 120, 122, 131, 133, 135, 136, 137, 141, 146, 147, 154, 158, 166, 174, 175, 185, 188, 191, 196, 198, 202, 219, 222, 231, 236, 240, 243, 246, 248, 249, 251, 253, 254, 255, 259, 261, 264, 267, 269, 271], "put": [4, 6, 17, 29, 36, 58, 84, 85, 90, 105, 116, 127, 129, 132, 136, 145, 146, 147, 152, 159, 192, 211, 212, 214, 250, 256, 259, 263, 264, 268], "its": [4, 13, 24, 29, 31, 36, 39, 40, 56, 58, 59, 70, 73, 77, 79, 80, 81, 82, 83, 84, 86, 87, 97, 98, 106, 108, 116, 119, 127, 131, 132, 133, 136, 138, 145, 146, 147, 155, 157, 158, 175, 187, 188, 191, 203, 222, 239, 241, 243, 244, 250, 259, 261, 263, 264, 267], "strongli": [4, 8, 58, 78, 116, 119, 150, 217, 252], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 53, 55, 56, 59, 70, 74, 78, 80, 85, 98, 99, 103, 106, 114, 116, 119, 124, 125, 130, 131, 133, 134, 136, 146, 147, 151, 158, 175, 187, 199, 231, 235, 236, 237, 245, 248, 250, 255, 267, 269], "below": [4, 5, 6, 8, 63, 70, 78, 80, 81, 84, 121, 133, 136, 144, 179, 181, 182, 188, 196, 205, 208, 211, 249], "relev": [4, 21, 57, 61, 62, 66, 67, 68, 69, 80, 146, 247, 248, 249, 251, 252, 256, 258, 259, 267], "suppli": [4, 5, 84, 100, 101, 104, 157, 271], "els": [4, 6, 17, 26, 31, 39, 40, 51, 70, 114, 116, 130, 131, 132, 136, 147, 174, 183, 231, 242, 244, 247, 248, 251, 256, 258], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 51, 53, 58, 62, 70, 73, 85, 91, 98, 105, 114, 116, 119, 121, 127, 129, 131, 132, 142, 147, 148, 149, 155, 157, 181, 182, 187, 188, 200, 205, 212, 217, 229, 231, 241, 244, 249, 250, 251, 252, 255, 256, 261, 267, 268, 269], "blob": [4, 65, 271], "belong": [4, 84, 87, 99, 103, 174, 176, 187, 196, 208, 241, 250, 256, 259], "artifactori": [4, 13, 59, 70, 114, 152, 235, 237], "describ": [4, 5, 6, 8, 10, 45, 55, 77, 79, 82, 116, 127, 129, 135, 145, 183, 188, 189, 217, 263, 270], "approach": [4, 6, 8, 13, 29, 41, 56, 70, 73, 74, 78, 80, 98, 116, 129, 130, 131, 132, 133, 134, 136, 147, 149, 155, 175, 185, 187, 199, 227, 241, 248, 255, 256, 267, 270], "deal": [4, 9, 119, 131], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 51, 53, 56, 70, 79, 80, 81, 84, 87, 96, 102, 105, 108, 114, 116, 127, 128, 131, 133, 142, 146, 149, 159, 175, 181, 182, 185, 187, 188, 192, 193, 196, 211, 221, 231, 242, 251, 252, 257, 258, 261, 263, 266, 267, 268, 270, 271], "travers": [4, 144], "until": [4, 8, 63, 74, 144, 145, 150], "client": [4, 7, 13, 31, 63, 70, 73, 82, 85, 106, 113, 114, 116, 145, 158, 236, 237, 242, 250], "regard": [4, 70, 75, 102, 149, 158, 196, 257], "capabl": [4, 7, 97, 98, 147, 188, 244, 271], "1": [4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 65, 70, 72, 73, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 108, 109, 112, 113, 114, 116, 120, 127, 128, 131, 132, 133, 135, 136, 139, 140, 142, 146, 147, 148, 149, 156, 157, 158, 175, 181, 183, 185, 186, 187, 188, 191, 193, 194, 196, 198, 200, 203, 206, 208, 211, 217, 219, 221, 222, 223, 224, 227, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270, 271], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 79, 80, 81, 86, 93, 98, 99, 101, 102, 103, 105, 113, 114, 116, 120, 127, 137, 142, 147, 149, 175, 180, 181, 187, 188, 193, 198, 208, 211, 213, 240, 241, 243, 244, 245, 248, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267, 269, 270, 271], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 58, 73, 85, 91, 96, 106, 151, 206, 240, 242, 248, 249, 250, 251, 252, 254, 257], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 51, 53, 55, 79, 84, 116, 124, 129, 130, 187, 196, 211, 240, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268], "net": [4, 85, 91, 96, 114, 146], "fossil": 4, "gz": [4, 116, 196, 198], "madler": 4, "v1": [4, 183], "newli": 4, "therefor": [4, 8, 63, 119, 196, 231, 254], "dure": [4, 8, 26, 56, 63, 116, 123, 133, 185, 217, 250, 262, 269], "address": [4, 8, 131, 149, 265], "scenario": [4, 7, 40, 41, 42, 56, 58, 80, 116, 118, 119, 132, 133, 147, 255, 271], "ce": [4, 70, 235], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 52, 54, 56, 62, 67, 70, 73, 74, 86, 105, 114, 116, 117, 118, 120, 128, 133, 142, 155, 158, 175, 210, 211, 212, 214, 232, 235, 237, 239, 242, 244, 246, 250, 252, 253, 254, 258, 261, 262, 269, 270], "suffici": [4, 114], "instruct": [4, 58, 63, 73, 117, 130, 149, 242], "author": [4, 6, 8, 56, 91, 128, 150, 250], "agent": [4, 56], "done": [5, 6, 36, 38, 51, 70, 73, 74, 77, 101, 103, 108, 114, 118, 119, 120, 127, 132, 133, 135, 136, 145, 147, 149, 151, 156, 157, 158, 167, 175, 179, 187, 188, 192, 193, 194, 203, 234, 241, 243, 244, 248, 250, 251, 259, 261, 262, 263, 264, 269, 270, 271], "much": [5, 6, 74, 118, 125, 136, 175, 250, 262, 271], "fulli": [5, 35, 56, 70, 101, 103, 116, 133, 134, 135, 157, 181, 182, 188, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229, 261, 271], "fork": [5, 8, 116], "maintain": [5, 8, 18, 70, 101, 116, 131, 142, 147, 158, 208, 243, 264], "pr": [5, 42, 49, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 147, 211, 213, 241], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 53, 55, 56, 58, 59, 63, 70, 72, 73, 75, 79, 81, 84, 85, 87, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 108, 109, 112, 113, 114, 116, 120, 125, 127, 128, 130, 132, 133, 135, 139, 142, 146, 147, 148, 149, 156, 159, 175, 181, 187, 193, 194, 198, 199, 203, 206, 208, 211, 219, 221, 224, 240, 241, 242, 243, 244, 245, 247, 250, 254, 255, 261, 266, 267, 268, 269, 270], "13": [5, 6, 13, 24, 35, 42, 79, 81, 84, 87, 95, 96, 98, 99, 102, 106, 108, 109, 112, 113, 120, 142, 147, 149, 156, 206, 240, 243, 247], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 70, 80, 85, 86, 87, 99, 108, 116, 117, 120, 123, 125, 126, 129, 130, 131, 133, 146, 147, 149, 175, 233, 235, 247, 248, 249, 250, 251, 252, 258, 259, 262, 263, 268, 270], "mostli": [5, 31, 45, 116, 133, 149, 158, 231], "proprietari": [5, 70, 150, 207], "idea": [5, 127, 146, 267, 271], "further": [5, 78, 116, 120, 149, 188, 271], "soon": [5, 59, 70, 271], "straightforward": [5, 77, 86, 98, 127, 260, 266], "mani": [5, 6, 45, 49, 56, 58, 65, 70, 73, 74, 80, 101, 105, 127, 147, 175, 192, 238, 261, 264, 267, 271], "advantag": [5, 58, 156, 182, 222, 244], "mitig": [5, 192], "risk": [5, 56, 73, 146], "befor": [5, 6, 7, 10, 26, 45, 53, 55, 56, 112, 116, 118, 122, 127, 129, 136, 139, 147, 157, 158, 175, 192, 196, 205, 210, 213, 217, 223, 227, 231, 241, 242, 244, 245, 248, 249, 252, 256, 263, 267, 271], "No": [5, 24, 116, 123, 242, 254, 270], "central": [5, 70, 233], "outag": 5, "adapt": [5, 77, 105, 106, 116], "perfectli": [5, 73, 142], "minut": [5, 99, 108], "week": [5, 99, 108, 264], "appli": [5, 8, 49, 51, 74, 80, 82, 83, 84, 86, 90, 93, 95, 96, 98, 101, 102, 103, 106, 111, 114, 116, 118, 119, 123, 126, 127, 132, 136, 146, 147, 149, 181, 188, 190, 200, 213, 241, 242, 243, 245, 246, 248, 249, 254, 255, 258, 266, 269, 271], "wouldn": [5, 58, 63, 185], "elimin": [5, 261], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 53, 152], "diff": [5, 51, 95, 99, 200], "trim": [5, 102], "don": [5, 10, 13, 24, 31, 39, 40, 45, 63, 73, 79, 95, 98, 99, 107, 115, 116, 136, 145, 147, 155, 175, 187, 189, 240, 241, 242, 243, 254, 255, 257, 261, 264], "fire": [5, 136, 175, 263], "effici": [5, 35, 55, 70, 78, 116, 131, 221, 240, 271], "thank": [5, 26, 39, 40, 45, 55, 80, 152, 155, 255], "secondari": [5, 70], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 56, 63, 65, 74, 105, 120, 122, 123, 128, 131, 132, 145, 147, 156, 157, 187, 189, 196, 203, 213, 222, 233, 236, 237, 239, 240, 241, 243, 246, 249, 250, 251, 257, 259, 265, 266, 269, 270], "good": [5, 19, 56, 70, 71, 78, 103, 105, 114, 116, 118, 120, 121, 127, 128, 132, 133, 146, 166, 222, 224, 235, 247, 248, 251, 258, 262, 266, 267, 270], "experiment": [6, 7, 13, 31, 70, 91, 97, 105, 112, 113, 116, 120, 122, 123, 124, 131, 132, 142, 145, 147, 149, 150, 153, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213, 227, 271], "subject": [6, 7, 13, 31, 70, 91, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213], "stabil": [6, 7, 13, 31, 65, 70, 97, 99, 106, 113, 120, 122, 123, 124, 131, 144, 145, 147, 149, 150, 153, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 189, 196, 206, 210, 211, 212, 264], "typic": [6, 8, 13, 27, 39, 40, 56, 58, 63, 73, 80, 116, 122, 125, 126, 127, 129, 132, 133, 147, 150, 159, 179, 180, 186, 187, 189, 192, 208, 214, 220, 225, 231, 241, 242, 244, 248, 249, 251, 254, 255, 256, 261, 262, 264, 271], "compos": [6, 98, 132, 146, 147, 163, 170, 180, 191, 254], "But": [6, 7, 13, 29, 39, 40, 56, 70, 80, 90, 99, 104, 116, 119, 127, 138, 140, 141, 147, 155, 159, 187, 208, 211, 241, 243, 244, 250, 254, 256, 266, 267, 268], "normal": [6, 35, 42, 67, 73, 108, 116, 124, 155, 158, 191, 261, 269], "consumpt": [6, 21, 70, 117, 142], "complianc": [6, 119], "technic": [6, 116], "busi": 6, "reason": [6, 8, 41, 56, 73, 74, 86, 90, 103, 136, 150, 256, 263, 266, 268], "suit": [6, 142, 147, 214, 248, 254], "heavi": [6, 29, 70, 116, 118, 154], "pdb": [6, 29], "coverag": [6, 187], "sanit": 6, "analysi": [6, 85, 146], "exact": [6, 47, 48, 74, 78, 84, 101, 103, 108, 116, 119, 147, 182, 196, 222, 243, 250, 261, 262, 263, 268, 270], "machin": [6, 29, 58, 80, 90, 106, 114, 116, 124, 149, 151, 183, 187, 203, 208, 216, 217, 221, 231, 233, 238, 241, 242, 259, 268], "relat": [6, 45, 58, 67, 116, 127, 146, 182, 188, 196, 208, 217, 244, 249, 250, 262, 271], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 56, 58, 63, 70, 72, 73, 80, 85, 98, 105, 108, 114, 116, 118, 125, 129, 130, 131, 139, 140, 146, 151, 158, 175, 187, 188, 191, 214, 231, 235, 236, 244, 248, 249, 251, 255, 256, 261, 265, 266, 268, 271], "regul": 6, "insid": [6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 74, 79, 81, 85, 99, 105, 116, 120, 129, 132, 144, 146, 149, 155, 156, 158, 179, 188, 192, 196, 201, 214, 231, 237, 244, 246, 249, 250, 257, 261, 263, 267, 271], "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 56, 73, 81, 86, 108, 118, 125, 126, 127, 130, 131, 132, 145, 150, 151, 155, 192, 240, 243, 245, 249, 250, 254, 261, 263, 266, 267, 269, 271], "lot": [6, 8, 258, 269, 271], "impact": [6, 8], "experi": [6, 116, 118, 237, 269, 271], "cost": [6, 74], "furthermor": [6, 53, 74, 271], "append": [6, 26, 49, 58, 85, 114, 116, 132, 134, 135, 146, 147, 153, 159, 185, 187, 188, 191, 192, 196, 204, 205, 206, 222, 223, 256], "highlight": [6, 26, 141, 191, 211, 252], "probabl": [6, 31, 188, 214, 221, 243], "scan": [6, 201], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 70, 72, 75, 78, 79, 84, 87, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 113, 114, 116, 120, 127, 128, 131, 133, 136, 137, 139, 140, 142, 147, 149, 156, 157, 175, 185, 186, 187, 188, 191, 193, 194, 196, 198, 199, 200, 203, 208, 211, 217, 219, 221, 222, 223, 224, 231, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 53, 56, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 147, 149, 150, 153, 154, 155, 156, 157, 158, 159, 160, 175, 177, 179, 180, 181, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 270], "Or": [6, 85, 118, 127, 147, 188, 207, 223, 229], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 51, 56, 85, 142, 146, 176, 184, 188, 214, 241, 244, 250, 252, 254, 256, 259, 261, 262, 263], "mybuild": [6, 116], "recipe_fold": [6, 16, 18, 56, 91, 96, 125, 126, 127, 128, 134, 135], "dst": [6, 17, 38, 116, 124, 196, 257], "join": [6, 16, 17, 18, 19, 36, 39, 40, 51, 73, 116, 126, 128, 129, 130, 132, 134, 135, 138, 147, 158, 159, 175, 187, 188, 191, 196, 214, 244, 248, 254, 255, 256, 257, 259, 263], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 53, 55, 59, 61, 62, 66, 67, 68, 69, 70, 74, 80, 82, 86, 99, 100, 102, 116, 121, 130, 131, 133, 134, 143, 146, 175, 186, 188, 189, 196, 214, 223, 231, 232, 240, 247, 256, 259, 260, 262, 266, 267], "mylog": 6, "build_fold": [6, 17, 74, 91, 96, 97, 127, 129, 130, 158, 186, 196, 211, 216, 254, 255, 256, 257], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 58, 63, 75, 78, 80, 84, 96, 98, 101, 103, 105, 108, 114, 116, 118, 128, 131, 132, 136, 138, 141, 142, 147, 149, 157, 159, 175, 181, 187, 188, 202, 217, 231, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 257, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "clutter": [6, 214], "accross": [6, 78], "sai": [6, 13, 16, 18, 38, 41, 51, 80, 84, 95, 98, 103, 116, 146, 147, 181, 221, 249, 263], "no_copy_sourc": [6, 118, 254], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 53, 70, 73, 79, 80, 81, 84, 99, 104, 105, 116, 136, 147, 149, 150, 157, 175, 177, 182, 187, 192, 211, 231, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 263, 266, 267, 268, 270, 271], "post_export": [6, 158], "post_sourc": [6, 158], "post_build": [6, 152, 158], "usag": [6, 27, 31, 35, 37, 39, 40, 41, 63, 70, 74, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 119, 129, 132, 133, 145, 146, 147, 149, 151, 157, 189, 196, 198, 200, 203, 207, 214, 223, 243, 256, 261], "similar": [6, 8, 18, 58, 65, 70, 87, 90, 103, 112, 114, 116, 129, 137, 147, 155, 187, 189, 191, 227, 240, 247, 249, 252, 254, 263, 269], "effect": [6, 8, 49, 73, 76, 77, 78, 98, 116, 127, 131, 136, 146, 152, 221, 231, 249, 267], "To": [6, 24, 26, 29, 31, 36, 55, 56, 58, 63, 64, 73, 99, 103, 106, 108, 116, 120, 128, 129, 136, 141, 146, 147, 150, 153, 158, 181, 186, 187, 188, 193, 194, 196, 203, 204, 205, 214, 240, 242, 244, 245, 251, 252, 261, 263, 267, 270], "achiev": [6, 8, 39, 56, 74, 118, 131, 157, 182, 187, 196, 222, 239, 244, 250, 254, 267, 270, 271], "didn": [6, 47, 56, 73, 79, 250, 254], "far": [6, 242, 243, 244, 247, 249, 261, 271], "r": [6, 13, 31, 35, 56, 65, 73, 79, 81, 83, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 108, 109, 111, 112, 227, 236, 238, 243, 264, 268], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 254], "By": [6, 21, 41, 48, 70, 73, 78, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 111, 112, 114, 116, 132, 145, 146, 151, 175, 187, 188, 191, 203, 205, 206, 208, 210, 217, 231, 267, 268], "situat": [6, 13, 35, 39, 40, 80, 101, 108, 116, 118, 130, 131, 135, 147, 175, 187, 208, 265, 266], "sometim": [6, 7, 29, 51, 73, 86, 116, 137, 243, 248, 252, 254, 260], "mix": [6, 80, 175], "recov": [6, 56, 196], "previous": [6, 13, 24, 31, 36, 58, 98, 103, 145, 147, 149, 188, 191, 213, 245, 252, 255, 266], "under": [6, 8, 36, 61, 66, 68, 69, 70, 81, 114, 116, 129, 131, 147, 155, 158, 200, 217, 231, 237, 240, 250, 255, 260, 269], "collect": [6, 36, 96, 98, 127, 132, 136, 196, 206, 249, 258], "recal": [6, 101, 103, 108, 120, 123, 147, 151, 181, 185, 188], "At": [6, 10, 21, 26, 63, 70, 74, 93, 103, 116, 127, 149, 196, 204, 212, 213], "moment": [6, 7, 35, 74, 114, 127, 132, 149, 204, 212], "addit": [6, 8, 58, 59, 85, 86, 100, 116, 133, 146, 147, 149, 178, 188, 196, 198, 205, 217, 222, 223, 244, 245, 251], "quit": [6, 146, 175, 237], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 74, 98, 103, 116, 120, 125, 126, 128, 130, 136, 142, 181, 182, 239, 248, 249, 267, 269], "metatada": 6, "best": [6, 7, 13, 35, 56, 78, 80, 84, 86, 99, 101, 106, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 139, 147, 150, 170, 175, 245, 256, 266, 268, 270], "mandatori": [6, 36, 80, 101, 105, 116, 154, 157, 175, 250], "frequent": [6, 8, 196], "excepcion": 6, "decompress": [6, 196, 198, 240, 245, 260], "consid": [6, 7, 8, 21, 45, 70, 78, 79, 80, 84, 116, 119, 121, 181, 183, 188, 217, 244, 268], "zip": [6, 8, 19, 51, 85, 106, 112, 116, 136, 150, 196, 198, 235, 236, 246, 262], "yourself": 6, "categori": [6, 241], "illustr": [6, 79, 270], "later": [6, 7, 13, 26, 63, 65, 86, 96, 119, 123, 126, 132, 141, 147, 196, 227, 233, 238, 243, 244, 248, 249, 255, 265, 267], "necessarili": [6, 116, 267], "ton": 6, "assum": [6, 29, 35, 63, 70, 74, 78, 79, 84, 87, 95, 99, 108, 112, 116, 128, 132, 137, 147, 149, 151, 181, 187, 211, 221, 240, 242, 244, 245, 270], "stage": [6, 26, 58, 86, 90, 149, 158], "applic": [6, 8, 27, 38, 45, 48, 53, 55, 58, 70, 73, 79, 80, 96, 116, 120, 131, 133, 139, 187, 194, 196, 208, 221, 232, 237, 239, 240, 245, 246, 250, 253, 254, 256, 259, 261, 266, 271], "cp": [6, 35, 56], "todo": [6, 166], "hear": 6, "feedback": [6, 70, 269], "continu": [7, 70, 74, 101, 114, 234, 263, 267], "conveni": [7, 13, 65, 99, 105, 116, 136, 137, 147, 157, 160, 175, 187, 191, 193, 194, 243, 256, 259], "recent": [7, 21, 99, 108, 264], "transfer": [7, 8, 114, 271], "job": [7, 56, 74, 85, 146, 147, 183, 185, 216, 271], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 99], "b": [7, 21, 24, 29, 42, 51, 58, 83, 84, 86, 90, 93, 95, 96, 98, 102, 106, 111, 136, 146, 200, 206, 211, 241, 248, 249, 251, 252, 254, 257, 263], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "consider": 7, "well": [7, 56, 70, 72, 90, 99, 113, 116, 129, 149, 185, 187, 188, 208, 217, 250, 271], "pkg773791b8c97aa": 7, "substitut": [7, 151, 231], "storag": [7, 70, 84, 114, 152, 198, 237, 268], "transitori": 7, "strategi": [7, 8, 56, 131, 136, 262, 271], "proof": 7, "stabl": [7, 58, 99, 105, 106, 116, 146, 147], "expect": [7, 10, 42, 45, 56, 74, 90, 95, 98, 116, 118, 136, 146, 149, 197, 214, 250, 252, 262, 268], "fantast": 8, "resourc": [8, 57, 96, 132, 244, 268], "1500": 8, "contribut": [8, 70, 192, 200, 232, 233], "great": [8, 58, 70, 73, 236, 271], "knowledg": [8, 57, 70, 73], "wide": [8, 58, 80, 242, 244, 245, 250], "variant": [8, 66], "On": [8, 45, 80, 114, 137, 149, 213, 237, 240, 241, 242, 250], "top": [8, 133, 147, 227], "contributor": [8, 70], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 87, 116, 188, 242], "snapshot": [8, 243, 267], "contrari": 8, "e": [8, 42, 58, 70, 73, 84, 87, 88, 91, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 120, 146, 147, 148, 149, 179, 183, 185, 188, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 251, 252, 271], "g": [8, 35, 42, 47, 48, 73, 83, 84, 87, 88, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 146, 147, 148, 149, 156, 167, 179, 183, 185, 188, 193, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 240, 241, 242, 244, 245, 252, 261, 262, 263], "opencv": [8, 114, 137, 154], "greater": 8, "remain": [8, 114, 116, 151, 181, 191, 217], "older": [8, 70, 101, 104, 268, 269, 270], "push": [8, 56, 70, 227], "ecosystem": [8, 80, 213], "themselv": [8, 105, 175, 249], "hand": [8, 70, 80, 102, 118, 137], "combin": [8, 83, 86, 93, 95, 96, 98, 102, 104, 106, 111, 130, 136, 270], "mean": [8, 13, 29, 31, 35, 39, 40, 58, 63, 70, 73, 74, 78, 79, 80, 84, 87, 95, 96, 97, 98, 99, 108, 112, 116, 118, 120, 123, 127, 131, 132, 136, 139, 142, 147, 149, 151, 154, 166, 174, 175, 181, 187, 191, 192, 196, 203, 205, 214, 231, 242, 243, 254, 258, 260, 263, 266, 267, 268, 269], "languag": [8, 38, 42, 45, 49, 53, 55, 70, 182, 240], "pip": [8, 56, 114, 237], "pypi": [8, 58], "npm": 8, "cargo": 8, "discourag": [8, 84, 116, 150, 175, 217, 252], "unconstrain": 8, "manner": [8, 261], "guidelin": [8, 57, 58, 70, 71, 176], "seri": [8, 116, 260], "highli": [8, 24, 31, 36, 45, 53, 55], "mention": [8, 91, 96, 131, 133, 147, 181, 187, 205, 212, 217, 223, 248, 258, 263, 271], "earlier": [8, 70, 269], "caus": [8, 74, 116, 120, 133, 139, 187, 208, 250, 252, 266, 267, 268], "solver": 8, "actual": [8, 13, 19, 39, 40, 70, 73, 80, 90, 108, 112, 118, 127, 133, 137, 147, 149, 192, 193, 194, 196, 231, 238, 243, 263, 266, 267, 270], "4": [8, 10, 21, 26, 48, 53, 73, 78, 79, 96, 99, 103, 113, 114, 116, 121, 127, 131, 137, 142, 146, 147, 149, 175, 188, 211, 241, 244, 247, 254, 264, 270], "5": [8, 10, 63, 73, 78, 85, 93, 98, 101, 102, 103, 104, 116, 120, 127, 131, 147, 149, 160, 198, 221, 243, 267, 269, 270], "greatli": [8, 271], "encourag": [8, 70, 116, 250, 262], "consist": [8, 18, 78, 80, 85, 86, 266, 267, 270, 271], "rust": 8, "technologi": [8, 149], "upstream": [8, 56, 120, 127, 133, 174, 187, 261, 266], "period": [8, 264], "downtim": 8, "schedul": 8, "effort": [8, 127, 271], "made": [8, 84, 271], "unschedul": 8, "rare": [8, 118, 132, 134], "treat": [8, 85, 133, 146, 149, 196], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 114, 149, 235, 237], "strong": [8, 70, 80, 147], "uptim": 8, "protect": [8, 58, 115, 149], "transient": 8, "network": [8, 21, 85, 114, 143], "extern": [8, 19, 26, 49, 58, 246, 250, 252, 255, 257, 268], "These": [8, 21, 31, 45, 68, 70, 78, 85, 86, 98, 114, 125, 126, 127, 129, 141, 143, 146, 147, 150, 151, 155, 186, 188, 189, 203, 204, 208, 217, 241, 242, 249, 250, 254, 255, 259, 263, 267, 271], "industri": 8, "financ": 8, "robot": 8, "embed": [8, 70, 78, 79, 116, 133, 149], "stronger": 8, "licens": [8, 36, 55, 70, 91, 96, 97, 98, 105, 125, 126, 127, 128, 130, 158, 235, 240, 246, 250, 258, 262, 268], "medic": 8, "automot": 8, "advis": [8, 134, 135, 147], "instanc": [8, 31, 42, 63, 91, 96, 114, 116, 120, 129, 130, 131, 146, 147, 155, 177, 179, 183, 187, 188, 191, 192, 193, 194, 205, 213, 217, 219, 220, 221, 224, 227, 251, 259], "backport": [8, 200, 271], "suitabl": [8, 149], "review": [8, 63, 253, 254, 256, 263], "tight": 8, "subsect": 8, "come": [10, 58, 127, 147, 155, 183, 188, 208, 217, 236, 242, 255, 271], "glanc": 10, "becom": [10, 58, 80, 125, 126, 175, 268, 271], "unfeas": 10, "benefit": 10, "interest": [10, 13, 70, 84, 86], "pick": [10, 243], "action": [10, 31, 53, 56, 63, 114, 243, 251], "summar": [10, 271], "libpng": [10, 93, 97, 181], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 60, 64, 65, 70, 74, 81, 136, 243, 250, 262, 266], "8": [10, 73, 78, 98, 109, 116, 121, 127, 149, 180, 193, 194, 196, 200, 217, 221, 222, 224, 243, 247, 248, 249, 258, 259, 269], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 53, 58, 70, 73, 78, 99, 113, 114, 121, 136, 139, 149, 181, 200, 207, 241, 243, 244, 245], "40": [10, 99, 268], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 51, 73, 78, 85, 102, 120, 121, 127, 142, 146, 147, 149, 198, 241, 269], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 70, 79, 81, 87, 116, 127, 142, 208, 211], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 99, 255], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 79, 81, 96, 99, 120], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 51, 53, 55, 63, 90, 104, 125, 133, 142, 147, 188, 214, 221, 238, 240, 253, 254, 256, 259, 261, 263, 266, 269], "usual": [10, 58, 116, 133, 138, 147, 152, 157, 181, 191, 261, 263, 267], "behaviour": [10, 114, 187, 231, 249, 250, 251], "googl": [11, 42, 43, 53, 62, 76, 85, 146, 176, 200, 210, 211, 212], "ndk": [11, 25, 26, 60, 116, 132, 177, 188, 217, 241], "macro": [11, 37, 45], "modul": [11, 37, 45, 58, 65, 114, 116, 127, 128, 147, 152, 156, 175, 187, 211], "concaten": [13, 87, 112], "11": [13, 24, 55, 73, 81, 84, 85, 91, 95, 98, 99, 108, 109, 116, 127, 133, 142, 146, 147, 148, 149, 156, 181, 187, 193, 194, 200, 203, 208, 211, 221, 224, 240, 241, 242, 243, 244, 245, 247, 248, 254, 258, 259, 262, 269], "sent": 13, "12": [13, 21, 24, 26, 27, 91, 99, 108, 109, 142, 147, 149, 183, 200, 208, 217, 237, 243, 250, 254, 255, 268], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 102], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 99], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 51, 56, 58, 69, 73, 80, 81, 84, 87, 91, 95, 96, 97, 99, 106, 108, 112, 116, 119, 122, 123, 128, 131, 132, 137, 140, 147, 149, 157, 160, 168, 177, 179, 180, 181, 182, 185, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 221, 222, 223, 224, 229, 231, 240, 241, 242, 243, 244, 248, 250, 252, 254, 255, 256, 259, 267, 268], "x86_64": [13, 24, 26, 27, 35, 42, 73, 80, 81, 91, 95, 99, 106, 122, 129, 137, 147, 149, 157, 160, 180, 181, 183, 188, 193, 194, 231, 240, 241, 242, 244, 245, 248, 250, 255, 256, 259, 262, 267, 268], "singl": [13, 26, 47, 48, 70, 78, 82, 87, 103, 106, 116, 158, 171, 181, 185, 186, 187, 188, 189, 193, 194, 196, 217, 221, 244, 252, 255, 263, 271], "invoc": [13, 36, 61, 62, 67, 68, 69, 74, 118, 141, 152, 154, 179, 180, 181, 182, 185, 188, 193, 203, 210, 211, 220, 222], "almost": [13, 78, 82], "myremot": [13, 87, 108, 112, 114, 145, 264, 268], "slow": 13, "promot": 13, "magnitud": 13, "faster": [13, 80, 227, 243, 270], "dedupl": 13, "One": [13, 70, 73, 116, 156, 182, 188, 196, 217, 222, 241, 248], "mypkg": [13, 80, 84, 98, 105, 116, 134, 136, 137, 147, 156, 187, 191, 211], "cmake_lib": [13, 27, 79, 84, 105, 186, 250, 255, 268], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 84, 268], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 80, 91, 93, 97, 149], "known": [13, 149, 198, 243, 254, 271], "destruct": 13, "natur": [13, 80, 266, 268], "cannot": [13, 27, 42, 56, 74, 80, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 117, 118, 119, 128, 136, 140, 142, 146, 151, 155, 175, 183, 187, 188, 189, 242, 250, 254, 255, 260, 266, 267], "OR": [13, 26, 84, 87, 99, 108, 112, 168, 223, 269], "leav": [13, 26, 80, 108, 114, 127, 146, 149, 264], "subproject": [14, 15, 129, 263], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 51, 53, 55, 56, 58, 79, 187, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 271], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 63, 64, 74, 84, 105, 116, 130, 185, 186, 187, 188, 214, 240, 244, 245, 247, 248, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "h": [16, 17, 18, 21, 26, 31, 42, 45, 53, 55, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 130, 155, 196, 240, 241, 242, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 261, 262, 263], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 51, 126, 200], "cmake_fil": 16, "real": [17, 26, 56, 70, 112, 132, 139, 196, 266, 270, 271], "editable_compon": 17, "greet": [17, 155, 217], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 51, 53, 56, 79, 96, 99, 105, 116, 127, 155, 175, 185, 186, 187, 188, 210, 217, 238, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 261, 262, 263, 268], "bye": [17, 18, 155, 261, 268], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 51, 56, 74, 125, 126, 175, 188, 250, 252, 254, 256, 263, 268, 270], "src_folder": [17, 19, 186, 214, 262], "dir": [17, 19, 21, 27, 85, 105, 116, 132, 147, 189, 206, 213, 227, 248, 249, 250, 251, 254, 259, 262, 263], "bt": [17, 86], "package_fold": [17, 38, 39, 40, 41, 91, 96, 97, 115, 124, 127, 129, 130, 132, 158, 179, 181, 188, 191, 196, 203, 206, 208, 216, 254, 255, 256, 257], "keep_path": [17, 130, 196, 255, 256, 257], "cmake_file_nam": [17, 132, 187], "myg": 17, "cmake_target_nam": [17, 21, 132, 187, 251], "mygreet": 17, "myhello": [17, 251], "myby": 17, "beyond": 17, "filenam": [17, 48, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 111, 147, 157, 159, 192, 196, 198, 216], "besid": [17, 31, 48, 56, 66, 98, 146, 147, 149, 152, 181, 187, 189, 240, 249, 251, 252, 258, 262], "app": [17, 26, 38, 55, 69, 79, 80, 85, 103, 114, 127, 133, 146, 180, 182, 183, 185, 187, 188, 191, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 222, 229, 236, 240, 269, 270], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 63, 105, 187, 240, 245, 248, 251, 258, 259], "add_execut": [17, 21, 63, 187, 240, 245, 248, 251, 259], "target_link_librari": [17, 21, 26, 42, 63, 187, 240, 245, 248, 251, 258, 259], "adio": 17, "multiple_subproject": 18, "sibl": 18, "myhead": [18, 198], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 85, 114, 116, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 259, 262, 263], "world": [18, 27, 47, 48, 51, 53, 56, 70, 79, 116, 155, 188, 210, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 268], "fine": [18, 19, 42, 103, 114, 116, 237, 250], "principl": [18, 266, 267], "must": [18, 56, 58, 62, 74, 84, 100, 101, 103, 114, 116, 122, 123, 125, 126, 131, 136, 146, 147, 154, 155, 159, 185, 187, 196, 200, 203, 205, 207, 240, 243, 244, 245, 250, 251, 267], "third_party_librari": 19, "whose": [19, 82, 83, 86, 93, 95, 96, 98, 102, 111, 136, 147], "mypatch": 19, "sour": 19, "libhello": [19, 27, 51, 247, 248, 249, 251, 252, 255, 257, 258, 259, 262], "archiv": [19, 51, 84, 85, 136, 179, 196, 207, 252, 262], "head": [19, 51, 136, 227, 247, 248, 251, 252, 258, 262, 268], "strip_root": [19, 51, 196, 198, 252, 262], "awar": [19, 39, 40, 58, 64, 87, 106, 122, 123, 144, 227, 247, 248, 249, 251, 252, 255, 258, 262, 271], "branch": [19, 58, 74, 135, 136, 227, 246, 247, 248, 251, 258, 262, 265, 268, 270], "tag": [19, 58, 74, 85, 116, 135, 136, 141, 146, 227, 247, 248, 250, 251, 252, 258, 262, 268, 270], "patch_fil": [19, 51, 200], "7kb": [19, 252, 262], "50": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "cmakefil": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "libcrypto": [21, 132], "libssl": [21, 132], "abstract": [21, 49, 61, 68, 69, 74, 80, 180, 185, 203, 210, 220, 251], "rest": [21, 70, 80, 104, 146, 147, 196, 199, 208, 235, 236], "game": [21, 105, 266, 267], "algorithm": [21, 198], "ai": [21, 105], "coupl": [21, 29, 119, 240, 248, 251, 259], "package_nam": [21, 105, 142, 181, 231, 236], "component_nam": [21, 187, 189, 211], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 63, 85, 106, 146, 149, 187, 231, 240, 242, 243, 244, 245, 248, 251, 257, 258, 259], "packagetest": [21, 248, 251, 259], "barbarian": [21, 96, 106], "d6e361d329116": 21, "j16": [21, 251], "25": [21, 35, 79, 80, 147, 149, 248, 251, 256, 268], "37": [21, 181], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 248, 251], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 266], "NOT": [21, 26, 116, 136, 175, 187, 228, 248], "stack": 21, "incomplet": [21, 101, 104, 149], "occur": [21, 141, 198], "22": [21, 79, 81, 99, 147, 149, 241, 243, 244, 245, 250, 254, 255], "conanexcept": [21, 36, 56, 197, 198], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 149, 179, 180], "7": [24, 53, 56, 73, 78, 85, 121, 149, 269], "cortexa15t2hf": 24, "rc": [24, 53, 62, 85, 146, 188, 210, 212, 223], "rewrit": [24, 102], "sub": [24, 100, 107, 116, 147, 155, 196, 262], "conan_hom": [24, 36, 74, 96, 106, 144, 146, 147, 148, 149, 156, 157, 158], "myuser": [24, 29, 42, 56, 116, 145, 147, 150], "pkgconan": [24, 147, 216], "gnu98": [24, 149], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 85, 146, 147, 149, 205, 213, 241], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 211], "right": [24, 26, 59, 74, 98, 118, 175, 187, 261, 262, 267, 269], "2023": [24, 79, 81, 99, 268], "02": [24, 81, 99, 203, 268], "16": [24, 85, 99, 142, 146, 147, 149], "06": [24, 243], "42": [24, 80, 85, 99, 116, 175], "10": [24, 45, 53, 56, 85, 99, 113, 146, 147, 149, 217, 243], "utc": [24, 79, 81, 99, 243, 250, 254, 255, 268], "wizard": 26, "myconanappl": 26, "minimum": [26, 116, 137, 217, 250, 258], "suggest": [26, 70, 116, 123], "21": [26, 27, 99, 113, 120, 149, 188, 217], "rememb": [26, 36, 114, 213, 244], "api_level": [26, 27, 149, 217], "standard": [26, 27, 35, 70, 116, 119, 129, 143, 146, 147, 177, 182, 187, 188, 217, 221, 222, 227, 240, 241, 247, 249, 254, 258, 262, 269], "choic": [26, 149, 257], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 51, 205, 212, 248, 258, 268], "zlibvers": [26, 55, 240], "newstringutf": 26, "c_str": 26, "prepar": [26, 74, 112, 118, 127, 139, 174, 232, 241, 246, 250, 262, 271], "my_conan_app": 26, "view": [26, 29, 63, 99, 116, 121, 131, 153, 249], "past": [26, 84, 99], "task": [26, 56, 74, 136, 151, 152, 255, 267, 271], "conaninstal": 26, "element": [26, 31, 74, 108, 221, 222], "conanexecut": 26, "builddir": [26, 38, 41, 91, 96, 132, 187], "mkdir": [26, 56, 79, 195, 255, 268], "armv7": [26, 27, 149, 177, 180, 231], "x86": [26, 27, 84, 85, 87, 99, 108, 112, 146, 149, 168, 183, 196, 220, 224, 231, 267], "n": [26, 36, 42, 45, 51, 53, 55, 149, 159, 186, 220, 227, 240, 242, 247, 248, 258, 268], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 84, 141, 151], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 79, 122, 149, 183, 213, 224, 241, 250, 255, 267], "defaultconfig": 26, "adjust": [26, 27, 129, 179, 187, 188, 205, 206, 208, 249], "focu": [26, 258], "proil": 26, "_static": [26, 27, 149], "14": [26, 27, 73, 96, 99, 105, 106, 116, 147, 149, 160, 208, 224, 240, 241, 242, 250, 254, 258], "ndk_path": [26, 27, 85, 116, 132, 146, 188, 217], "luism": [26, 254, 256], "7075529": 26, "bin": [26, 27, 35, 39, 40, 53, 91, 96, 132, 147, 179, 188, 205, 206, 208, 211, 236, 241, 254, 256, 257], "android31": [26, 27], "llvm": [26, 27, 149], "prebuilt": [26, 27, 79, 95, 246, 253, 262], "darwin": [26, 27, 53, 96, 106, 147], "_share": [26, 27, 149], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 204, 205], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "respons": [26, 39, 40, 58, 64, 73, 85, 90, 98, 115, 116, 118, 123, 132, 134, 135, 146, 158, 196, 200, 217, 227, 250], "android_abi": [26, 176, 188], "exit": [26, 31, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 139], "prematur": 26, "essenti": [26, 45, 70, 147, 148], "absent": 26, "cmake_build_typ": [26, 187, 188], "endif": [26, 51, 242, 247, 248, 251, 258], "strequal": [26, 248], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 85, 127, 146, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "elseif": 26, "v8a": [26, 177], "armeabi": [26, 177], "v7a": [26, 177], "Not": [26, 74, 91, 96, 116, 123, 127, 154, 240, 245, 252, 266], "add_librari": [26, 42, 251, 257, 258], "virtual": [26, 58, 70, 114, 147, 242, 245, 249], "devic": [26, 27], "pair": [26, 114], "qr": 26, "click": [26, 29, 63, 208, 236], "brew": [27, 58, 85, 146, 230], "usr": [27, 114, 147, 207, 241], "choos": [27, 116, 187, 203, 231, 240, 258], "fit": [27, 82, 183, 267], "balanc": [27, 78], "unless": [27, 70, 84, 98, 108, 112, 114, 116, 125, 126, 146, 151, 200, 221, 240, 264], "know": [27, 31, 78, 86, 90, 116, 140, 149, 155, 187, 203, 242, 249, 251, 256, 263, 270], "bare": [29, 70, 250], "symbol": [29, 63, 144, 179, 188], "box": [29, 263], "consuming_packag": [29, 240, 241, 242, 243, 244, 245], "simple_cmake_project": [29, 240], "finish": [29, 53], "successfulli": [29, 53, 64, 241, 251, 259, 261], "23": [29, 47, 48, 86, 98, 102, 120, 142, 149, 188, 254, 255, 256, 261, 262, 263, 268], "compressor": [29, 35, 55, 187, 240, 241, 242, 244, 245], "sln": [29, 68, 220], "solut": [29, 68, 70, 74, 114, 129, 133, 221, 222, 235, 237, 266], "startup": 29, "breakpoint": 29, "void": [29, 42, 51, 55, 240, 242, 247, 258, 268], "deflateinit": [29, 55, 240], "defstream": [29, 55, 240], "z_best_compress": [29, 55, 240], "deflat": [29, 55, 240], "z_finish": [29, 55, 240], "f5": 29, "stop": [29, 98, 188], "Into": 29, "navig": [29, 63, 236], "zlib4f7275ba0a71f": 29, "zexport": 29, "deflateinit_": 29, "strm": 29, "stream_siz": 29, "z_streamp": 29, "const": 29, "deflateinit2_": 29, "z_deflat": 29, "max_wbit": 29, "def_mem_level": 29, "z_default_strategi": 29, "next_in": [29, 55, 240], "inspir": 30, "agnost": [30, 33, 98, 157], "enough": [31, 56, 58, 74, 90, 120, 127, 131, 146, 147, 151, 189, 244, 257, 266], "cmd_clean": 31, "your_conan_hom": [31, 155, 263], "Will": [31, 39, 40, 83, 86, 87, 93, 95, 96, 98, 102, 104, 108, 111, 116, 127, 136, 160, 179, 182, 187, 188, 192, 217, 231], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "conanoutput": [31, 155], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "group": [31, 85, 116, 271], "add_argu": [31, 155], "store_tru": 31, "parse_arg": [31, 155], "request_boolean": 31, "non_interact": [31, 85, 145, 146, 151], "output_remot": 31, "writeln": 31, "f": [31, 36, 39, 40, 56, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 105, 106, 107, 108, 109, 111, 112, 113, 116, 132, 136, 150, 156, 158, 159, 175, 188, 208, 223], "fg": [31, 247, 258], "all_rrev": 31, "recipe_revis": [31, 78, 116, 243], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 78], "latest_prev": 31, "argpars": [31, 155], "argumentpars": [31, 155], "visit": [31, 80, 82, 103, 114, 118, 236], "websit": [31, 155], "proce": [31, 42, 242], "translat": [31, 63, 68, 69, 73, 132, 182, 188, 205, 217, 221, 222, 244, 250, 251], "bg": 31, "font": 31, "foreground": 31, "background": [31, 151], "apart": [31, 53, 211], "predefin": [31, 47, 82, 105, 120, 142, 176, 188, 261, 263], "success": [31, 116, 141], "remotesapi": [31, 161, 171], "remoteregistri": 31, "searchapi": [31, 161, 173], "listapi": [31, 161, 168], "removeapi": [31, 161, 172], "deserv": [31, 146], "especi": [31, 58, 116, 255, 260, 271], "attent": [31, 146, 257], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 58], "elsewher": [35, 116, 135], "place": [35, 36, 42, 73, 80, 93, 96, 116, 118, 120, 132, 144, 156, 158, 175, 191, 196, 244, 250, 255, 256, 257, 269], "conanbuild": [35, 45, 53, 127, 132, 147, 185, 191, 192, 193, 203, 205, 224, 241, 244, 245, 256, 262], "17": [35, 63, 79, 85, 99, 113, 146, 147, 149, 212, 250, 254, 255], "2022": [35, 63, 75, 99, 113, 149, 243, 250, 254, 255], "big": [35, 114, 125, 149], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 185, 187, 240, 241, 242, 244, 245, 255, 261, 262, 263], "fact": [35, 114, 249], "limit": [35, 99, 108, 132, 183, 192, 196, 217, 240, 271], "ticket": 35, "manual": [35, 45, 63, 84, 100, 101, 103, 114, 127, 133, 267, 270], "exclus": [35, 83, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 108, 111, 112, 116, 117, 120, 132, 133, 136, 221], "cwd": [36, 98, 105, 134, 135, 141, 157, 170], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 105, 118, 221], "dependencies_sourc": 36, "preprocess": 36, "accomplish": 36, "source_deploi": 36, "kwarg": [36, 154, 157, 159, 200, 231], "robust": [36, 154], "dependency_sourc": 36, "iter": [36, 98, 103, 157, 159, 188, 190], "said": [36, 249, 267], "advanc": [37, 39, 40, 63, 70, 75, 116, 133, 147, 184, 189, 227, 235, 236, 267, 271], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 86, 101, 102, 103, 104, 117, 127, 133, 147, 187, 208, 211, 241, 243, 244, 256, 267], "different_opt": 39, "myoption": [39, 119, 139], "echo": [39, 40, 154, 175, 256], "off": [39, 40, 59, 64, 156, 188, 212, 248, 262], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 56, 74, 114, 116, 131, 132, 136, 244, 250, 259, 264], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 159, 188, 192], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 53, 116, 148, 175, 187, 203, 211, 213, 240, 248, 251, 259], "anyth": [39, 40, 70, 74, 194, 231, 241, 255, 256, 259, 268, 271], "identifi": [39, 40, 65, 77, 79, 81, 108, 116, 117, 242, 249, 256, 263], "construct": [39, 40], "Of": [39, 40, 70, 266], "cours": [39, 40, 266], "invis": [39, 40], "exactli": [39, 40, 70, 78, 127, 129, 131, 231, 256], "obtain": [39, 40, 56, 81, 82, 84, 117, 131, 137, 147, 179, 180, 185, 190, 192, 193, 194, 217, 220, 222, 227, 242, 270], "disambigu": [39, 40, 187, 208], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 116, 175], "cmake_build_modul": [41, 187], "tc": [41, 48, 116, 127, 149, 182, 185, 188, 204, 205, 212, 217, 222, 223, 229, 248, 250, 252, 256, 258, 262], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 132, 187], "build_context": [41, 187, 219], "behav": [42, 203, 242], "protobuf": [42, 116, 120, 132, 187, 208], "perhap": 42, "pb": 42, "nonetheless": [42, 254], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 116, 117, 123, 127, 246, 249, 250, 252], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 257, 258], "build_interfac": 42, "cmake_current_source_dir": 42, "cmake_current_binary_dir": 42, "install_interfac": 42, "set_target_properti": [42, 251, 257, 258], "public_head": [42, 257, 258], "iostream": [42, 116, 258], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 146], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 51, 258, 268], "alloc": [42, 211], "shutdownprotobuflibrari": 42, "simpli": [42, 62, 147, 213, 214, 261], "argc": [42, 200], "argv": [42, 200], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 96, 102], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 91, 99], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 63, 84, 248, 254], "notic": [42, 63, 85, 116, 148, 155, 205, 208, 210, 211, 216, 217, 242, 247, 248, 249, 258], "arm": [42, 80, 149, 220, 241, 244], "mach": 42, "64": [42, 149, 183, 213, 224, 241, 267], "bit": [42, 51, 56, 122, 132, 147, 149, 155, 183, 196, 224, 241, 250, 255, 259, 270], "arbitrari": [43, 46, 63, 70, 101, 103, 131, 152, 269], "bazel": [43, 52, 57, 59, 85, 105, 146, 176, 209, 211, 212, 240], "popular": [45, 53, 55, 59, 66, 70, 149, 231, 240], "fmt": [45, 53, 102, 247, 248, 249, 258, 259], "mac": [45, 183, 259], "string_formatt": [45, 53], "ac": 45, "www": [45, 96, 97, 114, 116, 271], "org": [45, 58, 96, 97, 116, 146, 198], "softwar": [45, 96, 213, 231, 271], "autoconf": 45, "60": [45, 53], "html_node": 45, "configure_002eac": 45, "_": [45, 74, 116, 147, 151, 156, 176, 182, 208, 221, 255], "cstdlib": [45, 53], "exit_success": [45, 53, 55, 240, 242], "ac_prog_cxx": 45, "pkg_check_modul": 45, "ac_init": 45, "stringformatt": 45, "am_init_automak": 45, "wall": 45, "foreign": 45, "ac_config_srcdir": 45, "ac_config_fil": 45, "ac_output": 45, "automake_opt": 45, "subdir": [45, 114, 196], "aclocal_amflag": 45, "aclocal_flag": 45, "bin_program": 45, "string_formatter_sourc": 45, "string_formatter_cppflag": 45, "fmt_cflag": 45, "string_formatter_ldadd": 45, "fmt_lib": 45, "automak": 45, "pkgconf": 45, "vari": [45, 58, 74, 80], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 205], "conanbuildenv": [45, 193, 256, 262], "conanrun": [45, 53, 132, 138, 147, 185, 192, 194, 242, 259, 262], "conanrunenv": [45, 194, 262], "deactivate_conanbuild": [45, 193, 241, 244, 245, 262], "deactivate_conanrun": [45, 242, 262, 263], "_fmt": 45, "run_exampl": 45, "u": [45, 70, 73, 83, 86, 93, 95, 96, 98, 102, 111, 120, 244, 252], "ldflag": [45, 116, 132, 146, 147, 204, 205, 217, 223], "pkg_config_path": [45, 205, 207, 217], "m4": 45, "second": [45, 56, 79, 85, 114, 130, 146, 181, 198, 249, 256], "cmake_ex": [47, 79, 105], "foo": [47, 48, 49, 87, 114, 116, 129, 187, 188, 192, 196, 205, 207, 223], "correspond": [47, 63, 116, 188, 193, 194, 205, 208, 219, 242, 249, 251], "binarydir": 47, "sinc": [47, 48, 63, 96, 203, 231, 238, 261, 262, 263, 268], "everytim": [47, 48, 241, 261, 262, 263], "multi": [47, 48, 103, 132, 157, 181, 184, 185, 187, 221, 242, 244, 255, 261, 263, 265], "did": [47, 84, 175, 241, 242, 245, 247, 250, 252, 263, 270], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 188], "displaynam": 48, "buildpreset": [48, 188], "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 77, 120], "appconan": 49, "myvar1": [49, 147, 191], "my_user_var1": 49, "myvar": [49, 116, 132, 147, 175, 188, 191, 217, 256], "myprofil": [49, 98, 106, 147], "profile_dir": [49, 147], "evalu": [49, 78, 97, 98, 100, 102, 106, 114, 116, 125, 127, 133, 139, 146, 150, 166, 244, 267], "myvalue1": [49, 191], "system_nam": [49, 85, 146, 188], "simplest": [51, 118, 252, 257, 270], "hellorecip": [51, 56, 247, 248, 249, 250, 251, 252, 255, 258, 262, 268], "friend": [51, 248], "rule": [51, 78, 84, 114, 115, 116, 131, 150, 152, 153, 205, 208, 211, 264, 266, 269], "ifdef": [51, 242, 247, 258, 268], "ndebug": [51, 205, 242, 247, 258, 268], "hello_patch": 51, "conan_data": [51, 56, 125, 127, 200, 252], "complex": [51, 116, 128, 147, 175, 196, 219, 269], "bazeltoolchain": [53, 62, 105, 176, 209, 210], "workspac": [53, 62, 88, 211, 256], "demo": [53, 56, 114], "charg": [53, 130], "bzl": [53, 62, 211], "load_conan_depend": [53, 211], "rules_cc": [53, 211], "cc_binari": 53, "bazeldep": [53, 62, 105, 176, 209], "bazel_layout": [53, 142, 211], "conan_bzl": [53, 62, 210, 212], "franchuti": [53, 91], "bazelrc": [53, 85, 146, 210, 212], "38": [53, 96, 255], "272": 53, "lc": 53, "date": 53, "elaps": 53, "180": [53, 149], "critic": [53, 84, 250, 268], "68": [53, 95, 99], "sandbox": 53, "total": [53, 98, 142, 146, 149, 192, 248, 254], "simple_meson_project": 55, "stdlib": [55, 149, 188, 205, 240, 242], "stdio": [55, 240], "buffer_in": [55, 240], "256": [55, 198, 240], "mit": [55, 70, 105, 116, 128, 235, 240, 268], "easili": [55, 56, 73, 80, 114, 118, 119, 132, 136, 150, 157, 188, 189, 240, 248, 270, 271], "buffer_out": [55, 240], "z_stream": [55, 240], "zalloc": [55, 240], "z_null": [55, 240], "zfree": [55, 240], "opaqu": [55, 240], "avail_in": [55, 240], "uint": [55, 240], "strlen": [55, 240], "bytef": [55, 240], "avail_out": [55, 240], "sizeof": [55, 240], "next_out": [55, 240], "deflateend": [55, 240], "printf": [55, 240, 242], "size": [55, 192, 240, 242, 244, 245, 264], "lu": [55, 240], "conan_meson_": 55, "ini": [55, 67, 216, 240], "conan_meson_n": [55, 216], "233": [55, 240, 242, 244, 245], "147": [55, 240, 242, 244, 245], "pragmat": 56, "someon": [56, 267], "coordin": [56, 136, 196, 227], "who": [56, 269], "tri": [56, 95, 160, 240, 243], "capture_scm": 56, "update_conandata": [56, 195], "scm_url": 56, "scm_commit": 56, "get_url_and_commit": [56, 227], "checkout": [56, 58, 73, 74, 227, 247, 248, 251, 252, 258, 268], "myfold": [56, 98, 196], "m": [56, 58, 85, 87, 99, 108, 112, 146, 185, 193, 194, 207, 220, 221, 224, 248, 254, 270], "wip": 56, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 56, "buildabl": 56, "techniqu": 56, "imposs": [56, 79, 80, 147, 266, 267], "squash": 56, "19": [56, 73, 99, 149, 250, 255], "xdf": [56, 261], "gitignor": [56, 227], "anywai": [56, 116], "encod": [56, 150, 196, 222, 268], "password": [56, 107, 114, 145, 150, 151, 198, 236], "repeat": [56, 70, 116, 186, 193, 194, 255, 264], "consequ": 56, "orthogon": [56, 152, 158, 271], "ssh": [56, 150], "actor": 56, "ubuntu": [56, 70, 149, 231, 241], "v3": [56, 149, 245], "secret": [56, 114, 150, 151], "ssh_private_kei": 56, "v4": [56, 149], "webfactori": 56, "v0": [56, 237], "privat": [56, 70, 73, 74, 114, 128, 132, 146, 150, 175, 176, 235, 236, 237, 250, 258], "care": [56, 80], "receiv": [56, 73, 80, 100, 120, 154, 155, 158, 159, 160, 189, 217, 227, 250, 256, 264, 269], "riski": 56, "disclos": 56, "welcom": 57, "decentr": 57, "blog": [57, 63, 72], "social": 57, "mail": 57, "tracker": [57, 70], "question": [57, 70], "tabl": 57, "introduct": [57, 59, 103, 133, 143, 152, 232, 236, 239, 247, 255, 267, 271], "devop": 57, "clion": [57, 59, 188], "jfrog": [57, 59, 70, 236], "cheat": [57, 71], "sheet": [57, 71], "faq": [57, 70, 71, 116, 268], "video": [57, 70, 71, 266], "changelog": 57, "solari": [58, 70, 231], "suno": [58, 70, 149], "modern": [58, 73, 127, 200, 258, 271], "carefulli": 58, "sudo": [58, 85, 116, 132, 146, 231], "virtualenv": [58, 85, 146, 192, 193, 194, 245], "virtualenvwrapp": 58, "readthedoc": 58, "en": [58, 73, 196, 271], "venv": 58, "restart": [58, 63], "logout": [58, 82], "termin": [58, 70, 85, 99, 146, 154], "upgrad": [58, 187, 266, 271], "inconsist": 58, "somehow": 58, "userhom": 58, "attempt": [58, 63, 74, 85, 127, 136, 146, 149, 198], "yield": 58, "xyz": 58, "mark": [58, 63, 139], "interfer": 58, "pep": 58, "668": 58, "isol": [58, 74, 262, 267, 269], "isn": [58, 63], "debian": [58, 70, 149, 198, 231], "ensurepath": 58, "number": [58, 65, 70, 85, 131, 146, 149, 183, 186, 198, 200, 219, 220, 231, 254, 255, 269, 270, 271], "gatekeep": 58, "quarantin": 58, "browser": 58, "curl": [58, 63], "wget": 58, "util": [58, 63, 73, 81, 89, 116, 136, 179, 192, 196, 203, 231, 241, 257], "interpret": [58, 146, 175, 241], "conan_src": 58, "develop2": 58, "beta": [58, 116], "matter": [58, 98, 140, 146, 151, 201, 255, 266], "seamless": 59, "shelf": [59, 64, 156], "though": [59, 86, 99, 114, 116, 130, 146, 237, 243, 269], "yet": [59, 63, 78, 91, 95, 96, 127, 129, 155, 166, 204, 251], "resum": 59, "enhanc": 59, "autotoolsdep": [61, 176, 202], "wrapper": [61, 62, 67, 68, 69, 76, 141, 152, 179, 180, 185, 187, 198, 203, 210, 220, 227, 231, 250], "jetbrain": 63, "marketplac": 63, "higher": [63, 80, 98, 132, 133, 141, 145, 267, 269], "brows": 63, "conan_provid": 63, "cmake_project_top_level_includ": 63, "bear": [63, 248], "mind": [63, 240, 248, 259], "24": [63, 98, 147, 149, 203, 237, 255], "button": [63, 236], "appear": [63, 155, 157, 236, 262], "bottom": 63, "toolbar": 63, "wheel": 63, "checkbox": 63, "sequenti": [63, 70], "uncheck": 63, "haven": [63, 78, 251, 261, 264], "disappear": 63, "libcurl": 63, "imag": [63, 70, 81, 97, 105, 132, 236], "internet": [63, 96, 150, 255], "along": [63, 64, 84, 116, 187, 249], "ey": 63, "icon": 63, "snippet": 63, "project_nam": [63, 187, 240, 245], "cmake_cxx_standard": [63, 188], "reload": [63, 114], "recollect": [65, 136], "down": [65, 78, 79, 248, 254, 267, 268], "segment": 65, "histori": 65, "servic": [65, 234], "offer": [65, 116, 147], "dedic": [65, 70, 86, 107, 112, 120, 244, 268], "sf": [65, 85], "art": 65, "tf": [65, 79, 85, 86, 90, 248, 249, 257], "create_releas": 65, "mybuildname_releas": 65, "my_artifactori": 65, "mybuildname_aggreg": 65, "readme_build_info": 65, "md": [65, 116, 125, 126, 222, 262, 271], "bsd": 66, "maketoolchain": 66, "prop": [68, 127, 187, 221, 222], "myproject": [68, 220], "xcodebuild": [69, 176, 178, 181], "xcodetoolchain": [69, 176, 178, 181], "xcodeproj": [69, 180], "mobil": 70, "metal": 70, "scon": [70, 76, 176], "acceler": 70, "matur": [70, 116], "polici": [70, 73, 116, 175, 187, 188, 255, 264], "creator": [70, 73, 82, 106, 155, 243], "thousand": 70, "compani": [70, 116, 158, 235, 236], "high": [70, 104, 126, 198], "consol": [70, 141, 217, 227, 242], "logic": [70, 74, 117, 122, 123, 127, 131, 136, 149, 153, 156, 181, 182, 188, 214, 244, 264, 267, 269], "creation": [70, 74, 117, 149, 158, 227, 243], "webui": [70, 236], "protocol": [70, 116], "ldap": [70, 114], "topologi": 70, "conan_serv": [70, 114, 237], "boost": [70, 132, 142, 146, 154, 187], "poco": [70, 127, 136, 142], "signific": 70, "truth": [70, 75], "redhat": 70, "archlinux": 70, "raspbian": [70, 231], "desktop": 70, "likewis": [70, 120, 123, 131, 132, 136, 267, 269, 270], "runtim": [70, 116, 120, 132, 147, 149, 160, 191, 194, 203, 205, 217, 219, 222, 223, 242, 259], "onward": 70, "goal": [70, 119, 131, 138], "evolv": [70, 149, 175, 243, 265], "backward": 70, "incompat": [70, 120, 149, 175, 261], "disrupt": [70, 267], "label": [70, 91, 96, 97, 210, 211, 222], "preview": [70, 99, 121, 144, 153, 157, 159, 187, 196, 264], "year": [70, 271], "life": [70, 270], "eol": 70, "tomtom": 70, "audi": 70, "rti": 70, "continent": 70, "plex": 70, "electrolux": 70, "merced": 70, "benz": 70, "amaz": 70, "5k": 70, "star": 70, "count": 70, "300": 70, "cpplang": [70, 73], "slack": [70, 73], "discuss": [70, 166], "discord": 70, "plai": [70, 116, 183], "exercis": 70, "narr": 70, "explan": [70, 77, 95, 102, 116, 131, 149], "conduct": 70, "thread": [70, 85, 146, 149], "bad": [70, 136, 217, 252, 268], "confer": [70, 75], "talk": [70, 75], "evolut": [70, 267], "troubleshoot": 71, "concept": [72, 79, 239, 249, 263, 265, 267], "handi": [72, 116, 186, 252], "pdf": 72, "png": [72, 97, 105], "post": [72, 152, 158, 257], "goe": [72, 267], "behind": [73, 114], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [73, 99, 250, 262], "gnu11": [73, 149, 242, 250], "precompil": [73, 84, 98, 116, 130, 132, 211, 232, 255], "mayb": [73, 187, 249, 257], "influenc": [73, 242], "overcom": 73, "nest": [73, 196, 261], "agre": 73, "spell": [73, 149], "submit": [73, 127, 234], "Such": [73, 74, 243, 271], "httpconnect": 73, "debuglevel": 73, "netrc": 73, "honor": 73, "crlf": [73, 74, 268], "lf": [73, 268], "gitattribut": 73, "gitconfig": 73, "editor": 73, "notepad": 73, "playground": 74, "colleagu": 74, "kept": 74, "kind": [74, 103, 114, 125, 126, 149, 150, 151, 158, 236, 255, 269], "unit": [74, 118, 131, 138, 248, 250, 259], "among": [74, 78, 116, 130, 132, 149, 196, 222, 243, 244], "convert": [74, 105, 132, 179, 201, 249, 257], "reduc": [74, 137], "flat": [74, 175, 196], "strictli": [74, 90, 116, 120, 132, 205, 244, 250, 266], "extrem": [74, 267, 269], "complic": [74, 133], "workaround": [74, 133, 266], "Its": [74, 105, 116, 133, 231], "whenev": [74, 116, 125, 133, 136, 147, 183, 248], "abus": [74, 128, 256], "ninja": [74, 80, 85, 98, 104, 120, 127, 141, 146, 185, 188, 217, 245, 256], "entrant": 74, "undefin": [74, 80, 101, 103, 160, 196, 250, 252], "indirect": [74, 133], "reserv": [74, 80, 115], "namespac": [74, 187, 203, 205, 248], "_conan": [74, 114, 115], "sens": [74, 90, 101, 123, 134, 147, 149, 227, 242, 249], "rewritten": 74, "checksum": [74, 81, 84, 116, 176, 195, 198, 268], "educ": 75, "outdat": 75, "accu": 75, "diego": 75, "rodriguez": 75, "losada": 75, "fall": [78, 270], "ill": 78, "form": [78, 84, 87, 95, 99, 105, 108, 112, 114, 116, 120, 125, 126, 132, 136, 138, 231, 243, 244, 250, 268, 269], "taken": [78, 130, 149, 175, 188], "eras": [78, 131], "decid": [78, 114, 116, 120, 131, 134, 135, 244, 248, 266, 268, 269], "del": [78, 122, 131, 140, 249, 250, 252, 256], "gcc5": 78, "lost": 78, "default_xxx": 78, "default_build_mod": [78, 85, 146], "default_embed_mod": [78, 85, 146], "full_mod": [78, 79, 85, 116, 146, 271], "default_non_embed_mod": [78, 85, 146], "minor_mod": [78, 79, 85, 116, 133, 146, 175, 271], "default_python_mod": [78, 85, 146, 175], "default_unknown_mod": [78, 85, 146], "semver_mod": [78, 85, 116, 146], "confus": [78, 269], "safeti": 78, "emb": 78, "package_id_xxxx_mod": 78, "package_id_embed_mod": [78, 116], "package_id_non_embed_mod": [78, 116], "package_id_unknown_mod": [78, 116], "patch_mod": [78, 116, 175], "package_id_": 78, "non_emb": 78, "_mode": 78, "package_id_mod": [78, 91, 116, 249, 271], "differenti": [78, 149, 241], "expand": [78, 81, 123, 131, 144], "major_mod": [78, 116], "inlin": [79, 81, 254], "pure": [79, 132, 182, 188, 205, 212, 217, 222, 223, 255], "linker": [79, 85, 96, 132, 146, 182, 188, 203, 205, 212, 217, 222, 223, 241, 242], "8879e931d726a8aad7f372e28470faa1": [79, 81], "09": [79, 81, 99, 243], "52": [79, 81], "54": [79, 81], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [79, 81], "z": [79, 80, 81, 95, 116, 175, 206, 250], "quickli": [79, 90, 255], "632e236936211ac2293ec33339ce582b": 79, "34": [79, 254, 268], "3ca530d20914cf632eb00efbccc564da48190314": 79, "d125304fb1fb088d5b92d4f8135f4dff": 79, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": 79, "bump": [79, 175, 243, 271], "moon": [79, 155], "1c90e8b8306c359b103da31faeee824c": 79, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 79, "rebuilt": [79, 266, 268], "wil": 79, "49": [79, 99], "embed_mod": 79, "subset": [80, 123, 131, 149, 188], "new_subset": 80, "subvalue1": 80, "subvalue2": 80, "new_root_set": 80, "value1": [80, 116, 147], "value2": [80, 116, 147], "implictli": 80, "explicilti": 80, "implicitli": [80, 116, 149, 175], "build_test": [80, 86, 116, 188, 248], "option2": [80, 116], "option1": [80, 116], "wherebi": 80, "therebi": 80, "comment": [80, 99, 105, 144, 149, 153, 160, 187, 259, 266], "tune": [80, 250], "realli": [80, 86, 123, 149, 261, 266, 270], "retri": [80, 85, 145, 146, 196, 198], "spirit": 80, "myconf": [80, 116, 129, 131, 132, 146, 147], "myitem": [80, 131], "x64": [80, 129, 149, 220], "settings_build": [80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 256], "outcom": [80, 212], "irrelev": [80, 142], "reflect": [80, 179, 243], "97d5730b529b4224045fe7090592d4c1": [81, 99], "08": [81, 99, 268], "51": [81, 99, 269], "57": [81, 99], "d62dff20d86436b9c58ddc0162499d197be9de1": [81, 99], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [81, 99], "sha1": [81, 197, 198, 241], "cat": [81, 101, 102, 103, 104, 204, 242, 267], "compilerruntim": 81, "dynam": [81, 99, 116, 117, 134, 135, 147, 149, 158, 160, 217, 241, 242, 244, 270, 271], "compilerruntime_typ": 81, "193": [81, 149], "sha1sum": [81, 197], "386": 81, "seen": [81, 177, 243, 266, 270], "worthi": 82, "deployer_fold": [83, 96, 98], "nr": [83, 86, 88, 89, 90, 93, 95, 96, 97, 98, 102, 111], "profile_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "lockfile_out": [83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111], "lockfile_overrid": [83, 86, 90, 93, 95, 96, 98, 102, 111], "posit": [83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 111, 112], "vquiet": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "verror": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vwarn": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vnotic": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vstatu": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vverbos": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vdebug": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "disallow": [83, 86, 93, 95, 96, 98, 102, 111], "cascad": [83, 86, 93, 95, 96, 98, 102, 111], "fnmatch": [83, 85, 86, 93, 95, 96, 98, 102, 107, 111, 116, 196], "wildcard": [83, 86, 87, 93, 95, 96, 97, 98, 99, 102, 107, 109, 111, 196], "satisfi": [83, 86, 93, 95, 96, 98, 102, 111, 147, 243], "with_qt": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "cdc0d9d0e8f554d3df2388c535137d77": 84, "5cb229164ec1d245": 84, "conanmanifest": [84, 159, 240, 245], "liter": [84, 105, 147], "ident": [84, 116, 131, 175, 238, 242], "1cae77d6250c23b7": 84, "al": 84, "eventu": [84, 187], "extract": [84, 124, 132, 145, 196, 207, 252, 257], "package_queri": [84, 87, 99, 108, 112], "AND": [84, 87, 99, 108, 112, 168], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 84, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 84, "verify_ssl": [85, 148], "target_fold": 85, "origin2": 85, "target2": 85, "submodul": 85, "conan_config": [85, 181, 182], "recurs": [85, 144, 196], "deduc": [85, 116, 186, 192, 194, 198, 199, 223, 270], "verif": [85, 146, 198], "certif": [85, 114, 148, 198], "my_set": 85, "retry_wait": [85, 146, 198], "wait": [85, 146, 198], "gzip": [85, 146, 196], "compresslevel": [85, 146], "cacert_path": [85, 114, 146], "cacert": [85, 114, 146], "clean_system_proxi": [85, 146], "proxi": [85, 114, 146], "discard": [85, 133, 146], "client_cert": [85, 146], "tupl": [85, 116, 128, 146, 147, 196, 198, 227], "cert": [85, 146], "max_retri": [85, 146], "maximum": [85, 114, 116, 146, 183, 220, 250, 258], "no_proxy_match": [85, 146], "timeout": [85, 146], "allow_uppercase_pkg_nam": [85, 146], "temporarili": [85, 146, 147, 151], "uppercas": [85, 146, 151], "default_build_profil": [85, 146, 151], "default_profil": [85, 146, 151], "cmake_android_ndk": [85, 146], "enable_arc": [85, 146, 188], "arc": [85, 146, 188], "enable_bitcod": [85, 146, 188], "bitcod": [85, 146, 188], "enable_vis": [85, 146, 188], "sdk_path": [85, 146, 179, 180, 217], "cross_build": [85, 146, 217, 241, 259], "can_run": [85, 118, 138, 146, 259], "bool": [85, 146, 148, 183, 210, 216, 217, 219], "cuda": [85, 146, 188, 205], "objc": [85, 146, 188, 217], "objcxx": [85, 146], "fortran": [85, 146, 188, 205], "asm": [85, 146, 149, 188, 223], "hip": [85, 146, 188], "ispc": [85, 146, 188], "exelinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_exe_linker_flags_init": [85, 146, 188], "jx": [85, 146], "mp": [85, 146, 188], "linker_script": [85, 146, 188, 205, 212, 217], "sharedlinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_shared_linker_flags_init": [85, 146, 188], "skip_test": [85, 118, 146, 188, 210, 248, 254], "sysroot": [85, 91, 96, 146, 179, 188, 205, 217], "find_package_prefer_config": [85, 146], "cmake_find_package_prefer_config": [85, 146, 188], "presets_environ": [85, 146, 188], "wether": [85, 146], "system_processor": [85, 146, 188], "cmake_system_processor": [85, 146, 188], "system_vers": [85, 146, 188], "cmake_system_vers": [85, 146, 188], "toolchain_fil": [85, 146, 147, 188], "toolset_arch": [85, 146, 188], "toolset": [85, 146, 149, 188, 213, 219], "cmake_generator_toolset": [85, 146, 188], "install_strip": [85, 146, 185], "strip": [85, 146, 179, 185, 196, 200, 217, 227, 241], "launcher": [85, 146, 192, 193, 194, 204, 205, 224, 256, 259], "define_libcxx11_abi": [85, 146], "glibcxx_use_cxx11_abi": [85, 146], "host_triplet": [85, 146], "pkg_config": [85, 146, 207, 208, 217], "bazelrc_path": [85, 146, 210], "rcpath1": [85, 146, 210], "config1": [85, 146, 210], "installation_path": [85, 146, 213, 224], "oneapi": [85, 146, 149, 213], "setvars_arg": [85, 146, 213], "onto": [85, 146], "setvar": [85, 146, 213], "backend": [85, 114, 146, 217], "vs2010": [85, 146, 217], "vs2012": [85, 146], "vs2013": [85, 146], "vs2015": [85, 146, 217], "vs2017": [85, 146, 213, 217], "extra_machine_fil": [85, 146, 216], "bash": [85, 116, 146, 224, 237], "msy": [85, 146, 149, 237], "cygwin": [85, 146, 149], "wsl": [85, 146, 149], "sfu": [85, 146], "2019": [85, 146, 149, 213, 224], "max_cpu_count": [85, 132, 146, 147, 185, 220], "vs_version": [85, 146, 147, 149], "exclude_code_analysi": [85, 146, 221], "suppress": [85, 146, 188], "compile_opt": [85, 116, 132, 146, 222], "sudo_askpass": [85, 146, 231], "yum": [85, 146, 230], "pacman": [85, 146, 230], "choco": [85, 146, 231], "zypper": [85, 146, 230], "pkgutil": [85, 146, 230], "30": [85, 93, 99, 255], "test_fold": [86, 90, 248], "serv": [86, 114, 236, 242], "misus": 86, "mutual": [87, 98, 108, 112], "packagelist": [87, 112], "pgkg": 87, "resid": [88, 106], "my_project": [88, 93, 95, 96, 98, 102], "variou": [89, 133, 149, 262], "sb": 90, "vendor": [90, 150], "this_pkg": 90, "slower": [90, 125], "y": [90, 95, 116, 250], "invalid_build": [91, 96], "homepag": [91, 96, 97, 127], "win_bash_run": 91, "options_descript": 91, "options_definit": [91, 97], "generators_fold": [91, 96, 97, 127, 187, 188, 221], "srcdir": [91, 96, 132], "resdir": [91, 96, 132, 188, 205, 217], "frameworkdir": [91, 96, 132], "framework": [91, 96, 120, 132, 133, 208, 221, 229, 241, 248, 256], "ffa77daf83a57094149707928bdce823": [91, 99], "massiv": [91, 96], "spiffi": [91, 96], "delic": [91, 96], "unobtrus": [91, 96], "unencumb": [91, 96], "patent": [91, 96], "zlib774aa77541f8b": 91, "resolved_rang": 91, "closest": [92, 95], "why": [92, 95, 249, 254, 256], "5c0f3a1a222eebb6bff34980bcd3e024": 93, "be7ccd6109b8a8f9da81fd00ee143a1f5bbd5bbf": 93, "build_arg": 93, "ed8593b3f837c6c9aa766f231c917a5b": 93, "235f6d8c648e7c618d86155a8c3c6efb96d61fa1": 93, "pref": [93, 114, 127], "closest_binari": 95, "dc0e384f0551386cd76dc29cc964c95": 95, "1692672717": [95, 99], "b647c43bfefae3f830561ca202b6cfd935b56205": 95, "package_filt": [96, 155], "df": 96, "dot": [96, 155, 269], "myproject_fold": 96, "binutil": 96, "0dc90586530d3e194d01d17cb70d9461": 96, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 96, "cci": 96, "degrad": 96, "gpl": 96, "assembl": 96, "objcopi": 96, "objdump": 96, "multilib": 96, "target_arch": 96, "target_o": 96, "target_triplet": 96, "with_libquadmath": 96, "binut53bd9b3ee9490": 96, "416618fa04d433c6bd94279ed2e93638": 96, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 96, "866f53e31e2d9b04d49d0bb18606e88": 96, "zlibbcf9063fcc882": 96, "digraph": 96, "vi": 96, "j": [96, 116, 149, 216], "css": 96, "cloudfar": 96, "cdnj": 96, "cloudflar": 96, "ajax": 96, "info_graph": 96, "basi": [96, 105], "neon": 97, "msa": 97, "sse": 97, "vsx": 97, "api_prefix": 97, "graphic": 97, "redirect": [97, 99, 113, 114, 141, 151, 185, 261, 271], "deployer_packag": 98, "recomput": 98, "fallback": [98, 180, 271], "myconan": [98, 116], "bzip2": [98, 127, 193, 194, 221, 224], "compound": 98, "left": [98, 114, 250, 263, 269], "highest": 98, "myprofile3": 98, "myprofile1": [98, 147], "myprofile2": [98, 147], "minim": [98, 105, 183, 259], "immedi": [98, 132, 138, 146, 147, 221, 259], "uniqu": [98, 116, 118, 131, 146, 242, 249, 254, 268], "strict": [98, 101, 103, 147, 196, 267, 271], "newpkg": 98, "gb": 99, "graph_binari": 99, "gr": 99, "graph_recip": 99, "5d": [99, 108], "dai": [99, 108], "4w": [99, 108, 264], "hour": [99, 108], "26": 99, "mycompani": 99, "20": [99, 147, 149, 160, 193, 247, 250], "lite": 99, "shortest": 99, "46": 99, "53": [99, 113], "placehold": [99, 112, 191, 192, 250], "8b23adc7acd6f1d6e220338a78e3a19": 99, "ce3665ce19f82598aa0f7ac0b71ee966": 99, "31ee767cb2828e539c42913a471e821a": 99, "05": [99, 243], "39": [99, 243, 255], "d77ee68739fcbe5bf37b8a4690eea6ea": 99, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 99, "implicit": [99, 200, 267], "e4e1703f72ed07c15d73a555ec3a2fa1": 99, "07": [99, 113], "04": 99, "45": [99, 243, 254, 269], "fdb823f07bc228621617c6397210a5c6c4c8807b": 99, "4834a9b0d050d7cf58c3ab391fe32e25": 99, "33": [99, 254, 255], "31": [99, 120, 250, 268], "6a6451bbfcb0e591333827e9784d7dfa": 99, "29": [99, 243, 268], "67bb089d9d968cbc4ef69e657a03de84": 99, "47": [99, 243], "36": [99, 255], "5e196dbea832f1efee1e70e058a7eead": 99, "26475a416fa5b61cb962041623748d73": 99, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [99, 250], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 99, "human": 99, "zli": 99, "b58eeddfe2fd25ac3a105f72836b3360": 99, "01": [99, 203, 268], "d9b1e9044ee265092e81db7028ae10e0": 99, "192": [99, 114, 149, 160, 219], "denomin": 99, "deviat": 99, "mypytool": 101, "sort": [101, 103, 104, 132, 159, 189, 196, 267, 271], "manipul": [101, 103, 136, 196, 257], "moreov": 101, "scratch": [102, 260, 261], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 102, "1675126491": 102, "773": 102, "5f184bc602682bcea668356d75e7563b": 102, "1676913225": 102, "027": [102, 271], "733": 102, "e747928f85b03f48aaf227ff897d9634": 102, "1675126490": 102, "952": 102, "lock1": 103, "lock2": 103, "consolid": 103, "diverg": 103, "simplic": 103, "pkgb": 103, "app1": 103, "pkgawin": 103, "pkganix": 103, "gone": [103, 248, 259], "nix": [103, 196], "math": [104, 105, 133, 196, 266], "85d927a4a067a531b1a9c7619522c015": 104, "1702683583": 104, "3411012": 104, "fd2b006646a54397c16a1478ac4111ac": 104, "3544693": 104, "mytool": [104, 211], "othertool": 104, "downgrad": 104, "unlock": 104, "meson_lib": 105, "meson_ex": 105, "msbuild_lib": 105, "msbuild_ex": 105, "bazel_lib": 105, "bazel_ex": 105, "autotools_lib": 105, "autotools_ex": 105, "aid": 105, "boilerpl": [105, 116], "requires1": 105, "requires2": 105, "tool_requires1": 105, "tool_requires2": 105, "magic": 105, "mygam": 105, "mytempl": 105, "full_path": 105, "conan_vers": [105, 146], "parametr": 105, "brack": 105, "not_templ": 105, "image2": 105, "guess": [106, 147, 170, 240], "Be": [106, 122, 123, 144, 227, 249], "carlosz": 106, "ios_bas": 106, "ios_simul": 106, "clang_15": 106, "package_set": 106, "build_env": 106, "registri": [107, 236], "usernam": [107, 114, 147, 151], "insert": 107, "conan_login_": 107, "expos": [107, 114, 127, 147, 227], "new_nam": 107, "keyword": [108, 154, 200, 203], "intact": 108, "smell": [108, 268], "manifest": [112, 116, 258], "sys_vers": 113, "1316": 113, "mainli": [114, 237], "pro": [114, 235, 237], "conan_server_hom": 114, "server_dir": 114, "server_directori": 114, "prior": [114, 158], "hot": 114, "relaunch": 114, "jwt_secret": 114, "ijkhyoiouinmxcrtytrr": 114, "jwt_expire_minut": 114, "120": 114, "ssl_enabl": 114, "port": [114, 237], "9300": [114, 237], "public_port": 114, "host_nam": 114, "localhost": [114, 198, 236, 237], "authorize_timeout": 114, "1800": 114, "disk_storage_path": 114, "disk_authorize_timeout": 114, "updown_secret": 114, "hjhjujkjkjkjkluyyuuyhj": 114, "write_permiss": 114, "lasot": 114, "default_us": 114, "default_user2": 114, "read_permiss": 114, "jwt": 114, "random": [114, 187], "safe": [114, 116, 136, 183], "anytim": 114, "amount": 114, "ip": [114, 198], "domain": 114, "168": 114, "docker": [114, 236], "9999": 114, "p9300": 114, "traffic": 114, "somedir": [114, 207], "crt": 114, "pem": [114, 146], "reject": 114, "regist": 114, "plain": [114, 116], "premis": 114, "firewal": 114, "trust": 114, "sysadmin": 114, "restrict": [114, 116, 149], "comma": [114, 116], "allowed_user1": 114, "allowed_user2": 114, "packagea": 114, "john": [114, 116], "peter": 114, "custom_authent": 114, "authenticator_nam": 114, "collabor": [114, 163], "htpasswd": 114, "schiffner": 114, "uilianri": 114, "my_authent": 114, "get_class": 114, "myauthent": 114, "valid_us": 114, "plain_password": 114, "factori": 114, "custom_author": 114, "authorizer_nam": 114, "my_author": 114, "authenticationexcept": 114, "forbiddenexcept": 114, "myauthor": 114, "_check_conan": 114, "deni": [114, 196], "_check_packag": 114, "_check": 114, "check_read_conan": 114, "check_write_conan": 114, "check_delete_conan": 114, "check_read_packag": 114, "check_write_packag": 114, "check_delete_packag": 114, "conform": 114, "check_": 114, "conanfilerefer": 114, "meanwhil": 114, "_packag": 114, "packagerefer": 114, "443": 114, "server_nam": 114, "myservernam": 114, "mydomain": 114, "proxy_pass": 114, "ssl_certif": 114, "ssl_certificate_kei": 114, "mod_wsgi": 114, "apache2": 114, "site": [114, 116], "0_conan": 114, "virtualhost": 114, "80": 114, "wsgiscriptalia": 114, "dist": 114, "server_launch": 114, "wsgicallableobject": 114, "wsgipassauthor": 114, "grant": 114, "srv": 114, "helloconan": [115, 116, 179, 203, 255], "varieti": 115, "member": [115, 116, 127, 175], "_my_data": 115, "_my_help": 115, "lowercas": [116, 250], "101": 116, "charact": [116, 151, 191, 192, 250], "shorter": [116, 192], "z0": 116, "9_": 116, "alphanumer": [116, 250], "ing": 116, "pkgname": [116, 221, 243], "pre1": [116, 250, 269], "build2": [116, 250], "pkgversion": 116, "programmat": 116, "mychannel": 116, "short": [116, 250], "incred": 116, "spdx": 116, "peopl": 116, "smith": 116, "protocinstallerconan": 116, "protoc_instal": 116, "buffer": 116, "rpc": 116, "overview": 116, "eigenconan": 116, "eigen": 116, "tuxfamili": 116, "mylibconan": 116, "otherlib": 116, "otherus": 116, "bracket": [116, 269], "alpha": [116, 269], "tool_a": 116, "tool_b": 116, "gtest": [116, 120, 127, 133, 142, 221, 241, 248, 254, 259], "downstream": [116, 120, 132, 133, 175, 187, 266], "other_test_tool": 116, "pyreq": [116, 128, 156, 175], "myconanfilebas": [116, 128], "utilsbas": 116, "tmp": [116, 188, 196, 248, 249, 251, 252, 254, 257], "got": [116, 256, 262, 267], "shutil": [116, 136], "emul": [116, 149, 222, 267], "mistak": 116, "yaml": 116, "mylib": [116, 120, 147, 188, 205, 271], "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 116, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 116, "opt": [116, 192, 212, 213, 269, 271], "7zip": [116, 142, 147], "7z": 116, "determin": [116, 133, 147, 191, 242], "gnu20": [116, 149], "get_saf": [116, 122, 123, 214, 244], "compiler_vers": [116, 147, 183], "feasibl": [116, 132], "is_android": 116, "option3": 116, "option4": 116, "comparison": [116, 235, 269], "encapsul": 116, "zwave": 116, "reference_pattern": 116, "option_nam": 116, "condition": [116, 118, 119, 123, 127, 136, 221, 222, 244, 246, 251, 258], "otherpkg": 116, "some_opt": 116, "overridden": [116, 175, 198], "particularli": [116, 129, 131], "explanatori": 116, "reference_conanfile_methods_package_id": 116, "semver": [116, 228, 269, 271], "modif": [116, 131, 149, 191, 243, 268, 271], "unrelated_mod": 116, "ever": 116, "pocotimerconan": 116, "foorecip": 116, "myrecip": 116, "methodconan": 116, "export_fold": [116, 125], "codebas": 116, "androidndk": [116, 132], "define_path": [116, 129, 132, 191], "fill": [116, 158, 174, 207], "append_path": [116, 132, 191], "runtime_var": 116, "flag3": [116, 132], "flag1": [116, 132, 146, 147, 212], "flag2": [116, 132, 146, 147], "expandattributedsourc": [116, 132], "unset": [116, 132, 146, 147, 149, 191, 204], "flag0": [116, 132], "pop": [116, 217, 242], "friendli": 116, "emit": 116, "taskflow": 116, "odr": [116, 133], "violat": [116, 133], "libressl": 116, "boringssl": 116, "libav": 116, "ffmpeg": [116, 154], "mariadb": 116, "mysql": 116, "libjpeg": 116, "9d": 116, "turbo": 116, "libjpegturbo": 116, "openbla": 116, "cbla": 116, "lapack": 116, "redund": 116, "myconsum": [116, 256], "my_android_ndk": 116, "var1": [116, 147], "green": 116, "neutral": 116, "white": [116, 151], "yellow": 116, "red": 116, "three": [116, 129, 146, 182, 191, 222, 231], "distinct": 116, "tend": 116, "auto_shared_fp": 116, "auto_header_onli": 116, "parenthes": 116, "validate_build": 117, "mybuildsystem": 118, "interrupt": 118, "lift": 118, "info_build": 119, "myvalu": [119, 188, 191, 217], "fullsourc": 119, "theori": [120, 244], "parameter": 120, "ran": [120, 137, 157, 248, 254], "nutshel": [120, 205], "mylibrecip": 120, "myapprecip": 120, "myapp": [120, 271], "gettext": 120, "libgettext": 120, "constrain": [122, 249], "sse2": 122, "with_sse2": 122, "elif": 123, "deploy_fold": [124, 167, 191], "destinaton": 124, "mor": 124, "destin": [125, 126, 196, 198, 221, 250], "intrins": 125, "myfil": [126, 175, 196, 271], "export_conandata_patch": [126, 195], "conanvcvar": [127, 188, 217, 222, 223, 224], "repetit": [127, 132], "mygener": [127, 156], "mygen": [127, 156], "dylib": [127, 132, 179, 196, 203, 242, 249, 257], "dll": [127, 130, 132, 192, 242, 257], "xxxdir": 127, "indirectli": 127, "buildenv_info": [127, 129, 191, 193, 251, 256], "runenv_info": [127, 129, 191, 193, 194, 251], "is_build_context": 127, "fashion": 127, "pcre": 127, "44": 127, "expat": 127, "35": [127, 255, 268], "1k": 127, "criteria": 127, "direct_host": 127, "direct_build": 127, "heavili": 127, "mycomp": 127, "mylicens": 128, "overwritten": [128, 132, 136], "baseconan": 128, "derivedconan": 128, "deriv": [128, 136], "uncondition": 128, "datafil": 128, "my": [128, 129, 132, 147, 149, 158, 175, 198, 205, 217], "awesom": 128, "me": 128, "word": [128, 149, 268], "__init__": [128, 156, 158, 180, 223], "constructor": [128, 189, 200, 203, 205, 218, 227, 231], "subdirectori": 129, "classic": [129, 149, 213, 253], "hopefulli": 129, "release64": 129, "stub": 129, "my_includ": 129, "sayconan": [129, 263], "mydata_path": 129, "obvious": 129, "mydata_path2": 129, "my_conf_fold": 129, "creating_packages_package_method": 130, "relax": [131, 267], "assumpt": [131, 244, 267], "couldn": 131, "disadvantag": [131, 270], "lose": 131, "although": [131, 192, 259], "predict": 131, "obj": 132, "preprocessor": [132, 182, 188, 205, 217, 222, 223], "property_nam": 132, "property_valu": 132, "xml": [132, 222], "pkg_config_nam": [132, 208], "zmq": 132, "zmq_static": 132, "ws2_32": 132, "get_properti": 132, "crypto": [132, 208, 211], "define_crypto": 132, "headers_ssl": 132, "obj_ext": 132, "prepend_path": [132, 191], "mypath": [132, 191, 256], "myarmarch": 132, "otherarch": 132, "my_android_arch": 132, "myrunpath": 132, "settin": 132, "mypkghom": 132, "ti": 132, "former": [132, 267], "virtualrunenv": [132, 147, 176, 188, 190, 191, 192, 242, 251, 256], "transmit": [132, 271], "exceptionhandl": [132, 146], "async": [132, 146, 200], "bundl": [132, 236], "android_ndk": 132, "albeit": 132, "switch": [132, 160, 181, 221, 222], "adequ": 132, "claus": 133, "catch2": [133, 248], "seem": 133, "ambigu": [133, 271], "priorit": [134, 135, 189, 196, 266, 267], "tarbal": [136, 227, 235, 268], "check_sha1": [136, 195], "pococonan": 136, "zip_nam": 136, "pocoproject": 136, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 136, "unlink": 136, "bypass": 136, "appar": 136, "problemat": [136, 267], "destroi": [136, 149, 160], "lead": [136, 244], "frozen": 136, "realiz": [137, 243, 267], "gtk": 137, "undesir": 137, "libgtk": 137, "pkg1": [137, 187, 231], "pkg2": [137, 187, 231], "prove": [138, 259], "conaninvalidconfigur": [139, 140, 183, 244, 266], "succe": [139, 231], "cfc18fcc7a50ead278a7c1820be74e56": 139, "warn_tag": 141, "custom_tag": 141, "ignore_error": 141, "appropri": 141, "unnot": 141, "ninja_stdout": 141, "w": [141, 159], "stringio": 141, "pin": [142, 243, 268, 270], "revision1": 142, "70": 142, "revision2": 142, "00": [142, 203, 268], "inde": 142, "vs_layout": [142, 176, 214, 218], "aka": [143, 179], "preced": [144, 176, 188, 191, 205, 208], "project1": [144, 221], "project2": [144, 221], "unauthor": 145, "ask": [145, 151], "conan_login_usernam": [145, 151], "conan_login_username_": [145, 151], "conan_password": [145, 151], "conan_password_": [145, 151], "admin": [145, 236], "emptiv": 145, "getenv": [145, 147, 150, 192], "mytk": [145, 150], "mytoken": [145, 150], "briefli": [146, 233, 249, 250], "whatev": [146, 147, 155, 213], "confvar": [146, 147], "hint": [146, 147], "yyi": [146, 147], "ins": 146, "zzz": [146, 147], "everywher": 146, "discret": 146, "establish": 146, "packagenam": [146, 187], "orgnam": 146, "cpu_count": 146, "myconf1": 146, "detect_o": [146, 147], "myconf2": 146, "detect_arch": [146, 147], "conan_home_fold": 146, "eval": 146, "integ": [146, 228], "unmodifi": 146, "rid": [146, 147], "f1": 146, "f2": 146, "f0": 146, "pai": [146, 257], "tl": [146, 148, 198], "constitut": 146, "implic": [146, 249], "tool1": 147, "tool4": 147, "environmentvar1": 147, "123": [147, 175], "dlib": 147, "ab": 147, "relpath": 147, "my_pkg_opt": 147, "myvalue12": 147, "mypath1": [147, 191], "path11": 147, "path12": 147, "comp": [147, 208], "chanel": 147, "ration": 147, "kitwar": 147, "3488ec5c2829b44387152a6c4b013767": 147, "20496b332552131b67fb99bf425f95f64d0d0818": 147, "profile_var": 147, "my_build_typ": 147, "referenc": [147, 187, 198], "loop": 147, "meant": [147, 250, 259], "judici": 147, "compiler_ex": 147, "detect_default_compil": 147, "default_msvc_runtim": 147, "default_compiler_vers": 147, "default_cppstd": 147, "detect_libcxx": 147, "v143": [147, 149], "gnu14": [147, 149, 205, 241], "default_msvc_ide_vers": 147, "digit": [147, 149, 269, 271], "zlib_clang_profil": 147, "my_var": [147, 256], "statement": 147, "gcc_49": 147, "my_remote_nam": 148, "windowsstor": 149, "windowsc": 149, "ios_vers": 149, "iphoneo": [149, 217], "iphonesimul": 149, "watchsimul": 149, "appletvo": 149, "appletvsimul": 149, "xrsimul": 149, "catalyst": 149, "aix": 149, "arduino": 149, "board": 149, "emscripten": 149, "neutrino": 149, "vxwork": 149, "ppc32be": 149, "ppc32": [149, 183, 231], "ppc64le": [149, 231], "ppc64": [149, 183], "armv4": 149, "armv4i": 149, "armv5el": [149, 177], "armv5hf": [149, 177], "armv6": [149, 177], "armv7hf": [149, 177, 231, 241], "armv7k": 149, "armv8_32": 149, "sparc": [149, 183, 188], "sparcv9": [149, 183], "mip": 149, "mips64": 149, "avr": 149, "s390": 149, "s390x": [149, 231], "wasm": 149, "sh4le": 149, "e2k": 149, "v5": 149, "v6": [149, 177], "v7": 149, "xtensalx6": 149, "xtensalx106": 149, "xtensalx7": 149, "sun": 149, "posix": 149, "libcstd": 149, "libstdcxx": 149, "libstlport": 149, "win32": 149, "mingw": [149, 239, 245], "dwarf2": 149, "sjlj": 149, "seh": 149, "98": 149, "gnu23": 149, "170": 149, "190": 149, "191": 149, "v110_xp": 149, "v120_xp": 149, "v140_xp": 149, "v141_xp": 149, "runtime_vers": 149, "v140": 149, "v141": 149, "v142": 149, "2021": [149, 213], "icx": [149, 213], "dpcpp": [149, 213], "03": [149, 243, 268], "gnu03": 149, "gpp": 149, "ne": 149, "accp": 149, "acpp": 149, "ecpp": 149, "mcst": 149, "lcc": 149, "relwithdebinfo": 149, "minsizerel": 149, "hardwar": 149, "microprocessor": 149, "microcontrol": 149, "famili": 149, "2015": 149, "2017": [149, 213, 240, 242, 244, 245], "finer": 149, "1913": 149, "dpc": [149, 213], "suppos": 149, "311": 149, "brief": [149, 236, 239], "arch_build": 149, "arch_target": 149, "powerpc": [149, 231], "endian": 149, "littl": [149, 155], "soft": 149, "float": 149, "swift": 149, "a6": 149, "a6x": 149, "chip": 149, "iphon": 149, "5c": 149, "ipad": 149, "k": 149, "aarch32": 149, "ilp32": 149, "a12": 149, "chipset": 149, "xr": [149, 196], "scalabl": [149, 235, 236], "microsystem": 149, "interlock": 149, "pipelin": [149, 151], "formerli": 149, "atmel": 149, "microchip": 149, "390": 149, "ibm": 149, "javascript": 149, "low": 149, "assembli": 149, "byte": [149, 196], "hitachi": 149, "superh": 149, "2000": 149, "512": 149, "vliw": 149, "2cm": 149, "2c": 149, "moscow": 149, "4c": 149, "8c": 149, "8c1": 149, "1c": 149, "1ck": 149, "8c2": 149, "8cb": 149, "2c3": 149, "12c": 149, "16c": 149, "32c": 149, "xtensa": 149, "lx6": 149, "dpu": 149, "esp32": 149, "esp8266": 149, "lx7": 149, "s2": 149, "s3": 149, "_glibcxx_use_cxx11_abi": [149, 188, 205], "abi": [149, 177, 241], "wise": 149, "cento": [149, 231], "rogu": 149, "wave": 149, "stlport": 149, "apach": 149, "dinkum": 149, "abridg": 149, "rhel6": 149, "cache_vari": 149, "some_centos_flag": 149, "usabl": 149, "anymor": 149, "mycompil": 149, "my_custom_compil": 149, "sync": [149, 200], "tarballnam": 150, "bearer": 150, "mypassword": 150, "hardcod": [150, 259, 269], "difficult": [150, 175, 248, 270], "remote_nam": 151, "challeng": 151, "unauthent": 151, "unattend": 151, "stuck": 151, "autodetect": [151, 188], "tty": 151, "no_color": 151, "conan_color_dark": 151, "scheme": [151, 269, 271], "light": 151, "dark": 151, "mypythoncod": [152, 264], "altogeth": [152, 155, 188], "pre_build": [152, 158], "complement": 152, "qualiti": [152, 158], "facilit": [152, 157], "intercept": 154, "commmand": 154, "startswith": 154, "caller": 154, "heavy_pkg": 154, "qt": 154, "abseil": 154, "_commands_": 155, "cmd_": 155, "your_command_nam": 155, "cmd_hello": 155, "cmd_bye": 155, "topic_nam": 155, "topic1": 155, "topic2": 155, "cmd_command": 155, "output_json": 155, "parser": 155, "hello_moon": 155, "subpars": 155, "act": 155, "narg": 155, "add_reference_arg": 155, "mygroup": 155, "mycommand": 155, "mycommand_mysubcommand": 155, "add_my_common_arg": 155, "chose": 155, "format_graph_html": 155, "format_graph_info": 155, "field_filt": 155, "format_graph_json": 155, "format_graph_dot": 155, "graph_info": 155, "deps_graph": [155, 167], "command_subcommand": 155, "child": 155, "arg1": [155, 185, 213], "arg2": [155, 185, 213], "arg3": 155, "_conanfil": 156, "deps_info": 156, "repeatedli": [157, 271], "my_custom_deploy": 157, "hook_exampl": 158, "pre_export": 158, "field_valu": 158, "getattr": 158, "abort": 158, "hook_": 158, "replace_in_fil": [158, 195, 248], "post_packag": 158, "isdir": 158, "custom_modul": 158, "hook_print": 158, "my_print": 158, "hook_ful": 158, "pre_sourc": 158, "pre_packag": 158, "pre_package_info": 158, "post_package_info": 158, "artifacts_fold": 159, "signature_fold": 159, "conan_packag": [159, 240, 245], "written": [159, 251, 271], "twice": 159, "conan_sourc": 159, "signer": 159, "asc": 159, "listdir": 159, "isfil": 159, "profile_plugin": 160, "ordereddict": [160, 189], "profilesapi": [161, 170], "installapi": [161, 167], "graphapi": [161, 166], "exportapi": [161, 165], "newapi": [161, 169], "uploadapi": [161, 174], "downloadapi": [161, 164], "cache_fold": 162, "global_conf": 163, "settings_yml": 163, "load_root_test_conanfil": 166, "tested_refer": 166, "tested_python_requir": 166, "recipe_consum": 166, "load_graph": 166, "root_nod": 166, "check_upd": 166, "load_root_nod": 166, "analyze_binari": 166, "build_mod": 166, "build_modes_test": 166, "tested_graph": 166, "buildmod": 166, "install_binari": 167, "intal": 167, "install_system_requir": 167, "only_info": 167, "install_sourc": 167, "install_consum": 167, "deploy_packag": 167, "filter_packages_configur": 168, "pkg_configur": 168, "pkgrefer": 168, "pkgconfigur": 168, "get_templ": 169, "template_fold": 169, "get_home_templ": 169, "template_nam": 169, "get_default_host": 170, "get_default_build": 170, "get_profil": 170, "get_path": 170, "sin": 170, "alphabet": [170, 269], "only_en": 171, "check_upstream": 174, "package_list": 174, "enabled_remot": 174, "upload_data": 174, "get_backup_sourc": 174, "234": 175, "mybas": 175, "cool": 175, "super": [175, 205], "pyreq_path": 175, "myfile_path": 175, "mynumb": 175, "gradual": 175, "hierarchi": 175, "is_apple_o": [176, 178], "to_apple_arch": [176, 178], "envvar": [176, 190, 191, 193, 194], "intelcc": 176, "basic_layout": 176, "nmaketoolchain": [176, 218], "sconsdep": 176, "armv5": 177, "lc_id_dylib": [179, 203], "lc_load_dylib": [179, 203], "rpath": [179, 188, 203], "lc_rpath": [179, 203], "outlin": 179, "libnam": 179, "my_execut": 179, "add_rpath": 179, "executable_path": 179, "use_settings_target": 179, "ranlib": 179, "lipo": 179, "codesign": 179, "isysroot": [179, 217], "sdk_platform_path": 179, "sdk_platform_vers": 179, "libtool": 179, "alltarget": 180, "i386": [180, 217], "sdkroot": 180, "ios8": 180, "skd": 180, "conan_libpng": 181, "conan_libpng_libpng": 181, "conan_libpng_libpng_debug_x86_64": 181, "conan_libpng_libpng_release_x86_64": 181, "conan_zlib": [181, 221], "conan_zlib_zlib": 181, "conan_zlib_zlib_debug_x86_64": 181, "conan_zlib_zlib_release_x86_64": 181, "system_header_search_path": 181, "gcc_preprocessor_definit": 181, "other_cflag": 181, "other_cplusplusflag": 181, "framework_search_path": 181, "library_search_path": 181, "other_ldflag": 181, "conan_libpng_debug_x86_64": 181, "package_root_": 181, "releaseshar": [181, 187, 221, 258], "mycustomconfig": [181, 221], "conantoolchain_release_x86_64": 182, "conantoolchain_debug_x86_64": 182, "conantoolchain": [182, 222], "conan_global_flag": 182, "conantoolchain_": [182, 222], "_x86_64": 182, "clang_cxx_librari": 182, "clang_cxx_language_standard": 182, "macosx_deployment_target": 182, "mmacosx": 182, "_cpu_count": 183, "cgroup": 183, "skip_x64_x86": 183, "m1": [183, 217, 259], "gnu_extens": 183, "cppstd_default": 183, "dxxx": 185, "dvar": 185, "build_tool_arg": 185, "barg1": 185, "barg2": 185, "underli": 185, "diagnost": 185, "dcmake_verbose_makefil": 185, "maxcpucount": 185, "cmake_gener": 186, "shared_fals": 186, "shared_tru": 186, "chosen": [186, 213], "cmake_prefix_path": [187, 188], "cmake_module_path": [187, 188], "findxxx": 187, "conandeps_legaci": 187, "cmake_binary_dir": 187, "enumer": 187, "overal": 187, "releasedshar": 187, "my_tool": [187, 208, 211], "collid": [187, 208, 271], "capnproto": [187, 208], "_build": [187, 208], "81": 187, "fakecomp": 187, "cmake_module_file_nam": 187, "cmake_module_target_nam": 187, "dep_nam": 187, "get_cmake_package_nam": 187, "module_mod": 187, "get_find_mod": 187, "cmake_target_alias": 187, "rout": 187, "cmake_set_interface_link_directori": 187, "pragma": 187, "nosonam": 187, "sonam": 187, "cmake_config_version_compat": 187, "samemajorvers": 187, "sameminorvers": 187, "exactvers": 187, "configvers": 187, "myfilenam": [187, 198], "myfooalia": 187, "mycompon": [187, 208, 211], "varcompon": 187, "myfilenameconfig": 187, "findmyfilenam": 187, "zlibconan": 187, "alter": 187, "colon": 187, "new_component_target_nam": 187, "buildir": 187, "popul": [187, 241], "cmake_map_imported_config_": 187, "dcmake_map_imported_config_coverag": 187, "myvar_valu": 188, "mydefin": [188, 217], "mydef_valu": [188, 217], "cmake_path": 188, "cmake_position_independent_cod": 188, "nmake": [188, 189, 223], "easier": [188, 271], "schema": [188, 196, 222], "testpreset": 188, "jon": 188, "mydef": [188, 217], "myconfigdef": 188, "mydebugvalu": 188, "myreleasevalu": 188, "add_definit": 188, "cachevari": 188, "foo2": 188, "ON": [188, 241, 262], "myconfigvar": 188, "sentenc": 188, "extra_cxxflag": [188, 205, 223], "extra_cflag": [188, 205, 223], "extra_sharedlinkflag": 188, "extra_exelinkflag": 188, "clash": 188, "filepath": 188, "mytoolchainpackag": 188, "mytoolchain": 188, "mytoolrequir": 188, "toolchain1": 188, "toolchain2": 188, "yyyi": 188, "ninclud": 188, "generic_system": 188, "cmake_c_compil": 188, "cmake_cxx_compil": 188, "android_system": 188, "android_platform": 188, "android_stl": 188, "android_ndk_path": 188, "apple_system": 188, "cmake_osx_architectur": 188, "cmake_osx_sysroot": 188, "arch_flag": [188, 205], "m32": 188, "m64": 188, "vs_runtim": 188, "cmake_msvc_runtime_librari": 188, "cmake_cxx_extens": 188, "cmake_flags_init": 188, "cmake_xxx_flag": 188, "conan_xxx": 188, "cmake_cxx_flags_init": 188, "conan_cxx_flag": 188, "try_compil": 188, "in_try_compil": 188, "find_path": 188, "cmake_skip_rpath": 188, "skip_rpath": 188, "build_shared_lib": [188, 251, 262], "output_dir": 188, "cmake_install_xxx": 188, "cmake_install_prefix": [188, 257], "cmake_install_bindir": 188, "cmake_install_sbindir": 188, "cmake_install_libexecdir": 188, "cmake_install_libdir": 188, "cmake_install_includedir": 188, "cmake_install_oldincludedir": 188, "cmake_install_datarootdir": 188, "mybin": [188, 205], "myinclud": [188, 205], "myre": [188, 205], "block_nam": 188, "new_tmp": 188, "other_toolset": 188, "generic_block": 188, "methodtyp": 188, "mygenericblock": 188, "helloworld": 188, "myblock": 188, "mynewblock": 188, "64bit": [188, 267], "32bit": [188, 267], "ppc": 188, "r23c": 188, "cmake_c_flags_init": 188, "cmake_xcode_attribute_enable_bitcod": 188, "cmake_xcode_attribute_clang_enable_objc_arc": 188, "cmake_xcode_attribute_gcc_symbols_private_extern": 188, "cmake_sysroot": 188, "cmp0149": 188, "cmake_rc_compil": 188, "cmake_objc_compil": 188, "objcpp": [188, 217], "cmake_objcxx_compil": 188, "cmake_cuda_compil": 188, "cmake_fortran_compil": 188, "cmake_asm_compil": 188, "cmake_hip_compil": 188, "cmake_ispc_compil": 188, "collaps": 189, "aggregated_cpp_info": 189, "topological_sort": 189, "revers": 189, "dep_cppinfo": 189, "get_sorted_compon": 189, "fewer": 189, "other_cppinfo": 189, "myvar2": 191, "myvalue2": 191, "myvar3": 191, "myvalue3": 191, "myvar4": 191, "mypath2": 191, "mypath3": 191, "env1": [191, 192], "env2": 191, "compose_env": 191, "prevail": [191, 266], "autootoolsdep": 191, "buildenv": [191, 213, 241], "runenv": 191, "mypkg_data_dir": 191, "datadir": [191, 208, 217], "filesystem": [191, 198], "deploy_base_fold": 191, "save_script": 192, "my_env_fil": 192, "ps1": [192, 193, 194, 245], "var2": 192, "variable_refer": 192, "penv": 192, "32k": 192, "2048": 192, "closer": 192, "varnam": 192, "ld_library_path": [193, 194, 242, 251, 256], "deactivate_conanbuildenv": [193, 241, 244, 245, 248], "accumul": [193, 194, 204, 229], "auto_gener": [193, 194], "dyld_library_path": [194, 242], "dyld_framework_path": [194, 242], "deactivate_conanrunenv": 194, "rm": 195, "rmdir": 195, "chdir": 195, "trim_conandata": 195, "collect_lib": 195, "check_md5": 195, "check_sha256": 195, "absolute_to_relative_symlink": [195, 257], "remove_external_symlink": 195, "remove_broken_symlink": 195, "ignore_cas": 196, "insensit": 196, "utf": [196, 222], "otherfil": 196, "robocopi": 196, "abe2h9f": 196, "file_path": [196, 197], "mydir": 196, "newdir": 196, "do_someth": 196, "tzb2": 196, "bz2": 196, "txz": 196, "xz": 196, "keep_permiss": [196, 198], "bigfil": 196, "danger": 196, "inter": 196, "libmylib": [196, 203], "stare": 196, "libmath": 196, "other_libdir": 196, "rwxr": 196, "lrwxr": 196, "md5sum": 197, "sha256sum": 197, "md5": 198, "ftp": 198, "impli": [198, 268, 271], "overriden": 198, "httpbasic": 198, "sha": 198, "someurl": 198, "somefil": 198, "e5d695597e9fa520209d1b41edad2a27": 198, "ia64": 198, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 198, "base_path": 200, "patch_str": 200, "fuzz": 200, "fuzzi": 200, "0001": 200, "buildflatbuff": 200, "0002": 200, "patch_typ": 200, "patch_sourc": 200, "flatbuff": 200, "5650": 200, "patch_descript": 200, "misc": 200, "1232": 200, "1292": 200, "g_test_add_func": 200, "paus": 200, "cancel": 200, "do_pause_cancel_test": 200, "g_test_add_data_func": 200, "steal": 200, "gint_to_point": 200, "do_stealing_test": 200, "length": 200, "do_response_informational_content_length_test": 200, "ret": 200, "g_test_run": 200, "0003": 200, "base_fold": 201, "configure_arg": 203, "make_arg": 203, "_conanbuild": [203, 205], "destdir": 203, "unix_path": [203, 218], "install_nam": 203, "cmdsize": 203, "48": 203, "offset": 203, "stamp": 203, "jan": 203, "1970": 203, "loader": 203, "wl": [203, 207], "conanautotoolsdep": 204, "undesired_valu": 204, "seamlessli": 205, "precalcul": 205, "my_argu": 205, "sbindir": [205, 217], "oldincludedir": 205, "datarootdir": 205, "he": 205, "extra_defin": [205, 223], "extra_ldflag": [205, 223], "gcc_cxx11_abi": 205, "build_type_flag": 205, "sysroot_flag": 205, "apple_arch_flag": [205, 217], "apple_isysroot_flag": [205, 217], "msvc_runtime_flag": [205, 218], "myflag": 205, "update_configure_arg": 205, "updated_flag": 205, "update_make_arg": 205, "update_autoreconf_arg": 205, "xxxxxx_arg": 205, "prune": [205, 267], "gold": [205, 217], "lld": [205, 217], "nvcc": 205, "fc": 205, "mk": 206, "conan_dep": 206, "conan_name_zlib": 206, "conan_version_zlib": 206, "conan_reference_zlib": 206, "conan_root_zlib": 206, "zlib273508b343e8c": 206, "conan_include_dirs_zlib": 206, "conan_include_dir_flag": 206, "conan_lib_dirs_zlib": 206, "conan_lib_dir_flag": 206, "conan_bin_dirs_zlib": 206, "conan_bin_dir_flag": 206, "conan_libs_zlib": 206, "conan_lib_flag": 206, "conan_include_dir": 206, "conan_lib_dir": 206, "conan_bin_dir": 206, "conan_lib": [206, 263], "conan_define_flag": 206, "conan_system_lib_flag": 206, "lz": [206, 208], "libastr": 207, "_use_libastr": 207, "astral": 207, "linkflag": [207, 229], "tmp_dir": 207, "is_system": 207, "rt": 207, "your_us": 208, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 208, "pkg_config_alias": 208, "xxxxx": [208, 212, 217], "freeform": 208, "component_vers": 208, "custom_cont": 208, "mynam": 208, "componentnam": 208, "alias1": 208, "alias2": 208, "rcpath": 210, "bz": [210, 211], "fresh": 210, "new_local_repositori": 211, "build_fil": 211, "cc_import": 211, "cc_librari": 211, "z_precompil": 211, "static_librari": 211, "libz": [211, 242], "hdr": 211, "glob": 211, "filegroup": 211, "zlib_binari": 211, "bazel_target_nam": 211, "bazel_repository_nam": 211, "my_target": 211, "my_repo": 211, "cxxopt": 212, "dynamic_mod": 212, "compilation_mod": 212, "force_p": 212, "copt": 212, "flagn": 212, "conlyopt": 212, "linkopt": 212, "dbg": 212, "crosstool_top": 212, "icpx": 213, "conanintelsetvar": 213, "intelprofil": 213, "ms_toolset": 213, "batch": 213, "argn": 213, "intel64": 213, "ia32": 213, "ia": 213, "mysrcfold": 214, "reconfigur": 216, "dprefix": 216, "conan_meson_cross": 216, "n_job": 216, "55": [217, 243], "default_librari": 217, "buildtyp": 217, "libexecdir": 217, "localedir": 217, "mandir": 217, "infodir": 217, "wrap_mod": 217, "nofallback": 217, "cpp_arg": 217, "c_arg": 217, "c_link_arg": 217, "cpp_link_arg": 217, "conan_meson_xxxx": 217, "with_msg": 217, "hi": 217, "everyon": 217, "contrast": 217, "packageopt": 217, "upon": 217, "mio": 217, "ios_host_profil": 217, "objc_arg": 217, "objc_link_arg": 217, "objcpp_arg": 217, "objcpp_link_arg": 217, "android_host_profil": 217, "c_ld": 217, "cc_ld": 217, "cpp_ld": 217, "cxx_ld": 217, "as_": 217, "AS": [217, 223], "windr": 217, "macosx": 217, "apple_min_version_flag": 217, "objcflag": 217, "objcxxflag": 217, "check_min_v": 218, "is_msvc": 218, "is_msvc_static_runtim": 218, "msvs_toolset": 218, "raise_invalid": 219, "visualstudio": 219, "worth": 219, "mt": [219, 222], "neither": 219, "myreleas": 220, "myplatform": 220, "conan_zlib_vars_release_x64": 221, "conanzlibxxxx": 221, "conanzlibincludedir": 221, "conanzliblib": 221, "conan_zlib_vars_debug_x64": 221, "conanzlib": 221, "conan_zlib_release_x64": 221, "conan_zlib_debug_x64": 221, "conan_bzip": 221, "bzip": 221, "conan_bzip2": 221, "conan_pkgname_compname_vars_release_x64": 221, "compnam": 221, "conan_pkgname_compname_release_x64": 221, "conan_pkgname_compnam": 221, "conan_pkgnam": 221, "conan_pkgname_vars_release_x64": 221, "gather": [221, 269], "catch": 221, "executablepath": 221, "binarydirectori": 221, "custombuild": 221, "caexcludepath": 221, "uncondit": 221, "conan_": 221, "_var": 221, "conantoolchain_release_x86": 222, "mtd": 222, "mdd": 222, "clcompil": 222, "windowstargetplatformvers": 222, "additionalopt": 222, "preprocessordefinit": 222, "vcvarsal": [222, 224], "includeextern": 222, "xmln": 222, "2003": 222, "itemdefinitiongroup": 222, "propertygroup": 222, "conannmakedep": 223, "_link_": 223, "conannmaketoolchain": 223, "my_flag": 223, "env_var": 223, "cl_env_var": 223, "winsdk": 224, "thin": [227, 250], "repourl": 227, "children": 227, "get_commit": 227, "rev": 227, "get_remote_url": 227, "commit_in_remot": 227, "occurr": 227, "get_repo_root": 227, "toplevel": 227, "fetch_commit": 227, "qualifi": [228, 269], "sconscript_conandep": 229, "cpppath": 229, "binpath": 229, "frameworkpath": 229, "cppdefin": 229, "ccflag": 229, "shlinkflag": 229, "sconscript": 229, "mergeflag": 229, "chocolatei": 230, "libgl": 231, "libglvnd": 231, "devel": 231, "mesa": 231, "linuxmint": 231, "pidora": 231, "scientif": 231, "xenserv": 231, "amazon": 231, "oracl": 231, "amzn": 231, "almalinux": 231, "rocki": 231, "fedora": 231, "rhel": 231, "mageia": 231, "manjaro": 231, "opensus": 231, "sle": 231, "host_packag": 231, "install_substitut": 231, "packages_substitut": 231, "pkg3": 231, "_arch_nam": 231, "multiarch": 231, "arch_nam": 231, "libxcb": 231, "util0": 231, "packages_altern": 231, "amd64": 231, "conan_arch_set": 231, "apt_arch_set": 231, "86": 231, "armv7hl": 231, "lib32": 231, "c3i": 234, "profession": 235, "matrix": [235, 266, 267], "8081": 236, "8082": 236, "bintrai": 236, "jdk": 236, "dialog": 236, "bottl": 237, "wsgirefserv": 237, "ctrl": 237, "my_local_serv": 238, "lan": 238, "easiest": 240, "conan_export": 240, "f1fadf0d3b196dc0332750354ad8ab7b": [240, 245], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 240, "dd7bf2a1ab4eb5d1943598c09b616121": 240, "raspberri": 241, "pi": 241, "someprofil": 241, "gnueabihf": 241, "compressorrecip": [241, 243, 244], "identif": 241, "elf": 241, "lsb": 241, "eabi5": 241, "sysv": 241, "armhf": 241, "buildid": 241, "2a216076864a1b1f30211debf297ac37a9195196": 241, "different_configur": 242, "anywher": 242, "tutorial_us": 242, "zlib1": 242, "reinstal": 242, "wonder": 242, "answer": 242, "li": [242, 269], "factor": 242, "breakdown": 242, "approxim": [243, 269], "87a7211557b6690ef5bf7fc599dd8349": 243, "f305019023c2db74d1001c5afa5cf362": 243, "82202701ea360c0863f1db5008067122": 243, "bd533fb124387a214816ab72c8d1df28": 243, "59": [243, 250], "58": 243, "3b9e037ae1c615d045a06c67d88491a": 243, "chronolog": 243, "tediou": [243, 261, 270], "occas": 243, "4524fcdd41f33e8df88ece6e755a5dcc": 243, "1650538915": 243, "154": 243, "stai": 243, "conanfile_pi": 244, "neater": 244, "auxiliari": 244, "v8": 244, "base64": 244, "cmake_vers": 245, "3e3d8f3a848b2a60afafbe7a0955085a": 245, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 245, "48bc7191ec1ee467f1e951033d7d41b2": 245, "f2f48d9745706caf77ea883a5855538256e7f2d4": 245, "6c519070f013da19afd56b52c465b596": 245, "scaffold": 246, "walkthrough": 246, "peculiar": 246, "fanci": 247, "colour": [247, 258], "creating_packag": [247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259], "add_requir": 247, "check_max_cppstd": [247, 258], "check_min_cppstd": [247, 254, 258], "require_fmt": 247, "crimson": [247, 258], "emphasi": [247, 258], "bold": [247, 258], "__x86_64__": [247, 250, 252, 255, 262], "__cplusplu": 247, "201103": 247, "__gnuc__": 247, "__gnuc_minor__": 247, "__clang_major__": 247, "__clang_minor__": 247, "__apple_build_version__": 247, "13160021": 247, "build_method": 248, "with_test": 248, "with_fmt": [248, 249, 258], "test_hello": [248, 251], "novelti": 248, "compose_messag": 248, "add_subdirectori": 248, "googletest": [248, 254], "gtest_main": [248, 254], "hellotest": 248, "composemessag": 248, "expect_eq": 248, "c51d80ef47661865": 248, "3ad4c6873a47059c": 248, "tear": [248, 254], "82b6c0c858e739929f74f59c25c187b927d514f3": 248, "particular": 248, "uncommon": 248, "configure_options_set": 249, "met": 249, "ng": 249, "738feca714b7251063cc51448da0cf4811424e7c": 249, "7fe7f5af0ef27552": 249, "3bd9faedc711cbb4fdf10b295268246": 249, "e6b11fb0cb64e3777f8d62f4543cd6b3": 249, "5c497cbb5421cbda": 249, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 249, "19a2e552db727a2b": 249, "67b887a0805c2a535b58be404529c1f": 249, "c7796386fcad5369": 249, "depict": 249, "diagram": 249, "intuit": 249, "2a899fd0da3125064bf9328b8db681cd82899d56": 249, "f0d1385f4f90ae465341c15740552d7": 249, "8a55286c6595f662": 249, "601209640bd378c906638a8de90070f7": 249, "d1b3f3666400710fec06446a697f9eeddd1235aa": 249, "24a2edf207deeed4151bd87bca4af51c": 249, "concret": 250, "email": 250, "constraint": [250, 267, 271], "leverag": 250, "__cplusplus199711": [250, 252, 255], "__gnuc__4": [250, 252, 255, 262], "__gnuc_minor__2": [250, 252, 255, 262], "__clang_major__13": [250, 252, 255], "__clang_minor__1": [250, 252, 255], "__apple_build_version__13160021": [250, 252, 255], "fa5f6b17d0adc4de6030c9ab71cdbed": 250, "pid": [250, 254, 255], "6679492451b5d0750f14f9024fdbf84e19d2941b": 250, "customis": 250, "breakag": [250, 252], "package_inform": 251, "output_nam": 251, "a311fcf8a63f3206": 251, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [251, 257, 259], "44d78a68b16b25c5e6d7e8884b8f58b8": 251, "a8cb81b31dc10d96": 251, "handle_sourc": 252, "mutabl": 252, "0fcb5ffd11025446": 252, "update_sourc": 252, "369786d0fb355069": 252, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 252, "saw": [253, 254, 267], "other_packag": [254, 255, 256], "sumconan": 254, "sum": 254, "8d9f1fb3655adcb348befcd8374c5292": 254, "header_only_gtest": 254, "test_sum": 254, "9bf83ef65d5ff0d6": 254, "sumtest": 254, "basicsum": 254, "lack": 254, "3rd": 255, "circumst": 255, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 255, "deep": 255, "local_include_fold": 255, "local_lib_fold": 255, "prebuilt_binari": 255, "vendor_hello_librari": 255, "_o": 255, "_arch": 255, "9c7634dfe0369907f569c4e583f9bc50": 255, "522dcea5982a3f8a5b624c16477e47195da2f84f": 255, "63fead0844576fc02943e16909f08fcdddd6f44b": 255, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [255, 256], "28": 255, "a0cd51c51fe9010370187244af885b0efcc5b69b": 255, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 255, "dcf68e932572755309a5f69f3cee1bede410e907": 255, "somewher": 255, "prebuilt_remote_binari": 255, "base_url": 255, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 255, "secure_scannerrecip": 256, "secure_scann": 256, "scanner": 256, "secure_scannertestconan": 256, "tested_reference_str": [256, 259], "my_consum": 256, "enviorn": 256, "overwrot": 256, "rundenv_info": 256, "package_method": 257, "predetermin": 257, "b5857f2e70d1b2fd": 257, "bf7f5b9a3bb2c957742be4be216dfcbb": 257, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [257, 259], "47b4c4c61c8616e5": 257, "222db0532bba7cbc": 257, "50f91e204d09b64b24b29df3b87a2f3a": 257, "96ed9fb1f78bc96708b1abf4841523b0": 257, "21ec37b931782de8": 257, "preparing_the_build": 258, "optional_fmt": 258, "target_compile_definit": 258, "using_fmt": 258, "endl": 258, "debugshar": 258, "testing_packag": 259, "hellotestconan": 259, "cd132b054cf999f31bd2fd2424053ddc": 259, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 259, "1d9bb4c015de50bcb4a338c07229b3bc": 259, "4ff3fd65a1d37b52436bf62ea6eaac04": 259, "d136b3379fdb29bdfe31404b916b29e1": 259, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 259, "ee8cbd2bf32d1c89e553bdd9d5606127": 259, "costli": 260, "entir": 260, "depth": 260, "developing_packag": [261, 262, 263], "editable_packag": 261, "fledg": 261, "perspect": 261, "inconveni": 261, "increment": 261, "trial": 262, "phase": 262, "local_package_development_flow": 262, "ve": 262, "cmakedeps_macro": 262, "f09ef573c22f3919ba26ee91ae444eaa": 262, "__cplusplus201103": 262, "__clang_major__14": 262, "__apple_build_version__14000029": 262, "po": 262, "examin": 263, "package_layout": 263, "sayb3ea744527a91": 263, "say830097e941e10": 263, "libsai": 263, "say8938ceae216fc": 263, "say_say_releas": 263, "local_fold": 263, "expir": 264, "increas": [264, 265], "oppos": [264, 271], "intent": 264, "intro": [266, 267], "credit": 266, "videogam": 266, "0fe4e6890766f7b8e21f764f0049aec7": 266, "d639998c2e55cf36d261ab319801c322": 266, "905c3f0babc520684c84127378fefdd0": [266, 267], "converg": 266, "variat": 266, "mathemat": 267, "sound32": 267, "sound": 267, "1675278126": 267, "0552447": 267, "83d4b7bf607b3b60a6546f8b58b5cdd7": 267, "1675278904": 267, "0791488": 267, "1675278900": 267, "0103245": 267, "enforc": 267, "paramount": 267, "1675278901": 267, "7527816": 267, "harm": 267, "1675294635": 267, "6049662": 267, "1675294637": 267, "9775107": 267, "2475ece651f666f42c155623228c75d2": 268, "2b547b7f20f5541c16d0b5cbcf207502": 268, "licenc": 268, "1d674b4349d2b1ea06aa6419f5f99dd9": 268, "chat": 268, "17b45a168519b8e0ed178d822b7ad8c8": 268, "12f87e1b8a881da6b19cc7f229e16c76": 268, "ago": 268, "determinist": 268, "subsequ": 268, "8b8c3deef5ef47a8009d4afaebfe952": 268, "8e8d380347e6d067240c4c00132d42b1": 268, "c347faaedc1e7e3282d3bfed31700019": 268, "wast": 268, "pkgrecip": [269, 270], "apprecip": [269, 270], "newest": 269, "hold": 269, "letter": [269, 271], "becam": 269, "evid": 269, "demand": 269, "entiti": 269, "numer": 269, "tild": 269, "caret": 269, "include_prereleas": 269, "henc": 269, "fast": 270, "blown": 270, "intervent": 270, "excit": 271, "lesson": 271, "youtub": 271, "watch": 271, "kkgglzm5ou": 271, "tribe": 271, "026": 271, "requirements_trait": 271, "modular": 271, "subapi": 271, "redesign": 271, "send": 271, "thorough": 271, "mydeploi": 271, "meaning": 271, "mylib_a": 271, "mylib_b": 271, "034": 271, "new_lockfil": 271, "enviro": 271, "shorten": 271, "short_path": 271, "incredibuild": 271, "grow": 271, "sigstor": 271, "accur": 271}, "objects": {"conan.api.conan_api": [[162, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[163, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[163, 1, 1, "", "global_conf"], [163, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[164, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.export": [[165, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[166, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[166, 2, 1, "", "analyze_binaries"], [166, 2, 1, "", "load_graph"], [166, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[167, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[167, 2, 1, "", "install_binaries"], [167, 2, 1, "", "install_consumer"], [167, 2, 1, "", "install_sources"], [167, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[168, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[168, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[169, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[169, 2, 1, "", "get_home_template"], [169, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[170, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[170, 2, 1, "", "detect"], [170, 2, 1, "", "get_default_build"], [170, 2, 1, "", "get_default_host"], [170, 2, 1, "", "get_path"], [170, 2, 1, "", "get_profile"], [170, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[171, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[171, 2, 1, "", "list"]], "conan.api.subapi.remove": [[172, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[173, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[174, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[174, 2, 1, "", "check_upstream"], [174, 2, 1, "", "get_backup_sources"], [174, 2, 1, "", "prepare"]], "conan.tools.android": [[177, 3, 1, "", "android_abi"]], "conan.tools.apple": [[179, 0, 1, "", "XCRun"], [179, 3, 1, "", "fix_apple_shared_install_name"], [179, 3, 1, "", "is_apple_os"], [179, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[179, 1, 1, "", "ar"], [179, 1, 1, "", "cc"], [179, 1, 1, "", "cxx"], [179, 2, 1, "", "find"], [179, 1, 1, "", "install_name_tool"], [179, 1, 1, "", "libtool"], [179, 1, 1, "", "otool"], [179, 1, 1, "", "ranlib"], [179, 1, 1, "", "sdk_path"], [179, 1, 1, "", "sdk_platform_path"], [179, 1, 1, "", "sdk_platform_version"], [179, 1, 1, "", "sdk_version"], [179, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[180, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[180, 2, 1, "", "__init__"], [180, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[183, 3, 1, "", "check_max_cppstd"], [183, 3, 1, "", "check_min_cppstd"], [183, 3, 1, "", "default_cppstd"], [183, 3, 1, "", "supported_cppstd"], [183, 3, 1, "", "valid_max_cppstd"], [183, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[183, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[183, 3, 1, "", "can_run"], [183, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[185, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[185, 2, 1, "", "build"], [185, 2, 1, "", "configure"], [185, 2, 1, "", "ctest"], [185, 2, 1, "", "install"], [185, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[187, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[187, 2, 1, "", "generate"], [187, 2, 1, "", "get_cmake_package_name"], [187, 2, 1, "", "get_find_mode"], [187, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[186, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[188, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[188, 2, 1, "", "generate"]], "conan.tools.env.environment": [[192, 0, 1, "", "EnvVars"], [191, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[192, 2, 1, "", "apply"], [192, 2, 1, "", "get"], [192, 2, 1, "", "items"], [192, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[191, 2, 1, "", "append"], [191, 2, 1, "", "append_path"], [191, 2, 1, "", "compose_env"], [191, 2, 1, "", "define"], [191, 2, 1, "", "deploy_base_folder"], [191, 2, 1, "", "dumps"], [191, 2, 1, "", "prepend"], [191, 2, 1, "", "prepend_path"], [191, 2, 1, "", "remove"], [191, 2, 1, "", "unset"], [191, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[193, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[193, 2, 1, "", "environment"], [193, 2, 1, "", "generate"], [193, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[194, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[194, 2, 1, "", "environment"], [194, 2, 1, "", "generate"], [194, 2, 1, "", "vars"]], "conan.tools.files": [[196, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[196, 3, 1, "", "trim_conandata"], [196, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[196, 3, 1, "", "copy"]], "conan.tools.files.files": [[196, 3, 1, "", "chdir"], [197, 3, 1, "", "check_md5"], [197, 3, 1, "", "check_sha1"], [197, 3, 1, "", "check_sha256"], [198, 3, 1, "", "download"], [198, 3, 1, "", "ftp_download"], [198, 3, 1, "", "get"], [196, 3, 1, "", "load"], [196, 3, 1, "", "mkdir"], [196, 3, 1, "", "rename"], [196, 3, 1, "", "replace_in_file"], [196, 3, 1, "", "rm"], [196, 3, 1, "", "rmdir"], [196, 3, 1, "", "save"], [196, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[200, 3, 1, "", "apply_conandata_patches"], [200, 3, 1, "", "export_conandata_patches"], [200, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[201, 3, 1, "", "absolute_to_relative_symlinks"], [201, 3, 1, "", "remove_broken_symlinks"], [201, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[206, 0, 1, "", "MakeDeps"], [207, 0, 1, "", "PkgConfig"], [208, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[206, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[207, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[208, 1, 1, "", "content"], [208, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[203, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[203, 2, 1, "", "autoreconf"], [203, 2, 1, "", "configure"], [203, 2, 1, "", "install"], [203, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[204, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[204, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[205, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[205, 2, 1, "", "update_autoreconf_args"], [205, 2, 1, "", "update_configure_args"], [205, 2, 1, "", "update_make_args"]], "conan.tools.google": [[210, 0, 1, "", "Bazel"], [211, 0, 1, "", "BazelDeps"], [212, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[210, 2, 1, "", "build"], [210, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[211, 4, 1, "", "build_context_activated"], [211, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[212, 4, 1, "", "compilation_mode"], [212, 4, 1, "", "compiler"], [212, 4, 1, "", "conlyopt"], [212, 4, 1, "", "copt"], [212, 4, 1, "", "cppstd"], [212, 4, 1, "", "cpu"], [212, 4, 1, "", "crosstool_top"], [212, 4, 1, "", "cxxopt"], [212, 4, 1, "", "dynamic_mode"], [212, 4, 1, "", "force_pic"], [212, 2, 1, "", "generate"], [212, 4, 1, "", "linkopt"]], "conan.tools.intel": [[213, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[213, 4, 1, "", "arch"], [213, 1, 1, "", "command"], [213, 2, 1, "", "generate"], [213, 1, 1, "", "installation_path"], [213, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[216, 0, 1, "", "Meson"], [217, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[216, 2, 1, "", "build"], [216, 2, 1, "", "configure"], [216, 2, 1, "", "install"], [216, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[217, 4, 1, "", "apple_arch_flag"], [217, 4, 1, "", "apple_isysroot_flag"], [217, 4, 1, "", "apple_min_version_flag"], [217, 4, 1, "", "ar"], [217, 4, 1, "", "as_"], [217, 4, 1, "", "c"], [217, 4, 1, "", "c_args"], [217, 4, 1, "", "c_ld"], [217, 4, 1, "", "c_link_args"], [217, 4, 1, "", "cpp"], [217, 4, 1, "", "cpp_args"], [217, 4, 1, "", "cpp_ld"], [217, 4, 1, "", "cpp_link_args"], [217, 4, 1, "", "cross_build"], [217, 2, 1, "", "generate"], [217, 4, 1, "", "ld"], [217, 4, 1, "", "objc"], [217, 4, 1, "", "objc_args"], [217, 4, 1, "", "objc_link_args"], [217, 4, 1, "", "objcpp"], [217, 4, 1, "", "objcpp_args"], [217, 4, 1, "", "objcpp_link_args"], [217, 4, 1, "", "pkg_config_path"], [217, 4, 1, "", "pkgconfig"], [217, 4, 1, "", "preprocessor_definitions"], [217, 4, 1, "", "project_options"], [217, 4, 1, "", "properties"], [217, 4, 1, "", "strip"], [217, 4, 1, "", "windres"]], "conan.tools.microsoft": [[220, 0, 1, "", "MSBuild"], [221, 0, 1, "", "MSBuildDeps"], [222, 0, 1, "", "MSBuildToolchain"], [224, 0, 1, "", "VCVars"], [219, 3, 1, "", "unix_path"], [225, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[220, 2, 1, "", "build"], [220, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[221, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[222, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[219, 3, 1, "", "check_min_vs"], [219, 3, 1, "", "is_msvc"], [219, 3, 1, "", "is_msvc_static_runtime"], [219, 3, 1, "", "msvc_runtime_flag"], [219, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[228, 0, 1, "", "Version"]], "conan.tools.scm.git": [[227, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[227, 2, 1, "", "checkout"], [227, 2, 1, "", "clone"], [227, 2, 1, "", "commit_in_remote"], [227, 2, 1, "", "fetch_commit"], [227, 2, 1, "", "get_commit"], [227, 2, 1, "", "get_remote_url"], [227, 2, 1, "", "get_repo_root"], [227, 2, 1, "", "get_url_and_commit"], [227, 2, 1, "", "included_files"], [227, 2, 1, "", "is_dirty"], [227, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[231, 0, 1, "", "Apk"], [231, 0, 1, "", "Apt"], [231, 0, 1, "", "Brew"], [231, 0, 1, "", "Chocolatey"], [231, 0, 1, "", "PacMan"], [231, 0, 1, "", "Pkg"], [231, 0, 1, "", "PkgUtil"], [231, 0, 1, "", "Yum"], [231, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conans.model.conf.Conf": [[132, 2, 1, "", "append"], [132, 2, 1, "", "define"], [132, 2, 1, "", "prepend"], [132, 2, 1, "", "remove"], [132, 2, 1, "", "unset"], [132, 2, 1, "", "update"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function", "4": "py:attribute"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"]}, "titleterms": {"page": 0, "Not": 0, "found": 0, "changelog": 1, "2": [1, 57, 271], "0": [1, 57, 261, 271], "17": 1, "10": 1, "jan": 1, "2024": 1, "16": 1, "21": 1, "dec": 1, "2023": 1, "15": 1, "20": 1, "14": 1, "nov": 1, "13": 1, "28": 1, "sept": 1, "12": 1, "26": 1, "11": 1, "18": 1, "29": 1, "aug": 1, "9": 1, "19": 1, "jul": 1, "8": 1, "7": 1, "jun": 1, "6": 1, "mai": 1, "5": 1, "4": 1, "apr": 1, "3": 1, "03": 1, "mar": 1, "1": [1, 261], "22": 1, "feb": 1, "beta10": 1, "beta9": 1, "31": 1, "beta8": 1, "beta7": 1, "2022": 1, "beta6": 1, "02": 1, "beta5": 1, "beta4": 1, "oct": 1, "beta3": 1, "beta2": 1, "27": 1, "beta1": 1, "devop": 2, "guid": [2, 271], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 86, 102, 114, 192, 236, 246, 250, 268], "an": [3, 244], "artifactori": [3, 65, 236], "backup": [3, 4, 84], "repo": [3, 236], "your": [3, 5, 24, 36, 47, 48, 114, 241, 248, 250], "sourc": [3, 4, 29, 36, 51, 58, 70, 110, 116, 136, 248, 251, 252, 262, 263], "back": 4, "up": [4, 235, 237], "third": [4, 19], "parti": [4, 19], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 53, 55, 57, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 156, 162, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 203, 209, 213, 214, 215, 217, 218, 219, 226, 229, 230, 231, 233, 234, 235, 236, 237, 240, 241, 245, 249, 250, 251, 257, 259, 262, 263, 264, 271], "configur": [4, 22, 23, 63, 80, 114, 123, 129, 143, 146, 157, 181, 187, 213, 221, 231, 242, 244, 249, 251, 267, 271], "overview": 4, "usag": 4, "set": [4, 24, 73, 78, 80, 98, 107, 116, 147, 149, 186, 235, 237, 242, 249, 251, 256], "necessari": 4, "config": [4, 85, 163], "run": [4, 31, 36, 114, 133, 141, 192, 236, 248], "normal": 4, "upload": [4, 6, 13, 84, 112, 174, 238, 268], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 57, 70, 73, 99, 116, 130, 159, 231, 238, 239, 242, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 268, 271], "repositori": [4, 233, 252], "host": [5, 241], "own": [5, 114], "conancent": [5, 8], "binari": [5, 70, 77, 78, 80, 116, 153, 249, 255], "updat": [5, 58, 107], "from": [5, 7, 13, 29, 36, 58, 78, 141, 158, 187, 252, 264], "upstream": 5, "manag": [6, 56, 57, 70, 205, 231, 257, 271], "metadata": [6, 87, 116], "file": [6, 23, 50, 143, 146, 175, 187, 188, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 204, 205, 206, 208, 211, 212, 217, 221, 252, 257], "recip": [6, 31, 43, 78, 99, 141, 176, 248, 249, 251, 256], "hook": [6, 158], "ad": [6, 131, 149], "command": [6, 12, 31, 32, 65, 82, 141, 154, 155, 271], "download": [6, 13, 87, 164, 198, 255], "remov": [6, 13, 88, 104, 107, 108, 172, 256, 264], "test_packag": 6, "save": [7, 84, 196], "restor": [7, 84], "cach": [7, 84, 136, 250, 264, 271], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 51, 53, 55, 58, 63, 86, 114, 156, 187, 188, 203, 217, 236, 240, 241, 242, 244, 245, 252, 257, 261, 268], "product": 8, "environ": [8, 22, 129, 151, 191, 192, 205, 223, 251, 271], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 78, 80, 105, 114, 149, 155, 156, 157, 181, 187, 188, 189, 204, 205, 206, 208, 211, 213, 217, 220, 221, 222, 223, 224, 271], "version": [9, 10, 39, 40, 78, 98, 113, 116, 228, 243, 265, 269, 270], "handl": [10, 252], "rang": [10, 243, 269], "pre": [10, 255], "releas": [10, 242], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 105], "list": [13, 85, 88, 99, 106, 107, 168, 264], "them": 13, "one": 13, "remot": [13, 107, 148, 151, 171, 235, 252], "differ": [13, 39, 40, 73, 242, 268], "build": [13, 25, 26, 27, 29, 45, 47, 51, 53, 55, 65, 70, 80, 83, 86, 93, 94, 116, 118, 132, 133, 183, 188, 203, 217, 240, 241, 242, 245, 248, 255, 258, 261, 262, 263, 271], "conanfil": [14, 15, 16, 20, 26, 98, 115, 142, 244], "method": [14, 51, 78, 117, 231, 244, 248, 251, 257], "layout": [15, 16, 18, 19, 116, 129, 142, 214, 244, 263], "declar": [16, 18, 19, 191], "when": [16, 18, 19, 203], "i": [16, 81, 203], "insid": [16, 41], "subfold": 16, "compon": [17, 21, 132, 181, 251], "edit": [17, 88, 236, 261], "we": 18, "have": 18, "multipl": [18, 21, 242, 251], "subproject": 18, "librari": [19, 21, 132, 149, 203, 242, 248, 249, 251, 254], "package_info": [20, 132, 251], "defin": [21, 181, 251], "provid": [21, 116, 251], "propag": [22, 251], "inform": [22, 56, 78, 116, 131, 132, 146, 189, 251], "consum": [22, 78, 116, 187, 239, 251], "settings_us": [24, 149], "yml": [24, 149, 252], "locat": [24, 31, 36, 155], "new": [24, 26, 105, 149, 169, 270, 271], "cross": [25, 27, 80, 188, 217, 241], "integr": [26, 59, 84, 271], "android": [26, 27, 60, 177, 217], "studio": [26, 29, 68], "project": [26, 45, 47, 53, 55, 187, 240, 248], "introduc": [26, 242, 248, 251], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 78, 79, 116, 127, 221, 242, 247, 251, 261, 266], "txt": [26, 142, 244], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 64, 184, 185, 187, 240, 257], "cmakelist": 26, "applic": [26, 241, 242], "ndk": 27, "read": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "more": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "develop": [28, 35, 260, 262], "tool": [28, 39, 40, 43, 44, 46, 50, 51, 52, 54, 146, 176, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 209, 213, 214, 215, 218, 219, 226, 229, 230, 231, 245, 256, 257], "flow": [28, 262], "debug": [29, 242], "step": [29, 257], "visual": [29, 68, 219], "extens": [30, 65, 152, 271], "clean": [31, 84], "old": 31, "revis": [31, 73, 99, 243, 268, 271], "code": [31, 36, 248], "tour": [31, 36], "parser": 31, "user": [31, 98, 107, 116, 146, 271], "input": 31, "output": [31, 86, 89, 99, 116, 141], "public": [31, 271], "api": [31, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 271], "builtin": 33, "deploy": [33, 34, 36, 98, 157, 271], "agnost": 35, "deploi": [35, 36, 124], "copi": [36, 196, 257], "all": [36, 70], "graph": [37, 91, 92, 93, 94, 95, 96, 99, 166, 271], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 86, 98, 116, 133, 137, 142, 175, 221, 244, 256, 270], "option": [39, 78, 80, 98, 116, 142, 147, 186, 217, 242, 249, 251, 266], "modul": [41, 158], "tool_requir": [41, 42, 116, 120, 142, 147], "transpar": 41, "autotool": [44, 45, 61, 203], "simpl": [45, 53, 55, 240, 256], "linux": [45, 73], "maco": [45, 203], "cmaketoolchain": [47, 48, 49, 188], "cmakepreset": [47, 48], "gener": [47, 48, 65, 98, 116, 127, 142, 156, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 217, 221, 251], "toolchain": [47, 188], "extend": [48, 80, 175, 188], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 129, 151, 181, 188, 191, 192], "patch": [51, 200, 248], "replace_in_fil": [51, 196], "apply_conandata_patch": [51, 200], "googl": [52, 209], "bazel": [53, 62, 210], "meson": [54, 55, 67, 215, 216, 217], "captur": 56, "git": [56, 227, 252], "scm": [56, 226], "credenti": [56, 145], "c": [57, 149, 217, 236, 249], "document": [57, 70], "instal": [58, 63, 65, 85, 98, 167, 187, 257, 262], "pip": 58, "recommend": 58, "known": 58, "issu": 58, "pipx": 58, "system": [58, 70, 137, 149, 230, 231, 248, 271], "self": [58, 127, 129, 263], "contain": 58, "execut": 58, "android_logo": 60, "autotools_logo": 61, "bazel_logo": 62, "clion_logo": 63, "clion": 63, "introduct": [63, 70, 146, 147, 175, 243], "plugin": [63, 78, 160, 271], "cmake_logo": 64, "jfrog_logo": 65, "jfrog": 65, "info": [65, 91, 96, 116], "how": [65, 81, 203, 231, 241], "gnu_make_logo": 66, "makefil": 66, "meson_logo": 67, "visual_studio_logo": 68, "xcode_logo": 69, "xcode": 69, "open": 70, "decentr": 70, "platform": 70, "compil": [70, 149, 188, 241], "stabl": 70, "commun": [70, 236], "navig": 70, "knowledg": 71, "cheat": 72, "sheet": 72, "faq": 73, "troubleshoot": 73, "error": [73, 244], "miss": 73, "prebuilt": [73, 255], "invalid": 73, "authenticationexcept": 73, "obtain": [73, 191], "window": 73, "core": 74, "guidelin": 74, "good": 74, "practic": 74, "forbidden": 74, "video": 75, "refer": [76, 99, 116, 162, 180, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 224, 231], "The": [77, 78, 79], "model": [77, 80, 116, 241, 251, 271], "compat": [78, 121, 153, 249, 271], "erasur": [78, 131], "package_id": [78, 79, 81, 131, 175, 256, 271], "py": [78, 115, 244, 271], "global": [78, 146, 156], "default": [78, 133, 217], "mode": [78, 79, 261], "effect": [79, 175], "non": [79, 244], "emb": [79, 116], "v": [80, 244], "conf": [80, 98, 116, 146, 147, 180, 182, 185, 188, 198, 205, 207, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224], "target": [80, 187], "comput": 81, "formatt": [82, 91, 155], "path": [84, 98, 106], "check": 84, "home": 85, "show": [85, 106], "add": [88, 101, 107, 149, 247], "export": [89, 90, 116, 125, 165, 262], "format": [89, 99], "pkg": [90, 231, 262], "json": [91, 99, 145, 148, 150], "order": [93, 94], "merg": [94, 103], "explain": 95, "inspect": 97, "profil": [98, 106, 147, 160, 170, 241, 271], "name": [98, 116, 155, 208, 211], "channel": [98, 116], "lockfil": [98, 243, 267, 271], "id": [99, 242, 249], "artifact": 99, "html": 99, "compact": 99, "lock": [100, 101, 102, 103, 104], "templat": [105, 146], "detect": 106, "auth": 107, "disabl": [107, 187], "enabl": 107, "login": [107, 151], "logout": 107, "renam": [107, 196], "search": [109, 173], "test": [111, 133, 138, 175, 248, 254, 259], "server": [114, 237], "paramet": [114, 155], "permiss": 114, "authent": 114, "author": [114, 116], "ssl": 114, "nginx": 114, "subdirectori": 114, "apach": 114, "attribut": [116, 205, 208, 217, 220, 222, 223], "descript": 116, "licens": [116, 257], "topic": 116, "homepag": 116, "url": 116, "build_requir": [116, 120], "test_requir": [116, 120, 142], "python_requir": [116, 156, 175, 264], "python_requires_extend": 116, "exports_sourc": 116, "conan_data": 116, "source_buildenv": 116, "package_typ": [116, 133], "default_opt": 116, "default_build_opt": 116, "options_descript": 116, "package_id_": 116, "non_emb": 116, "unknown": 116, "_mode": 116, "build_polici": 116, "win_bash": 116, "win_bash_run": 116, "folder": [116, 129, 263], "source_fold": 116, "export_sources_fold": 116, "build_fold": 116, "package_fold": 116, "recipe_fold": 116, "recipe_metadata_fold": 116, "package_metadata_fold": 116, "no_copy_sourc": 116, "cpp": [116, 129, 263], "cpp_info": [116, 127, 132], "buildenv_info": [116, 132], "runenv_info": [116, 132], "conf_info": [116, 132], "deprec": [116, 147], "other": [116, 253, 264], "content": [116, 188, 233, 239, 246, 253, 265], "revision_mod": 116, "upload_polici": 116, "required_conan_vers": 116, "implement": [116, 122, 123, 131], "alia": 116, "build_id": 119, "host_vers": 120, "config_opt": 122, "avail": [122, 123, 131, 231], "automat": [122, 123, 131], "auto_shared_fp": [122, 123], "export_sourc": 126, "interfac": [127, 158], "iter": [127, 192], "init": 128, "auto_header_onli": 131, "partial": 131, "properti": [132, 187, 208, 210, 211, 231, 251], "trait": [133, 221], "header": [133, 249, 254], "lib": 133, "visibl": 133, "transitive_head": 133, "transitive_lib": 133, "package_id_mod": 133, "forc": [133, 136], "overrid": [133, 266], "direct": 133, "infer": 133, "each": 133, "kind": 133, "set_nam": 134, "set_vers": 135, "retriev": 136, "system_requir": 137, "collect": 137, "valid": [139, 244], "validate_build": 140, "text": 141, "conanrc": 144, "data": [146, 217], "type": [146, 217, 253], "oper": [146, 149, 196], "pattern": [146, 147], "about": [146, 203, 250], "built": [146, 157, 203, 255], "network": 146, "client": 146, "certif": 146, "ux": 146, "skip": 146, "warn": 146, "section": 147, "system_tool": 147, "buildenv": 147, "runenv": 147, "replace_requir": 147, "replace_tool_requir": 147, "platform_requir": 147, "platform_tool_requir": 147, "render": 147, "includ": 147, "msvc": 149, "intel": [149, 213], "cc": 149, "architectur": 149, "standard": 149, "aka": 149, "libcxx": 149, "sub": 149, "valu": 149, "source_credenti": 150, "conan_hom": 151, "conan_default_profil": 151, "termin": 151, "color": 151, "log": 151, "wrapper": [154, 271], "scope": 155, "decor": 155, "conan_command": 155, "group": 155, "none": 155, "conan_subcommand": 155, "argument": [155, 217], "definit": [155, 191], "pars": 155, "full_deploi": 157, "direct_deploi": 157, "structur": 158, "import": [158, 187, 264], "storag": 158, "activ": 158, "share": [158, 203, 242], "offici": 158, "sign": [159, 271], "python": [161, 175, 271], "base": 175, "class": 175, "reus": 175, "resolut": 175, "android_abi": 177, "appl": [178, 179, 217], "fix_apple_shared_install_nam": 179, "is_apple_o": 179, "to_apple_arch": 179, "xcrun": 179, "xcodebuild": 180, "xcodedep": 181, "addit": 181, "support": [181, 221, 244], "xcodetoolchain": 182, "build_job": 183, "cross_build": 183, "can_run": 183, "cppstd": 183, "check_min_cppstd": 183, "check_max_cppstd": 183, "valid_min_cppstd": 183, "valid_max_cppstd": 183, "default_cppstd": 183, "supported_cppstd": 183, "cmake_layout": 186, "multi": [186, 267, 271], "cmakedep": 187, "build_context_activ": [187, 208, 211], "build_context_suffix": [187, 208], "build_context_build_modul": 187, "check_components_exist": 187, "overwrit": 187, "side": 187, "set_properti": 187, "For": 187, "map": 187, "": [187, 271], "preprocessor_definit": [188, 217], "cache_vari": 188, "user_presets_path": 188, "extra": 188, "flag": [188, 206], "presets_prefix": 188, "advanc": 188, "block": 188, "cppinfo": 189, "aggreg": 189, "env": 190, "composit": 191, "envvar": 192, "appli": 192, "virtualbuildenv": 193, "virtualrunenv": 194, "basic": 196, "load": 196, "rm": 196, "mkdir": 196, "rmdir": 196, "chdir": 196, "unzip": 196, "update_conandata": 196, "trim_conandata": 196, "collect_lib": 196, "checksum": 197, "check_md5": 197, "check_sha1": 197, "check_sha256": 197, "get": 198, "ftp_download": 198, "autopackag": 199, "export_conandata_patch": 200, "symlink": [201, 257], "absolute_to_relative_symlink": 201, "remove_external_symlink": 201, "remove_broken_symlink": 201, "gnu": 202, "A": [203, 250, 256], "note": [203, 250], "relocat": 203, "helper": 203, "why": 203, "thi": 203, "problem": 203, "address": 203, "autotoolsdep": 204, "autotoolstoolchain": 205, "configure_arg": 205, "make_arg": 205, "autoreconf_arg": 205, "makedep": 206, "pkgconfig": 207, "pkgconfigdep": 208, "bazeldep": 211, "bazeltoolchain": 212, "intelcc": 213, "predefin": 214, "basic_layout": 214, "mesontoolchain": 217, "conan_meson_n": 217, "ini": 217, "conan_meson_cross": 217, "directori": 217, "project_opt": 217, "proper": 217, "object": 217, "microsoft": [218, 219], "check_min_v": 219, "msvc_runtime_flag": 219, "is_msvc": 219, "is_msvc_static_runtim": 219, "msvs_toolset": 219, "subsystem": 219, "unix_path": 219, "msbuild": 220, "msbuilddep": 221, "msbuildtoolchain": 222, "nmakedep": 223, "nmaketoolchain": 223, "constructor": 223, "vcvar": 224, "vs_layout": 225, "scon": 229, "sconsdep": 229, "package_manag": 231, "affect": 231, "ar": 231, "invok": 231, "apk": 231, "apt": 231, "yum": 231, "dnf": 231, "pacman": 231, "zypper": 231, "brew": 231, "pkgutil": 231, "chocolatei": 231, "tutori": 232, "work": [233, 261], "tabl": [233, 239, 246, 253, 265], "contribut": 234, "center": 234, "ce": 236, "context": 241, "two": 241, "static": 242, "modifi": 242, "its": 242, "link": 242, "between": 242, "concept": 242, "understand": [244, 263], "flexibl": 244, "rais": 244, "condit": 244, "chang": [248, 251], "condition": 248, "select": 248, "onli": [249, 254], "first": 250, "specif": 251, "zip": 252, "store": 252, "branch": 252, "conandata": 252, "local": [255, 260], "alreadi": 255, "prepar": 258, "put": 261, "sai": 261, "revert": 261, "featur": 264, "unus": 264, "conflict": 266, "resolv": 266, "evolv": 267, "semant": 269, "express": 269, "autom": 270, "what": 271, "migrat": 271, "cli": 271, "checker": 271, "immut": 271, "optim": 271}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"Page Not Found": [[0, "page-not-found"]], "Changelog": [[1, "changelog"]], "2.0.17 (10-Jan-2024)": [[1, "jan-2024"]], "2.0.16 (21-Dec-2023)": [[1, "dec-2023"]], "2.0.15 (20-Dec-2023)": [[1, "id8"]], "2.0.14 (14-Nov-2023)": [[1, "nov-2023"]], "2.0.13 (28-Sept-2023)": [[1, "sept-2023"]], "2.0.12 (26-Sept-2023)": [[1, "id90"]], "2.0.11 (18-Sept-2023)": [[1, "id102"]], "2.0.10 (29-Aug-2023)": [[1, "aug-2023"]], "2.0.9 (19-Jul-2023)": [[1, "jul-2023"]], "2.0.8 (13-Jul-2023)": [[1, "id188"]], "2.0.7 (21-Jun-2023)": [[1, "jun-2023"]], "2.0.6 (26-May-2023)": [[1, "may-2023"]], "2.0.5 (18-May-2023)": [[1, "id257"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id317"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id366"]], "2.0.0 (22-Feb-2023)": [[1, "feb-2023"]], "2.0.0-beta10 (16-Feb-2023)": [[1, "beta10-16-feb-2023"]], "2.0.0-beta9 (31-Jan-2023)": [[1, "beta9-31-jan-2023"]], "2.0.0-beta8 (12-Jan-2023)": [[1, "beta8-12-jan-2023"]], "2.0.0-beta7 (22-Dec-2022)": [[1, "beta7-22-dec-2022"]], "2.0.0-beta6 (02-Dec-2022)": [[1, "beta6-02-dec-2022"]], "2.0.0-beta5 (11-Nov-2022)": [[1, "beta5-11-nov-2022"]], "2.0.0-beta4 (11-Oct-2022)": [[1, "beta4-11-oct-2022"]], "2.0.0-beta3 (12-Sept-2022)": [[1, "beta3-12-sept-2022"]], "2.0.0-beta2 (27-Jul-2022)": [[1, "beta2-27-jul-2022"]], "2.0.0-beta1 (20-Jun-2022)": [[1, "beta1-20-jun-2022"]], "Devops guide": [[2, "devops-guide"]], "Creating an Artifactory backup repo for your sources": [[3, "creating-an-artifactory-backup-repo-for-your-sources"]], "Backing up third-party sources with Conan": [[4, "backing-up-third-party-sources-with-conan"]], "Configuration overview": [[4, "configuration-overview"]], "Usage": [[4, "usage"]], "Setting up the necessary configs": [[4, "setting-up-the-necessary-configs"]], "Run Conan as normal": [[4, "run-conan-as-normal"]], "Upload the packages": [[4, "upload-the-packages"]], "Creating the backup repository": [[4, "creating-the-backup-repository"]], "Creating and hosting your own ConanCenter binaries": [[5, "creating-and-hosting-your-own-conancenter-binaries"]], "Updating from upstream": [[5, "updating-from-upstream"]], "Managing package metadata files": [[6, "managing-package-metadata-files"]], "Creating metadata in recipes": [[6, "creating-metadata-in-recipes"]], "Creating metadata with hooks": [[6, "creating-metadata-with-hooks"]], "Adding metadata with commands": [[6, "adding-metadata-with-commands"]], "Uploading metadata": [[6, "uploading-metadata"]], "Downloading metadata": [[6, "downloading-metadata"], [87, "downloading-metadata"]], "Removing metadata": [[6, "removing-metadata"]], "test_package as metadata": [[6, "test-package-as-metadata"]], "Save and restore packages from/to the cache": [[7, "save-and-restore-packages-from-to-the-cache"]], "Using ConanCenter packages in production environments": [[8, "using-conancenter-packages-in-production-environments"]], "Repeatability and reproducibility": [[8, "repeatability-and-reproducibility"]], "Service reliability": [[8, "service-reliability"]], "Compliance and security": [[8, "compliance-and-security"]], "Control and customization": [[8, "control-and-customization"]], "Versioning": [[9, "versioning"], [265, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [105, "examples"]], "Conan commands examples": [[12, "conan-commands-examples"]], "Using packages-lists": [[13, "using-packages-lists"]], "Listing packages and downloading them": [[13, "listing-packages-and-downloading-them"]], "Downloading from one remote and uploading to a different remote": [[13, "downloading-from-one-remote-and-uploading-to-a-different-remote"]], "Building and uploading packages": [[13, "building-and-uploading-packages"]], "Removing packages lists": [[13, "removing-packages-lists"]], "ConanFile methods examples": [[14, "conanfile-methods-examples"]], "ConanFile layout() examples": [[15, "conanfile-layout-examples"]], "Declaring the layout when the Conanfile is inside a subfolder": [[16, "declaring-the-layout-when-the-conanfile-is-inside-a-subfolder"]], "Using components and editable packages": [[17, "using-components-and-editable-packages"]], "Declaring the layout when we have multiple subprojects": [[18, "declaring-the-layout-when-we-have-multiple-subprojects"]], "Declaring the layout when creating packages for third-party libraries": [[19, "declaring-the-layout-when-creating-packages-for-third-party-libraries"]], "ConanFile package_info() examples": [[20, "conanfile-package-info-examples"]], "Define components for Conan packages that provide multiple libraries": [[21, "define-components-for-conan-packages-that-provide-multiple-libraries"], [251, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [251, "propagating-environment-or-configuration-information-to-consumers"]], "Configuration files examples": [[23, "configuration-files-examples"]], "Customize your settings: create your settings_user.yml": [[24, "customize-your-settings-create-your-settings-user-yml"]], "Locate the settings_user.yml": [[24, "locate-the-settings-user-yml"]], "Use your new settings": [[24, "use-your-new-settings"]], "Cross-building examples": [[25, "cross-building-examples"]], "Integrating Conan in Android Studio": [[26, "integrating-conan-in-android-studio"]], "Creating a new project": [[26, "creating-a-new-project"]], "Introducing dependencies with Conan": [[26, "introducing-dependencies-with-conan"]], "conanfile.txt": [[26, "conanfile-txt"], [142, "conanfile-txt"]], "build.gradle": [[26, "build-gradle"]], "conan_android_toolchain.cmake": [[26, "conan-android-toolchain-cmake"]], "CMakeLists.txt": [[26, "cmakelists-txt"]], "Building the application": [[26, "building-the-application"]], "Cross building to Android with the NDK": [[27, "cross-building-to-android-with-the-ndk"]], "Read more": [[27, "read-more"], [107, "read-more"], [112, "read-more"], [142, "read-more"], [155, "read-more"], [162, "read-more"], [217, "read-more"], [238, "read-more"], [240, "read-more"], [241, "read-more"], [242, "read-more"], [243, "read-more"], [244, "read-more"], [245, "read-more"], [247, "read-more"], [248, "read-more"], [249, "read-more"], [250, "read-more"], [251, "read-more"], [252, "read-more"], [256, "read-more"], [257, "read-more"], [258, "read-more"], [259, "read-more"], [267, "read-more"]], "Developer tools and flows": [[28, "developer-tools-and-flows"]], "Debugging and stepping into dependencies": [[29, "debugging-and-stepping-into-dependencies"]], "Building from source": [[29, "building-from-source"]], "Step into a dependency with Visual Studio": [[29, "step-into-a-dependency-with-visual-studio"]], "Conan extensions examples": [[30, "conan-extensions-examples"]], "Custom command: Clean old recipe and package revisions": [[31, "custom-command-clean-old-recipe-and-package-revisions"]], "Locate the command": [[31, "locate-the-command"]], "Run it": [[31, "run-it"], [36, "run-it"]], "Code tour": [[31, "code-tour"], [36, "code-tour"]], "parser": [[31, "parser"]], "User input and user output": [[31, "user-input-and-user-output"]], "Conan public API": [[31, "conan-public-api"]], "Custom commands": [[32, "custom-commands"], [155, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [157, "custom-deployers"]], "Creating a Conan-agnostic deploy of dependencies for developer use": [[35, "creating-a-conan-agnostic-deploy-of-dependencies-for-developer-use"]], "Copy sources from all your dependencies": [[36, "copy-sources-from-all-your-dependencies"]], "Locate the deployer": [[36, "locate-the-deployer"]], "deploy()": [[36, "deploy"], [124, "deploy"]], "Graph examples": [[37, "graph-examples"]], "Use a CMake macro packaged in a dependency": [[38, "use-a-cmake-macro-packaged-in-a-dependency"]], "Depending on same version of a tool-require with different options": [[39, "depending-on-same-version-of-a-tool-require-with-different-options"]], "Depending on different versions of the same tool-require": [[40, "depending-on-different-versions-of-the-same-tool-require"]], "Use cmake modules inside a tool_requires transparently": [[41, "use-cmake-modules-inside-a-tool-requires-transparently"]], "Using the same requirement as a requires and as a tool_requires": [[42, "using-the-same-requirement-as-a-requires-and-as-a-tool-requires"]], "Conan recipe tools examples": [[43, "conan-recipe-tools-examples"]], "tools.autotools": [[44, "tools-autotools"]], "Build a simple Autotools project using Conan": [[45, "build-a-simple-autotools-project-using-conan"]], "Building on Linux and macOS": [[45, "building-on-linux-and-macos"]], "tools.cmake": [[46, "tools-cmake"]], "CMakeToolchain: Building your project using CMakePresets": [[47, "cmaketoolchain-building-your-project-using-cmakepresets"]], "Generating the toolchain": [[47, "generating-the-toolchain"]], "Building the project using CMakePresets": [[47, "building-the-project-using-cmakepresets"]], "CMakeToolchain: Extending your CMakePresets with Conan generated ones": [[48, "cmaketoolchain-extending-your-cmakepresets-with-conan-generated-ones"]], "CMakeToolchain: Inject arbitrary CMake variables into dependencies": [[49, "cmaketoolchain-inject-arbitrary-cmake-variables-into-dependencies"]], "tools.files": [[50, "tools-files"]], "Patching sources": [[51, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[51, "patching-using-replace-in-file"]], "in source() method": [[51, "in-source-method"]], "in build() method": [[51, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[51, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[51, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[52, "tools-google"]], "Build a simple Bazel project using Conan": [[53, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[54, "tools-meson"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Capturing Git scm information": [[56, "capturing-git-scm-information"]], "Credentials management": [[56, "credentials-management"]], "Conan 2.0 - C and C++ Package Manager Documentation": [[57, "conan-2-0-c-and-c-package-manager-documentation"]], "Install": [[58, "install"]], "Install with pip (recommended)": [[58, "install-with-pip-recommended"]], "Known installation issues with pip": [[58, "known-installation-issues-with-pip"]], "Update": [[58, "update"]], "Install with pipx": [[58, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[58, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[58, "install-from-source"]], "Integrations": [[59, "integrations"]], "android_logo Android": [[60, "android-logo-android"]], "autotools_logo Autotools": [[61, "autotools-logo-autotools"]], "bazel_logo Bazel": [[62, "bazel-logo-bazel"]], "clion_logo CLion": [[63, "clion-logo-clion"]], "Introduction": [[63, "introduction"], [70, "introduction"], [175, "introduction"]], "Installing the plugin": [[63, "installing-the-plugin"]], "Configuring the plugin": [[63, "configuring-the-plugin"]], "Using the plugin": [[63, "using-the-plugin"]], "cmake_logo CMake": [[64, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[65, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[65, "artifactory-build-info"]], "How to install the build info extension commands": [[65, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[65, "generating-a-build-info"]], "gnu_make_logo Makefile": [[66, "gnu-make-logo-makefile"]], "meson_logo Meson": [[67, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[68, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[69, "xcode-logo-xcode"]], "Open Source": [[70, "open-source"]], "Decentralized package manager": [[70, "decentralized-package-manager"]], "Binary management": [[70, "binary-management"]], "All platforms, all build systems and compilers": [[70, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[70, "stable"]], "Community": [[70, "community"]], "Navigating the documentation": [[70, "navigating-the-documentation"]], "Knowledge": [[71, "knowledge"]], "Cheat sheet": [[72, "cheat-sheet"]], "FAQ": [[73, "faq"]], "Troubleshooting": [[73, "troubleshooting"]], "ERROR: Missing prebuilt package": [[73, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[73, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[73, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[73, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[74, "core-guidelines"]], "Good practices": [[74, "good-practices"]], "Forbidden practices": [[74, "forbidden-practices"]], "Videos": [[75, "videos"]], "Reference": [[76, "reference"], [180, "reference"], [185, "reference"], [186, "reference"], [187, "reference"], [188, "reference"], [191, "reference"], [192, "reference"], [193, "reference"], [194, "reference"], [203, "reference"], [204, "reference"], [205, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [213, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [222, "reference"], [224, "reference"], [231, "reference"], [231, "id4"], [231, "id6"], [231, "id7"], [231, "id8"], [231, "id9"], [231, "id10"], [231, "id11"], [231, "id12"]], "The binary model": [[77, "the-binary-model"]], "Customizing the binary compatibility": [[78, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[78, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[78, "information-erasure-in-package-id-method"]], "The compatibility() method": [[78, "the-compatibility-method"]], "The compatibility.py plugin": [[78, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[78, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[78, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[78, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[78, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[79, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[79, "non-embed-mode"]], "Embed mode": [[79, "embed-mode"]], "Extending the binary model": [[80, "extending-the-binary-model"]], "Custom settings": [[80, "custom-settings"]], "Custom options": [[80, "custom-options"]], "Settings vs options vs conf": [[80, "settings-vs-options-vs-conf"]], "Custom configuration": [[80, "custom-configuration"]], "Cross build target settings": [[80, "cross-build-target-settings"]], "How the package_id is computed": [[81, "how-the-package-id-is-computed"]], "Commands": [[82, "commands"]], "Command formatters": [[82, "command-formatters"]], "conan build": [[83, "conan-build"], [262, "conan-build"]], "conan cache": [[84, "conan-cache"]], "conan cache path": [[84, "conan-cache-path"]], "conan cache clean": [[84, "conan-cache-clean"]], "conan cache check-integrity": [[84, "conan-cache-check-integrity"]], "conan cache backup-upload": [[84, "conan-cache-backup-upload"]], "conan cache save": [[84, "conan-cache-save"]], "conan cache restore": [[84, "conan-cache-restore"]], "conan config": [[85, "conan-config"]], "conan config home": [[85, "conan-config-home"]], "conan config install": [[85, "conan-config-install"]], "conan config list": [[85, "conan-config-list"]], "conan config show": [[85, "conan-config-show"]], "conan create": [[86, "conan-create"]], "Using conan create with build requirements": [[86, "using-conan-create-with-build-requirements"]], "Conan create output": [[86, "conan-create-output"]], "conan download": [[87, "conan-download"]], "conan editable": [[88, "conan-editable"]], "conan editable add": [[88, "conan-editable-add"]], "conan editable remove": [[88, "conan-editable-remove"]], "conan editable list": [[88, "conan-editable-list"]], "conan export": [[89, "conan-export"]], "Output Formats": [[89, "output-formats"]], "conan export-pkg": [[90, "conan-export-pkg"], [262, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[91, "formatter-graph-info-json"]], "conan graph": [[92, "conan-graph"]], "conan graph build-order": [[93, "conan-graph-build-order"]], "conan graph build-order-merge": [[94, "conan-graph-build-order-merge"]], "conan graph explain": [[95, "conan-graph-explain"]], "conan graph info": [[96, "conan-graph-info"]], "conan inspect": [[97, "conan-inspect"]], "conan install": [[98, "conan-install"], [262, "conan-install"]], "Conanfile path or \u2013requires": [[98, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[98, "profiles-settings-options-conf"]], "Generators and deployers": [[98, "generators-and-deployers"]], "Name, version, user, channel": [[98, "name-version-user-channel"]], "Lockfiles": [[98, "lockfiles"], [243, "lockfiles"], [267, "lockfiles"]], "conan list": [[99, "conan-list"]], "Listing recipe references": [[99, "listing-recipe-references"]], "Listing recipe revisions": [[99, "listing-recipe-revisions"]], "Listing package IDs": [[99, "listing-package-ids"]], "Listing package revisions": [[99, "listing-package-revisions"]], "Listing graph artifacts": [[99, "listing-graph-artifacts"]], "List json output format": [[99, "list-json-output-format"]], "List html output format": [[99, "list-html-output-format"]], "List compact output format": [[99, "list-compact-output-format"]], "conan lock": [[100, "conan-lock"]], "conan lock add": [[101, "conan-lock-add"]], "conan lock create": [[102, "conan-lock-create"]], "conan lock merge": [[103, "conan-lock-merge"]], "conan lock remove": [[104, "conan-lock-remove"]], "conan new": [[105, "conan-new"], [105, "id1"]], "Custom templates": [[105, "custom-templates"]], "conan profile": [[106, "conan-profile"]], "conan profile detect": [[106, "conan-profile-detect"]], "conan profile list": [[106, "conan-profile-list"]], "conan profile path": [[106, "conan-profile-path"]], "conan profile show": [[106, "conan-profile-show"]], "conan remote": [[107, "conan-remote"]], "conan remote add": [[107, "conan-remote-add"]], "conan remote auth": [[107, "conan-remote-auth"]], "conan remote disable": [[107, "conan-remote-disable"]], "conan remote enable": [[107, "conan-remote-enable"]], "conan remote list": [[107, "conan-remote-list"]], "conan remote list-users": [[107, "conan-remote-list-users"]], "conan remote login": [[107, "conan-remote-login"]], "conan remote logout": [[107, "conan-remote-logout"]], "conan remote remove": [[107, "conan-remote-remove"]], "conan remote rename": [[107, "conan-remote-rename"]], "conan remote set-user": [[107, "conan-remote-set-user"]], "conan remote update": [[107, "conan-remote-update"]], "conan remove": [[108, "conan-remove"]], "conan search": [[109, "conan-search"]], "conan source": [[110, "conan-source"], [262, "conan-source"]], "conan test": [[111, "conan-test"]], "conan upload": [[112, "conan-upload"]], "conan version": [[113, "conan-version"]], "Conan Server": [[114, "conan-server"]], "Configuration": [[114, "configuration"]], "Server Parameters": [[114, "server-parameters"]], "Permissions Parameters": [[114, "permissions-parameters"]], "Authentication": [[114, "authentication"]], "Create Your Own Custom Authenticator": [[114, "create-your-own-custom-authenticator"]], "Authorizations": [[114, "authorizations"]], "Create Your Own Custom Authorizer": [[114, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[114, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[114, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[114, "running-conan-server-using-apache"]], "conanfile.py": [[115, "conanfile-py"]], "Attributes": [[116, "attributes"], [208, "attributes"], [217, "attributes"], [222, "attributes"], [223, "attributes"]], "Package reference": [[116, "package-reference"]], "name": [[116, "name"]], "version": [[116, "version"]], "user": [[116, "user"]], "channel": [[116, "channel"]], "Metadata": [[116, "metadata"]], "description": [[116, "description"]], "license": [[116, "license"]], "author": [[116, "author"]], "topics": [[116, "topics"]], "homepage": [[116, "homepage"]], "url": [[116, "url"]], "Requirements": [[116, "requirements"]], "requires": [[116, "requires"]], "tool_requires": [[116, "tool-requires"]], "build_requires": [[116, "build-requires"]], "test_requires": [[116, "test-requires"], [120, "test-requires"]], "python_requires": [[116, "python-requires"], [264, "python-requires"]], "python_requires_extend": [[116, "python-requires-extend"]], "Sources": [[116, "sources"]], "exports": [[116, "exports"]], "exports_sources": [[116, "exports-sources"]], "conan_data": [[116, "conan-data"]], "source_buildenv": [[116, "source-buildenv"]], "Binary model": [[116, "binary-model"]], "package_type": [[116, "package-type"]], "settings": [[116, "settings"]], "options": [[116, "options"]], "default_options": [[116, "default-options"]], "default_build_options": [[116, "default-build-options"]], "options_description": [[116, "options-description"]], "info": [[116, "info"]], "package_id_{embed,non_embed,unknown}_mode": [[116, "package-id-embed-non-embed-unknown-mode"]], "Build": [[116, "build"]], "generators": [[116, "generators"]], "build_policy": [[116, "build-policy"]], "win_bash": [[116, "win-bash"]], "win_bash_run": [[116, "win-bash-run"]], "Folders and layout": [[116, "folders-and-layout"]], "source_folder": [[116, "source-folder"]], "export_sources_folder": [[116, "export-sources-folder"]], "build_folder": [[116, "build-folder"]], "package_folder": [[116, "package-folder"]], "recipe_folder": [[116, "recipe-folder"]], "recipe_metadata_folder": [[116, "recipe-metadata-folder"]], "package_metadata_folder": [[116, "package-metadata-folder"]], "no_copy_source": [[116, "no-copy-source"]], "Layout": [[116, "layout"]], "folders": [[116, "folders"]], "cpp": [[116, "cpp"]], "layouts": [[116, "layouts"]], "Package information for consumers": [[116, "package-information-for-consumers"]], "cpp_info": [[116, "cpp-info"]], "buildenv_info": [[116, "buildenv-info"]], "runenv_info": [[116, "runenv-info"]], "conf_info": [[116, "conf-info"], [132, "conf-info"]], "deprecated": [[116, "deprecated"]], "provides": [[116, "provides"]], "Other": [[116, "other"]], "dependencies": [[116, "dependencies"]], "conf": [[116, "conf"], [180, "conf"], [182, "conf"], [185, "conf"], [188, "conf"], [198, "conf"], [205, "conf"], [207, "conf"], [210, "conf"], [212, "conf"], [213, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [222, "conf"], [223, "conf"], [224, "conf"]], "Output": [[116, "output"]], "Output contents": [[116, "output-contents"]], "revision_mode": [[116, "revision-mode"]], "upload_policy": [[116, "upload-policy"]], "required_conan_version": [[116, "required-conan-version"]], "implements": [[116, "implements"]], "alias": [[116, "alias"]], "Methods": [[117, "methods"]], "build()": [[118, "build"]], "build_id()": [[119, "build-id"]], "build_requirements()": [[120, "build-requirements"]], "tool_requires()": [[120, "tool-requires"]], "": [[120, "host-version"]], "compatibility()": [[121, "compatibility"]], "config_options()": [[122, "config-options"]], "Available automatic implementations": [[122, "available-automatic-implementations"], [123, "available-automatic-implementations"], [131, "available-automatic-implementations"]], "auto_shared_fpic": [[122, "auto-shared-fpic"], [123, "auto-shared-fpic"]], "configure()": [[123, "configure"]], "export()": [[125, "export"]], "export_sources()": [[126, "export-sources"]], "generate()": [[127, "generate"]], "self.dependencies": [[127, "self-dependencies"]], "Dependencies interface": [[127, "dependencies-interface"]], "Iterating dependencies": [[127, "iterating-dependencies"]], "Dependencies cpp_info interface": [[127, "dependencies-cpp-info-interface"]], "init()": [[128, "init"]], "layout()": [[129, "layout"]], "self.folders": [[129, "self-folders"], [263, "self-folders"]], "self.cpp": [[129, "self-cpp"], [263, "self-cpp"]], "Environment variables and configuration": [[129, "environment-variables-and-configuration"]], "package()": [[130, "package"]], "package_id()": [[131, "package-id"]], "auto_header_only": [[131, "auto-header-only"]], "Information erasure": [[131, "information-erasure"]], "Partial information erasure": [[131, "partial-information-erasure"]], "Adding information": [[131, "adding-information"]], "package_info()": [[132, "package-info"]], "cpp_info: Library and build information": [[132, "cpp-info-library-and-build-information"]], "Properties": [[132, "properties"], [187, "properties"], [208, "properties"], [210, "properties"], [211, "properties"]], "Components": [[132, "components"]], "buildenv_info, runenv_info": [[132, "buildenv-info-runenv-info"]], "requirements()": [[133, "requirements"]], "Requirement traits": [[133, "requirement-traits"]], "headers": [[133, "headers"]], "libs": [[133, "libs"]], "build": [[133, "build"]], "run": [[133, "run"]], "visible": [[133, "visible"]], "transitive_headers": [[133, "transitive-headers"]], "transitive_libs": [[133, "transitive-libs"]], "test": [[133, "test"]], "package_id_mode": [[133, "package-id-mode"]], "force": [[133, "force"]], "override": [[133, "override"]], "direct": [[133, "direct"]], "package_type trait inferring": [[133, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[133, "default-traits-for-each-kind-of-requires"]], "set_name()": [[134, "set-name"]], "set_version()": [[135, "set-version"]], "source()": [[136, "source"]], "Source caching": [[136, "source-caching"]], "Forced retrieval of sources": [[136, "forced-retrieval-of-sources"]], "system_requirements()": [[137, "system-requirements"]], "Collecting system requirements": [[137, "collecting-system-requirements"]], "test()": [[138, "test"]], "validate()": [[139, "validate"]], "validate_build()": [[140, "validate-build"]], "Running and output": [[141, "running-and-output"]], "Output text from recipes": [[141, "output-text-from-recipes"]], "Running commands": [[141, "running-commands"]], "[requires]": [[142, "requires"]], "[tool_requires]": [[142, "tool-requires"], [147, "tool-requires"]], "[test_requires]": [[142, "test-requires"]], "[generators]": [[142, "generators"]], "[options]": [[142, "options"], [147, "options"]], "[layout]": [[142, "layout"]], "Configuration files": [[143, "configuration-files"]], ".conanrc": [[144, "conanrc"]], "credentials.json": [[145, "credentials-json"]], "global.conf": [[146, "global-conf"]], "Introduction to configuration": [[146, "introduction-to-configuration"]], "User/Tools configurations": [[146, "user-tools-configurations"]], "Configuration file template": [[146, "configuration-file-template"]], "Configuration data types": [[146, "configuration-data-types"]], "Configuration data operators": [[146, "configuration-data-operators"]], "Configuration patterns": [[146, "configuration-patterns"]], "Information about built-in confs": [[146, "information-about-built-in-confs"]], "Networking confs": [[146, "networking-confs"]], "Configuration of client certificates": [[146, "configuration-of-client-certificates"]], "UX confs": [[146, "ux-confs"]], "Skip warnings": [[146, "skip-warnings"]], "profiles": [[147, "profiles"]], "Introduction to profiles": [[147, "introduction-to-profiles"]], "Profile sections": [[147, "profile-sections"]], "[settings]": [[147, "settings"]], "[system_tools] (DEPRECATED)": [[147, "system-tools-deprecated"]], "[buildenv]": [[147, "buildenv"]], "[runenv]": [[147, "runenv"]], "[conf]": [[147, "conf"]], "[replace_requires]": [[147, "replace-requires"]], "[replace_tool_requires]": [[147, "replace-tool-requires"]], "[platform_requires]": [[147, "platform-requires"]], "[platform_tool_requires]": [[147, "platform-tool-requires"]], "Profile rendering": [[147, "profile-rendering"]], "Profile patterns": [[147, "profile-patterns"]], "Profile includes": [[147, "profile-includes"]], "remotes.json": [[148, "remotes-json"]], "settings.yml": [[149, "settings-yml"]], "Operating systems": [[149, "operating-systems"]], "Compilers": [[149, "compilers"]], "msvc": [[149, "msvc"]], "intel-cc": [[149, "intel-cc"]], "Architectures": [[149, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[149, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[149, "customizing-settings"]], "Adding new settings": [[149, "adding-new-settings"]], "Adding new sub-settings": [[149, "adding-new-sub-settings"]], "Add new values": [[149, "add-new-values"]], "settings_user.yml": [[149, "settings-user-yml"]], "source_credentials.json": [[150, "source-credentials-json"]], "Environment variables": [[151, "environment-variables"]], "CONAN_HOME": [[151, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[151, "conan-default-profile"]], "Remote login variables": [[151, "remote-login-variables"]], "Terminal color variables": [[151, "terminal-color-variables"]], "Logging": [[151, "logging"]], "Extensions": [[152, "extensions"]], "Binary compatibility": [[153, "binary-compatibility"]], "Command wrapper": [[154, "command-wrapper"], [271, "command-wrapper"]], "Location and naming": [[155, "location-and-naming"]], "Scoping": [[155, "scoping"]], "Decorators": [[155, "decorators"]], "conan_command(group=None, formatters=None)": [[155, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[155, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[155, "argument-definition-and-parsing"]], "Formatters": [[155, "formatters"]], "Commands parameters": [[155, "commands-parameters"]], "Custom Conan generators": [[156, "custom-conan-generators"]], "Custom generators as python_requires": [[156, "custom-generators-as-python-requires"]], "Using global custom generators": [[156, "using-global-custom-generators"]], "Deployers": [[157, "deployers"]], "Built-in deployers": [[157, "built-in-deployers"]], "full_deploy": [[157, "full-deploy"]], "direct_deploy": [[157, "direct-deploy"]], "configuration": [[157, "configuration"], [187, "configuration"]], "Hooks": [[158, "hooks"]], "Hook structure": [[158, "hook-structure"]], "Importing from a module": [[158, "importing-from-a-module"]], "Hook interface": [[158, "hook-interface"]], "Storage, activation and sharing": [[158, "storage-activation-and-sharing"]], "Official Hooks": [[158, "official-hooks"]], "Package signing": [[159, "package-signing"], [271, "package-signing"]], "Profile plugin": [[160, "profile-plugin"]], "Python API": [[161, "python-api"]], "Conan API Reference": [[162, "conan-api-reference"]], "Config API": [[163, "config-api"]], "Download API": [[164, "download-api"]], "Export API": [[165, "export-api"]], "Graph API": [[166, "graph-api"]], "Install API": [[167, "install-api"]], "List API": [[168, "list-api"]], "New API": [[169, "new-api"]], "Profiles API": [[170, "profiles-api"]], "Remotes API": [[171, "remotes-api"]], "Remove API": [[172, "remove-api"]], "Search API": [[173, "search-api"]], "Upload API": [[174, "upload-api"]], "Python requires": [[175, "python-requires"]], "Extending base classes": [[175, "extending-base-classes"]], "Reusing files": [[175, "reusing-files"]], "Testing python-requires": [[175, "testing-python-requires"]], "Effect in package_id": [[175, "effect-in-package-id"]], "Resolution of python_requires": [[175, "resolution-of-python-requires"]], "Recipe tools": [[176, "recipe-tools"]], "conan.tools.android": [[177, "conan-tools-android"]], "android_abi()": [[177, "android-abi"]], "conan.tools.apple": [[178, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[179, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[179, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[179, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[179, "conan-tools-apple-xcrun"]], "XcodeBuild": [[180, "xcodebuild"]], "XcodeDeps": [[181, "xcodedeps"]], "Additional variables defined": [[181, "additional-variables-defined"]], "Components support": [[181, "components-support"]], "Custom configurations": [[181, "custom-configurations"], [213, "custom-configurations"]], "XcodeToolchain": [[182, "xcodetoolchain"]], "conan.tools.build": [[183, "conan-tools-build"]], "Building": [[183, "building"]], "conan.tools.build.build_jobs()": [[183, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[183, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[183, "conan-tools-build-can-run"]], "Cppstd": [[183, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[183, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[183, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[183, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[183, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[183, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[183, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[184, "conan-tools-cmake"]], "CMake": [[185, "cmake"]], "cmake_layout": [[186, "cmake-layout"]], "Multi-setting/option cmake_layout": [[186, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[187, "cmakedeps"]], "Generated files": [[187, "generated-files"], [188, "generated-files"], [193, "generated-files"], [194, "generated-files"], [204, "generated-files"], [205, "generated-files"], [206, "generated-files"], [208, "generated-files"], [211, "generated-files"], [212, "generated-files"], [217, "generated-files"], [221, "generated-files"]], "Customization": [[187, "customization"], [188, "customization"], [204, "customization"], [205, "customization"], [206, "customization"], [208, "customization"], [211, "customization"], [217, "customization"], [220, "customization"], [221, "customization"], [222, "customization"], [224, "customization"]], "build_context_activated": [[187, "build-context-activated"], [208, "build-context-activated"], [211, "build-context-activated"]], "build_context_suffix": [[187, "build-context-suffix"], [208, "build-context-suffix"]], "build_context_build_modules": [[187, "build-context-build-modules"]], "check_components_exist": [[187, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[187, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[187, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[187, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[188, "cmaketoolchain"]], "preprocessor_definitions": [[188, "preprocessor-definitions"], [217, "preprocessor-definitions"]], "cache_variables": [[188, "cache-variables"]], "variables": [[188, "variables"]], "user_presets_path": [[188, "user-presets-path"]], "Extra compilation flags": [[188, "extra-compilation-flags"]], "presets_prefix": [[188, "presets-prefix"]], "Using a custom toolchain file": [[188, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[188, "extending-and-advanced-customization"]], "Customizing the content blocks": [[188, "customizing-the-content-blocks"]], "Cross building": [[188, "cross-building"]], "conan.tools.CppInfo": [[189, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[189, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[190, "conan-tools-env"]], "Environment": [[191, "environment"]], "Variable declaration": [[191, "variable-declaration"]], "Composition": [[191, "composition"]], "Obtaining environment variables": [[191, "obtaining-environment-variables"]], "Environment definition": [[191, "environment-definition"]], "EnvVars": [[192, "envvars"]], "Creating environment files": [[192, "creating-environment-files"]], "Running with environment files": [[192, "running-with-environment-files"]], "Applying the environment variables": [[192, "applying-the-environment-variables"]], "Iterating the variables": [[192, "iterating-the-variables"]], "VirtualBuildEnv": [[193, "virtualbuildenv"]], "VirtualRunEnv": [[194, "virtualrunenv"]], "conan.tools.files": [[195, "conan-tools-files"]], "conan.tools.files basic operations": [[196, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[196, "conan-tools-files-copy"]], "conan.tools.files.load()": [[196, "conan-tools-files-load"]], "conan.tools.files.save()": [[196, "conan-tools-files-save"]], "conan.tools.files.rename()": [[196, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[196, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[196, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[196, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[196, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[196, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[196, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[196, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[196, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[196, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[197, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[197, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[197, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[197, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[198, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[198, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[198, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[198, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[199, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[200, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[200, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[200, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[200, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[201, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[201, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[201, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[201, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[202, "conan-tools-gnu"]], "Autotools": [[203, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[203, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[203, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[203, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[204, "autotoolsdeps"]], "AutotoolsToolchain": [[205, "autotoolstoolchain"]], "Customizing the environment": [[205, "customizing-the-environment"], [223, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[205, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[206, "makedeps"]], "Flags": [[206, "flags"]], "PkgConfig": [[207, "pkgconfig"]], "PkgConfigDeps": [[208, "pkgconfigdeps"]], "Naming": [[208, "naming"], [211, "naming"]], "conan.tools.google": [[209, "conan-tools-google"]], "Bazel": [[210, "bazel"]], "BazelDeps": [[211, "bazeldeps"]], "BazelToolchain": [[212, "bazeltoolchain"]], "conan.tools.intel": [[213, "conan-tools-intel"]], "IntelCC": [[213, "intelcc"]], "conan.tools.layout": [[214, "conan-tools-layout"]], "Predefined layouts": [[214, "predefined-layouts"]], "basic_layout": [[214, "basic-layout"]], "conan.tools.meson": [[215, "conan-tools-meson"]], "Meson": [[216, "meson"]], "MesonToolchain": [[217, "mesontoolchain"]], "conan_meson_native.ini": [[217, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[217, "conan-meson-cross-ini"]], "Default directories": [[217, "default-directories"]], "project_options": [[217, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[217, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[217, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[217, "objective-c-arguments"]], "conan.tools.microsoft": [[218, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[219, "conan-tools-microsoft-visual"]], "check_min_vs": [[219, "check-min-vs"]], "msvc_runtime_flag": [[219, "msvc-runtime-flag"]], "is_msvc": [[219, "is-msvc"]], "is_msvc_static_runtime": [[219, "is-msvc-static-runtime"]], "msvs_toolset": [[219, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[219, "conan-tools-microsoft-subsystems"]], "unix_path": [[219, "unix-path"]], "MSBuild": [[220, "msbuild"]], "attributes": [[220, "attributes"]], "MSBuildDeps": [[221, "msbuilddeps"]], "Requirement traits support": [[221, "requirement-traits-support"]], "Configurations": [[221, "configurations"]], "Dependencies": [[221, "dependencies"]], "MSBuildToolchain": [[222, "msbuildtoolchain"]], "NMakeDeps": [[223, "nmakedeps"]], "NMakeToolchain": [[223, "nmaketoolchain"]], "constructor": [[223, "constructor"]], "VCVars": [[224, "vcvars"]], "vs_layout": [[225, "vs-layout"]], "conan.tools.scm": [[226, "conan-tools-scm"]], "Git": [[227, "git"]], "Version": [[228, "version"]], "conan.tools.scons": [[229, "conan-tools-scons"]], "SConsDeps": [[229, "sconsdeps"]], "conan.tools.system": [[230, "conan-tools-system"]], "conan.tools.system.package_manager": [[231, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[231, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[231, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[231, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[231, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[231, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[231, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[231, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[231, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[231, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[231, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[231, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[231, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[232, "tutorial"]], "Working with Conan repositories": [[233, "working-with-conan-repositories"]], "Table of contents": [[233, null], [239, null], [246, null], [253, null], [265, null]], "Contributing to Conan Center": [[234, "contributing-to-conan-center"]], "Setting up a Conan remote": [[235, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[236, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[236, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[236, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[237, "setting-up-a-conan-server"]], "Uploading Packages": [[238, "uploading-packages"]], "Consuming packages": [[239, "consuming-packages"]], "Build a simple CMake project using Conan": [[240, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[241, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[241, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[241, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[242, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[242, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[242, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[242, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[242, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[243, "introduction-to-versioning"]], "Version ranges": [[243, "version-ranges"], [269, "version-ranges"]], "Revisions": [[243, "revisions"], [268, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[244, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[244, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[244, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[244, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[245, "using-build-tools-as-conan-packages"]], "Creating packages": [[246, "creating-packages"]], "Add dependencies to packages": [[247, "add-dependencies-to-packages"]], "Build packages: the build() method": [[248, "build-packages-the-build-method"]], "Build and run tests for your project": [[248, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[248, "changes-introduced-in-the-recipe"], [251, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[248, "changes-introduced-in-the-library-sources"], [251, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[248, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[248, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[249, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[249, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[249, "c-libraries"]], "Header-only libraries": [[249, "header-only-libraries"]], "Create your first Conan package": [[250, "create-your-first-conan-package"]], "A note about the Conan cache": [[250, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[251, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[251, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[251, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[251, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[252, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[252, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[252, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[252, "using-the-conandata-yml-file"]], "Other types of packages": [[253, "other-types-of-packages"]], "Header-only packages": [[254, "header-only-packages"]], "Header-only library with tests": [[254, "header-only-library-with-tests"]], "Package prebuilt binaries": [[255, "package-prebuilt-binaries"]], "Locally building binaries": [[255, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[255, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[255, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[256, "tool-requires-packages"]], "A simple tool require recipe": [[256, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[256, "removing-settings-in-package-id"]], "Package files: the package() method": [[257, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[257, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[257, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[257, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[258, "preparing-the-build"]], "Testing Conan packages": [[259, "testing-conan-packages"]], "Developing packages locally": [[260, "developing-packages-locally"]], "Packages in editable mode": [[261, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[261, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[261, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[261, "working-with-editable-packages"]], "Building editable dependencies": [[261, "building-editable-dependencies"]], "Revert the editable mode": [[261, "revert-the-editable-mode"]], "Package Development Flow": [[262, "package-development-flow"]], "Understanding the Conan Package layout": [[263, "understanding-the-conan-package-layout"]], "cpp.package": [[263, "cpp-package"]], "cpp.source and cpp.build": [[263, "cpp-source-and-cpp-build"]], "Other important Conan features": [[264, "other-important-conan-features"]], "Packages lists": [[264, "packages-lists"]], "Removing unused packages from the cache": [[264, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[266, "dependencies-conflicts"]], "Resolving conflicts": [[266, "resolving-conflicts"]], "Overriding options": [[266, "overriding-options"]], "Multi-configuration lockfiles": [[267, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[267, "evolving-lockfiles"]], "Creating different revisions": [[268, "creating-different-revisions"]], "Using revisions": [[268, "using-revisions"]], "Uploading revisions": [[268, "uploading-revisions"]], "Package revisions": [[268, "package-revisions"]], "Semantic versioning": [[269, "semantic-versioning"]], "Range expressions": [[269, "range-expressions"]], "Versions": [[270, "versions"]], "Automating versions": [[270, "automating-versions"]], "Requiring the new versions": [[270, "requiring-the-new-versions"]], "What\u2019s new in Conan 2.0": [[271, "what-s-new-in-conan-2-0"]], "Conan 2.0 migration guide": [[271, "conan-2-0-migration-guide"]], "New graph model": [[271, "new-graph-model"]], "New public Python API": [[271, "new-public-python-api"]], "New build system integrations": [[271, "new-build-system-integrations"]], "New custom user commands": [[271, "new-custom-user-commands"]], "New CLI": [[271, "new-cli"]], "New deployers": [[271, "new-deployers"]], "New package_id": [[271, "new-package-id"]], "compatibility.py": [[271, "compatibility-py"]], "New lockfiles": [[271, "new-lockfiles"]], "New configuration and environment management": [[271, "new-configuration-and-environment-management"]], "Multi-revision cache": [[271, "multi-revision-cache"]], "New extensions plugins": [[271, "new-extensions-plugins"]], "Profile checker": [[271, "profile-checker"]], "Package immutability optimizations": [[271, "package-immutability-optimizations"]]}, "indexentries": {"append() (conf method)": [[132, "conans.model.conf.Conf.append"]], "define() (conf method)": [[132, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[132, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[132, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[132, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[132, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[162, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[163, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[164, "conan.api.subapi.download.DownloadAPI"]], "exportapi (class in conan.api.subapi.export)": [[165, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[166, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[167, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[168, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[168, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[169, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[170, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[171, "conan.api.subapi.remotes.RemotesAPI"]], "list() (remotesapi method)": [[171, "conan.api.subapi.remotes.RemotesAPI.list"]], "removeapi (class in conan.api.subapi.remove)": [[172, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[173, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[174, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.prepare"]], "android_abi() (in module conan.tools.android)": [[177, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[179, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[179, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[179, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[179, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[179, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[179, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[179, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[179, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[179, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[179, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[179, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[179, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[179, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[183, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[185, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[186, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[191, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[191, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[191, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[191, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[191, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[191, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[191, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[191, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[191, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[191, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[192, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[196, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[196, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[203, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[206, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[206, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[207, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[207, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[208, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[208, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[208, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[210, "conan.tools.google.Bazel"]], "build() (bazel method)": [[210, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[210, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[211, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[211, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[211, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[212, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[212, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[213, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[213, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[213, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[213, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[213, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[213, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[216, "conan.tools.meson.Meson"]], "build() (meson method)": [[216, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[216, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[216, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[216, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[217, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[217, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[219, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[220, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[221, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[221, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[222, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[222, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[224, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[225, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[227, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[227, "conan.tools.scm.git.Git.checkout"]], "clone() (git method)": [[227, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[227, "conan.tools.scm.git.Git.commit_in_remote"]], "fetch_commit() (git method)": [[227, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[227, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[227, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[227, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[227, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[227, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[228, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[231, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[231, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[231, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[231, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[231, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[231, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[231, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[231, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file diff --git a/2.0/tutorial.html b/2.0/tutorial.html index 09ebb0b9a86..21191d98391 100644 --- a/2.0/tutorial.html +++ b/2.0/tutorial.html @@ -5,7 +5,7 @@ Tutorial — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories.html b/2.0/tutorial/conan_repositories.html index 9f3db110c52..241a5fd7469 100644 --- a/2.0/tutorial/conan_repositories.html +++ b/2.0/tutorial/conan_repositories.html @@ -5,7 +5,7 @@ Working with Conan repositories — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories/conan_center.html b/2.0/tutorial/conan_repositories/conan_center.html index 22b9f3bf226..3938ff174ac 100644 --- a/2.0/tutorial/conan_repositories/conan_center.html +++ b/2.0/tutorial/conan_repositories/conan_center.html @@ -5,7 +5,7 @@ Contributing to Conan Center — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories/setting_up_conan_remotes.html b/2.0/tutorial/conan_repositories/setting_up_conan_remotes.html index b19973be51d..3202f7d4e04 100644 --- a/2.0/tutorial/conan_repositories/setting_up_conan_remotes.html +++ b/2.0/tutorial/conan_repositories/setting_up_conan_remotes.html @@ -5,7 +5,7 @@ Setting up a Conan remote — conan 2.0.17 documentation - + @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html b/2.0/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html index 2176627849f..8c0701a1d26 100644 --- a/2.0/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html +++ b/2.0/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html @@ -5,7 +5,7 @@ Artifactory Community Edition for C/C++ — conan 2.0.17 documentation - + @@ -191,7 +191,7 @@

    Creating and Using a Conan Repo

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html b/2.0/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html index d13b66f60e0..baae752ddc7 100644 --- a/2.0/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html +++ b/2.0/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html @@ -5,7 +5,7 @@ Setting-up a Conan Server — conan 2.0.17 documentation - + @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/conan_repositories/uploading_packages.html b/2.0/tutorial/conan_repositories/uploading_packages.html index bd1858f9ed2..cd5e27f533d 100644 --- a/2.0/tutorial/conan_repositories/uploading_packages.html +++ b/2.0/tutorial/conan_repositories/uploading_packages.html @@ -5,7 +5,7 @@ Uploading Packages — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/consuming_packages.html b/2.0/tutorial/consuming_packages.html index d6203d7ada3..eac7045e404 100644 --- a/2.0/tutorial/consuming_packages.html +++ b/2.0/tutorial/consuming_packages.html @@ -5,7 +5,7 @@ Consuming packages — conan 2.0.17 documentation - + @@ -192,7 +192,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/consuming_packages/build_simple_cmake_project.html b/2.0/tutorial/consuming_packages/build_simple_cmake_project.html index a059a2e6071..92b0e1d1362 100644 --- a/2.0/tutorial/consuming_packages/build_simple_cmake_project.html +++ b/2.0/tutorial/consuming_packages/build_simple_cmake_project.html @@ -5,7 +5,7 @@ Build a simple CMake project using Conan — conan 2.0.17 documentation - + @@ -272,7 +272,7 @@
    diff --git a/2.0/tutorial/consuming_packages/different_configurations.html b/2.0/tutorial/consuming_packages/different_configurations.html index 7718b34f0a1..3b1a6d3a776 100644 --- a/2.0/tutorial/consuming_packages/different_configurations.html +++ b/2.0/tutorial/consuming_packages/different_configurations.html @@ -5,7 +5,7 @@ Building for multiple configurations: Release, Debug, Static and Shared — conan 2.0.17 documentation - + @@ -131,7 +131,7 @@

    So far, we built a simple CMake project that depended on the zlib library and learned -about tool_requires, a special type or requirements for build-tools like CMake. In +about tool_requires, a special type of requirements for build-tools like CMake. In both cases, we did not specify anywhere that we wanted to build the application in Release or Debug mode, or if we wanted to link against static or shared libraries. That is because Conan, if not instructed otherwise, will use a default configuration @@ -218,8 +218,8 @@

    As we explained above, this is the equivalent of having debug profile and running these command using the --profile=debug argument instead of the --settings=build_type=Debug argument.

    -

    This conan install command will check if we already installed the required libraries -(Zlib) in Debug configuration and install them otherwise. It will also set the build +

    This conan install command will check if we already have the required libraries in the local cache +(Zlib) for Debug configuration and obtain them if not. It will also set the build configuration in the conan_toolchain.cmake toolchain that the CMakeToolchain generator creates so that when we build the application it’s built in Debug configuration. Now build your project as you did in the previous examples and check in the output how it was @@ -258,18 +258,15 @@ Zlib’s Conan package there’s an attribute set to build in that mode by default. We can change from static to shared linking by setting the shared option to True using the --options argument. To do so, please run:

    -
    -
    $ conan install . --output-folder=build --build=missing --options=zlib/1.2.11:shared=True
     
    -

    Doing this, Conan will install the Zlib shared libraries, generate the files to build with them and, also the necessary files to locate those dynamic libraries when running the application. Let’s build the application again after configuring it to link Zlib as a shared library:

    -
    -
    Windows
    +
    +
    Windows
    $ cd build
     # assuming Visual Studio 15 2017 is your VS version and that it matches your default profile
     $ cmake .. -G "Visual Studio 15 2017" -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
    @@ -279,8 +276,8 @@
     
    -
    -
    Linux, Macos
    +
    +
    Linux, Macos
    $ cd build
     $ cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
     $ cmake --build .
    @@ -291,8 +288,8 @@
     

    Now, if you try to run the compiled executable you will see an error because the executable can’t find the shared libraries for Zlib that we just installed.

    -
    -
    Windows
    +
    +
    Windows
    $ Release\compressor.exe
     (on a pop-up window) The code execution cannot proceed because zlib1.dll was not found. Reinstalling the program may fix this problem.
     # This error depends on the console being used and may not always pop up.
    @@ -300,8 +297,8 @@
     
    -
    -
    Linux, Macos
    +
    +
    Linux, Macos
    $ ./compressor
     ./compressor: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
     
    @@ -321,8 +318,8 @@ DYLD_FRAMEWORK_PATH environment variables so that executables can find the shared libraries.

    Activate the virtual environment, and run the executables again:

    -
    -
    Windows
    +
    +
    Windows
    $ conanrun.bat
     $ Release\compressor.exe
     Uncompressed size is: 233
    @@ -331,8 +328,8 @@
     
    -
    -
    Linux, macOS
    +
    +
    Linux, macOS
    $ source conanrun.sh
     $ ./compressor
     Uncompressed size is: 233
    @@ -344,14 +341,14 @@
     

    Just as in the previous example with the VirtualBuildEnv generator, when we run the conanrun.sh/bat script a deactivation script called deactivate_conanrun.sh/bat is created to restore the environment. Source or run it to do so:

    - diff --git a/2.0/tutorial/consuming_packages/use_tools_as_conan_packages.html b/2.0/tutorial/consuming_packages/use_tools_as_conan_packages.html index 4847f6e6a71..bf42eb83d01 100644 --- a/2.0/tutorial/consuming_packages/use_tools_as_conan_packages.html +++ b/2.0/tutorial/consuming_packages/use_tools_as_conan_packages.html @@ -5,7 +5,7 @@ Using build tools as Conan packages — conan 2.0.17 documentation - + @@ -359,7 +359,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages.html b/2.0/tutorial/creating_packages.html index 008dd07aa95..c10521d8f7b 100644 --- a/2.0/tutorial/creating_packages.html +++ b/2.0/tutorial/creating_packages.html @@ -5,7 +5,7 @@ Creating packages — conan 2.0.17 documentation - + @@ -226,7 +226,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/add_dependencies_to_packages.html b/2.0/tutorial/creating_packages/add_dependencies_to_packages.html index efc8ff0616c..8d0f31bc6ea 100644 --- a/2.0/tutorial/creating_packages/add_dependencies_to_packages.html +++ b/2.0/tutorial/creating_packages/add_dependencies_to_packages.html @@ -5,7 +5,7 @@ Add dependencies to packages — conan 2.0.17 documentation - + @@ -132,7 +132,7 @@ package for a “Hello World” C++ library. We used the
    conan.tools.scm.Git() tool to retrieve the sources from a git repository. So far, the package does not have any dependency on other Conan packages. -Let’s explain how to add a dependency to our package in a very similar way that we did in +Let’s explain how to add a dependency to our package in a very similar way to how we did in the consuming packages section. We will add some fancy colour output to our “Hello World” library using the fmt library.

    Please, first clone the sources to recreate this project. You can find them in the @@ -247,7 +247,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/build_packages.html b/2.0/tutorial/creating_packages/build_packages.html index 8e558de52ba..1f0b20d31f5 100644 --- a/2.0/tutorial/creating_packages/build_packages.html +++ b/2.0/tutorial/creating_packages/build_packages.html @@ -5,7 +5,7 @@ Build packages: the build() method — conan 2.0.17 documentation - + @@ -204,8 +204,8 @@

    Changes introduced in the recipetools.build:skip_test configuration in the build() method, after building the package and tests, to decide if we want to run the tests or not.

    -
  • In this case we are using gtest for testing and we have to add the check if the -build method to run the tests or not, but this configuration also affects the +

  • In this case we are using gtest for testing and we have to check if the +build method is to run the tests or not. This configuration also affects the execution of CMake.test() if you are using CTest and Meson.test() for Meson.

  • @@ -344,14 +344,14 @@

    Conditionally patching the source code"Hello {} Friends".format("Shared" if self.options.shared else "Static"))

    -

    Please, note that patching in build() should avoided if possible and only be done for +

    Please, note that patching in build() should be avoided if possible and only be done for very particular cases as it will make more difficult to develop your packages locally (we will explain more about this in the local development flow section later)

    Conditionally select your build system

    It’s not uncommon that some packages need one build system or another depending on the -platform we are building. For example, the hello library could build in Windows using +platform we are building on. For example, the hello library could build in Windows using CMake and in Linux and MacOS using Autotools. This can be easily handled in the build() method like this:

    diff --git a/2.0/tutorial/creating_packages/configure_options_settings.html b/2.0/tutorial/creating_packages/configure_options_settings.html index cb2156321c0..14255cd027d 100644 --- a/2.0/tutorial/creating_packages/configure_options_settings.html +++ b/2.0/tutorial/creating_packages/configure_options_settings.html @@ -5,7 +5,7 @@ Configure settings and options in recipes — conan 2.0.17 documentation - + @@ -176,16 +176,16 @@ are available. For example, in this case, we delete the fPIC option, because it should only be True if we are building the library as shared (in fact, some build systems will add this flag automatically when building a shared library).

    -
  • config_options(): This method is used to constraint the available options in a +

  • config_options(): This method is used to constrain the available options in a package before they take a value. If a value is assigned to a setting or option that is deleted inside this method, Conan will raise an error. In this case we are deleting the fPIC option in Windows because that option does not exist for that operating system. Note that this method is executed before the configure() method.

  • -

    Be aware that deleting an option in the config_options() or in the configure() has -not the same result. Deleting it in the config_options() is like if we never declared -it in the recipe and it will raise an exception saying that the option does not exist. -Nevertheless, if we delete it in the configure() method we can pass the option but it +

    Be aware that deleting an option using the config_options() method has a different result from using the configure() +method. Deleting the option in config_options() is like we never declared +it in the recipe which will raise an exception saying that the option does not exist. +However, if we delete it in the configure() method we can pass the option but it will have no effect. For example, if you try to pass a value to the fPIC option in Windows, Conan will raise an error warning that the option does not exist:

    @@ -199,7 +199,7 @@

    As you have noticed, the configure() and config_options() methods delete an -option if certain conditions meet. Let’s explain why we are doing this and the +option if certain conditions are met. Let’s explain why we are doing this and the implications of removing that option. It is related to how Conan identifies packages that are binary compatible with the configuration set in the profile. In the next section, we introduce the concept of the Conan package ID.

    @@ -282,7 +282,7 @@ sources (this depends on the value of the --build argument). This build will generate a new package ID in the local cache.

    -

    This steps are simplified, there is far more to package ID calculation than what we +

    These steps are simplified, there is far more to package ID calculation than what we explain here, recipes themselves can even adjust their package ID calculations, we can have different recipe and package revisions besides package IDs and there’s also a built-in mechanism in Conan that can be configured to declare that some packages with a @@ -386,7 +386,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/create_your_first_package.html b/2.0/tutorial/creating_packages/create_your_first_package.html index f75ec6bd50c..334b7aead32 100644 --- a/2.0/tutorial/creating_packages/create_your_first_package.html +++ b/2.0/tutorial/creating_packages/create_your_first_package.html @@ -5,7 +5,7 @@ Create your first Conan package — conan 2.0.17 documentation - + @@ -248,12 +248,11 @@ the sources for our “hello” library.

    Then, several methods are declared:

      -
    • The config_options() method (together with configure() one) allows to fine-tune the binary configuration +

    • The config_options() method (together with the configure() one) allows fine-tuning the binary configuration model, for example, in Windows, there is no fPIC option, so it can be removed.

    • The layout() method declares the locations where we expect to find the source files -and also those where we want to save the generated files during the build process. -Things like the folder for the generated binaries or all the files that the Conan -generators create in the generate() method. In this case, as our project uses CMake +and destinations for the files generated during the build process. Example destination folders are those for the +generated binaries and all the files that the Conan generators create in the generate() method. In this case, as our project uses CMake as the build system, we call to cmake_layout(). Calling this function will set the expected locations for a CMake project.

    • The generate() method prepares the build of the package from source. In this case, it could be simplified @@ -341,8 +340,8 @@ hello/1.0: Hello World Release!

    -

    These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer, -we can see them with:

    +

    These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer. +We can see them with:

    Read more

    @@ -423,7 +422,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/define_package_information.html b/2.0/tutorial/creating_packages/define_package_information.html index 16aa234cf1a..a3c04223b7b 100644 --- a/2.0/tutorial/creating_packages/define_package_information.html +++ b/2.0/tutorial/creating_packages/define_package_information.html @@ -5,7 +5,7 @@ Define information for consumers: the package_info() method — conan 2.0.17 documentation - + @@ -458,7 +458,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/handle_sources_in_packages.html b/2.0/tutorial/creating_packages/handle_sources_in_packages.html index d7d65746e04..4daa2c69771 100644 --- a/2.0/tutorial/creating_packages/handle_sources_in_packages.html +++ b/2.0/tutorial/creating_packages/handle_sources_in_packages.html @@ -5,7 +5,7 @@ Handle sources in packages — conan 2.0.17 documentation - + @@ -362,7 +362,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/other_types_of_packages.html b/2.0/tutorial/creating_packages/other_types_of_packages.html index 34762333185..388cf27fa37 100644 --- a/2.0/tutorial/creating_packages/other_types_of_packages.html +++ b/2.0/tutorial/creating_packages/other_types_of_packages.html @@ -5,7 +5,7 @@ Other types of packages — conan 2.0.17 documentation - + @@ -172,7 +172,7 @@

    Other types of packages

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/other_types_of_packages/header_only_packages.html b/2.0/tutorial/creating_packages/other_types_of_packages/header_only_packages.html index 8406b0ae588..c9221991b86 100644 --- a/2.0/tutorial/creating_packages/other_types_of_packages/header_only_packages.html +++ b/2.0/tutorial/creating_packages/other_types_of_packages/header_only_packages.html @@ -5,7 +5,7 @@ Header-only packages — conan 2.0.17 documentation - + @@ -363,7 +363,7 @@

    Header-only library with tests

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html b/2.0/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html index e23587f0797..dd8a02ae45d 100644 --- a/2.0/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html +++ b/2.0/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html @@ -5,7 +5,7 @@ Package prebuilt binaries — conan 2.0.17 documentation - + @@ -492,7 +492,7 @@

    Downloading and Packaging Pre-built Binaries

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html b/2.0/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html index 9b6203efe45..c32d61cb881 100644 --- a/2.0/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html +++ b/2.0/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html @@ -5,7 +5,7 @@ Tool requires packages — conan 2.0.17 documentation - + @@ -353,7 +353,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/package_method.html b/2.0/tutorial/creating_packages/package_method.html index 1fd27d06301..2aac389d8be 100644 --- a/2.0/tutorial/creating_packages/package_method.html +++ b/2.0/tutorial/creating_packages/package_method.html @@ -5,7 +5,7 @@ Package files: the package() method — conan 2.0.17 documentation - + @@ -299,7 +299,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/preparing_the_build.html b/2.0/tutorial/creating_packages/preparing_the_build.html index fc8ace23cbb..59a77ce28f1 100644 --- a/2.0/tutorial/creating_packages/preparing_the_build.html +++ b/2.0/tutorial/creating_packages/preparing_the_build.html @@ -5,7 +5,7 @@ Preparing the build — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@ or removing information from the toolchain that Conan generates by default and may not apply for certain cases.

    -

    We explain to use this method for a simple example based on the previous tutorial section. +

    We explain how to use this method for a simple example based on the previous tutorial section. We add a with_fmt option to the recipe, depending on the value we require the fmt library or not. We use the generate() method to modify the toolchain so that it passes a variable to CMake so that we can conditionally add that library and use fmt @@ -336,7 +336,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/creating_packages/test_conan_packages.html b/2.0/tutorial/creating_packages/test_conan_packages.html index 766bd840824..b3f9cb4447d 100644 --- a/2.0/tutorial/creating_packages/test_conan_packages.html +++ b/2.0/tutorial/creating_packages/test_conan_packages.html @@ -5,7 +5,7 @@ Testing Conan packages — conan 2.0.17 documentation - + @@ -291,7 +291,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/developing_packages.html b/2.0/tutorial/developing_packages.html index edd61bcabd8..0087f2d5da3 100644 --- a/2.0/tutorial/developing_packages.html +++ b/2.0/tutorial/developing_packages.html @@ -5,7 +5,7 @@ Developing packages locally — conan 2.0.17 documentation - + @@ -155,7 +155,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/developing_packages/editable_packages.html b/2.0/tutorial/developing_packages/editable_packages.html index befe48d9a81..e5ef83357cc 100644 --- a/2.0/tutorial/developing_packages/editable_packages.html +++ b/2.0/tutorial/developing_packages/editable_packages.html @@ -5,7 +5,7 @@ Packages in editable mode — conan 2.0.17 documentation - + @@ -338,7 +338,7 @@

    Revert the editable mode

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/developing_packages/local_package_development_flow.html b/2.0/tutorial/developing_packages/local_package_development_flow.html index ea60881b370..8d0530c7a3c 100644 --- a/2.0/tutorial/developing_packages/local_package_development_flow.html +++ b/2.0/tutorial/developing_packages/local_package_development_flow.html @@ -5,7 +5,7 @@ Package Development Flow — conan 2.0.17 documentation - + @@ -403,7 +403,7 @@

    conan export-pkg

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/developing_packages/package_layout.html b/2.0/tutorial/developing_packages/package_layout.html index d55956a56f5..c69ab13fe93 100644 --- a/2.0/tutorial/developing_packages/package_layout.html +++ b/2.0/tutorial/developing_packages/package_layout.html @@ -5,7 +5,7 @@ Understanding the Conan Package layout — conan 2.0.17 documentation - + @@ -453,7 +453,7 @@

    cpp.source and cpp.build

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/other_features.html b/2.0/tutorial/other_features.html index 8ce80171b9d..67cc458025f 100644 --- a/2.0/tutorial/other_features.html +++ b/2.0/tutorial/other_features.html @@ -5,7 +5,7 @@ Other important Conan features — conan 2.0.17 documentation - + @@ -178,7 +178,7 @@

    Removing unused packages from the cache

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning.html b/2.0/tutorial/versioning.html index 58b6cfcddae..b18c491ef0c 100644 --- a/2.0/tutorial/versioning.html +++ b/2.0/tutorial/versioning.html @@ -5,7 +5,7 @@ Versioning — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning/conflicts.html b/2.0/tutorial/versioning/conflicts.html index 162db633733..f45827acba0 100644 --- a/2.0/tutorial/versioning/conflicts.html +++ b/2.0/tutorial/versioning/conflicts.html @@ -5,7 +5,7 @@ Dependencies conflicts — conan 2.0.17 documentation - + @@ -426,7 +426,7 @@

    Overriding options

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning/lockfiles.html b/2.0/tutorial/versioning/lockfiles.html index f49a41067cc..e63c2792358 100644 --- a/2.0/tutorial/versioning/lockfiles.html +++ b/2.0/tutorial/versioning/lockfiles.html @@ -5,7 +5,7 @@ Lockfiles — conan 2.0.17 documentation - + @@ -410,7 +410,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning/revisions.html b/2.0/tutorial/versioning/revisions.html index 4fbb7fc40b0..9d8847469fc 100644 --- a/2.0/tutorial/versioning/revisions.html +++ b/2.0/tutorial/versioning/revisions.html @@ -5,7 +5,7 @@ Revisions — conan 2.0.17 documentation - + @@ -358,7 +358,7 @@

    Package revisions

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning/version_ranges.html b/2.0/tutorial/versioning/version_ranges.html index 02c449db652..1dcdff3f952 100644 --- a/2.0/tutorial/versioning/version_ranges.html +++ b/2.0/tutorial/versioning/version_ranges.html @@ -5,7 +5,7 @@ Version ranges — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    Semantic versioning

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/tutorial/versioning/versions.html b/2.0/tutorial/versioning/versions.html index 61c472ef072..0b322d28195 100644 --- a/2.0/tutorial/versioning/versions.html +++ b/2.0/tutorial/versioning/versions.html @@ -5,7 +5,7 @@ Versions — conan 2.0.17 documentation - + @@ -353,7 +353,7 @@

    Requiring the new versions

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2.0/whatsnew.html b/2.0/whatsnew.html index 5c89ea3b3b1..ce55dc67ea8 100644 --- a/2.0/whatsnew.html +++ b/2.0/whatsnew.html @@ -5,7 +5,7 @@ What’s new in Conan 2.0 — conan 2.0.17 documentation - + @@ -224,7 +224,7 @@

    Package immutability optimizations

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/.buildinfo b/2/.buildinfo index 56aa8fe7226..6ec07599cbf 100644 --- a/2/.buildinfo +++ b/2/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 6f7aa25dc849c8a69759d62c5f1cc1cd +config: d76780e0f3e4872f8cbc6a3701967e9e tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/2/404.html b/2/404.html index 01a072c949b..0176e803041 100644 --- a/2/404.html +++ b/2/404.html @@ -5,7 +5,7 @@ Page Not Found — conan 2.0.17 documentation - + @@ -119,7 +119,7 @@

    Page Not Found

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/Page Not Found.html b/2/Page Not Found.html index df2ec685434..82f607b7eec 100644 --- a/2/Page Not Found.html +++ b/2/Page Not Found.html @@ -4,7 +4,7 @@ Page not found — conan 2.0.17 documentation - + @@ -112,7 +112,7 @@

    Page not found

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt b/2/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt index 6857c28e1bf..b06d9a34760 100644 --- a/2/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt +++ b/2/_sources/tutorial/consuming_packages/build_simple_cmake_project.rst.txt @@ -163,7 +163,7 @@ line. An example of the output of this command for MacOS would be: Then open and edit the file and set ``compiler.cppstd`` to the C++ standard you want to use. -.. note:: **Using a different compiler than the auto-detected one** +.. note:: **Using a compiler other than the auto-detected one** If you want to change a Conan profile to use a compiler different from the default one, you need to change the ``compiler`` setting and also tell Conan explicitly where diff --git a/2/_sources/tutorial/consuming_packages/different_configurations.rst.txt b/2/_sources/tutorial/consuming_packages/different_configurations.rst.txt index bcd00d29117..d98050d3a55 100644 --- a/2/_sources/tutorial/consuming_packages/different_configurations.rst.txt +++ b/2/_sources/tutorial/consuming_packages/different_configurations.rst.txt @@ -13,7 +13,7 @@ Please, first clone the sources to recreate this project. You can find them in t So far, we built a simple CMake project that depended on the **zlib** library and learned -about ``tool_requires``, a special type or requirements for build-tools like CMake. In +about ``tool_requires``, a special type of ``requirements`` for build-tools like CMake. In both cases, we did not specify anywhere that we wanted to build the application in *Release* or *Debug* mode, or if we wanted to link against *static* or *shared* libraries. That is because Conan, if not instructed otherwise, will use a default configuration @@ -120,8 +120,8 @@ As we explained above, this is the equivalent of having *debug* profile and runn command using the ``--profile=debug`` argument instead of the ``--settings=build_type=Debug`` argument. -This :command:`conan install` command will check if we already installed the required libraries -(Zlib) in Debug configuration and install them otherwise. It will also set the build +This :command:`conan install` command will check if we already have the required libraries in the local cache +(Zlib) for Debug configuration and obtain them if not. It will also set the build configuration in the ``conan_toolchain.cmake`` toolchain that the CMakeToolchain generator creates so that when we build the application it's built in *Debug* configuration. Now build your project as you did in the previous examples and check in the output how it was @@ -167,7 +167,6 @@ using the ``--options`` argument. To do so, please run: .. code-block:: bash - :caption: Windows $ conan install . --output-folder=build --build=missing --options=zlib/1.2.11:shared=True diff --git a/2/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt b/2/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt index b05bbd02850..2169e02be40 100644 --- a/2/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt +++ b/2/_sources/tutorial/creating_packages/add_dependencies_to_packages.rst.txt @@ -7,7 +7,7 @@ In the :ref:`previous tutorial section` we created a package for a "Hello World" C++ library. We used the :ref:`conan.tools.scm.Git()` tool to retrieve the sources from a git repository. So far, the package does not have any dependency on other Conan packages. -Let's explain how to add a dependency to our package in a very similar way that we did in +Let's explain how to add a dependency to our package in a very similar way to how we did in the :ref:`consuming packages section`. We will add some fancy colour output to our "Hello World" library using the `fmt `__ library. diff --git a/2/_sources/tutorial/creating_packages/build_packages.rst.txt b/2/_sources/tutorial/creating_packages/build_packages.rst.txt index f42df31aaf1..551ab342dd6 100644 --- a/2/_sources/tutorial/creating_packages/build_packages.rst.txt +++ b/2/_sources/tutorial/creating_packages/build_packages.rst.txt @@ -87,8 +87,8 @@ Changes introduced in the recipe - We use the ``tools.build:skip_test`` configuration in the ``build()`` method, after building the package and tests, to decide if we want to run the tests or not. - - In this case we are using **gtest** for testing and we have to add the check if the - build method to run the tests or not, but this configuration also affects the + - In this case we are using **gtest** for testing and we have to check if the + build method is to run the tests or not. This configuration also affects the execution of ``CMake.test()`` if you are using CTest and ``Meson.test()`` for Meson. @@ -242,7 +242,7 @@ tool: "Hello {} Friends".format("Shared" if self.options.shared else "Static")) -Please, note that patching in ``build()`` should avoided if possible and only be done for +Please, note that patching in ``build()`` should be avoided if possible and only be done for very particular cases as it will make more difficult to develop your packages locally (we will explain more about this in the :ref:`local development flow section` later) @@ -251,7 +251,7 @@ Conditionally select your build system -------------------------------------- It's not uncommon that some packages need one build system or another depending on the -platform we are building. For example, the *hello* library could build in Windows using +platform we are building on. For example, the *hello* library could build in Windows using CMake and in Linux and MacOS using Autotools. This can be easily handled in the ``build()`` method like this: diff --git a/2/_sources/tutorial/creating_packages/configure_options_settings.rst.txt b/2/_sources/tutorial/creating_packages/configure_options_settings.rst.txt index bf8ef57bd8a..1fa53f7342f 100644 --- a/2/_sources/tutorial/creating_packages/configure_options_settings.rst.txt +++ b/2/_sources/tutorial/creating_packages/configure_options_settings.rst.txt @@ -60,16 +60,16 @@ already had defined in the recipe: systems will add this flag automatically when building a shared library). -* ``config_options()``: This method is used to **constraint** the available options in a +* ``config_options()``: This method is used to **constrain** the available options in a package **before they take a value**. If a value is assigned to a setting or option that is deleted inside this method, Conan will raise an error. In this case we are **deleting the fPIC option** in Windows because that option does not exist for that operating system. Note that this method is executed before the ``configure()`` method. -Be aware that deleting an option in the ``config_options()`` or in the ``configure()`` has -not the same result. Deleting it in the ``config_options()`` **is like if we never declared -it in the recipe** and it will raise an exception saying that the option does not exist. -Nevertheless, if we delete it in the ``configure()`` method we can pass the option but it +Be aware that deleting an option using the ``config_options()`` method has a different result from using the ``configure()`` +method. Deleting the option in ``config_options()`` **is like we never declared +it in the recipe** which will raise an exception saying that the option does not exist. +However, if we delete it in the ``configure()`` method we can pass the option but it will have no effect. For example, if you try to pass a value to the ``fPIC`` option in Windows, Conan will raise an error warning that the option does not exist: @@ -84,7 +84,7 @@ Windows, Conan will raise an error warning that the option does not exist: As you have noticed, the ``configure()`` and ``config_options()`` methods **delete an -option** if certain conditions meet. Let's explain why we are doing this and the +option** if certain conditions are met. Let's explain why we are doing this and the implications of removing that option. It is related to how Conan identifies packages that are binary compatible with the configuration set in the profile. In the next section, we introduce the concept of the **Conan package ID**. @@ -182,7 +182,7 @@ to install a package, Conan will: sources (this depends on the value of the ``--build`` argument). This build will generate a new package ID in the local cache. -This steps are simplified, there is far more to package ID calculation than what we +These steps are simplified, there is far more to package ID calculation than what we explain here, recipes themselves can even adjust their package ID calculations, we can have different recipe and package revisions besides package IDs and there's also a built-in mechanism in Conan that can be configured to declare that some packages with a diff --git a/2/_sources/tutorial/creating_packages/create_your_first_package.rst.txt b/2/_sources/tutorial/creating_packages/create_your_first_package.rst.txt index 46c95c3e6dd..b851bc9038d 100644 --- a/2/_sources/tutorial/creating_packages/create_your_first_package.rst.txt +++ b/2/_sources/tutorial/creating_packages/create_your_first_package.rst.txt @@ -138,13 +138,12 @@ the sources for our "hello" library. Then, several methods are declared: -* The ``config_options()`` method (together with ``configure()`` one) allows to fine-tune the binary configuration +* The ``config_options()`` method (together with the ``configure()`` one) allows fine-tuning the binary configuration model, for example, in Windows, there is no ``fPIC`` option, so it can be removed. * The ``layout()`` method declares the locations where we expect to find the source files - and also those where we want to save the generated files during the build process. - Things like the folder for the generated binaries or all the files that the Conan - generators create in the ``generate()`` method. In this case, as our project uses CMake + and destinations for the files generated during the build process. Example destination folders are those for the + generated binaries and all the files that the Conan generators create in the ``generate()`` method. In this case, as our project uses CMake as the build system, we call to ``cmake_layout()``. Calling this function will set the expected locations for a CMake project. @@ -248,8 +247,8 @@ binaries for Debug configuration or to build the hello library as shared: hello/1.0: Hello World Release! -These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer, -we can see them with: +These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer. +We can see them with: .. code-block:: bash @@ -313,7 +312,7 @@ located in the user home folder under the ``.conan2`` folder. Conan will use the You already used the :command:`conan list` command to list the recipes and binaries stored in the local cache. -An **important** note: the Conan cache are private to the Conan client - modifying, adding, removing or changing files inside the Conan cache is undefined behaviour likely to cause breakages. +An **important** note: the Conan cache is private to the Conan client - modifying, adding, removing or changing files inside the Conan cache is undefined behaviour likely to cause breakages. Read more diff --git a/2/_sources/tutorial/creating_packages/preparing_the_build.rst.txt b/2/_sources/tutorial/creating_packages/preparing_the_build.rst.txt index d6898b3091c..e01bc3abb26 100644 --- a/2/_sources/tutorial/creating_packages/preparing_the_build.rst.txt +++ b/2/_sources/tutorial/creating_packages/preparing_the_build.rst.txt @@ -18,7 +18,7 @@ information that could be needed while running the build step. That means things apply for certain cases. -We explain to use this method for a simple example based on the previous tutorial section. +We explain how to use this method for a simple example based on the previous tutorial section. We add a `with_fmt` option to the recipe, depending on the value we require the `fmt` library or not. We use the `generate()` method to modify the toolchain so that it passes a variable to CMake so that we can conditionally add that library and use `fmt` diff --git a/2/_static/pygments.css b/2/_static/pygments.css index 691aeb82d00..d254119e918 100644 --- a/2/_static/pygments.css +++ b/2/_static/pygments.css @@ -4,71 +4,62 @@ span.linenos { color: inherit; background-color: transparent; padding-left: 5px; td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } -.highlight { background: #eeffcc; } -.highlight .c { color: #408090; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #333333 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #208050 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.highlight { background: #ffffff; } +.highlight .c { color: #008800; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .g { color: #2c2cff } /* Generic */ +.highlight .k { color: #2c2cff } /* Keyword */ +.highlight .x { background-color: #ffffe0 } /* Other */ +.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */ +.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */ +.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */ +.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #2c2cff } /* Generic.Deleted */ +.highlight .ge { color: #008800 } /* Generic.Emph */ +.highlight .gr { color: #d30202 } /* Generic.Error */ +.highlight .gh { color: #2c2cff } /* Generic.Heading */ +.highlight .gi { color: #2c2cff } /* Generic.Inserted */ +.highlight .go { color: #2c2cff } /* Generic.Output */ +.highlight .gp { color: #2c2cff } /* Generic.Prompt */ +.highlight .gs { color: #2c2cff } /* Generic.Strong */ +.highlight .gu { color: #2c2cff } /* Generic.Subheading */ +.highlight .gt { color: #2c2cff } /* Generic.Traceback */ +.highlight .kc { color: #2c2cff; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #2c2cff } /* Keyword.Declaration */ +.highlight .kn { color: #2c2cff } /* Keyword.Namespace */ +.highlight .kp { color: #2c2cff } /* Keyword.Pseudo */ +.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #2c2cff } /* Keyword.Type */ +.highlight .m { color: #2c8553; font-weight: bold } /* Literal.Number */ +.highlight .s { color: #800080 } /* Literal.String */ +.highlight .nb { color: #2c2cff } /* Name.Builtin */ +.highlight .nf { font-weight: bold; font-style: italic } /* Name.Function */ +.highlight .nv { color: #2c2cff; font-weight: bold } /* Name.Variable */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mb { color: #208050 } /* Literal.Number.Bin */ -.highlight .mf { color: #208050 } /* Literal.Number.Float */ -.highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ -.highlight .mo { color: #208050 } /* Literal.Number.Oct */ -.highlight .sa { color: #4070a0 } /* Literal.String.Affix */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .fm { color: #06287e } /* Name.Function.Magic */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */ -.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file +.highlight .mb { color: #2c8553; font-weight: bold } /* Literal.Number.Bin */ +.highlight .mf { color: #2c8553; font-weight: bold } /* Literal.Number.Float */ +.highlight .mh { color: #2c8553; font-weight: bold } /* Literal.Number.Hex */ +.highlight .mi { color: #2c8553; font-weight: bold } /* Literal.Number.Integer */ +.highlight .mo { color: #2c8553; font-weight: bold } /* Literal.Number.Oct */ +.highlight .sa { color: #800080 } /* Literal.String.Affix */ +.highlight .sb { color: #800080 } /* Literal.String.Backtick */ +.highlight .sc { color: #800080 } /* Literal.String.Char */ +.highlight .dl { color: #800080 } /* Literal.String.Delimiter */ +.highlight .sd { color: #800080 } /* Literal.String.Doc */ +.highlight .s2 { color: #800080 } /* Literal.String.Double */ +.highlight .se { color: #800080 } /* Literal.String.Escape */ +.highlight .sh { color: #800080 } /* Literal.String.Heredoc */ +.highlight .si { color: #800080 } /* Literal.String.Interpol */ +.highlight .sx { color: #800080 } /* Literal.String.Other */ +.highlight .sr { color: #800080 } /* Literal.String.Regex */ +.highlight .s1 { color: #800080 } /* Literal.String.Single */ +.highlight .ss { color: #800080 } /* Literal.String.Symbol */ +.highlight .bp { color: #2c2cff } /* Name.Builtin.Pseudo */ +.highlight .fm { font-weight: bold; font-style: italic } /* Name.Function.Magic */ +.highlight .vc { color: #2c2cff; font-weight: bold } /* Name.Variable.Class */ +.highlight .vg { color: #2c2cff; font-weight: bold } /* Name.Variable.Global */ +.highlight .vi { color: #2c2cff; font-weight: bold } /* Name.Variable.Instance */ +.highlight .vm { color: #2c2cff; font-weight: bold } /* Name.Variable.Magic */ +.highlight .il { color: #2c8553; font-weight: bold } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/2/changelog.html b/2/changelog.html index 7cf1d70c02a..1b661131487 100644 --- a/2/changelog.html +++ b/2/changelog.html @@ -5,7 +5,7 @@ Changelog — conan 2.0.17 documentation - + @@ -752,7 +752,7 @@

    2.0.0-beta1 (20-Jun-2022)

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/conan.pdf b/2/conan.pdf index e164b7dcdf8..748567647fe 100644 Binary files a/2/conan.pdf and b/2/conan.pdf differ diff --git a/2/devops.html b/2/devops.html index da5d3e76004..ad20a474528 100644 --- a/2/devops.html +++ b/2/devops.html @@ -5,7 +5,7 @@ Devops guide — conan 2.0.17 documentation - + @@ -139,7 +139,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html b/2/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html index 9719a88e50d..d0b53573117 100644 --- a/2/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html +++ b/2/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html @@ -5,7 +5,7 @@ Creating an Artifactory backup repo for your sources — conan 2.0.17 documentation - + @@ -166,7 +166,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/backup_sources/sources_backup.html b/2/devops/backup_sources/sources_backup.html index a5a94e270dd..d98117486f3 100644 --- a/2/devops/backup_sources/sources_backup.html +++ b/2/devops/backup_sources/sources_backup.html @@ -5,7 +5,7 @@ Backing up third-party sources with Conan — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

    Upload the packages

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/conancenter/hosting_binaries.html b/2/devops/conancenter/hosting_binaries.html index 9023c6ca48b..ca13cccc1d3 100644 --- a/2/devops/conancenter/hosting_binaries.html +++ b/2/devops/conancenter/hosting_binaries.html @@ -5,7 +5,7 @@ Creating and hosting your own ConanCenter binaries — conan 2.0.17 documentation - + @@ -158,7 +158,7 @@

    Updating from upstream

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/metadata.html b/2/devops/metadata.html index c0ac6554515..54051c69429 100644 --- a/2/devops/metadata.html +++ b/2/devops/metadata.html @@ -5,7 +5,7 @@ Managing package metadata files — conan 2.0.17 documentation - + @@ -411,7 +411,7 @@

    test_package as metadata

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/save_restore.html b/2/devops/save_restore.html index 31fa9f5917a..55ca1f44a28 100644 --- a/2/devops/save_restore.html +++ b/2/devops/save_restore.html @@ -5,7 +5,7 @@ Save and restore packages from/to the cache — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/using_conancenter.html b/2/devops/using_conancenter.html index e1aefbdf152..ebbaabd50a2 100644 --- a/2/devops/using_conancenter.html +++ b/2/devops/using_conancenter.html @@ -5,7 +5,7 @@ Using ConanCenter packages in production environments — conan 2.0.17 documentation - + @@ -239,7 +239,7 @@

    Control and customization

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/versioning.html b/2/devops/versioning.html index 1d8638c1733..31b66753995 100644 --- a/2/devops/versioning.html +++ b/2/devops/versioning.html @@ -5,7 +5,7 @@ Versioning — conan 2.0.17 documentation - + @@ -137,7 +137,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/devops/versioning/resolve_prereleases.html b/2/devops/versioning/resolve_prereleases.html index 153f87858b6..99db8f49daa 100644 --- a/2/devops/versioning/resolve_prereleases.html +++ b/2/devops/versioning/resolve_prereleases.html @@ -5,7 +5,7 @@ Handling version ranges and pre-releases — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples.html b/2/examples.html index bda0f5a3297..ea360cf7c24 100644 --- a/2/examples.html +++ b/2/examples.html @@ -5,7 +5,7 @@ Examples — conan 2.0.17 documentation - + @@ -179,7 +179,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/commands.html b/2/examples/commands.html index 078f5c15818..51d6f55344a 100644 --- a/2/examples/commands.html +++ b/2/examples/commands.html @@ -5,7 +5,7 @@ Conan commands examples — conan 2.0.17 documentation - + @@ -145,7 +145,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/commands/pkglists.html b/2/examples/commands/pkglists.html index 331d567a786..ae85c5d63b5 100644 --- a/2/examples/commands/pkglists.html +++ b/2/examples/commands/pkglists.html @@ -5,7 +5,7 @@ Using packages-lists — conan 2.0.17 documentation - + @@ -304,7 +304,7 @@

    Removing packages lists

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile.html b/2/examples/conanfile.html index bdfc068ddb0..f8f9329d51f 100644 --- a/2/examples/conanfile.html +++ b/2/examples/conanfile.html @@ -5,7 +5,7 @@ ConanFile methods examples — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/layout.html b/2/examples/conanfile/layout.html index dc1af3ee652..7e61b622d55 100644 --- a/2/examples/conanfile/layout.html +++ b/2/examples/conanfile/layout.html @@ -5,7 +5,7 @@ ConanFile layout() examples — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/layout/conanfile_in_subfolder.html b/2/examples/conanfile/layout/conanfile_in_subfolder.html index 499b608c715..7303008cbaa 100644 --- a/2/examples/conanfile/layout/conanfile_in_subfolder.html +++ b/2/examples/conanfile/layout/conanfile_in_subfolder.html @@ -5,7 +5,7 @@ Declaring the layout when the Conanfile is inside a subfolder — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/layout/editable_components.html b/2/examples/conanfile/layout/editable_components.html index 30d1cc180d7..cc97e1ccbcb 100644 --- a/2/examples/conanfile/layout/editable_components.html +++ b/2/examples/conanfile/layout/editable_components.html @@ -5,7 +5,7 @@ Using components and editable packages — conan 2.0.17 documentation - + @@ -246,7 +246,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/layout/multiple_subprojects.html b/2/examples/conanfile/layout/multiple_subprojects.html index ce203808b72..162f563d5a9 100644 --- a/2/examples/conanfile/layout/multiple_subprojects.html +++ b/2/examples/conanfile/layout/multiple_subprojects.html @@ -5,7 +5,7 @@ Declaring the layout when we have multiple subprojects — conan 2.0.17 documentation - + @@ -245,7 +245,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/layout/third_party_libraries.html b/2/examples/conanfile/layout/third_party_libraries.html index 8906c128686..9f6efefde60 100644 --- a/2/examples/conanfile/layout/third_party_libraries.html +++ b/2/examples/conanfile/layout/third_party_libraries.html @@ -5,7 +5,7 @@ Declaring the layout when creating packages for third-party libraries — conan 2.0.17 documentation - + @@ -225,7 +225,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/package_info.html b/2/examples/conanfile/package_info.html index 365e88060c6..c955902b913 100644 --- a/2/examples/conanfile/package_info.html +++ b/2/examples/conanfile/package_info.html @@ -5,7 +5,7 @@ ConanFile package_info() examples — conan 2.0.17 documentation - + @@ -146,7 +146,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/package_info/components.html b/2/examples/conanfile/package_info/components.html index 03d4003b393..61ff9b9b43a 100644 --- a/2/examples/conanfile/package_info/components.html +++ b/2/examples/conanfile/package_info/components.html @@ -5,7 +5,7 @@ Define components for Conan packages that provide multiple libraries — conan 2.0.17 documentation - + @@ -348,7 +348,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/conanfile/package_info/package_info_conf_and_env.html b/2/examples/conanfile/package_info/package_info_conf_and_env.html index ff836b21f70..96ab1cc0e8e 100644 --- a/2/examples/conanfile/package_info/package_info_conf_and_env.html +++ b/2/examples/conanfile/package_info/package_info_conf_and_env.html @@ -5,7 +5,7 @@ Propagating environment or configuration information to consumers — conan 2.0.17 documentation - + @@ -142,7 +142,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/config_files.html b/2/examples/config_files.html index 78c2dabbb44..4933351c646 100644 --- a/2/examples/config_files.html +++ b/2/examples/config_files.html @@ -5,7 +5,7 @@ Configuration files examples — conan 2.0.17 documentation - + @@ -143,7 +143,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/config_files/settings/settings_user.html b/2/examples/config_files/settings/settings_user.html index cb524c8e10a..d8cefd145c5 100644 --- a/2/examples/config_files/settings/settings_user.html +++ b/2/examples/config_files/settings/settings_user.html @@ -5,7 +5,7 @@ Customize your settings: create your settings_user.yml — conan 2.0.17 documentation - + @@ -369,7 +369,7 @@

    Use your new settings

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/cross_build.html b/2/examples/cross_build.html index 4be3b49c67d..42ba843e743 100644 --- a/2/examples/cross_build.html +++ b/2/examples/cross_build.html @@ -5,7 +5,7 @@ Cross-building examples — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/cross_build/android/android_studio.html b/2/examples/cross_build/android/android_studio.html index 38231143b57..9e54a257c0a 100644 --- a/2/examples/cross_build/android/android_studio.html +++ b/2/examples/cross_build/android/android_studio.html @@ -5,7 +5,7 @@ Integrating Conan in Android Studio — conan 2.0.17 documentation - + @@ -368,7 +368,7 @@

    Building the application

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/cross_build/android/ndk.html b/2/examples/cross_build/android/ndk.html index 6eb74f5ce3b..dcaca32d5f8 100644 --- a/2/examples/cross_build/android/ndk.html +++ b/2/examples/cross_build/android/ndk.html @@ -5,7 +5,7 @@ Cross building to Android with the NDK — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/dev_flow.html b/2/examples/dev_flow.html index 8e0187fbe24..8ed6f8b5225 100644 --- a/2/examples/dev_flow.html +++ b/2/examples/dev_flow.html @@ -5,7 +5,7 @@ Developer tools and flows — conan 2.0.17 documentation - + @@ -143,7 +143,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/dev_flow/debug/step_into_dependencies.html b/2/examples/dev_flow/debug/step_into_dependencies.html index 02b40c7b93e..39d50c0e40e 100644 --- a/2/examples/dev_flow/debug/step_into_dependencies.html +++ b/2/examples/dev_flow/debug/step_into_dependencies.html @@ -5,7 +5,7 @@ Debugging and stepping into dependencies — conan 2.0.17 documentation - + @@ -201,7 +201,7 @@

    Step into a dependency with Visual Studio

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions.html b/2/examples/extensions.html index 9461fe333ea..b921b7f9911 100644 --- a/2/examples/extensions.html +++ b/2/examples/extensions.html @@ -5,7 +5,7 @@ Conan extensions examples — conan 2.0.17 documentation - + @@ -157,7 +157,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/commands/clean/custom_command_clean_revisions.html b/2/examples/extensions/commands/clean/custom_command_clean_revisions.html index bc472a40d66..b0d22e4a2ac 100644 --- a/2/examples/extensions/commands/clean/custom_command_clean_revisions.html +++ b/2/examples/extensions/commands/clean/custom_command_clean_revisions.html @@ -5,7 +5,7 @@ Custom command: Clean old recipe and package revisions — conan 2.0.17 documentation - + @@ -338,7 +338,7 @@

    Conan public API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/commands/custom_commands.html b/2/examples/extensions/commands/custom_commands.html index 4377e399588..a90f273b46c 100644 --- a/2/examples/extensions/commands/custom_commands.html +++ b/2/examples/extensions/commands/custom_commands.html @@ -5,7 +5,7 @@ Custom commands — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/deployers/builtin_deployers.html b/2/examples/extensions/deployers/builtin_deployers.html index 852ae68e790..bee636ac203 100644 --- a/2/examples/extensions/deployers/builtin_deployers.html +++ b/2/examples/extensions/deployers/builtin_deployers.html @@ -5,7 +5,7 @@ Builtin deployers — conan 2.0.17 documentation - + @@ -145,7 +145,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/deployers/custom_deployers.html b/2/examples/extensions/deployers/custom_deployers.html index 9e5f9319e1a..d63574be55b 100644 --- a/2/examples/extensions/deployers/custom_deployers.html +++ b/2/examples/extensions/deployers/custom_deployers.html @@ -5,7 +5,7 @@ Custom deployers — conan 2.0.17 documentation - + @@ -150,7 +150,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/deployers/dev/development_deploy.html b/2/examples/extensions/deployers/dev/development_deploy.html index be231046568..19f88f8a42d 100644 --- a/2/examples/extensions/deployers/dev/development_deploy.html +++ b/2/examples/extensions/deployers/dev/development_deploy.html @@ -5,7 +5,7 @@ Creating a Conan-agnostic deploy of dependencies for developer use — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/extensions/deployers/sources/custom_deployer_sources.html b/2/examples/extensions/deployers/sources/custom_deployer_sources.html index 3f9d9f59d4b..a4849034c36 100644 --- a/2/examples/extensions/deployers/sources/custom_deployer_sources.html +++ b/2/examples/extensions/deployers/sources/custom_deployer_sources.html @@ -5,7 +5,7 @@ Copy sources from all your dependencies — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

    deploy()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph.html b/2/examples/graph.html index 2bd056478b4..cc076a51696 100644 --- a/2/examples/graph.html +++ b/2/examples/graph.html @@ -5,7 +5,7 @@ Graph examples — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph/requires/consume_cmake_macro.html b/2/examples/graph/requires/consume_cmake_macro.html index 63ff9fe6cf2..f4d4c0f3f2c 100644 --- a/2/examples/graph/requires/consume_cmake_macro.html +++ b/2/examples/graph/requires/consume_cmake_macro.html @@ -5,7 +5,7 @@ Use a CMake macro packaged in a dependency — conan 2.0.17 documentation - + @@ -210,7 +210,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph/tool_requires/different_options.html b/2/examples/graph/tool_requires/different_options.html index 0c70ff12044..77c78f31049 100644 --- a/2/examples/graph/tool_requires/different_options.html +++ b/2/examples/graph/tool_requires/different_options.html @@ -5,7 +5,7 @@ Depending on same version of a tool-require with different options — conan 2.0.17 documentation - + @@ -233,7 +233,7 @@

    Depending on same version of a tool-require with different options

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph/tool_requires/different_versions.html b/2/examples/graph/tool_requires/different_versions.html index 04b9d499fc6..271d779af86 100644 --- a/2/examples/graph/tool_requires/different_versions.html +++ b/2/examples/graph/tool_requires/different_versions.html @@ -5,7 +5,7 @@ Depending on different versions of the same tool-require — conan 2.0.17 documentation - + @@ -231,7 +231,7 @@

    Depending on different versions of the same tool-require

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph/tool_requires/use_cmake_modules.html b/2/examples/graph/tool_requires/use_cmake_modules.html index 6d7badb1292..44434ab6cc9 100644 --- a/2/examples/graph/tool_requires/use_cmake_modules.html +++ b/2/examples/graph/tool_requires/use_cmake_modules.html @@ -5,7 +5,7 @@ Use cmake modules inside a tool_requires transparently — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    Use cmake modules inside a

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/graph/tool_requires/using_protobuf.html b/2/examples/graph/tool_requires/using_protobuf.html index 43bf5b3ac5a..82e0fb9b4b9 100644 --- a/2/examples/graph/tool_requires/using_protobuf.html +++ b/2/examples/graph/tool_requires/using_protobuf.html @@ -5,7 +5,7 @@ Using the same requirement as a requires and as a tool_requires — conan 2.0.17 documentation - + @@ -360,7 +360,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools.html b/2/examples/tools.html index d8d608505c4..6fdee6a37e3 100644 --- a/2/examples/tools.html +++ b/2/examples/tools.html @@ -5,7 +5,7 @@ Conan recipe tools examples — conan 2.0.17 documentation - + @@ -169,7 +169,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/autotools/autotools.html b/2/examples/tools/autotools/autotools.html index 8d3a675e815..a3ed741972b 100644 --- a/2/examples/tools/autotools/autotools.html +++ b/2/examples/tools/autotools/autotools.html @@ -5,7 +5,7 @@ tools.autotools — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html b/2/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html index 939d929352d..d14afd83eb3 100644 --- a/2/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html +++ b/2/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.html @@ -5,7 +5,7 @@ Build a simple Autotools project using Conan — conan 2.0.17 documentation - + @@ -289,7 +289,7 @@

    Building on Linux and macOS

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/cmake/cmake.html b/2/examples/tools/cmake/cmake.html index 2b8708483d5..717c0bf5b7c 100644 --- a/2/examples/tools/cmake/cmake.html +++ b/2/examples/tools/cmake/cmake.html @@ -5,7 +5,7 @@ tools.cmake — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html b/2/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html index 85593d6f7b4..2207869c21b 100644 --- a/2/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html +++ b/2/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.html @@ -5,7 +5,7 @@ CMakeToolchain: Building your project using CMakePresets — conan 2.0.17 documentation - + @@ -220,7 +220,7 @@

    Building the project using

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html b/2/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html index b3bdd95c395..ca0cab7a4fa 100644 --- a/2/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html +++ b/2/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.html @@ -5,7 +5,7 @@ CMakeToolchain: Extending your CMakePresets with Conan generated ones — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html b/2/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html index 086d904fd0f..07459f43ac8 100644 --- a/2/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html +++ b/2/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.html @@ -5,7 +5,7 @@ CMakeToolchain: Inject arbitrary CMake variables into dependencies — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/files/files.html b/2/examples/tools/files/files.html index 83572474700..c6f6f344d13 100644 --- a/2/examples/tools/files/files.html +++ b/2/examples/tools/files/files.html @@ -5,7 +5,7 @@ tools.files — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/files/patches/patch_sources.html b/2/examples/tools/files/patches/patch_sources.html index d3d3bc5d2a5..8772634e94b 100644 --- a/2/examples/tools/files/patches/patch_sources.html +++ b/2/examples/tools/files/patches/patch_sources.html @@ -5,7 +5,7 @@ Patching sources — conan 2.0.17 documentation - + @@ -348,7 +348,7 @@

    Patching using “apply_conandata_patches” tool

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/google/bazel.html b/2/examples/tools/google/bazel.html index d7101747f01..6bf87b2ddc7 100644 --- a/2/examples/tools/google/bazel.html +++ b/2/examples/tools/google/bazel.html @@ -5,7 +5,7 @@ tools.google — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html b/2/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html index bd130a4b61d..fcd0f8e13d4 100644 --- a/2/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html +++ b/2/examples/tools/google/bazeltoolchain/build_simple_bazel_project.html @@ -5,7 +5,7 @@ Build a simple Bazel project using Conan — conan 2.0.17 documentation - + @@ -259,7 +259,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/meson/meson.html b/2/examples/tools/meson/meson.html index 9bc09368726..fb11fecf41a 100644 --- a/2/examples/tools/meson/meson.html +++ b/2/examples/tools/meson/meson.html @@ -5,7 +5,7 @@ tools.meson — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/meson/mesontoolchain/build_simple_meson_project.html b/2/examples/tools/meson/mesontoolchain/build_simple_meson_project.html index 2fb66e7d15d..4b3993e8bc6 100644 --- a/2/examples/tools/meson/mesontoolchain/build_simple_meson_project.html +++ b/2/examples/tools/meson/mesontoolchain/build_simple_meson_project.html @@ -5,7 +5,7 @@ Build a simple Meson project using Conan — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/examples/tools/scm/git/capture_scm/git_capture_scm.html b/2/examples/tools/scm/git/capture_scm/git_capture_scm.html index 68ed73774e5..80ef4fe9637 100644 --- a/2/examples/tools/scm/git/capture_scm/git_capture_scm.html +++ b/2/examples/tools/scm/git/capture_scm/git_capture_scm.html @@ -5,7 +5,7 @@ Capturing Git scm information — conan 2.0.17 documentation - + @@ -288,7 +288,7 @@

    Credentials management

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/genindex.html b/2/genindex.html index 88b919e8588..b463f99a299 100644 --- a/2/genindex.html +++ b/2/genindex.html @@ -4,7 +4,7 @@ Index — conan 2.0.17 documentation - + @@ -926,7 +926,7 @@

    Z

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/index.html b/2/index.html index ed58a9f2cb5..3fd27345d1d 100644 --- a/2/index.html +++ b/2/index.html @@ -5,7 +5,7 @@ Conan 2.0 - C and C++ Package Manager Documentation — conan 2.0.17 documentation - + @@ -192,7 +192,7 @@

    Conan 2.0 - C and C++ Package Manager Documentation

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/installation.html b/2/installation.html index 79835c25653..ac411c020a1 100644 --- a/2/installation.html +++ b/2/installation.html @@ -5,7 +5,7 @@ Install — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

    Install from source

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations.html b/2/integrations.html index 3108abdc3ef..9f3ef02480c 100644 --- a/2/integrations.html +++ b/2/integrations.html @@ -5,7 +5,7 @@ Integrations — conan 2.0.17 documentation - + @@ -168,7 +168,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/android.html b/2/integrations/android.html index d3bdc07e92f..383dcb37308 100644 --- a/2/integrations/android.html +++ b/2/integrations/android.html @@ -5,7 +5,7 @@ Android — conan 2.0.17 documentation - + @@ -140,7 +140,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/autotools.html b/2/integrations/autotools.html index 41e7851b9a9..dae92c00bac 100644 --- a/2/integrations/autotools.html +++ b/2/integrations/autotools.html @@ -5,7 +5,7 @@ Autotools — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/bazel.html b/2/integrations/bazel.html index c069da44be4..c1791ac97ea 100644 --- a/2/integrations/bazel.html +++ b/2/integrations/bazel.html @@ -5,7 +5,7 @@ Bazel — conan 2.0.17 documentation - + @@ -152,7 +152,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/clion.html b/2/integrations/clion.html index 5ace898c336..eae88bcbb35 100644 --- a/2/integrations/clion.html +++ b/2/integrations/clion.html @@ -5,7 +5,7 @@ CLion — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    Using the plugin

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/cmake.html b/2/integrations/cmake.html index 68145237868..6c741f2e58a 100644 --- a/2/integrations/cmake.html +++ b/2/integrations/cmake.html @@ -5,7 +5,7 @@ CMake — conan 2.0.17 documentation - + @@ -158,7 +158,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/jfrog.html b/2/integrations/jfrog.html index 03d3feede43..37089e0a27b 100644 --- a/2/integrations/jfrog.html +++ b/2/integrations/jfrog.html @@ -5,7 +5,7 @@ JFrog — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

    Generating a Build Info

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/makefile.html b/2/integrations/makefile.html index 51880259155..5010ae1eea0 100644 --- a/2/integrations/makefile.html +++ b/2/integrations/makefile.html @@ -5,7 +5,7 @@ Makefile — conan 2.0.17 documentation - + @@ -148,7 +148,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/meson.html b/2/integrations/meson.html index 93d01424a4f..3b83aad6a81 100644 --- a/2/integrations/meson.html +++ b/2/integrations/meson.html @@ -5,7 +5,7 @@ Meson — conan 2.0.17 documentation - + @@ -152,7 +152,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/visual_studio.html b/2/integrations/visual_studio.html index eae565b0e49..5ffce0a0238 100644 --- a/2/integrations/visual_studio.html +++ b/2/integrations/visual_studio.html @@ -5,7 +5,7 @@ Visual Studio — conan 2.0.17 documentation - + @@ -161,7 +161,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/integrations/xcode.html b/2/integrations/xcode.html index 889698aeacc..c6a5564f399 100644 --- a/2/integrations/xcode.html +++ b/2/integrations/xcode.html @@ -5,7 +5,7 @@ Xcode — conan 2.0.17 documentation - + @@ -155,7 +155,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/introduction.html b/2/introduction.html index 65e6607d3f6..91c2bd6dfd9 100644 --- a/2/introduction.html +++ b/2/introduction.html @@ -5,7 +5,7 @@ Introduction — conan 2.0.17 documentation - + @@ -219,7 +219,7 @@

    Navigating the documentation

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/knowledge.html b/2/knowledge.html index d7e025fd43a..70e8eca2ef4 100644 --- a/2/knowledge.html +++ b/2/knowledge.html @@ -5,7 +5,7 @@ Knowledge — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/knowledge/cheatsheet.html b/2/knowledge/cheatsheet.html index 9d002d3c3d7..a22cff0dc7f 100644 --- a/2/knowledge/cheatsheet.html +++ b/2/knowledge/cheatsheet.html @@ -5,7 +5,7 @@ Cheat sheet — conan 2.0.17 documentation - + @@ -138,7 +138,7 @@

    Cheat sheet

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/knowledge/faq.html b/2/knowledge/faq.html index 9a74e00cacc..734053693d1 100644 --- a/2/knowledge/faq.html +++ b/2/knowledge/faq.html @@ -5,7 +5,7 @@ FAQ — conan 2.0.17 documentation - + @@ -224,7 +224,7 @@

    ERROR: AuthenticationException:

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/knowledge/guidelines.html b/2/knowledge/guidelines.html index 4db62745e6e..e47bc3f3b4f 100644 --- a/2/knowledge/guidelines.html +++ b/2/knowledge/guidelines.html @@ -5,7 +5,7 @@ Core guidelines — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

    Forbidden practices

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/knowledge/videos.html b/2/knowledge/videos.html index 8e8be58068a..1736477f04d 100644 --- a/2/knowledge/videos.html +++ b/2/knowledge/videos.html @@ -5,7 +5,7 @@ Videos — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference.html b/2/reference.html index 5405273ef8d..def0c97a5bb 100644 --- a/2/reference.html +++ b/2/reference.html @@ -5,7 +5,7 @@ Reference — conan 2.0.17 documentation - + @@ -197,7 +197,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/binary_model.html b/2/reference/binary_model.html index 70a6598ccae..5ff9c536c53 100644 --- a/2/reference/binary_model.html +++ b/2/reference/binary_model.html @@ -5,7 +5,7 @@ The binary model — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/binary_model/custom_compatibility.html b/2/reference/binary_model/custom_compatibility.html index 88a01364a8c..b6485f0736d 100644 --- a/2/reference/binary_model/custom_compatibility.html +++ b/2/reference/binary_model/custom_compatibility.html @@ -5,7 +5,7 @@ Customizing the binary compatibility — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

    Custom package_id from recipe dependencies

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/binary_model/dependencies.html b/2/reference/binary_model/dependencies.html index 2635bfc488d..84229d36cc5 100644 --- a/2/reference/binary_model/dependencies.html +++ b/2/reference/binary_model/dependencies.html @@ -5,7 +5,7 @@ The effect of dependencies on package_id — conan 2.0.17 documentation - + @@ -259,7 +259,7 @@

    Embed mode

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/binary_model/extending.html b/2/reference/binary_model/extending.html index 41c1b7ac8eb..ed5f3909d04 100644 --- a/2/reference/binary_model/extending.html +++ b/2/reference/binary_model/extending.html @@ -5,7 +5,7 @@ Extending the binary model — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

    Cross build target settings

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/binary_model/package_id.html b/2/reference/binary_model/package_id.html index 42cc5c121a0..3a954155394 100644 --- a/2/reference/binary_model/package_id.html +++ b/2/reference/binary_model/package_id.html @@ -5,7 +5,7 @@ How the package_id is computed — conan 2.0.17 documentation - + @@ -223,7 +223,7 @@

    How the package

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands.html b/2/reference/commands.html index aba6d93f830..358cf0cf4a7 100644 --- a/2/reference/commands.html +++ b/2/reference/commands.html @@ -5,7 +5,7 @@ Commands — conan 2.0.17 documentation - + @@ -204,7 +204,7 @@

    Command formatters

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/build.html b/2/reference/commands/build.html index 757ad1ab980..bbd7547e2c5 100644 --- a/2/reference/commands/build.html +++ b/2/reference/commands/build.html @@ -5,7 +5,7 @@ conan build — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan build

    -
    $ conan build -h
    +
    $ conan build -h
     usage: conan build [-h] [-v [V]] [--name NAME] [--version VERSION]
                        [--user USER] [--channel CHANNEL] [-g GENERATOR]
                        [-of OUTPUT_FOLDER] [-d DEPLOYER]
    @@ -289,7 +289,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/cache.html b/2/reference/commands/cache.html index 49f0a05d8a2..43000083d6f 100644 --- a/2/reference/commands/cache.html +++ b/2/reference/commands/cache.html @@ -5,7 +5,7 @@ conan cache — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Perform file operations in the local cache (of recipes and/or packages).

    conan cache path

    -
    $ conan cache path -h
    +
    $ conan cache path -h
     usage: conan cache path [-h] [-v [V]]
                             [--folder {export_source,source,build,metadata}]
                             reference
    @@ -272,7 +272,7 @@ 

    conan cache path

    conan cache clean

    -
    $ conan cache clean -h
    +
    $ conan cache clean -h
     usage: conan cache clean [-h] [-v [V]] [-s] [-b] [-d] [-t] [-p PACKAGE_QUERY]
                              [pattern]
     
    @@ -326,7 +326,7 @@ 

    conan cache clean

    conan cache check-integrity

    -
    $ conan cache check-integrity -h
    +
    $ conan cache check-integrity -h
     usage: conan cache check-integrity [-h] [-v [V]] [-p PACKAGE_QUERY] pattern
     
     Check the integrity of the local cache for the given references
    @@ -361,7 +361,7 @@ 

    conan cache check-integrity

    conan cache backup-upload

    -
    $ conan cache backup-upload -h
    +
    $ conan cache backup-upload -h
     usage: conan cache backup-upload [-h] [-v [V]]
     
     Upload all the source backups present in the cache
    @@ -379,7 +379,7 @@ 

    conan cache backup-upload

    conan cache save

    -
    $ conan cache save -h
    +
    $ conan cache save -h
     usage: conan cache save [-h] [-f FORMAT] [-v [V]] [-l LIST] [--file FILE]
                             [pattern]
     
    @@ -407,7 +407,7 @@ 

    conan cache save

    conan cache restore

    -
    $ conan cache restore -h
    +
    $ conan cache restore -h
     usage: conan cache restore [-h] [-f FORMAT] [-v [V]] file
     
     Put the artifacts from an archive into the cache
    @@ -441,7 +441,7 @@ 

    conan cache restore

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/config.html b/2/reference/commands/config.html index 1c68711a31f..2d577006fe0 100644 --- a/2/reference/commands/config.html +++ b/2/reference/commands/config.html @@ -5,7 +5,7 @@ conan config — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    conan config

    conan config home

    -
    $ conan config home -h
    +
    $ conan config home -h
     usage: conan config home [-h] [-v [V]]
     
     Show the Conan home folder.
    @@ -168,7 +168,7 @@ 

    conan config home

    conan config install

    -
    $ conan config install -h
    +
    $ conan config install -h
     usage: conan config install [-h] [-v [V]] [--verify-ssl [VERIFY_SSL] |
                                 --insecure] [-t {git,dir,file,url}] [-a ARGS]
                                 [-sf SOURCE_FOLDER] [-tf TARGET_FOLDER]
    @@ -275,7 +275,7 @@ 

    conan config home

    conan config list

    -
    $ conan config list -h
    +
    $ conan config list -h
     usage: conan config list [-h] [-f FORMAT] [-v [V]]
     
     Show all the Conan available configurations: core and tools.
    @@ -296,7 +296,7 @@ 

    conan config listtools.xxxx: These can be defined both in global.conf and profiles, and will be used by recipes and tools used within recipes, like CMakeToolchain

    -
    $ conan config list
    +
    $ conan config list
     core.cache:storage_path: Absolute path where the packages and database are stored
     core.download:download_cache: Define path to a file download cache
     core.download:parallel: Number of concurrent threads to download packages
    @@ -402,7 +402,7 @@ 

    conan config list

    conan config show

    -
    $ conan config show -h
    +
    $ conan config show -h
     usage: conan config show [-h] [-f FORMAT] [-v [V]] pattern
     
     Get the value of the specified conf
    @@ -475,7 +475,7 @@ 

    conan config show

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/create.html b/2/reference/commands/create.html index 838773be302..22744f480c5 100644 --- a/2/reference/commands/create.html +++ b/2/reference/commands/create.html @@ -5,7 +5,7 @@ conan create — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan create

    -
    $ conan create -h
    +
    $ conan create -h
     usage: conan create [-h] [-v [V]] [-f FORMAT] [--name NAME]
                         [--version VERSION] [--user USER] [--channel CHANNEL]
                         [-l LOCKFILE] [--lockfile-partial]
    @@ -326,7 +326,7 @@ 

    Conan create output

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/download.html b/2/reference/commands/download.html index 9d0ccc1bdc7..190ccc40d1e 100644 --- a/2/reference/commands/download.html +++ b/2/reference/commands/download.html @@ -5,7 +5,7 @@ conan download — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan download

    -
    $ conan download -h
    +
    $ conan download -h
     usage: conan download [-h] [-v [V]] [-f FORMAT] [--only-recipe]
                           [-p PACKAGE_QUERY] -r REMOTE [-m METADATA] [-l LIST]
                           [pattern]
    @@ -248,7 +248,7 @@ 

    Downloading metadata

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/editable.html b/2/reference/commands/editable.html index 2f3e2161d62..275ca1d726c 100644 --- a/2/reference/commands/editable.html +++ b/2/reference/commands/editable.html @@ -5,7 +5,7 @@ conan editable — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Allow working with a package that resides in user folder.

    conan editable add

    -
    $ conan editable add -h
    +
    $ conan editable add -h
     usage: conan editable add [-h] [-v [V]] [--name NAME] [--version VERSION]
                               [--user USER] [--channel CHANNEL]
                               [-of OUTPUT_FOLDER] [-r REMOTE | -nr]
    @@ -181,7 +181,7 @@ 

    conan editable add

    conan editable remove

    -
    $ conan editable remove -h
    +
    $ conan editable remove -h
     usage: conan editable remove [-h] [-v [V]] [-r REFS] [path]
     
     Remove the "editable" mode for this reference.
    @@ -203,7 +203,7 @@ 

    conan editable remove

    conan editable list

    -
    $ conan editable list -h
    +
    $ conan editable list -h
     usage: conan editable list [-h] [-f FORMAT] [-v [V]]
     
     List all the packages in editable mode.
    @@ -239,7 +239,7 @@ 

    conan editable list

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/export-pkg.html b/2/reference/commands/export-pkg.html index 27104ceed84..42171be81eb 100644 --- a/2/reference/commands/export-pkg.html +++ b/2/reference/commands/export-pkg.html @@ -5,7 +5,7 @@ conan export-pkg — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan export-pkg

    -
    $ conan export-pkg -h
    +
    $ conan export-pkg -h
     usage: conan export-pkg [-h] [-v [V]] [-f FORMAT] [-of OUTPUT_FOLDER]
                             [--build-require] [-tf TEST_FOLDER] [-sb]
                             [-r REMOTE | -nr] [--name NAME] [--version VERSION]
    @@ -263,7 +263,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/export.html b/2/reference/commands/export.html index 5b5f1329293..7d9f398c47d 100644 --- a/2/reference/commands/export.html +++ b/2/reference/commands/export.html @@ -5,7 +5,7 @@ conan export — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan export

    -
    $ conan export -h
    +
     
    diff --git a/2/reference/commands/graph/build_order.html b/2/reference/commands/graph/build_order.html
    index d768a9a2176..e19ed7f2f1e 100644
    --- a/2/reference/commands/graph/build_order.html
    +++ b/2/reference/commands/graph/build_order.html
    @@ -5,7 +5,7 @@
     
       
       conan graph build-order — conan 2.0.17 documentation
    -      
    +      
           
           
           
    @@ -151,7 +151,7 @@
                  
       

    conan graph build-order

    -
    $ conan graph build-order -h
    +
    $ conan graph build-order -h
     usage: conan graph build-order [-h] [-f FORMAT] [-v [V]] [--name NAME]
                                    [--version VERSION] [--user USER]
                                    [--channel CHANNEL] [--requires REQUIRES]
    @@ -380,7 +380,7 @@ 

    conan graph build-order

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/graph/build_order_merge.html b/2/reference/commands/graph/build_order_merge.html index 9ee038f1f90..458a572abda 100644 --- a/2/reference/commands/graph/build_order_merge.html +++ b/2/reference/commands/graph/build_order_merge.html @@ -5,7 +5,7 @@ conan graph build-order-merge — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan graph build-order-merge

    -
    $ conan graph build-order-merge -h
    +
    $ conan graph build-order-merge -h
     usage: conan graph build-order-merge [-h] [-f FORMAT] [-v [V]] [--file [FILE]]
     
     Merge more than 1 build-order file.
    @@ -181,7 +181,7 @@ 

    conan graph build-order-merge

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/graph/explain.html b/2/reference/commands/graph/explain.html index 8c7938a7847..b9db4392727 100644 --- a/2/reference/commands/graph/explain.html +++ b/2/reference/commands/graph/explain.html @@ -5,7 +5,7 @@ conan graph explain — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan graph explain

    -
    $ conan graph explain -h
    +
    $ conan graph explain -h
     usage: conan graph explain [-h] [-f FORMAT] [-v [V]] [--name NAME]
                                [--version VERSION] [--user USER]
                                [--channel CHANNEL] [--requires REQUIRES]
    @@ -360,7 +360,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/graph/info.html b/2/reference/commands/graph/info.html index b95f3b73fb6..c5750165b07 100644 --- a/2/reference/commands/graph/info.html +++ b/2/reference/commands/graph/info.html @@ -5,7 +5,7 @@ conan graph info — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan graph info

    -
    $ conan graph info -h
    +
    $ conan graph info -h
     usage: conan graph info [-h] [-f FORMAT] [-v [V]] [--name NAME]
                             [--version VERSION] [--user USER] [--channel CHANNEL]
                             [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
    @@ -549,7 +549,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/inspect.html b/2/reference/commands/inspect.html index 55e1a5064c7..5753d5ac2e3 100644 --- a/2/reference/commands/inspect.html +++ b/2/reference/commands/inspect.html @@ -5,7 +5,7 @@ conan inspect — conan 2.0.17 documentation - + @@ -149,7 +149,7 @@

    This feature is experimental and subject to breaking changes. See the Conan stability section for more information.

    -
    $ conan inspect -h
    +
    $ conan inspect -h
     usage: conan inspect [-h] [-v [V]] [-f FORMAT] [-r REMOTE | -nr] [-l LOCKFILE]
                          [--lockfile-partial]
                          path
    @@ -324,7 +324,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/install.html b/2/reference/commands/install.html index 0988be2601e..b0eafc4ab66 100644 --- a/2/reference/commands/install.html +++ b/2/reference/commands/install.html @@ -5,7 +5,7 @@ conan install — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan install

    -
    $ conan install -h
    +
    $ conan install -h
     usage: conan install [-h] [-v [V]] [-f FORMAT] [--name NAME]
                          [--version VERSION] [--user USER] [--channel CHANNEL]
                          [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
    @@ -457,7 +457,7 @@ 

    Lockfiles

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/list.html b/2/reference/commands/list.html index e3abe2309e2..49660522de4 100644 --- a/2/reference/commands/list.html +++ b/2/reference/commands/list.html @@ -5,7 +5,7 @@ conan list — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan list

    -
    $ conan list -h
    +
    $ conan list -h
     usage: conan list [-h] [-v [V]] [-f FORMAT] [-p PACKAGE_QUERY] [-r REMOTE]
                       [-c] [-g GRAPH] [-gb GRAPH_BINARIES] [-gr GRAPH_RECIPES]
                       [--lru LRU]
    @@ -573,7 +573,7 @@ 

    List compact output format

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/lock.html b/2/reference/commands/lock.html index bb27c415dd5..3a48bf09643 100644 --- a/2/reference/commands/lock.html +++ b/2/reference/commands/lock.html @@ -5,7 +5,7 @@ conan lock — conan 2.0.17 documentation - + @@ -161,7 +161,7 @@

    conan lockconan lock create: Evaluates a dependency graph and save a lockfile

  • conan lock merge: Merge several existing lockfiles into one.

  • -
    $ conan lock -h
    +
    $ conan lock -h
     usage: conan lock [-h] [-v [V]] {add,create,merge,remove} ...
     
     Create or manage lockfiles.
    @@ -205,7 +205,7 @@ 

    conan lock

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/lock/add.html b/2/reference/commands/lock/add.html index f53ff8e8471..1ab2dfdaf7a 100644 --- a/2/reference/commands/lock/add.html +++ b/2/reference/commands/lock/add.html @@ -5,7 +5,7 @@ conan lock add — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock add

    -
    $ conan lock add -h
    +
    $ conan lock add -h
     usage: conan lock add [-h] [-v [V]] [--requires REQUIRES]
                           [--build-requires BUILD_REQUIRES]
                           [--python-requires PYTHON_REQUIRES]
    @@ -268,7 +268,7 @@ 

    conan lock add

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/lock/create.html b/2/reference/commands/lock/create.html index e00b0c2137e..9fb847a2ff1 100644 --- a/2/reference/commands/lock/create.html +++ b/2/reference/commands/lock/create.html @@ -5,7 +5,7 @@ conan lock create — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock create

    -
    $ conan lock create -h
    +
    $ conan lock create -h
     usage: conan lock create [-h] [-v [V]] [--name NAME] [--version VERSION]
                              [--user USER] [--channel CHANNEL]
                              [--requires REQUIRES] [--tool-requires TOOL_REQUIRES]
    @@ -372,7 +372,7 @@ 

    conan lock create

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/lock/merge.html b/2/reference/commands/lock/merge.html index 1631892dbb5..425a8adda9a 100644 --- a/2/reference/commands/lock/merge.html +++ b/2/reference/commands/lock/merge.html @@ -5,7 +5,7 @@ conan lock merge — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock merge

    -
    $ conan lock merge -h
    +
    $ conan lock merge -h
     usage: conan lock merge [-h] [-v [V]] [--lockfile LOCKFILE]
                             [--lockfile-out LOCKFILE_OUT]
     
    @@ -308,7 +308,7 @@ 

    conan lock merge

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/lock/remove.html b/2/reference/commands/lock/remove.html index f2cdcd58f49..2033c42f6b8 100644 --- a/2/reference/commands/lock/remove.html +++ b/2/reference/commands/lock/remove.html @@ -5,7 +5,7 @@ conan lock remove — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    conan lock remove

    -
    $ conan lock remove -h
    +
    $ conan lock remove -h
     usage: conan lock remove [-h] [-v [V]] [--requires REQUIRES]
                              [--build-requires BUILD_REQUIRES]
                              [--python-requires PYTHON_REQUIRES]
    @@ -244,7 +244,7 @@ 

    conan lock remove

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/new.html b/2/reference/commands/new.html index eda3008f7d4..9b178a1de37 100644 --- a/2/reference/commands/new.html +++ b/2/reference/commands/new.html @@ -5,7 +5,7 @@ conan new — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Create a new recipe (with a conanfile.py and other associated files) from either a predefined or a user-defined template.

    conan new

    -
    $ conan new -h
    +
    $ conan new -h
     usage: conan new [-h] [-v [V]] [-d DEFINE] [-f] template
     
     Create a new example recipe and source files from a template.
    @@ -352,7 +352,7 @@ 

    Custom templates

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/profile.html b/2/reference/commands/profile.html index 1bb9d370273..a25e22a50c8 100644 --- a/2/reference/commands/profile.html +++ b/2/reference/commands/profile.html @@ -5,7 +5,7 @@ conan profile — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Manage profiles

    conan profile detect

    -
    $ conan profile detect -h
    +
    $ conan profile detect -h
     usage: conan profile detect [-h] [-v [V]] [--name NAME] [-f]
     
     Generate a profile using auto-detected values.
    @@ -214,7 +214,7 @@ 

    conan profile detect

    conan profile list

    -
    $ conan profile list -h
    +
    $ conan profile list -h
     usage: conan profile list [-h] [-f FORMAT] [-v [V]]
     
     List all profiles in the cache.
    @@ -243,7 +243,7 @@ 

    conan profile list

    conan profile path

    -
    $ conan
    +
    $ conan
     
     Consumer commands
     cache      Perform file operations in the local cache (of recipes and/or packages).
    @@ -283,7 +283,7 @@ 

    conan profile path

    conan profile show

    -
    $ conan profile show -h
    +
    $ conan profile show -h
     usage: conan profile show [-h] [-f FORMAT] [-v [V]] [-pr PROFILE]
                               [-pr:b PROFILE_BUILD] [-pr:h PROFILE_HOST]
                               [-pr:a PROFILE_ALL] [-o OPTIONS]
    @@ -448,7 +448,7 @@ 

    conan profile show

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/remote.html b/2/reference/commands/remote.html index 69b417e3487..0f6d2bbd38c 100644 --- a/2/reference/commands/remote.html +++ b/2/reference/commands/remote.html @@ -5,7 +5,7 @@ conan remote — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Use this command to add, edit and remove Conan repositories from the Conan remote registry and also manage authentication to those remotes. For more information on how to work with Conan repositories, please check the dedicated section.

    -
    $ conan remote -h
    +
    $ conan remote -h
     usage: conan remote [-h] [-v [V]]
                         {add,auth,disable,enable,list,list-users,login,logout,remove,rename,set-user,update}
                         ...
    @@ -182,7 +182,7 @@
     

    conan remote add

    -
    $ conan remote add -h
    +
    $ conan remote add -h
     usage: conan remote add [-h] [-v [V]] [--insecure] [--index INDEX] [-f]
                             name url
     
    @@ -206,7 +206,7 @@ 

    conan remote add

    conan remote auth

    -
    $ conan remote auth -h
    +
    $ conan remote auth -h
     usage: conan remote auth [-h] [-f FORMAT] [-v [V]] [--with-user] remote
     
     Authenticate in the defined remotes
    @@ -230,7 +230,7 @@ 

    conan remote auth

    conan remote disable

    -
    $ conan remote disable -h
    +
    $ conan remote disable -h
     usage: conan remote disable [-h] [-f FORMAT] [-v [V]] remote
     
     Disable all the remotes matching a pattern.
    @@ -252,7 +252,7 @@ 

    conan remote disable

    conan remote enable

    -
    $ conan remote enable -h
    +
    $ conan remote enable -h
     usage: conan remote enable [-h] [-f FORMAT] [-v [V]] remote
     
     Enable all the remotes matching a pattern.
    @@ -274,7 +274,7 @@ 

    conan remote enable

    conan remote list

    -
    $ conan remote list -h
    +
    $ conan remote list -h
     usage: conan remote list [-h] [-f FORMAT] [-v [V]]
     
     List current remotes.
    @@ -292,7 +292,7 @@ 

    conan remote list

    conan remote list-users

    -
    $ conan remote list-users -h
    +
    $ conan remote list-users -h
     usage: conan remote list-users [-h] [-f FORMAT] [-v [V]]
     
     List the users logged into all the remotes.
    @@ -310,7 +310,7 @@ 

    conan remote list-users

    conan remote login

    -
    $ conan remote login -h
    +
    $ conan remote login -h
     usage: conan remote login [-h] [-f FORMAT] [-v [V]] [-p [PASSWORD]]
                               remote [username]
     
    @@ -338,7 +338,7 @@ 

    conan remote login

    conan remote logout

    -
    $ conan remote logout -h
    +
    $ conan remote logout -h
     usage: conan remote logout [-h] [-f FORMAT] [-v [V]] remote
     
     Clear the existing credentials for the specified remotes matching a pattern.
    @@ -360,7 +360,7 @@ 

    conan remote logout

    conan remote remove

    -
    $ conan remote remove -h
    +
    $ conan remote remove -h
     usage: conan remote remove [-h] [-v [V]] remote
     
     Remove a remote.
    @@ -378,7 +378,7 @@ 

    conan remote remove

    conan remote rename

    -
    $ conan remote rename -h
    +
    $ conan remote rename -h
     usage: conan remote rename [-h] [-v [V]] remote new_name
     
     Rename a remote.
    @@ -397,7 +397,7 @@ 

    conan remote rename

    conan remote set-user

    -
    $ conan remote set-user -h
    +
    $ conan remote set-user -h
     usage: conan remote set-user [-h] [-f FORMAT] [-v [V]] remote username
     
     Associate a username with a remote matching a pattern without performing the
    @@ -421,7 +421,7 @@ 

    conan remote set-user

    conan remote update

    -
    $ conan remote update -h
    +
    $ conan remote update -h
     usage: conan remote update [-h] [-v [V]] [--url URL] [--secure] [--insecure]
                                [--index INDEX]
                                remote
    @@ -466,7 +466,7 @@ 

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/remove.html b/2/reference/commands/remove.html index a20a73bbcb5..79298df0716 100644 --- a/2/reference/commands/remove.html +++ b/2/reference/commands/remove.html @@ -5,7 +5,7 @@ conan remove — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan remove

    -
    $ conan remove -h
    +
    $ conan remove -h
     usage: conan remove [-h] [-v [V]] [-f FORMAT] [-c] [-p PACKAGE_QUERY]
                         [-r REMOTE] [-l LIST] [--lru LRU] [--dry-run]
                         [pattern]
    @@ -276,7 +276,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/search.html b/2/reference/commands/search.html index 39527ad3375..5615e673046 100644 --- a/2/reference/commands/search.html +++ b/2/reference/commands/search.html @@ -5,7 +5,7 @@ conan search — conan 2.0.17 documentation - + @@ -146,7 +146,7 @@

    conan search

    Search existing recipes in remotes. This command is equivalent to conan list <query> -r=*, and is provided for simpler UX.

    -
    $ conan search -h
    +
    $ conan search -h
     usage: conan search [-h] [-v [V]] [-f FORMAT] [-r REMOTE] reference
     
     Search for package recipes in all the remotes (by default), or a remote.
    @@ -215,7 +215,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/source.html b/2/reference/commands/source.html index 59794fd82be..80b7c90ea84 100644 --- a/2/reference/commands/source.html +++ b/2/reference/commands/source.html @@ -5,7 +5,7 @@ conan source — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan source

    -
    $ conan source -h
    +
    $ conan source -h
     usage: conan source [-h] [-v [V]] [--name NAME] [--version VERSION]
                         [--user USER] [--channel CHANNEL]
                         path
    @@ -186,7 +186,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/test.html b/2/reference/commands/test.html index 2c525eb1649..0795a18ea37 100644 --- a/2/reference/commands/test.html +++ b/2/reference/commands/test.html @@ -5,7 +5,7 @@ conan test — conan 2.0.17 documentation - + @@ -144,7 +144,7 @@

    conan test

    -
    $ conan test -h
    +
    $ conan test -h
     usage: conan test [-h] [-v [V]] [-f FORMAT] [-b BUILD] [-r REMOTE | -nr] [-u]
                       [-pr PROFILE] [-pr:b PROFILE_BUILD] [-pr:h PROFILE_HOST]
                       [-pr:a PROFILE_ALL] [-o OPTIONS] [-o:b OPTIONS_BUILD]
    @@ -271,7 +271,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/commands/upload.html b/2/reference/commands/upload.html index e60636d0e60..34ef0236338 100644 --- a/2/reference/commands/upload.html +++ b/2/reference/commands/upload.html @@ -5,7 +5,7 @@ conan upload — conan 2.0.17 documentation - + @@ -147,7 +147,7 @@

    Use this command to upload recipes and binaries to Conan repositories. For more information on how to work with Conan repositories, please check the dedicated section.

    -
    $ conan upload -h
    +
    -
    $ conan version -h
    +
     
    diff --git a/2/reference/conanfile/methods.html b/2/reference/conanfile/methods.html
    index bff6f80cf36..fc023392e07 100644
    --- a/2/reference/conanfile/methods.html
    +++ b/2/reference/conanfile/methods.html
    @@ -5,7 +5,7 @@
     
       
       Methods — conan 2.0.17 documentation
    -      
    +      
           
           
           
    @@ -193,7 +193,7 @@
     
       

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/build.html b/2/reference/conanfile/methods/build.html index d499a7164a1..b39bc3bfa51 100644 --- a/2/reference/conanfile/methods/build.html +++ b/2/reference/conanfile/methods/build.html @@ -5,7 +5,7 @@ build() — conan 2.0.17 documentation - + @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/build_id.html b/2/reference/conanfile/methods/build_id.html index 9802ecce54e..af0c1621a45 100644 --- a/2/reference/conanfile/methods/build_id.html +++ b/2/reference/conanfile/methods/build_id.html @@ -5,7 +5,7 @@ build_id() — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/build_requirements.html b/2/reference/conanfile/methods/build_requirements.html index bf8d0d738be..726e20ceca9 100644 --- a/2/reference/conanfile/methods/build_requirements.html +++ b/2/reference/conanfile/methods/build_requirements.html @@ -5,7 +5,7 @@ build_requirements() — conan 2.0.17 documentation - + @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/compatibility.html b/2/reference/conanfile/methods/compatibility.html index dd4ffab7ad3..511b08eb7af 100644 --- a/2/reference/conanfile/methods/compatibility.html +++ b/2/reference/conanfile/methods/compatibility.html @@ -5,7 +5,7 @@ compatibility() — conan 2.0.17 documentation - + @@ -205,7 +205,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/config_options.html b/2/reference/conanfile/methods/config_options.html index c5d0520afd6..aebca156b51 100644 --- a/2/reference/conanfile/methods/config_options.html +++ b/2/reference/conanfile/methods/config_options.html @@ -5,7 +5,7 @@ config_options() — conan 2.0.17 documentation - + @@ -227,7 +227,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/configure.html b/2/reference/conanfile/methods/configure.html index 81bd477ddc9..a79789a4fda 100644 --- a/2/reference/conanfile/methods/configure.html +++ b/2/reference/conanfile/methods/configure.html @@ -5,7 +5,7 @@ configure() — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/deploy.html b/2/reference/conanfile/methods/deploy.html index bb5ef88e92e..14a6789eed7 100644 --- a/2/reference/conanfile/methods/deploy.html +++ b/2/reference/conanfile/methods/deploy.html @@ -5,7 +5,7 @@ deploy() — conan 2.0.17 documentation - + @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/export.html b/2/reference/conanfile/methods/export.html index ca8bd5214cd..9defba926d2 100644 --- a/2/reference/conanfile/methods/export.html +++ b/2/reference/conanfile/methods/export.html @@ -5,7 +5,7 @@ export() — conan 2.0.17 documentation - + @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/export_sources.html b/2/reference/conanfile/methods/export_sources.html index 02f18a46663..da5fc103098 100644 --- a/2/reference/conanfile/methods/export_sources.html +++ b/2/reference/conanfile/methods/export_sources.html @@ -5,7 +5,7 @@ export_sources() — conan 2.0.17 documentation - + @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/generate.html b/2/reference/conanfile/methods/generate.html index 0c8b9361b3f..9bf3302f84a 100644 --- a/2/reference/conanfile/methods/generate.html +++ b/2/reference/conanfile/methods/generate.html @@ -5,7 +5,7 @@ generate() — conan 2.0.17 documentation - + @@ -395,7 +395,7 @@

    Dependencies cp

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/init.html b/2/reference/conanfile/methods/init.html index d3acd7b31e8..3f751acb9b7 100644 --- a/2/reference/conanfile/methods/init.html +++ b/2/reference/conanfile/methods/init.html @@ -5,7 +5,7 @@ init() — conan 2.0.17 documentation - + @@ -277,7 +277,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/layout.html b/2/reference/conanfile/methods/layout.html index 3d5e088881d..40b28555e75 100644 --- a/2/reference/conanfile/methods/layout.html +++ b/2/reference/conanfile/methods/layout.html @@ -5,7 +5,7 @@ layout() — conan 2.0.17 documentation - + @@ -297,7 +297,7 @@

    Environment variables and configuration

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/package.html b/2/reference/conanfile/methods/package.html index 20c16fade55..cf006532915 100644 --- a/2/reference/conanfile/methods/package.html +++ b/2/reference/conanfile/methods/package.html @@ -5,7 +5,7 @@ package() — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/package_id.html b/2/reference/conanfile/methods/package_id.html index 06d81a0535d..029219b0fbf 100644 --- a/2/reference/conanfile/methods/package_id.html +++ b/2/reference/conanfile/methods/package_id.html @@ -5,7 +5,7 @@ package_id() — conan 2.0.17 documentation - + @@ -302,7 +302,7 @@

    Adding information

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/package_info.html b/2/reference/conanfile/methods/package_info.html index 1eeca94549d..c3c7da7938f 100644 --- a/2/reference/conanfile/methods/package_info.html +++ b/2/reference/conanfile/methods/package_info.html @@ -5,7 +5,7 @@ package_info() — conan 2.0.17 documentation - + @@ -477,7 +477,7 @@

    buildenv_info, runenv_info

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/requirements.html b/2/reference/conanfile/methods/requirements.html index 815539683a9..7a2d0109785 100644 --- a/2/reference/conanfile/methods/requirements.html +++ b/2/reference/conanfile/methods/requirements.html @@ -5,7 +5,7 @@ requirements() — conan 2.0.17 documentation - + @@ -306,7 +306,7 @@

    Default traits for each kind of requires

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/set_name.html b/2/reference/conanfile/methods/set_name.html index 2b2b27379e6..866f51a1bfa 100644 --- a/2/reference/conanfile/methods/set_name.html +++ b/2/reference/conanfile/methods/set_name.html @@ -5,7 +5,7 @@ set_name() — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/set_version.html b/2/reference/conanfile/methods/set_version.html index 892cb0927ae..afaf083df9f 100644 --- a/2/reference/conanfile/methods/set_version.html +++ b/2/reference/conanfile/methods/set_version.html @@ -5,7 +5,7 @@ set_version() — conan 2.0.17 documentation - + @@ -229,7 +229,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/source.html b/2/reference/conanfile/methods/source.html index 873d540f77f..75f8cdc16dc 100644 --- a/2/reference/conanfile/methods/source.html +++ b/2/reference/conanfile/methods/source.html @@ -5,7 +5,7 @@ source() — conan 2.0.17 documentation - + @@ -258,7 +258,7 @@

    Forced retrieval of sources

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/system_requirements.html b/2/reference/conanfile/methods/system_requirements.html index 10e37d315d5..f44fffdf7e1 100644 --- a/2/reference/conanfile/methods/system_requirements.html +++ b/2/reference/conanfile/methods/system_requirements.html @@ -5,7 +5,7 @@ system_requirements() — conan 2.0.17 documentation - + @@ -250,7 +250,7 @@

    Collecting system requirements

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/test.html b/2/reference/conanfile/methods/test.html index 78c5078969c..9433fee9d51 100644 --- a/2/reference/conanfile/methods/test.html +++ b/2/reference/conanfile/methods/test.html @@ -5,7 +5,7 @@ test() — conan 2.0.17 documentation - + @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/validate.html b/2/reference/conanfile/methods/validate.html index f5a034f84b7..5c1079c5d25 100644 --- a/2/reference/conanfile/methods/validate.html +++ b/2/reference/conanfile/methods/validate.html @@ -5,7 +5,7 @@ validate() — conan 2.0.17 documentation - + @@ -234,7 +234,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/methods/validate_build.html b/2/reference/conanfile/methods/validate_build.html index 29a87365823..a0288e52749 100644 --- a/2/reference/conanfile/methods/validate_build.html +++ b/2/reference/conanfile/methods/validate_build.html @@ -5,7 +5,7 @@ validate_build() — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile/running_and_output.html b/2/reference/conanfile/running_and_output.html index 2d3ab104c5f..4f189022c77 100644 --- a/2/reference/conanfile/running_and_output.html +++ b/2/reference/conanfile/running_and_output.html @@ -5,7 +5,7 @@ Running and output — conan 2.0.17 documentation - + @@ -194,7 +194,7 @@

    Output text from recipes

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/conanfile_txt.html b/2/reference/conanfile_txt.html index 0e0b4c5ee8a..ac3eae7b6c7 100644 --- a/2/reference/conanfile_txt.html +++ b/2/reference/conanfile_txt.html @@ -5,7 +5,7 @@ conanfile.txt — conan 2.0.17 documentation - + @@ -237,7 +237,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files.html b/2/reference/config_files.html index 1e192b1a909..cad3733eebd 100644 --- a/2/reference/config_files.html +++ b/2/reference/config_files.html @@ -5,7 +5,7 @@ Configuration files — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files/conanrc.html b/2/reference/config_files/conanrc.html index 1ad6dc9e92c..4882a0ba4cc 100644 --- a/2/reference/config_files/conanrc.html +++ b/2/reference/config_files/conanrc.html @@ -5,7 +5,7 @@ .conanrc — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files/credentials.html b/2/reference/config_files/credentials.html index 6300b7f61dc..abf89401cb1 100644 --- a/2/reference/config_files/credentials.html +++ b/2/reference/config_files/credentials.html @@ -5,7 +5,7 @@ credentials.json — conan 2.0.17 documentation - + @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files/global_conf.html b/2/reference/config_files/global_conf.html index 4f0a14428fd..2fcf2ce87c2 100644 --- a/2/reference/config_files/global_conf.html +++ b/2/reference/config_files/global_conf.html @@ -5,7 +5,7 @@ global.conf — conan 2.0.17 documentation - + @@ -151,7 +151,7 @@

    Introduction to configurationprofiles.

    To list all the possible configurations available, run conan config list:

    -
    $ conan config list
    +
    diff --git a/2/reference/config_files/remotes.html b/2/reference/config_files/remotes.html index 50a55acf55d..7479d79f249 100644 --- a/2/reference/config_files/remotes.html +++ b/2/reference/config_files/remotes.html @@ -5,7 +5,7 @@ remotes.json — conan 2.0.17 documentation - + @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files/settings.html b/2/reference/config_files/settings.html index d1b1d702320..f2bbed10391 100644 --- a/2/reference/config_files/settings.html +++ b/2/reference/config_files/settings.html @@ -5,7 +5,7 @@ settings.yml — conan 2.0.17 documentation - + @@ -574,7 +574,7 @@

    Add new values

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/config_files/source_credentials.html b/2/reference/config_files/source_credentials.html index f356be55731..e282122c531 100644 --- a/2/reference/config_files/source_credentials.html +++ b/2/reference/config_files/source_credentials.html @@ -5,7 +5,7 @@ source_credentials.json — conan 2.0.17 documentation - + @@ -212,7 +212,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/environment.html b/2/reference/environment.html index 7cfb3b224be..48973eae354 100644 --- a/2/reference/environment.html +++ b/2/reference/environment.html @@ -5,7 +5,7 @@ Environment variables — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    Logging

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions.html b/2/reference/extensions.html index 8097019d6ff..c89c0432a58 100644 --- a/2/reference/extensions.html +++ b/2/reference/extensions.html @@ -5,7 +5,7 @@ Extensions — conan 2.0.17 documentation - + @@ -233,7 +233,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/binary_compatibility.html b/2/reference/extensions/binary_compatibility.html index bc1949d53cf..8ec3b5f7522 100644 --- a/2/reference/extensions/binary_compatibility.html +++ b/2/reference/extensions/binary_compatibility.html @@ -5,7 +5,7 @@ Binary compatibility — conan 2.0.17 documentation - + @@ -170,7 +170,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/command_wrapper.html b/2/reference/extensions/command_wrapper.html index 8841f471999..8231023dab8 100644 --- a/2/reference/extensions/command_wrapper.html +++ b/2/reference/extensions/command_wrapper.html @@ -5,7 +5,7 @@ Command wrapper — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/custom_commands.html b/2/reference/extensions/custom_commands.html index 27c96ac2472..04abd316cd3 100644 --- a/2/reference/extensions/custom_commands.html +++ b/2/reference/extensions/custom_commands.html @@ -5,7 +5,7 @@ Custom commands — conan 2.0.17 documentation - + @@ -366,7 +366,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/custom_generators.html b/2/reference/extensions/custom_generators.html index 4d6dbf924fc..0af72d7ce6d 100644 --- a/2/reference/extensions/custom_generators.html +++ b/2/reference/extensions/custom_generators.html @@ -5,7 +5,7 @@ Custom Conan generators — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    Using global custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/deployers.html b/2/reference/extensions/deployers.html index bcdb366b701..327e71bf8ed 100644 --- a/2/reference/extensions/deployers.html +++ b/2/reference/extensions/deployers.html @@ -5,7 +5,7 @@ Deployers — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    Custom deployers

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/hooks.html b/2/reference/extensions/hooks.html index 18df90a309d..44abe661cf6 100644 --- a/2/reference/extensions/hooks.html +++ b/2/reference/extensions/hooks.html @@ -5,7 +5,7 @@ Hooks — conan 2.0.17 documentation - + @@ -279,7 +279,7 @@

    Official Hooks

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/package_signing.html b/2/reference/extensions/package_signing.html index 65df4a142f2..8fe5baf60cb 100644 --- a/2/reference/extensions/package_signing.html +++ b/2/reference/extensions/package_signing.html @@ -5,7 +5,7 @@ Package signing — conan 2.0.17 documentation - + @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/profile_plugin.html b/2/reference/extensions/profile_plugin.html index ebd3927c873..058f46543ec 100644 --- a/2/reference/extensions/profile_plugin.html +++ b/2/reference/extensions/profile_plugin.html @@ -5,7 +5,7 @@ Profile plugin — conan 2.0.17 documentation - + @@ -176,7 +176,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api.html b/2/reference/extensions/python_api.html index 16e3cd4a70c..8edd1774341 100644 --- a/2/reference/extensions/python_api.html +++ b/2/reference/extensions/python_api.html @@ -5,7 +5,7 @@ Python API — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/ConanAPI.html b/2/reference/extensions/python_api/ConanAPI.html index 4b7c8bd3277..fa87e475034 100644 --- a/2/reference/extensions/python_api/ConanAPI.html +++ b/2/reference/extensions/python_api/ConanAPI.html @@ -5,7 +5,7 @@ Conan API Reference — conan 2.0.17 documentation - + @@ -178,7 +178,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/ConfigAPI.html b/2/reference/extensions/python_api/ConfigAPI.html index b7b02e9a10a..3e3b38b4ab4 100644 --- a/2/reference/extensions/python_api/ConfigAPI.html +++ b/2/reference/extensions/python_api/ConfigAPI.html @@ -5,7 +5,7 @@ Config API — conan 2.0.17 documentation - + @@ -186,7 +186,7 @@

    Config API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/DownloadAPI.html b/2/reference/extensions/python_api/DownloadAPI.html index c413735bf81..0cb972a65c5 100644 --- a/2/reference/extensions/python_api/DownloadAPI.html +++ b/2/reference/extensions/python_api/DownloadAPI.html @@ -5,7 +5,7 @@ Download API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Download API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/ExportAPI.html b/2/reference/extensions/python_api/ExportAPI.html index f7ea7e05d42..601d882ca3e 100644 --- a/2/reference/extensions/python_api/ExportAPI.html +++ b/2/reference/extensions/python_api/ExportAPI.html @@ -5,7 +5,7 @@ Export API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Export API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/GraphAPI.html b/2/reference/extensions/python_api/GraphAPI.html index c701081eb9c..6bb426e9290 100644 --- a/2/reference/extensions/python_api/GraphAPI.html +++ b/2/reference/extensions/python_api/GraphAPI.html @@ -5,7 +5,7 @@ Graph API — conan 2.0.17 documentation - + @@ -241,7 +241,7 @@

    Graph API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/InstallAPI.html b/2/reference/extensions/python_api/InstallAPI.html index 7bfe8848793..eec3425a9cb 100644 --- a/2/reference/extensions/python_api/InstallAPI.html +++ b/2/reference/extensions/python_api/InstallAPI.html @@ -5,7 +5,7 @@ Install API — conan 2.0.17 documentation - + @@ -203,7 +203,7 @@

    Install API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/ListAPI.html b/2/reference/extensions/python_api/ListAPI.html index b7558a369f4..4b2958e731f 100644 --- a/2/reference/extensions/python_api/ListAPI.html +++ b/2/reference/extensions/python_api/ListAPI.html @@ -5,7 +5,7 @@ List API — conan 2.0.17 documentation - + @@ -188,7 +188,7 @@

    List API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/NewAPI.html b/2/reference/extensions/python_api/NewAPI.html index b2343afc412..b4f6f2071e7 100644 --- a/2/reference/extensions/python_api/NewAPI.html +++ b/2/reference/extensions/python_api/NewAPI.html @@ -5,7 +5,7 @@ New API — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

    New API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/ProfilesAPI.html b/2/reference/extensions/python_api/ProfilesAPI.html index 06f8be81fa2..cbd6af2f354 100644 --- a/2/reference/extensions/python_api/ProfilesAPI.html +++ b/2/reference/extensions/python_api/ProfilesAPI.html @@ -5,7 +5,7 @@ Profiles API — conan 2.0.17 documentation - + @@ -229,7 +229,7 @@

    Profiles API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/RemotesAPI.html b/2/reference/extensions/python_api/RemotesAPI.html index fa3da3c4e69..7d5625f9f4c 100644 --- a/2/reference/extensions/python_api/RemotesAPI.html +++ b/2/reference/extensions/python_api/RemotesAPI.html @@ -5,7 +5,7 @@ Remotes API — conan 2.0.17 documentation - + @@ -188,7 +188,7 @@

    Remotes API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/RemoveAPI.html b/2/reference/extensions/python_api/RemoveAPI.html index 84e6b495c1d..9a323fdc80a 100644 --- a/2/reference/extensions/python_api/RemoveAPI.html +++ b/2/reference/extensions/python_api/RemoveAPI.html @@ -5,7 +5,7 @@ Remove API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Remove API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/SearchAPI.html b/2/reference/extensions/python_api/SearchAPI.html index 5a05970c5b4..cb93ad3be67 100644 --- a/2/reference/extensions/python_api/SearchAPI.html +++ b/2/reference/extensions/python_api/SearchAPI.html @@ -5,7 +5,7 @@ Search API — conan 2.0.17 documentation - + @@ -171,7 +171,7 @@

    Search API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_api/UploadAPI.html b/2/reference/extensions/python_api/UploadAPI.html index cf649d5acd3..37840c1f37e 100644 --- a/2/reference/extensions/python_api/UploadAPI.html +++ b/2/reference/extensions/python_api/UploadAPI.html @@ -5,7 +5,7 @@ Upload API — conan 2.0.17 documentation - + @@ -198,7 +198,7 @@

    Upload API

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/extensions/python_requires.html b/2/reference/extensions/python_requires.html index a282525775c..6a21062c09c 100644 --- a/2/reference/extensions/python_requires.html +++ b/2/reference/extensions/python_requires.html @@ -5,7 +5,7 @@ Python requires — conan 2.0.17 documentation - + @@ -412,7 +412,7 @@

    Resolution of python_requires

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools.html b/2/reference/tools.html index 8eca581a793..3f0777f3667 100644 --- a/2/reference/tools.html +++ b/2/reference/tools.html @@ -5,7 +5,7 @@ Recipe tools — conan 2.0.17 documentation - + @@ -268,7 +268,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/android.html b/2/reference/tools/android.html index a5daae73ce4..c5abcb1198d 100644 --- a/2/reference/tools/android.html +++ b/2/reference/tools/android.html @@ -5,7 +5,7 @@ conan.tools.android — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    android_abi()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/apple.html b/2/reference/tools/apple.html index 4803f615776..c2412e7e872 100644 --- a/2/reference/tools/apple.html +++ b/2/reference/tools/apple.html @@ -5,7 +5,7 @@ conan.tools.apple — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/apple/other.html b/2/reference/tools/apple/other.html index 3905f758008..a78203bab5c 100644 --- a/2/reference/tools/apple/other.html +++ b/2/reference/tools/apple/other.html @@ -5,7 +5,7 @@ conan.tools.apple.fix_apple_shared_install_name() — conan 2.0.17 documentation - + @@ -334,7 +334,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/apple/xcodebuild.html b/2/reference/tools/apple/xcodebuild.html index 75bd2964d20..d56d4d8c31d 100644 --- a/2/reference/tools/apple/xcodebuild.html +++ b/2/reference/tools/apple/xcodebuild.html @@ -5,7 +5,7 @@ XcodeBuild — conan 2.0.17 documentation - + @@ -237,7 +237,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/apple/xcodedeps.html b/2/reference/tools/apple/xcodedeps.html index 4e6a55241a1..1fc9be507b0 100644 --- a/2/reference/tools/apple/xcodedeps.html +++ b/2/reference/tools/apple/xcodedeps.html @@ -5,7 +5,7 @@ XcodeDeps — conan 2.0.17 documentation - + @@ -288,7 +288,7 @@

    Custom configurations

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/apple/xcodetoolchain.html b/2/reference/tools/apple/xcodetoolchain.html index 59bb2882d6a..3373d064ee4 100644 --- a/2/reference/tools/apple/xcodetoolchain.html +++ b/2/reference/tools/apple/xcodetoolchain.html @@ -5,7 +5,7 @@ XcodeToolchain — conan 2.0.17 documentation - + @@ -252,7 +252,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/build.html b/2/reference/tools/build.html index 446de10a81f..89bf95611c7 100644 --- a/2/reference/tools/build.html +++ b/2/reference/tools/build.html @@ -5,7 +5,7 @@ conan.tools.build — conan 2.0.17 documentation - + @@ -371,7 +371,7 @@

    conan.tools.build.supported_cppstd()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cmake.html b/2/reference/tools/cmake.html index 88d07ded7d4..be36dada899 100644 --- a/2/reference/tools/cmake.html +++ b/2/reference/tools/cmake.html @@ -5,7 +5,7 @@ conan.tools.cmake — conan 2.0.17 documentation - + @@ -184,7 +184,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cmake/cmake.html b/2/reference/tools/cmake/cmake.html index 252a83fe843..565deca8fde 100644 --- a/2/reference/tools/cmake/cmake.html +++ b/2/reference/tools/cmake/cmake.html @@ -5,7 +5,7 @@ CMake — conan 2.0.17 documentation - + @@ -332,7 +332,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cmake/cmake_layout.html b/2/reference/tools/cmake/cmake_layout.html index 080b753de05..a944e3b35e2 100644 --- a/2/reference/tools/cmake/cmake_layout.html +++ b/2/reference/tools/cmake/cmake_layout.html @@ -5,7 +5,7 @@ cmake_layout — conan 2.0.17 documentation - + @@ -261,7 +261,7 @@

    Multi-setting/option cmake_layout

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cmake/cmakedeps.html b/2/reference/tools/cmake/cmakedeps.html index fc2f0f87d1b..bbfb5cb34ec 100644 --- a/2/reference/tools/cmake/cmakedeps.html +++ b/2/reference/tools/cmake/cmakedeps.html @@ -5,7 +5,7 @@ CMakeDeps — conan 2.0.17 documentation - + @@ -538,7 +538,7 @@

    Map from project configuration to imported target’s configuration

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cmake/cmaketoolchain.html b/2/reference/tools/cmake/cmaketoolchain.html index 7b17141941e..6efe5a470f4 100644 --- a/2/reference/tools/cmake/cmaketoolchain.html +++ b/2/reference/tools/cmake/cmaketoolchain.html @@ -5,7 +5,7 @@ CMakeToolchain — conan 2.0.17 documentation - + @@ -685,7 +685,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/cpp_info.html b/2/reference/tools/cpp_info.html index b4a3ba939ed..f7bdc1ee05b 100644 --- a/2/reference/tools/cpp_info.html +++ b/2/reference/tools/cpp_info.html @@ -5,7 +5,7 @@ conan.tools.CppInfo — conan 2.0.17 documentation - + @@ -195,7 +195,7 @@

    Aggregating information in custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/env.html b/2/reference/tools/env.html index 26575097eb4..d5a9089df64 100644 --- a/2/reference/tools/env.html +++ b/2/reference/tools/env.html @@ -5,7 +5,7 @@ conan.tools.env — conan 2.0.17 documentation - + @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/env/environment.html b/2/reference/tools/env/environment.html index 7cf434ee9b7..9f39a3a51f3 100644 --- a/2/reference/tools/env/environment.html +++ b/2/reference/tools/env/environment.html @@ -5,7 +5,7 @@ Environment — conan 2.0.17 documentation - + @@ -398,7 +398,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/env/envvars.html b/2/reference/tools/env/envvars.html index 1d4feeee31d..e8b4fddc3fb 100644 --- a/2/reference/tools/env/envvars.html +++ b/2/reference/tools/env/envvars.html @@ -5,7 +5,7 @@ EnvVars — conan 2.0.17 documentation - + @@ -329,7 +329,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/env/virtualbuildenv.html b/2/reference/tools/env/virtualbuildenv.html index d1167724f1e..4a00e276201 100644 --- a/2/reference/tools/env/virtualbuildenv.html +++ b/2/reference/tools/env/virtualbuildenv.html @@ -5,7 +5,7 @@ VirtualBuildEnv — conan 2.0.17 documentation - + @@ -266,7 +266,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/env/virtualrunenv.html b/2/reference/tools/env/virtualrunenv.html index 660cdf9f968..d4326f4ebc4 100644 --- a/2/reference/tools/env/virtualrunenv.html +++ b/2/reference/tools/env/virtualrunenv.html @@ -5,7 +5,7 @@ VirtualRunEnv — conan 2.0.17 documentation - + @@ -268,7 +268,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files.html b/2/reference/tools/files.html index f1f4afa239d..a03be4aaf46 100644 --- a/2/reference/tools/files.html +++ b/2/reference/tools/files.html @@ -5,7 +5,7 @@ conan.tools.files — conan 2.0.17 documentation - + @@ -204,7 +204,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/basic.html b/2/reference/tools/files/basic.html index 4201e184a7e..a5500a1c6ab 100644 --- a/2/reference/tools/files/basic.html +++ b/2/reference/tools/files/basic.html @@ -5,7 +5,7 @@ conan.tools.files basic operations — conan 2.0.17 documentation - + @@ -575,7 +575,7 @@

    conan.tools.files.trim_conandata()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/checksum.html b/2/reference/tools/files/checksum.html index 9f722b17282..b050d2d6fd1 100644 --- a/2/reference/tools/files/checksum.html +++ b/2/reference/tools/files/checksum.html @@ -5,7 +5,7 @@ conan.tools.files checksums — conan 2.0.17 documentation - + @@ -217,7 +217,7 @@

    conan.tools.files.check_sha256()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/downloads.html b/2/reference/tools/files/downloads.html index 6a0eb466c98..737a9cd4af4 100644 --- a/2/reference/tools/files/downloads.html +++ b/2/reference/tools/files/downloads.html @@ -5,7 +5,7 @@ conan.tools.files downloads — conan 2.0.17 documentation - + @@ -291,7 +291,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/packaging.html b/2/reference/tools/files/packaging.html index 7ef5dccd9d3..a2eebdc736b 100644 --- a/2/reference/tools/files/packaging.html +++ b/2/reference/tools/files/packaging.html @@ -5,7 +5,7 @@ conan.tools.files AutoPackager — conan 2.0.17 documentation - + @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/patches.html b/2/reference/tools/files/patches.html index 62722ce3812..e9d898d7088 100644 --- a/2/reference/tools/files/patches.html +++ b/2/reference/tools/files/patches.html @@ -5,7 +5,7 @@ conan.tools.files patches — conan 2.0.17 documentation - + @@ -267,7 +267,7 @@

    conan.tools.files.export_conandata_patches()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/files/symlinks.html b/2/reference/tools/files/symlinks.html index e2a9d08f274..ebb3cfa1b0c 100644 --- a/2/reference/tools/files/symlinks.html +++ b/2/reference/tools/files/symlinks.html @@ -5,7 +5,7 @@ conan.tools.files.symlinks — conan 2.0.17 documentation - + @@ -212,7 +212,7 @@

    conan.tools.files.symlinks.remove_broken_symlinks()

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu.html b/2/reference/tools/gnu.html index 4849de97a1e..73f1b1c6035 100644 --- a/2/reference/tools/gnu.html +++ b/2/reference/tools/gnu.html @@ -5,7 +5,7 @@ conan.tools.gnu — conan 2.0.17 documentation - + @@ -196,7 +196,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/autotools.html b/2/reference/tools/gnu/autotools.html index 17bcda52154..b6b8c6da5fc 100644 --- a/2/reference/tools/gnu/autotools.html +++ b/2/reference/tools/gnu/autotools.html @@ -5,7 +5,7 @@ Autotools — conan 2.0.17 documentation - + @@ -351,7 +351,7 @@

    How to address this problem in Conan

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/autotoolsdeps.html b/2/reference/tools/gnu/autotoolsdeps.html index a8e916171b1..09cd286b6c4 100644 --- a/2/reference/tools/gnu/autotoolsdeps.html +++ b/2/reference/tools/gnu/autotoolsdeps.html @@ -5,7 +5,7 @@ AutotoolsDeps — conan 2.0.17 documentation - + @@ -241,7 +241,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/autotoolstoolchain.html b/2/reference/tools/gnu/autotoolstoolchain.html index 39655d05f12..0f7daf42869 100644 --- a/2/reference/tools/gnu/autotoolstoolchain.html +++ b/2/reference/tools/gnu/autotoolstoolchain.html @@ -5,7 +5,7 @@ AutotoolsToolchain — conan 2.0.17 documentation - + @@ -468,7 +468,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/makedeps.html b/2/reference/tools/gnu/makedeps.html index 02d8a14d88d..84afea07369 100644 --- a/2/reference/tools/gnu/makedeps.html +++ b/2/reference/tools/gnu/makedeps.html @@ -5,7 +5,7 @@ MakeDeps — conan 2.0.17 documentation - + @@ -255,7 +255,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/pkgconfig.html b/2/reference/tools/gnu/pkgconfig.html index 11fa89e5b4a..d86e609ca8b 100644 --- a/2/reference/tools/gnu/pkgconfig.html +++ b/2/reference/tools/gnu/pkgconfig.html @@ -5,7 +5,7 @@ PkgConfig — conan 2.0.17 documentation - + @@ -222,7 +222,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/gnu/pkgconfigdeps.html b/2/reference/tools/gnu/pkgconfigdeps.html index 01a53aa8dc5..e02f385489e 100644 --- a/2/reference/tools/gnu/pkgconfigdeps.html +++ b/2/reference/tools/gnu/pkgconfigdeps.html @@ -5,7 +5,7 @@ PkgConfigDeps — conan 2.0.17 documentation - + @@ -312,7 +312,7 @@

    build_context_suffix

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/google.html b/2/reference/tools/google.html index 01a0aa2affc..a8aa0802c1a 100644 --- a/2/reference/tools/google.html +++ b/2/reference/tools/google.html @@ -5,7 +5,7 @@ conan.tools.google — conan 2.0.17 documentation - + @@ -175,7 +175,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/google/bazel.html b/2/reference/tools/google/bazel.html index 04fe367f7a4..57c4a7db7c0 100644 --- a/2/reference/tools/google/bazel.html +++ b/2/reference/tools/google/bazel.html @@ -5,7 +5,7 @@ Bazel — conan 2.0.17 documentation - + @@ -242,7 +242,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/google/bazeldeps.html b/2/reference/tools/google/bazeldeps.html index 5091aaa5667..c2b66d29c8c 100644 --- a/2/reference/tools/google/bazeldeps.html +++ b/2/reference/tools/google/bazeldeps.html @@ -5,7 +5,7 @@ BazelDeps — conan 2.0.17 documentation - + @@ -445,7 +445,7 @@

    build_context_activated

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/google/bazeltoolchain.html b/2/reference/tools/google/bazeltoolchain.html index 3eda6e1434f..fe51cdab4bc 100644 --- a/2/reference/tools/google/bazeltoolchain.html +++ b/2/reference/tools/google/bazeltoolchain.html @@ -5,7 +5,7 @@ BazelToolchain — conan 2.0.17 documentation - + @@ -316,7 +316,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/intel.html b/2/reference/tools/intel.html index c1b36be484d..6ac0f27376f 100644 --- a/2/reference/tools/intel.html +++ b/2/reference/tools/intel.html @@ -5,7 +5,7 @@ conan.tools.intel — conan 2.0.17 documentation - + @@ -339,7 +339,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/layout.html b/2/reference/tools/layout.html index 5ed72535346..a93417ad5db 100644 --- a/2/reference/tools/layout.html +++ b/2/reference/tools/layout.html @@ -5,7 +5,7 @@ conan.tools.layout — conan 2.0.17 documentation - + @@ -201,7 +201,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/meson.html b/2/reference/tools/meson.html index e02987215c8..95908afa5dc 100644 --- a/2/reference/tools/meson.html +++ b/2/reference/tools/meson.html @@ -5,7 +5,7 @@ conan.tools.meson — conan 2.0.17 documentation - + @@ -173,7 +173,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/meson/meson.html b/2/reference/tools/meson/meson.html index 38a7c0ff925..c4494eace08 100644 --- a/2/reference/tools/meson/meson.html +++ b/2/reference/tools/meson/meson.html @@ -5,7 +5,7 @@ Meson — conan 2.0.17 documentation - + @@ -238,7 +238,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/meson/mesontoolchain.html b/2/reference/tools/meson/mesontoolchain.html index e360ee4490a..ddeb2f8b3d1 100644 --- a/2/reference/tools/meson/mesontoolchain.html +++ b/2/reference/tools/meson/mesontoolchain.html @@ -5,7 +5,7 @@ MesonToolchain — conan 2.0.17 documentation - + @@ -613,7 +613,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft.html b/2/reference/tools/microsoft.html index 76f9329e62d..2d7e0d55c77 100644 --- a/2/reference/tools/microsoft.html +++ b/2/reference/tools/microsoft.html @@ -5,7 +5,7 @@ conan.tools.microsoft — conan 2.0.17 documentation - + @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/helpers.html b/2/reference/tools/microsoft/helpers.html index 0fc07a905b2..6c8145bd6aa 100644 --- a/2/reference/tools/microsoft/helpers.html +++ b/2/reference/tools/microsoft/helpers.html @@ -5,7 +5,7 @@ conan.tools.microsoft.visual — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    conan.tools.microsoft.subsystems

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/msbuild.html b/2/reference/tools/microsoft/msbuild.html index 499bf642960..366a23bd512 100644 --- a/2/reference/tools/microsoft/msbuild.html +++ b/2/reference/tools/microsoft/msbuild.html @@ -5,7 +5,7 @@ MSBuild — conan 2.0.17 documentation - + @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/msbuilddeps.html b/2/reference/tools/microsoft/msbuilddeps.html index f94cb602672..cca90e65942 100644 --- a/2/reference/tools/microsoft/msbuilddeps.html +++ b/2/reference/tools/microsoft/msbuilddeps.html @@ -5,7 +5,7 @@ MSBuildDeps — conan 2.0.17 documentation - + @@ -322,7 +322,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/msbuildtoolchain.html b/2/reference/tools/microsoft/msbuildtoolchain.html index 63a7b5315e9..cdf2a2ded6a 100644 --- a/2/reference/tools/microsoft/msbuildtoolchain.html +++ b/2/reference/tools/microsoft/msbuildtoolchain.html @@ -5,7 +5,7 @@ MSBuildToolchain — conan 2.0.17 documentation - + @@ -289,7 +289,7 @@

    Attributes

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/nmake.html b/2/reference/tools/microsoft/nmake.html index a4293d39c55..c7662acd0c2 100644 --- a/2/reference/tools/microsoft/nmake.html +++ b/2/reference/tools/microsoft/nmake.html @@ -5,7 +5,7 @@ NMakeDeps — conan 2.0.17 documentation - + @@ -305,7 +305,7 @@

    Customizing the environment

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/vcvars.html b/2/reference/tools/microsoft/vcvars.html index 6ac938d9ed2..db50a3375ad 100644 --- a/2/reference/tools/microsoft/vcvars.html +++ b/2/reference/tools/microsoft/vcvars.html @@ -5,7 +5,7 @@ VCVars — conan 2.0.17 documentation - + @@ -236,7 +236,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/microsoft/visual_layout.html b/2/reference/tools/microsoft/visual_layout.html index 1bd9319c83e..9ffecaf5ca6 100644 --- a/2/reference/tools/microsoft/visual_layout.html +++ b/2/reference/tools/microsoft/visual_layout.html @@ -5,7 +5,7 @@ vs_layout — conan 2.0.17 documentation - + @@ -174,7 +174,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/scm.html b/2/reference/tools/scm.html index f772fd2bdc7..a43e88d04f7 100644 --- a/2/reference/tools/scm.html +++ b/2/reference/tools/scm.html @@ -5,7 +5,7 @@ conan.tools.scm — conan 2.0.17 documentation - + @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/scm/git.html b/2/reference/tools/scm/git.html index a8fa078bbe5..98a1f2cd68b 100644 --- a/2/reference/tools/scm/git.html +++ b/2/reference/tools/scm/git.html @@ -5,7 +5,7 @@ Git — conan 2.0.17 documentation - + @@ -352,7 +352,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/scm/version.html b/2/reference/tools/scm/version.html index 9624a996ffd..f4df2f66a78 100644 --- a/2/reference/tools/scm/version.html +++ b/2/reference/tools/scm/version.html @@ -5,7 +5,7 @@ Version — conan 2.0.17 documentation - + @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/scons.html b/2/reference/tools/scons.html index 4f8c0f949ac..5da4887abf6 100644 --- a/2/reference/tools/scons.html +++ b/2/reference/tools/scons.html @@ -5,7 +5,7 @@ conan.tools.scons — conan 2.0.17 documentation - + @@ -209,7 +209,7 @@

    SConsDeps

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/system.html b/2/reference/tools/system.html index 549f26d90d6..8701dae4fd2 100644 --- a/2/reference/tools/system.html +++ b/2/reference/tools/system.html @@ -5,7 +5,7 @@ conan.tools.system — conan 2.0.17 documentation - + @@ -173,7 +173,7 @@

    conan.tools.system

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/reference/tools/system/package_manager.html b/2/reference/tools/system/package_manager.html index f1f526bb8a1..d16fe7b89a1 100644 --- a/2/reference/tools/system/package_manager.html +++ b/2/reference/tools/system/package_manager.html @@ -5,7 +5,7 @@ conan.tools.system.package_manager — conan 2.0.17 documentation - + @@ -1160,7 +1160,7 @@

    Reference¶<

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/search.html b/2/search.html index a171bc82b5c..8513dad9821 100644 --- a/2/search.html +++ b/2/search.html @@ -4,7 +4,7 @@ Search — conan 2.0.17 documentation - + @@ -125,7 +125,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/searchindex.js b/2/searchindex.js index c229ffb3160..883e841c7fb 100644 --- a/2/searchindex.js +++ b/2/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["404", "changelog", "devops", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo", "devops/backup_sources/sources_backup", "devops/conancenter/hosting_binaries", "devops/metadata", "devops/save_restore", "devops/using_conancenter", "devops/versioning", "devops/versioning/resolve_prereleases", "examples", "examples/commands", "examples/commands/pkglists", "examples/conanfile", "examples/conanfile/layout", "examples/conanfile/layout/conanfile_in_subfolder", "examples/conanfile/layout/editable_components", "examples/conanfile/layout/multiple_subprojects", "examples/conanfile/layout/third_party_libraries", "examples/conanfile/package_info", "examples/conanfile/package_info/components", "examples/conanfile/package_info/package_info_conf_and_env", "examples/config_files", "examples/config_files/settings/settings_user", "examples/cross_build", "examples/cross_build/android/android_studio", "examples/cross_build/android/ndk", "examples/dev_flow", "examples/dev_flow/debug/step_into_dependencies", "examples/extensions", "examples/extensions/commands/clean/custom_command_clean_revisions", "examples/extensions/commands/custom_commands", "examples/extensions/deployers/builtin_deployers", "examples/extensions/deployers/custom_deployers", "examples/extensions/deployers/dev/development_deploy", "examples/extensions/deployers/sources/custom_deployer_sources", "examples/graph", "examples/graph/requires/consume_cmake_macro", "examples/graph/tool_requires/different_options", "examples/graph/tool_requires/different_versions", "examples/graph/tool_requires/use_cmake_modules", "examples/graph/tool_requires/using_protobuf", "examples/tools", "examples/tools/autotools/autotools", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain", "examples/tools/cmake/cmake", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables", "examples/tools/files/files", "examples/tools/files/patches/patch_sources", "examples/tools/google/bazel", "examples/tools/google/bazeltoolchain/build_simple_bazel_project", "examples/tools/meson/meson", "examples/tools/meson/mesontoolchain/build_simple_meson_project", "examples/tools/scm/git/capture_scm/git_capture_scm", "index", "installation", "integrations", "integrations/android", "integrations/autotools", "integrations/bazel", "integrations/clion", "integrations/cmake", "integrations/jfrog", "integrations/makefile", "integrations/meson", "integrations/visual_studio", "integrations/xcode", "introduction", "knowledge", "knowledge/cheatsheet", "knowledge/faq", "knowledge/guidelines", "knowledge/videos", "reference", "reference/binary_model", "reference/binary_model/custom_compatibility", "reference/binary_model/dependencies", "reference/binary_model/extending", "reference/binary_model/package_id", "reference/commands", "reference/commands/build", "reference/commands/cache", "reference/commands/config", "reference/commands/create", "reference/commands/download", "reference/commands/editable", "reference/commands/export", "reference/commands/export-pkg", "reference/commands/formatters/graph_info_json_formatter", "reference/commands/graph", "reference/commands/graph/build_order", "reference/commands/graph/build_order_merge", "reference/commands/graph/explain", "reference/commands/graph/info", "reference/commands/inspect", "reference/commands/install", "reference/commands/list", "reference/commands/lock", "reference/commands/lock/add", "reference/commands/lock/create", "reference/commands/lock/merge", "reference/commands/lock/remove", "reference/commands/new", "reference/commands/profile", "reference/commands/remote", "reference/commands/remove", "reference/commands/search", "reference/commands/source", "reference/commands/test", "reference/commands/upload", "reference/commands/version", "reference/conan_server", "reference/conanfile", "reference/conanfile/attributes", "reference/conanfile/methods", "reference/conanfile/methods/build", "reference/conanfile/methods/build_id", "reference/conanfile/methods/build_requirements", "reference/conanfile/methods/compatibility", "reference/conanfile/methods/config_options", "reference/conanfile/methods/configure", "reference/conanfile/methods/deploy", "reference/conanfile/methods/export", "reference/conanfile/methods/export_sources", "reference/conanfile/methods/generate", "reference/conanfile/methods/init", "reference/conanfile/methods/layout", "reference/conanfile/methods/package", "reference/conanfile/methods/package_id", "reference/conanfile/methods/package_info", "reference/conanfile/methods/requirements", "reference/conanfile/methods/set_name", "reference/conanfile/methods/set_version", "reference/conanfile/methods/source", "reference/conanfile/methods/system_requirements", "reference/conanfile/methods/test", "reference/conanfile/methods/validate", "reference/conanfile/methods/validate_build", "reference/conanfile/running_and_output", "reference/conanfile_txt", "reference/config_files", "reference/config_files/conanrc", "reference/config_files/credentials", "reference/config_files/global_conf", "reference/config_files/profiles", "reference/config_files/remotes", "reference/config_files/settings", "reference/config_files/source_credentials", "reference/environment", "reference/extensions", "reference/extensions/binary_compatibility", "reference/extensions/command_wrapper", "reference/extensions/custom_commands", "reference/extensions/custom_generators", "reference/extensions/deployers", "reference/extensions/hooks", "reference/extensions/package_signing", "reference/extensions/profile_plugin", "reference/extensions/python_api", "reference/extensions/python_api/ConanAPI", "reference/extensions/python_api/ConfigAPI", "reference/extensions/python_api/DownloadAPI", "reference/extensions/python_api/ExportAPI", "reference/extensions/python_api/GraphAPI", "reference/extensions/python_api/InstallAPI", "reference/extensions/python_api/ListAPI", "reference/extensions/python_api/NewAPI", "reference/extensions/python_api/ProfilesAPI", "reference/extensions/python_api/RemotesAPI", "reference/extensions/python_api/RemoveAPI", "reference/extensions/python_api/SearchAPI", "reference/extensions/python_api/UploadAPI", "reference/extensions/python_requires", "reference/tools", "reference/tools/android", "reference/tools/apple", "reference/tools/apple/other", "reference/tools/apple/xcodebuild", "reference/tools/apple/xcodedeps", "reference/tools/apple/xcodetoolchain", "reference/tools/build", "reference/tools/cmake", "reference/tools/cmake/cmake", "reference/tools/cmake/cmake_layout", "reference/tools/cmake/cmakedeps", "reference/tools/cmake/cmaketoolchain", "reference/tools/cpp_info", "reference/tools/env", "reference/tools/env/environment", "reference/tools/env/envvars", "reference/tools/env/virtualbuildenv", "reference/tools/env/virtualrunenv", "reference/tools/files", "reference/tools/files/basic", "reference/tools/files/checksum", "reference/tools/files/downloads", "reference/tools/files/packaging", "reference/tools/files/patches", "reference/tools/files/symlinks", "reference/tools/gnu", "reference/tools/gnu/autotools", "reference/tools/gnu/autotoolsdeps", "reference/tools/gnu/autotoolstoolchain", "reference/tools/gnu/makedeps", "reference/tools/gnu/pkgconfig", "reference/tools/gnu/pkgconfigdeps", "reference/tools/google", "reference/tools/google/bazel", "reference/tools/google/bazeldeps", "reference/tools/google/bazeltoolchain", "reference/tools/intel", "reference/tools/layout", "reference/tools/meson", "reference/tools/meson/meson", "reference/tools/meson/mesontoolchain", "reference/tools/microsoft", "reference/tools/microsoft/helpers", "reference/tools/microsoft/msbuild", "reference/tools/microsoft/msbuilddeps", "reference/tools/microsoft/msbuildtoolchain", "reference/tools/microsoft/nmake", "reference/tools/microsoft/vcvars", "reference/tools/microsoft/visual_layout", "reference/tools/scm", "reference/tools/scm/git", "reference/tools/scm/version", "reference/tools/scons", "reference/tools/system", "reference/tools/system/package_manager", "tutorial", "tutorial/conan_repositories", "tutorial/conan_repositories/conan_center", "tutorial/conan_repositories/setting_up_conan_remotes", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server", "tutorial/conan_repositories/uploading_packages", "tutorial/consuming_packages", "tutorial/consuming_packages/build_simple_cmake_project", "tutorial/consuming_packages/cross_building_with_conan", "tutorial/consuming_packages/different_configurations", "tutorial/consuming_packages/intro_to_versioning", "tutorial/consuming_packages/the_flexibility_of_conanfile_py", "tutorial/consuming_packages/use_tools_as_conan_packages", "tutorial/creating_packages", "tutorial/creating_packages/add_dependencies_to_packages", "tutorial/creating_packages/build_packages", "tutorial/creating_packages/configure_options_settings", "tutorial/creating_packages/create_your_first_package", "tutorial/creating_packages/define_package_information", "tutorial/creating_packages/handle_sources_in_packages", "tutorial/creating_packages/other_types_of_packages", "tutorial/creating_packages/other_types_of_packages/header_only_packages", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages", "tutorial/creating_packages/package_method", "tutorial/creating_packages/preparing_the_build", "tutorial/creating_packages/test_conan_packages", "tutorial/developing_packages", "tutorial/developing_packages/editable_packages", "tutorial/developing_packages/local_package_development_flow", "tutorial/developing_packages/package_layout", "tutorial/other_features", "tutorial/versioning", "tutorial/versioning/conflicts", "tutorial/versioning/lockfiles", "tutorial/versioning/revisions", "tutorial/versioning/version_ranges", "tutorial/versioning/versions", "whatsnew"], "filenames": ["404.rst", "changelog.rst", "devops.rst", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.rst", "devops/backup_sources/sources_backup.rst", "devops/conancenter/hosting_binaries.rst", "devops/metadata.rst", "devops/save_restore.rst", "devops/using_conancenter.rst", "devops/versioning.rst", "devops/versioning/resolve_prereleases.rst", "examples.rst", "examples/commands.rst", "examples/commands/pkglists.rst", "examples/conanfile.rst", "examples/conanfile/layout.rst", "examples/conanfile/layout/conanfile_in_subfolder.rst", "examples/conanfile/layout/editable_components.rst", "examples/conanfile/layout/multiple_subprojects.rst", "examples/conanfile/layout/third_party_libraries.rst", "examples/conanfile/package_info.rst", "examples/conanfile/package_info/components.rst", "examples/conanfile/package_info/package_info_conf_and_env.rst", "examples/config_files.rst", "examples/config_files/settings/settings_user.rst", "examples/cross_build.rst", "examples/cross_build/android/android_studio.rst", "examples/cross_build/android/ndk.rst", "examples/dev_flow.rst", "examples/dev_flow/debug/step_into_dependencies.rst", "examples/extensions.rst", "examples/extensions/commands/clean/custom_command_clean_revisions.rst", "examples/extensions/commands/custom_commands.rst", "examples/extensions/deployers/builtin_deployers.rst", "examples/extensions/deployers/custom_deployers.rst", "examples/extensions/deployers/dev/development_deploy.rst", "examples/extensions/deployers/sources/custom_deployer_sources.rst", "examples/graph.rst", "examples/graph/requires/consume_cmake_macro.rst", "examples/graph/tool_requires/different_options.rst", "examples/graph/tool_requires/different_versions.rst", "examples/graph/tool_requires/use_cmake_modules.rst", "examples/graph/tool_requires/using_protobuf.rst", "examples/tools.rst", "examples/tools/autotools/autotools.rst", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.rst", "examples/tools/cmake/cmake.rst", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables.rst", "examples/tools/files/files.rst", "examples/tools/files/patches/patch_sources.rst", "examples/tools/google/bazel.rst", "examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst", "examples/tools/meson/meson.rst", "examples/tools/meson/mesontoolchain/build_simple_meson_project.rst", "examples/tools/scm/git/capture_scm/git_capture_scm.rst", "index.rst", "installation.rst", "integrations.rst", "integrations/android.rst", "integrations/autotools.rst", "integrations/bazel.rst", "integrations/clion.rst", "integrations/cmake.rst", "integrations/jfrog.rst", "integrations/makefile.rst", "integrations/meson.rst", "integrations/visual_studio.rst", "integrations/xcode.rst", "introduction.rst", "knowledge.rst", "knowledge/cheatsheet.rst", "knowledge/faq.rst", "knowledge/guidelines.rst", "knowledge/videos.rst", "reference.rst", "reference/binary_model.rst", "reference/binary_model/custom_compatibility.rst", "reference/binary_model/dependencies.rst", "reference/binary_model/extending.rst", "reference/binary_model/package_id.rst", "reference/commands.rst", "reference/commands/build.rst", "reference/commands/cache.rst", "reference/commands/config.rst", "reference/commands/create.rst", "reference/commands/download.rst", "reference/commands/editable.rst", "reference/commands/export.rst", "reference/commands/export-pkg.rst", "reference/commands/formatters/graph_info_json_formatter.rst", "reference/commands/graph.rst", "reference/commands/graph/build_order.rst", "reference/commands/graph/build_order_merge.rst", "reference/commands/graph/explain.rst", "reference/commands/graph/info.rst", "reference/commands/inspect.rst", "reference/commands/install.rst", "reference/commands/list.rst", "reference/commands/lock.rst", "reference/commands/lock/add.rst", "reference/commands/lock/create.rst", "reference/commands/lock/merge.rst", "reference/commands/lock/remove.rst", "reference/commands/new.rst", "reference/commands/profile.rst", "reference/commands/remote.rst", "reference/commands/remove.rst", "reference/commands/search.rst", "reference/commands/source.rst", "reference/commands/test.rst", "reference/commands/upload.rst", "reference/commands/version.rst", "reference/conan_server.rst", "reference/conanfile.rst", "reference/conanfile/attributes.rst", "reference/conanfile/methods.rst", "reference/conanfile/methods/build.rst", "reference/conanfile/methods/build_id.rst", "reference/conanfile/methods/build_requirements.rst", "reference/conanfile/methods/compatibility.rst", "reference/conanfile/methods/config_options.rst", "reference/conanfile/methods/configure.rst", "reference/conanfile/methods/deploy.rst", "reference/conanfile/methods/export.rst", "reference/conanfile/methods/export_sources.rst", "reference/conanfile/methods/generate.rst", "reference/conanfile/methods/init.rst", "reference/conanfile/methods/layout.rst", "reference/conanfile/methods/package.rst", "reference/conanfile/methods/package_id.rst", "reference/conanfile/methods/package_info.rst", "reference/conanfile/methods/requirements.rst", "reference/conanfile/methods/set_name.rst", "reference/conanfile/methods/set_version.rst", "reference/conanfile/methods/source.rst", "reference/conanfile/methods/system_requirements.rst", "reference/conanfile/methods/test.rst", "reference/conanfile/methods/validate.rst", "reference/conanfile/methods/validate_build.rst", "reference/conanfile/running_and_output.rst", "reference/conanfile_txt.rst", "reference/config_files.rst", "reference/config_files/conanrc.rst", "reference/config_files/credentials.rst", "reference/config_files/global_conf.rst", "reference/config_files/profiles.rst", "reference/config_files/remotes.rst", "reference/config_files/settings.rst", "reference/config_files/source_credentials.rst", "reference/environment.rst", "reference/extensions.rst", "reference/extensions/binary_compatibility.rst", "reference/extensions/command_wrapper.rst", "reference/extensions/custom_commands.rst", "reference/extensions/custom_generators.rst", "reference/extensions/deployers.rst", "reference/extensions/hooks.rst", "reference/extensions/package_signing.rst", "reference/extensions/profile_plugin.rst", "reference/extensions/python_api.rst", "reference/extensions/python_api/ConanAPI.rst", "reference/extensions/python_api/ConfigAPI.rst", "reference/extensions/python_api/DownloadAPI.rst", "reference/extensions/python_api/ExportAPI.rst", "reference/extensions/python_api/GraphAPI.rst", "reference/extensions/python_api/InstallAPI.rst", "reference/extensions/python_api/ListAPI.rst", "reference/extensions/python_api/NewAPI.rst", "reference/extensions/python_api/ProfilesAPI.rst", "reference/extensions/python_api/RemotesAPI.rst", "reference/extensions/python_api/RemoveAPI.rst", "reference/extensions/python_api/SearchAPI.rst", "reference/extensions/python_api/UploadAPI.rst", "reference/extensions/python_requires.rst", "reference/tools.rst", "reference/tools/android.rst", "reference/tools/apple.rst", "reference/tools/apple/other.rst", "reference/tools/apple/xcodebuild.rst", "reference/tools/apple/xcodedeps.rst", "reference/tools/apple/xcodetoolchain.rst", "reference/tools/build.rst", "reference/tools/cmake.rst", "reference/tools/cmake/cmake.rst", "reference/tools/cmake/cmake_layout.rst", "reference/tools/cmake/cmakedeps.rst", "reference/tools/cmake/cmaketoolchain.rst", "reference/tools/cpp_info.rst", "reference/tools/env.rst", "reference/tools/env/environment.rst", "reference/tools/env/envvars.rst", "reference/tools/env/virtualbuildenv.rst", "reference/tools/env/virtualrunenv.rst", "reference/tools/files.rst", "reference/tools/files/basic.rst", "reference/tools/files/checksum.rst", "reference/tools/files/downloads.rst", "reference/tools/files/packaging.rst", "reference/tools/files/patches.rst", "reference/tools/files/symlinks.rst", "reference/tools/gnu.rst", "reference/tools/gnu/autotools.rst", "reference/tools/gnu/autotoolsdeps.rst", "reference/tools/gnu/autotoolstoolchain.rst", "reference/tools/gnu/makedeps.rst", "reference/tools/gnu/pkgconfig.rst", "reference/tools/gnu/pkgconfigdeps.rst", "reference/tools/google.rst", "reference/tools/google/bazel.rst", "reference/tools/google/bazeldeps.rst", "reference/tools/google/bazeltoolchain.rst", "reference/tools/intel.rst", "reference/tools/layout.rst", "reference/tools/meson.rst", "reference/tools/meson/meson.rst", "reference/tools/meson/mesontoolchain.rst", "reference/tools/microsoft.rst", "reference/tools/microsoft/helpers.rst", "reference/tools/microsoft/msbuild.rst", "reference/tools/microsoft/msbuilddeps.rst", "reference/tools/microsoft/msbuildtoolchain.rst", "reference/tools/microsoft/nmake.rst", "reference/tools/microsoft/vcvars.rst", "reference/tools/microsoft/visual_layout.rst", "reference/tools/scm.rst", "reference/tools/scm/git.rst", "reference/tools/scm/version.rst", "reference/tools/scons.rst", "reference/tools/system.rst", "reference/tools/system/package_manager.rst", "tutorial.rst", "tutorial/conan_repositories.rst", "tutorial/conan_repositories/conan_center.rst", "tutorial/conan_repositories/setting_up_conan_remotes.rst", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.rst", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server.rst", "tutorial/conan_repositories/uploading_packages.rst", "tutorial/consuming_packages.rst", "tutorial/consuming_packages/build_simple_cmake_project.rst", "tutorial/consuming_packages/cross_building_with_conan.rst", "tutorial/consuming_packages/different_configurations.rst", "tutorial/consuming_packages/intro_to_versioning.rst", "tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst", "tutorial/consuming_packages/use_tools_as_conan_packages.rst", "tutorial/creating_packages.rst", "tutorial/creating_packages/add_dependencies_to_packages.rst", "tutorial/creating_packages/build_packages.rst", "tutorial/creating_packages/configure_options_settings.rst", "tutorial/creating_packages/create_your_first_package.rst", "tutorial/creating_packages/define_package_information.rst", "tutorial/creating_packages/handle_sources_in_packages.rst", "tutorial/creating_packages/other_types_of_packages.rst", "tutorial/creating_packages/other_types_of_packages/header_only_packages.rst", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.rst", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages.rst", "tutorial/creating_packages/package_method.rst", "tutorial/creating_packages/preparing_the_build.rst", "tutorial/creating_packages/test_conan_packages.rst", "tutorial/developing_packages.rst", "tutorial/developing_packages/editable_packages.rst", "tutorial/developing_packages/local_package_development_flow.rst", "tutorial/developing_packages/package_layout.rst", "tutorial/other_features.rst", "tutorial/versioning.rst", "tutorial/versioning/conflicts.rst", "tutorial/versioning/lockfiles.rst", "tutorial/versioning/revisions.rst", "tutorial/versioning/version_ranges.rst", "tutorial/versioning/versions.rst", "whatsnew.rst"], "titles": ["Page Not Found", "Changelog", "Devops guide", "Creating an Artifactory backup repo for your sources", "Backing up third-party sources with Conan", "Creating and hosting your own ConanCenter binaries", "Managing package metadata files", "Save and restore packages from/to the cache", "Using ConanCenter packages in production environments", "Versioning", "Handling version ranges and pre-releases", "Examples", "Conan commands examples", "Using packages-lists", "ConanFile methods examples", "ConanFile layout() examples", "Declaring the layout when the Conanfile is inside a subfolder", "Using components and editable packages", "Declaring the layout when we have multiple subprojects", "Declaring the layout when creating packages for third-party libraries", "ConanFile package_info() examples", "Define components for Conan packages that provide multiple libraries", "Propagating environment or configuration information to consumers", "Configuration files examples", "Customize your settings: create your settings_user.yml", "Cross-building examples", "Integrating Conan in Android Studio", "Cross building to Android with the NDK", "Developer tools and flows", "Debugging and stepping into dependencies", "Conan extensions examples", "Custom command: Clean old recipe and package revisions", "Custom commands", "Builtin deployers", "Custom deployers", "Creating a Conan-agnostic deploy of dependencies for developer use", "Copy sources from all your dependencies", "Graph examples", "Use a CMake macro packaged in a dependency", "Depending on same version of a tool-require with different options", "Depending on different versions of the same tool-require", "Use cmake modules inside a tool_requires transparently", "Using the same requirement as a requires and as a tool_requires", "Conan recipe tools examples", "tools.autotools", "Build a simple Autotools project using Conan", "tools.cmake", "CMakeToolchain: Building your project using CMakePresets", "CMakeToolchain: Extending your CMakePresets with Conan generated ones", "CMakeToolchain: Inject arbitrary CMake variables into dependencies", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "Capturing Git scm information", "Conan 2.0 - C and C++ Package Manager Documentation", "Install", "Integrations", " Android", " Autotools", " Bazel", " CLion", " CMake", " JFrog", " Makefile", " Meson", " Visual Studio", " Xcode", "Introduction", "Knowledge", "Cheat sheet", "FAQ", "Core guidelines", "Videos", "Reference", "The binary model", "Customizing the binary compatibility", "The effect of dependencies on package_id", "Extending the binary model", "How the package_id is computed", "Commands", "conan build", "conan cache", "conan config", "conan create", "conan download", "conan editable", "conan export", "conan export-pkg", "Formatter: Graph-info JSON", "conan graph", "conan graph build-order", "conan graph build-order-merge", "conan graph explain", "conan graph info", "conan inspect", "conan install", "conan list", "conan lock", "conan lock add", "conan lock create", "conan lock merge", "conan lock remove", "conan new", "conan profile", "conan remote", "conan remove", "conan search", "conan source", "conan test", "conan upload", "conan version", "Conan Server", "conanfile.py", "Attributes", "Methods", "build()", "build_id()", "build_requirements()", "compatibility()", "config_options()", "configure()", "deploy()", "export()", "export_sources()", "generate()", "init()", "layout()", "package()", "package_id()", "package_info()", "requirements()", "set_name()", "set_version()", "source()", "system_requirements()", "test()", "validate()", "validate_build()", "Running and output", "conanfile.txt", "Configuration files", ".conanrc", "credentials.json", "global.conf", "profiles", "remotes.json", "settings.yml", "source_credentials.json", "Environment variables", "Extensions", "Binary compatibility", "Command wrapper", "Custom commands", "Custom Conan generators", "Deployers", "Hooks", "Package signing", "Profile plugin", "Python API", "Conan API Reference", "Config API", "Download API", "Export API", "Graph API", "Install API", "List API", "New API", "Profiles API", "Remotes API", "Remove API", "Search API", "Upload API", "Python requires", "Recipe tools", "conan.tools.android", "conan.tools.apple", "conan.tools.apple.fix_apple_shared_install_name()", "XcodeBuild", "XcodeDeps", "XcodeToolchain", "conan.tools.build", "conan.tools.cmake", "CMake", "cmake_layout", "CMakeDeps", "CMakeToolchain", "conan.tools.CppInfo", "conan.tools.env", "Environment", "EnvVars", "VirtualBuildEnv", "VirtualRunEnv", "conan.tools.files", "conan.tools.files basic operations", "conan.tools.files checksums", "conan.tools.files downloads", "conan.tools.files AutoPackager", "conan.tools.files patches", "conan.tools.files.symlinks", "conan.tools.gnu", "Autotools", "AutotoolsDeps", "AutotoolsToolchain", "MakeDeps", "PkgConfig", "PkgConfigDeps", "conan.tools.google", "Bazel", "BazelDeps", "BazelToolchain", "conan.tools.intel", "conan.tools.layout", "conan.tools.meson", "Meson", "MesonToolchain", "conan.tools.microsoft", "conan.tools.microsoft.visual", "MSBuild", "MSBuildDeps", "MSBuildToolchain", "NMakeDeps", "VCVars", "vs_layout", "conan.tools.scm", "Git", "Version", "conan.tools.scons", "conan.tools.system", "conan.tools.system.package_manager", "Tutorial", "Working with Conan repositories", "Contributing to Conan Center", "Setting up a Conan remote", "Artifactory Community Edition for C/C++", "Setting-up a Conan Server", "Uploading Packages", "Consuming packages", "Build a simple CMake project using Conan", "How to cross-compile your applications using Conan: host and build contexts", "Building for multiple configurations: Release, Debug, Static and Shared", "Introduction to versioning", "Understanding the flexibility of using conanfile.py vs conanfile.txt", "Using build tools as Conan packages", "Creating packages", "Add dependencies to packages", "Build packages: the build() method", "Configure settings and options in recipes", "Create your first Conan package", "Define information for consumers: the package_info() method", "Handle sources in packages", "Other types of packages", "Header-only packages", "Package prebuilt binaries", "Tool requires packages", "Package files: the package() method", "Preparing the build", "Testing Conan packages", "Developing packages locally", "Packages in editable mode", "Package Development Flow", "Understanding the Conan Package layout", "Other important Conan features", "Versioning", "Dependencies conflicts", "Lockfiles", "Revisions", "Version ranges", "Versions", "What\u2019s new in Conan 2.0"], "terms": {"unfortun": 0, "you": [0, 1, 2, 4, 5, 6, 8, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 64, 70, 73, 74, 80, 81, 84, 85, 86, 87, 96, 99, 105, 106, 108, 112, 114, 116, 117, 118, 119, 120, 122, 123, 127, 128, 129, 131, 132, 136, 141, 142, 144, 146, 147, 149, 151, 152, 155, 156, 157, 158, 160, 175, 180, 181, 182, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 208, 211, 213, 214, 216, 217, 220, 221, 222, 223, 227, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 270, 271], "ar": [0, 1, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 51, 53, 55, 56, 58, 61, 62, 63, 65, 66, 67, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 101, 102, 103, 105, 108, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 155, 157, 158, 159, 166, 167, 174, 175, 176, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 196, 200, 201, 203, 205, 208, 210, 211, 213, 214, 217, 221, 227, 230, 235, 236, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 51, 53, 55, 63, 81, 83, 86, 88, 89, 90, 93, 95, 96, 98, 99, 101, 102, 103, 111, 116, 145, 146, 147, 148, 149, 154, 155, 157, 166, 188, 211, 212, 231, 240, 241, 244, 245, 250, 251, 252, 259, 262], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 53, 56, 58, 64, 65, 74, 78, 79, 80, 83, 84, 85, 86, 93, 95, 96, 97, 98, 101, 102, 103, 105, 111, 114, 116, 119, 120, 126, 127, 136, 137, 145, 146, 147, 160, 175, 187, 192, 196, 203, 205, 227, 231, 243, 244, 245, 247, 249, 264, 269, 271], "exist": [0, 1, 6, 7, 8, 21, 56, 58, 70, 73, 78, 80, 83, 84, 85, 86, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 116, 118, 120, 121, 122, 123, 125, 127, 131, 133, 136, 144, 145, 146, 147, 149, 155, 166, 170, 179, 183, 187, 188, 191, 192, 196, 203, 205, 207, 217, 227, 238, 243, 249, 250, 255, 259, 266, 267, 268, 270, 271], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 51, 56, 65, 78, 79, 84, 86, 95, 98, 103, 119, 130, 131, 134, 135, 141, 149, 153, 160, 181, 182, 188, 196, 199, 203, 242, 245, 247, 248, 250, 251, 254, 259, 262, 266, 267, 268, 269, 270], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 58, 70, 78, 80, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 98, 100, 102, 103, 106, 111, 112, 116, 122, 123, 131, 132, 146, 149, 152, 153, 155, 158, 160, 161, 179, 188, 191, 196, 198, 199, 201, 204, 205, 217, 232, 238, 244, 249, 250, 253, 254, 255, 257, 258, 261, 263, 267, 268, 269, 270, 271], "can": [0, 1, 4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 171, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 227, 229, 231, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 53, 55, 56, 63, 70, 79, 84, 103, 136, 149, 175, 181, 186, 213, 214, 221, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 262, 263, 267, 270], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 57, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 75, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 108, 109, 111, 112, 115, 120, 121, 127, 130, 131, 132, 137, 142, 146, 147, 149, 152, 153, 155, 159, 161, 166, 168, 174, 175, 176, 178, 184, 190, 196, 202, 209, 214, 215, 218, 237, 238, 241, 242, 245, 247, 249, 250, 251, 252, 257, 258, 261, 262, 269, 271], "tree": [0, 65, 147, 157, 187], "us": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 18, 19, 21, 23, 26, 27, 29, 30, 31, 33, 36, 37, 39, 40, 43, 44, 46, 48, 49, 52, 54, 56, 57, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 157, 158, 159, 160, 166, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 237, 238, 239, 243, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271], "search": [0, 1, 31, 35, 51, 63, 74, 82, 99, 106, 114, 116, 144, 148, 152, 161, 179, 196, 203, 236, 238, 240, 242, 249, 251, 263, 271], "bar": [0, 114, 196, 205, 223], "desir": [0, 1, 4, 40, 49, 80, 87, 98, 105, 114, 116, 117, 131, 149, 157, 192, 193, 194, 229], "topic": [0, 1, 9, 70, 91, 96, 97, 155, 250], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 109, 112, 114, 116, 119, 121, 122, 123, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 139, 144, 145, 146, 147, 148, 149, 150, 151, 155, 174, 179, 180, 181, 182, 183, 186, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 203, 204, 205, 207, 208, 213, 214, 217, 219, 221, 223, 227, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 261, 262, 263, 264, 266, 267, 268, 270, 271], "think": [0, 42, 73, 93], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 37, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 56, 57, 63, 70, 73, 74, 78, 79, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 111, 112, 114, 116, 119, 122, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 158, 159, 160, 166, 170, 179, 182, 183, 185, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 211, 213, 217, 220, 223, 227, 228, 231, 239, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271], "error": [0, 1, 6, 21, 31, 39, 40, 56, 58, 79, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 114, 116, 118, 127, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 149, 151, 158, 160, 166, 187, 196, 198, 203, 217, 231, 239, 242, 247, 249, 261, 262, 265, 266, 267, 271], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 51, 53, 55, 56, 58, 63, 66, 70, 74, 78, 80, 81, 86, 98, 99, 105, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 145, 150, 151, 157, 158, 159, 160, 166, 174, 175, 180, 182, 185, 187, 188, 193, 196, 200, 206, 211, 216, 217, 223, 227, 236, 240, 241, 242, 244, 247, 248, 249, 250, 251, 254, 262, 263, 266, 267, 268, 269, 270, 271], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 60, 61, 64, 66, 68, 69, 70, 73, 74, 75, 87, 101, 106, 107, 112, 114, 116, 127, 146, 147, 153, 158, 159, 188, 214, 217, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "open": [0, 4, 5, 8, 26, 29, 48, 55, 56, 57, 63, 73, 116, 118, 141, 146, 150, 159, 196, 222, 227, 233, 235, 237, 240, 242, 261], "issu": [0, 1, 6, 8, 39, 40, 57, 70, 73, 80, 114, 127, 128, 129, 146, 149, 187, 250, 252, 267, 268], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 56, 58, 61, 63, 65, 66, 68, 69, 74, 78, 79, 80, 84, 85, 87, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 112, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 157, 158, 160, 166, 175, 179, 180, 181, 182, 183, 186, 188, 189, 192, 196, 200, 205, 206, 208, 211, 213, 214, 217, 220, 221, 224, 231, 235, 236, 238, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 257, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "more": [1, 4, 6, 7, 8, 13, 16, 18, 19, 31, 36, 42, 45, 47, 51, 56, 58, 60, 63, 65, 70, 73, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 113, 116, 118, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 152, 153, 154, 157, 159, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 182, 183, 187, 188, 189, 193, 194, 196, 203, 206, 208, 210, 211, 212, 214, 215, 216, 221, 223, 233, 234, 235, 239, 246, 253, 255, 261, 262, 263, 264, 265, 268, 269, 271], "detail": [1, 8, 42, 51, 58, 63, 65, 70, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 149, 182, 196, 217, 220, 245, 249, 250, 252, 255, 257, 259, 263], "descript": [1, 91, 96, 97, 105, 127, 128, 158, 208, 250], "major": [1, 5, 35, 39, 40, 56, 70, 98, 106, 116, 147, 175, 188, 235, 240, 266, 269, 271], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 51, 56, 70, 72, 73, 74, 78, 79, 80, 81, 84, 86, 91, 97, 101, 102, 103, 105, 106, 113, 114, 116, 119, 120, 122, 123, 124, 131, 132, 136, 145, 146, 147, 149, 150, 151, 153, 154, 155, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 186, 187, 188, 189, 192, 196, 203, 205, 206, 208, 210, 211, 212, 213, 217, 220, 223, 227, 231, 240, 242, 243, 244, 247, 249, 250, 252, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 271], "conan": [1, 2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 24, 25, 27, 29, 33, 36, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 91, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 204, 205, 206, 208, 210, 211, 212, 216, 220, 221, 222, 223, 224, 227, 232, 238, 239, 242, 243, 244, 246, 247, 248, 252, 254, 255, 256, 258, 260, 261, 265, 266, 267, 268, 269, 270], "bring": [1, 59, 147, 252], "compar": [1, 149, 183, 228, 268, 269], "x": [1, 58, 70, 72, 85, 90, 116, 146, 149, 158, 187, 196, 199, 219, 250, 254, 267, 269, 271], "read": [1, 3, 4, 6, 8, 16, 18, 19, 24, 31, 36, 42, 45, 47, 53, 55, 58, 63, 70, 74, 78, 80, 83, 84, 85, 86, 88, 90, 98, 99, 102, 106, 110, 111, 114, 116, 120, 121, 123, 126, 127, 129, 131, 132, 134, 135, 137, 141, 146, 147, 152, 153, 159, 161, 175, 183, 185, 196, 200, 203, 205, 207, 213, 215, 233, 234, 236, 239, 246, 253, 261, 262, 265, 270, 271], "what": [1, 4, 5, 13, 24, 56, 57, 70, 78, 92, 95, 98, 99, 112, 116, 117, 151, 188, 191, 192, 199, 241, 243, 244, 245, 249, 250, 251, 254, 255, 258, 263, 266, 267, 268], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 60, 62, 63, 65, 70, 73, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 107, 111, 112, 114, 116, 120, 121, 131, 132, 133, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 160, 179, 181, 182, 183, 188, 198, 203, 205, 210, 211, 212, 213, 217, 221, 222, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 57, 58, 63, 70, 73, 74, 78, 79, 80, 81, 82, 84, 98, 100, 101, 102, 103, 104, 106, 107, 116, 130, 131, 147, 152, 154, 155, 157, 159, 161, 163, 175, 179, 181, 182, 186, 187, 188, 189, 191, 193, 194, 205, 213, 221, 222, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 258, 262, 263, 265, 266, 267, 268, 269], "fix": [1, 5, 8, 35, 70, 116, 136, 150, 175, 179, 200, 242, 243, 266], "automat": [1, 3, 6, 31, 41, 47, 58, 63, 70, 80, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 105, 111, 114, 116, 125, 132, 133, 136, 145, 146, 147, 149, 158, 170, 175, 179, 185, 186, 187, 188, 191, 192, 194, 199, 200, 203, 206, 207, 208, 210, 212, 213, 216, 222, 231, 234, 240, 242, 243, 245, 248, 249, 251, 252, 256, 259, 264, 265, 266, 267, 268, 269], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 57, 63, 65, 69, 70, 73, 74, 78, 79, 80, 82, 84, 89, 90, 91, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 117, 118, 119, 120, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 148, 149, 152, 155, 156, 157, 158, 162, 166, 175, 181, 182, 185, 187, 188, 189, 190, 193, 194, 196, 198, 207, 208, 210, 211, 212, 213, 217, 222, 223, 224, 227, 229, 232, 233, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 53, 55, 56, 58, 63, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 115, 117, 119, 124, 125, 126, 127, 130, 136, 144, 146, 147, 151, 152, 154, 155, 156, 157, 158, 159, 160, 169, 179, 185, 186, 187, 188, 191, 196, 198, 200, 201, 203, 205, 211, 214, 216, 217, 224, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 266, 267, 271], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 51, 56, 57, 58, 63, 70, 74, 79, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 108, 111, 116, 119, 124, 125, 126, 127, 129, 130, 134, 135, 145, 146, 147, 150, 151, 152, 153, 154, 157, 158, 159, 160, 166, 168, 170, 174, 182, 185, 188, 192, 196, 203, 210, 217, 222, 227, 232, 233, 238, 240, 242, 243, 245, 246, 249, 251, 254, 255, 257, 259, 260, 261, 262, 263, 266, 267, 268, 270], "save": [1, 2, 6, 31, 39, 40, 53, 56, 57, 70, 90, 100, 106, 114, 116, 119, 126, 146, 147, 156, 187, 188, 192, 195, 198, 208, 217, 250], "file": [1, 2, 3, 4, 7, 8, 10, 11, 13, 16, 17, 18, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58, 61, 62, 63, 64, 65, 67, 68, 69, 70, 73, 74, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 108, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 141, 142, 144, 145, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 170, 174, 176, 179, 180, 181, 182, 184, 185, 186, 189, 190, 191, 202, 203, 207, 209, 210, 213, 214, 215, 216, 218, 220, 222, 224, 227, 229, 232, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 261, 262, 263, 264, 267, 268, 269, 270, 271], "subfold": [1, 7, 14, 15, 17, 19, 85, 129, 157, 158, 179, 186, 196, 200, 203, 236, 252, 255, 263], "tgz": [1, 7, 84, 136, 159, 196, 198, 240, 245, 255], "doesn": [1, 6, 7, 35, 49, 56, 73, 74, 80, 90, 96, 102, 103, 114, 116, 120, 122, 123, 127, 131, 133, 139, 140, 145, 149, 158, 174, 175, 183, 186, 188, 192, 196, 197, 198, 214, 221, 227, 242, 243, 249, 250, 252, 254, 256, 259, 266, 267, 268, 271], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 56, 58, 63, 70, 73, 74, 78, 79, 80, 84, 85, 90, 95, 96, 98, 99, 101, 102, 103, 107, 108, 114, 115, 116, 120, 122, 123, 127, 130, 131, 132, 133, 136, 139, 140, 145, 147, 149, 155, 158, 174, 175, 176, 183, 185, 186, 187, 188, 189, 192, 196, 197, 198, 205, 212, 214, 217, 221, 227, 240, 241, 242, 243, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 266, 267, 268, 271], "15409": 1, "bugfix": [1, 8, 70], "libcxx": [1, 24, 26, 27, 31, 73, 91, 96, 106, 116, 123, 131, 143, 147, 182, 188, 205, 213, 217, 240, 241, 242, 249, 250], "detect": [1, 6, 56, 70, 74, 85, 146, 147, 170, 183, 188, 207, 217, 240, 241, 242, 251], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 88, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 107, 111, 114, 116, 117, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 147, 149, 150, 151, 155, 157, 159, 160, 175, 177, 179, 181, 182, 183, 185, 187, 188, 192, 193, 194, 196, 198, 205, 208, 210, 211, 213, 216, 217, 219, 221, 222, 228, 231, 233, 236, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "cc": [1, 42, 53, 179, 205, 211, 213, 217, 223, 241, 248, 254], "cxx": [1, 19, 21, 27, 42, 85, 146, 149, 179, 205, 213, 217, 223, 241, 248, 249, 250, 251, 254, 257, 258, 259, 262, 263], "env": [1, 24, 26, 39, 40, 53, 74, 76, 85, 107, 132, 133, 138, 141, 146, 147, 151, 176, 185, 191, 192, 193, 194, 205, 222, 223, 229, 240, 242, 245, 256, 259, 262], "var": [1, 39, 40, 74, 85, 107, 114, 133, 146, 147, 151, 187, 188, 191, 192, 193, 194, 204, 213, 223], "15418": 1, "doc": [1, 8, 57, 58, 70, 73, 114, 203, 236, 244, 245, 271], "here": [1, 4, 19, 27, 41, 42, 57, 82, 99, 116, 123, 127, 128, 129, 133, 149, 158, 175, 187, 188, 192, 196, 208, 211, 231, 242, 247, 249, 250, 252, 255, 262, 263], "solv": [1, 29, 56, 58, 74, 133, 147, 152, 155, 187, 208, 266, 268], "winsdk_vers": [1, 85, 146, 188, 222, 224], "bug": [1, 8, 57, 70], "cmaketoolchain": [1, 16, 17, 18, 26, 35, 38, 41, 42, 43, 46, 51, 56, 64, 69, 73, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 132, 142, 146, 147, 149, 176, 184, 185, 186, 187, 240, 241, 242, 243, 244, 245, 248, 250, 252, 254, 256, 258, 259, 262, 263, 271], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 53, 55, 56, 61, 62, 64, 66, 67, 68, 69, 70, 74, 76, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 103, 105, 106, 111, 112, 114, 117, 118, 119, 121, 123, 128, 129, 131, 132, 133, 136, 137, 146, 147, 149, 150, 151, 152, 153, 154, 157, 158, 159, 160, 167, 175, 176, 177, 181, 182, 184, 185, 186, 190, 191, 192, 196, 202, 203, 209, 213, 214, 215, 216, 218, 222, 223, 224, 227, 229, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 269, 271], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 63, 187, 240, 245, 248, 251, 257, 258, 259], "15373": 1, "visibl": [1, 39, 40, 79, 85, 91, 114, 120, 146, 188, 211], "trait": [1, 37, 39, 74, 78, 116, 120, 266, 271], "propag": [1, 8, 14, 20, 116, 120, 132, 133, 142, 191, 208, 246, 254, 266], "build": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 16, 17, 18, 19, 21, 24, 28, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 73, 74, 76, 78, 79, 81, 82, 84, 85, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 106, 111, 115, 117, 119, 120, 123, 124, 125, 127, 129, 130, 131, 135, 136, 138, 139, 140, 141, 142, 146, 147, 149, 152, 154, 155, 156, 157, 158, 166, 170, 175, 176, 177, 179, 180, 181, 182, 184, 185, 186, 187, 189, 191, 192, 193, 194, 196, 200, 202, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 234, 239, 243, 244, 246, 247, 249, 250, 251, 252, 253, 254, 256, 257, 259, 260, 264, 266, 267, 268, 269, 270], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 51, 56, 73, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 111, 114, 116, 118, 120, 122, 123, 127, 128, 131, 132, 133, 136, 137, 141, 142, 145, 146, 147, 148, 170, 171, 179, 181, 183, 185, 186, 187, 188, 192, 193, 194, 196, 198, 200, 205, 207, 210, 212, 216, 217, 219, 221, 222, 227, 231, 242, 244, 245, 248, 249, 250, 252, 254, 258, 262, 266, 267, 269], "15357": 1, "package_id": [1, 6, 7, 13, 31, 74, 76, 77, 80, 84, 85, 87, 91, 93, 95, 96, 99, 108, 112, 116, 117, 119, 123, 127, 133, 139, 140, 146, 152, 166, 242, 249, 253, 254, 266, 268], "calcul": [1, 132, 193, 194, 200, 205, 223, 249, 254], "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 53, 55, 58, 59, 63, 65, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 91, 96, 98, 99, 100, 101, 108, 116, 120, 127, 129, 130, 131, 132, 133, 143, 149, 157, 175, 181, 182, 186, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 213, 217, 221, 222, 240, 241, 242, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 68, 74, 76, 78, 83, 84, 85, 86, 90, 93, 95, 96, 102, 106, 111, 114, 118, 123, 127, 128, 131, 132, 141, 143, 149, 151, 157, 163, 170, 178, 186, 192, 193, 194, 203, 215, 218, 231, 237, 245, 248, 254, 271], "valu": [1, 21, 26, 27, 39, 49, 73, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 144, 145, 146, 147, 148, 151, 155, 160, 163, 171, 177, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 196, 198, 203, 204, 205, 212, 214, 216, 217, 219, 220, 221, 222, 223, 228, 231, 242, 244, 248, 249, 250, 251, 254, 256, 258, 259, 262, 263, 266, 268], "thru": 1, "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 53, 55, 56, 57, 58, 61, 62, 63, 64, 66, 67, 68, 69, 70, 76, 78, 80, 83, 85, 86, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 106, 111, 116, 118, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 142, 143, 147, 149, 152, 154, 156, 157, 158, 175, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 227, 232, 236, 239, 240, 241, 242, 244, 246, 247, 248, 250, 252, 253, 254, 255, 258, 259, 262, 263, 270, 271], "info": [1, 6, 13, 24, 31, 36, 53, 56, 59, 73, 78, 79, 80, 81, 82, 85, 86, 92, 95, 97, 99, 102, 127, 131, 132, 133, 136, 137, 139, 140, 141, 146, 155, 158, 166, 175, 198, 217, 229, 231, 241, 249, 254, 256, 267, 268], "15356": 1, "order": [1, 4, 8, 13, 31, 36, 92, 98, 100, 101, 104, 114, 115, 116, 118, 131, 132, 146, 149, 150, 157, 170, 175, 188, 189, 192, 196, 205, 241, 243, 261, 267, 268, 269], "item": [1, 4, 36, 70, 80, 85, 100, 104, 108, 127, 131, 146, 149, 151, 156, 188, 192, 269], "dump": [1, 155, 191], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 69, 70, 73, 74, 75, 79, 80, 81, 84, 85, 87, 90, 103, 105, 106, 107, 114, 116, 118, 120, 122, 123, 124, 127, 128, 131, 132, 137, 142, 147, 149, 154, 155, 156, 158, 170, 174, 175, 180, 181, 182, 186, 187, 188, 192, 196, 198, 203, 205, 214, 217, 220, 221, 222, 231, 232, 233, 234, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 267, 269, 270], "allow": [1, 3, 4, 6, 13, 49, 55, 63, 68, 70, 74, 80, 82, 83, 85, 86, 88, 93, 95, 96, 98, 99, 101, 102, 106, 107, 111, 114, 116, 117, 118, 119, 120, 125, 126, 129, 131, 132, 145, 146, 147, 149, 150, 151, 152, 153, 154, 160, 167, 186, 187, 188, 189, 191, 196, 203, 217, 219, 221, 222, 231, 240, 243, 244, 250, 252, 262, 264, 267, 269, 270, 271], "reproduc": [1, 4, 6, 56, 70, 106, 119, 175, 196, 227, 239, 243, 255, 265, 267, 268, 270], "independ": [1, 21, 80, 114, 125, 126, 131, 136, 157, 189, 263, 271], "were": [1, 6, 24, 29, 56, 90, 123, 145, 157, 211, 240, 242, 248, 251, 257, 266, 269, 271], "declar": [1, 14, 15, 21, 47, 51, 70, 78, 84, 116, 121, 122, 123, 127, 129, 131, 132, 133, 147, 149, 151, 152, 155, 156, 175, 181, 182, 183, 185, 186, 187, 188, 190, 192, 208, 211, 217, 221, 223, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 263, 266, 271], "revert": [1, 70, 151], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 53, 63, 70, 73, 77, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 101, 102, 105, 106, 108, 109, 111, 112, 114, 116, 124, 128, 129, 131, 132, 136, 137, 142, 145, 146, 147, 148, 149, 151, 153, 160, 166, 170, 174, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 220, 221, 222, 223, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 256, 257, 258, 261, 263, 264, 266, 267, 268, 269, 271], "source_buildenv": 1, "make": [1, 6, 8, 26, 29, 38, 39, 40, 45, 56, 58, 59, 61, 66, 70, 85, 90, 98, 99, 101, 116, 123, 125, 127, 130, 131, 134, 137, 141, 146, 147, 149, 152, 154, 159, 175, 182, 187, 191, 203, 205, 206, 217, 227, 242, 244, 247, 248, 249, 257, 260, 261, 263, 270, 271], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 51, 56, 73, 80, 81, 85, 91, 95, 96, 97, 99, 106, 108, 114, 116, 120, 122, 123, 127, 128, 130, 132, 133, 141, 146, 147, 148, 157, 166, 167, 174, 179, 181, 183, 185, 187, 188, 193, 194, 196, 198, 200, 205, 207, 216, 217, 219, 221, 227, 228, 231, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 266, 269], "15319": 1, "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 57, 58, 63, 64, 65, 70, 86, 97, 113, 116, 120, 121, 122, 123, 124, 131, 132, 144, 145, 146, 147, 149, 150, 153, 158, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 185, 189, 199, 206, 210, 211, 212, 232, 236, 241, 244, 251, 254, 259, 260, 261, 262, 263, 271], "lock": [1, 8, 70, 82, 83, 86, 90, 93, 95, 96, 97, 98, 106, 111, 166, 175, 243, 267], "command": [1, 4, 7, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 53, 57, 58, 61, 62, 67, 68, 69, 70, 72, 73, 74, 76, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 129, 130, 134, 135, 136, 139, 145, 147, 148, 149, 151, 152, 156, 158, 160, 162, 166, 169, 180, 181, 182, 185, 187, 188, 192, 203, 210, 211, 212, 213, 216, 220, 221, 222, 224, 227, 229, 231, 238, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 267, 268, 269, 270], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 51, 53, 55, 56, 58, 61, 63, 64, 65, 70, 74, 76, 77, 78, 79, 80, 81, 83, 84, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 104, 105, 106, 114, 115, 117, 120, 121, 127, 128, 129, 131, 132, 139, 140, 146, 147, 148, 149, 150, 152, 155, 156, 157, 158, 166, 181, 183, 185, 187, 188, 193, 194, 196, 204, 206, 207, 208, 211, 213, 217, 222, 223, 224, 229, 231, 236, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "from": [1, 2, 3, 4, 6, 8, 12, 16, 18, 21, 24, 26, 27, 28, 30, 31, 34, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 152, 155, 156, 157, 159, 166, 168, 169, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 233, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 268, 269, 270, 271], "lockfil": [1, 8, 82, 83, 86, 89, 90, 93, 95, 96, 97, 100, 101, 102, 103, 104, 106, 111, 166, 175, 232, 239, 265], "15284": 1, "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 29, 35, 37, 42, 43, 47, 48, 51, 53, 55, 56, 57, 59, 63, 68, 69, 70, 73, 74, 76, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 104, 105, 106, 111, 116, 118, 120, 127, 129, 130, 131, 132, 133, 142, 146, 147, 149, 154, 176, 186, 188, 193, 200, 214, 232, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262, 263, 271], "ctest": [1, 185, 248], "helper": [1, 18, 45, 53, 55, 61, 62, 64, 67, 68, 69, 70, 73, 85, 116, 118, 126, 127, 136, 137, 141, 146, 149, 150, 155, 180, 183, 185, 187, 188, 191, 192, 196, 202, 205, 207, 210, 212, 216, 219, 220, 227, 228, 254], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 56, 57, 61, 68, 70, 74, 76, 80, 82, 83, 84, 90, 97, 98, 105, 106, 110, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 152, 156, 157, 158, 159, 175, 179, 180, 181, 182, 185, 187, 188, 191, 192, 193, 194, 196, 199, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 230, 232, 239, 246, 247, 249, 250, 252, 254, 255, 256, 258, 259, 261, 262, 263, 266, 270], "launch": [1, 21, 114, 141, 145, 180, 213, 236, 237, 246, 248], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 58, 63, 68, 74, 82, 88, 90, 93, 95, 96, 98, 101, 102, 106, 118, 127, 133, 147, 149, 156, 180, 185, 196, 200, 210, 217, 222, 240, 243, 244, 255, 256, 261, 262, 266, 270], "instead": [1, 4, 5, 8, 19, 35, 56, 58, 63, 68, 70, 74, 80, 84, 85, 88, 93, 95, 96, 98, 102, 105, 108, 114, 116, 127, 131, 132, 141, 146, 149, 175, 180, 185, 187, 188, 192, 221, 227, 242, 243, 244, 245, 247, 248, 250, 251, 252, 258, 261, 262, 263, 266, 267, 269, 270], "via": [1, 4, 7, 10, 13, 31, 38, 49, 58, 64, 65, 70, 74, 78, 80, 85, 90, 116, 127, 129, 133, 146, 155, 157, 160, 175, 185, 187, 188, 189, 191, 234, 240, 241, 269, 271], "target": [1, 8, 17, 18, 19, 21, 27, 42, 53, 56, 63, 70, 74, 85, 98, 105, 116, 118, 131, 149, 157, 177, 180, 183, 185, 203, 210, 211, 212, 213, 216, 217, 220, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 262, 263, 268, 271], "run_test": [1, 118, 185], "15282": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 51, 56, 63, 73, 80, 82, 84, 85, 100, 102, 103, 104, 105, 108, 114, 116, 131, 132, 146, 150, 155, 158, 159, 180, 181, 185, 187, 188, 191, 196, 198, 203, 205, 206, 208, 210, 211, 212, 216, 217, 221, 223, 231, 232, 236, 241, 243, 244, 245, 246, 248, 249, 251, 256, 258, 259, 261, 263, 266, 267, 270], "track": [1, 6, 65, 70, 120, 243, 268], "syntax": [1, 31, 68, 69, 73, 98, 105, 116, 120, 127, 133, 145, 163, 175, 182, 187, 188, 192, 206, 208, 222, 240, 243, 250, 266, 270], "host_vers": [1, 42], "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 51, 56, 58, 61, 62, 64, 65, 66, 67, 69, 70, 74, 77, 78, 79, 80, 81, 82, 84, 85, 90, 95, 96, 98, 99, 102, 103, 104, 106, 112, 114, 116, 117, 118, 119, 120, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 142, 146, 147, 149, 151, 152, 155, 156, 157, 158, 175, 181, 182, 186, 187, 188, 192, 193, 194, 196, 200, 208, 213, 214, 219, 221, 222, 227, 231, 236, 239, 240, 241, 244, 245, 246, 249, 250, 251, 254, 255, 256, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271], "15274": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 63, 66, 68, 69, 70, 73, 86, 98, 101, 102, 105, 116, 122, 123, 128, 130, 133, 146, 147, 154, 155, 157, 159, 170, 175, 179, 181, 182, 188, 191, 200, 203, 205, 212, 221, 222, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 267, 271], "microsoft": [1, 68, 76, 85, 116, 127, 132, 146, 147, 149, 176, 185, 188, 203, 213, 220, 221, 222, 223, 224], "vcvar": [1, 85, 127, 146, 149, 176, 218, 220, 222], "given": [1, 6, 8, 31, 36, 42, 78, 79, 80, 84, 85, 88, 96, 101, 102, 103, 104, 122, 131, 132, 139, 141, 147, 150, 151, 166, 170, 188, 189, 192, 196, 198, 200, 205, 211, 217, 219, 227, 243, 264, 267, 268, 270, 271], "15272": 1, "pkglist": [1, 6, 13, 87, 89, 108, 112, 264], "formatt": [1, 45, 87, 96, 112, 152], "export": [1, 5, 6, 7, 10, 16, 38, 56, 74, 82, 84, 86, 91, 101, 106, 117, 126, 127, 128, 129, 130, 134, 135, 136, 152, 158, 159, 161, 175, 196, 200, 227, 247, 250, 251, 252, 255, 258, 260, 261, 263, 268, 270], "15266": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 53, 56, 70, 74, 77, 78, 80, 84, 85, 88, 90, 91, 96, 98, 99, 101, 103, 105, 106, 107, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 157, 160, 163, 170, 175, 178, 180, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 200, 203, 204, 205, 206, 207, 208, 211, 213, 214, 217, 221, 222, 223, 224, 232, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 252, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "conan_log_level": [1, 151], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 56, 58, 74, 78, 101, 102, 104, 126, 132, 133, 136, 141, 145, 147, 187, 189, 191, 196, 213, 217, 227, 250, 259, 261, 265, 271], "verbos": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 132, 141, 146, 147, 151, 180, 185, 205, 216, 220, 263], "global": [1, 3, 4, 7, 10, 42, 58, 73, 76, 80, 85, 116, 121, 127, 131, 143, 147, 151, 152, 158, 163, 175, 188, 189, 207, 208, 211, 221, 248, 254, 271], "level": [1, 13, 16, 18, 21, 27, 29, 63, 70, 73, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 117, 121, 126, 131, 137, 141, 146, 149, 150, 151, 175, 180, 187, 198, 208, 211, 263, 271], "15263": 1, "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 51, 53, 56, 58, 74, 81, 82, 83, 85, 86, 88, 89, 90, 93, 95, 96, 97, 99, 102, 103, 105, 110, 111, 114, 116, 126, 127, 128, 129, 130, 132, 133, 134, 135, 138, 144, 146, 147, 155, 157, 158, 159, 166, 170, 175, 176, 179, 180, 185, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 207, 210, 211, 212, 213, 214, 217, 219, 223, 224, 240, 242, 244, 245, 248, 250, 251, 254, 255, 256, 257, 259, 261, 262, 263, 271], "xxx": [1, 6, 13, 87, 132, 134, 135, 146, 147, 185, 187, 188, 191, 217], "xxxx": [1, 7, 68, 80, 82, 85, 91, 127, 134, 135, 188, 210, 212, 221, 271], "rais": [1, 6, 21, 36, 56, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 111, 114, 116, 118, 127, 136, 137, 139, 140, 141, 146, 149, 158, 160, 183, 187, 196, 197, 198, 219, 227, 231, 239, 247, 249, 266], "request": [1, 31, 57, 70, 73, 85, 95, 98, 107, 108, 114, 116, 121, 145, 146, 151, 158, 234], "15257": 1, "oper": [1, 6, 8, 49, 58, 59, 64, 65, 70, 80, 84, 98, 106, 108, 115, 118, 124, 143, 147, 150, 158, 176, 182, 188, 191, 195, 227, 231, 233, 240, 241, 242, 249, 250, 252, 255, 260, 264, 267, 269, 271], "support": [1, 8, 17, 26, 27, 47, 48, 49, 51, 57, 59, 60, 63, 64, 65, 66, 70, 73, 80, 96, 99, 105, 114, 120, 129, 132, 134, 135, 139, 142, 146, 147, 149, 151, 152, 156, 157, 160, 178, 183, 187, 205, 208, 213, 217, 219, 231, 239, 247, 252, 258, 261, 262, 263, 271], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 63, 70, 74, 76, 78, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 105, 106, 110, 111, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 146, 147, 149, 150, 153, 154, 156, 157, 158, 159, 163, 166, 167, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 51, 56, 74, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 150, 152, 154, 155, 156, 157, 158, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 266, 267, 268, 270, 271], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 51, 53, 55, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 80, 81, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 117, 120, 123, 125, 128, 131, 132, 133, 136, 137, 139, 142, 146, 147, 154, 156, 157, 158, 166, 167, 170, 175, 179, 181, 182, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 206, 208, 211, 212, 213, 216, 217, 218, 223, 229, 231, 232, 236, 239, 240, 241, 243, 244, 245, 246, 248, 249, 250, 255, 256, 258, 259, 262, 263, 264, 265, 267, 268, 269, 270, 271], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 56, 64, 69, 98, 116, 127, 132, 142, 157, 176, 184, 185, 188, 240, 241, 243, 244, 245, 247, 248, 250, 251, 254, 259, 262, 271], "conandep": [1, 181, 206, 221, 229], "aggreg": [1, 24, 53, 103, 106, 132, 170, 176, 181, 182, 192, 204, 221, 240, 245, 262], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 67, 69, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 106, 107, 108, 109, 111, 112, 114, 116, 119, 123, 125, 126, 127, 129, 131, 132, 134, 135, 136, 142, 144, 145, 146, 147, 149, 151, 154, 155, 156, 157, 158, 163, 166, 170, 171, 174, 175, 176, 179, 180, 181, 182, 187, 188, 189, 192, 193, 194, 196, 198, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 217, 221, 222, 224, 229, 231, 232, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 259, 261, 262, 263, 264, 266, 268, 271], "direct": [1, 36, 91, 98, 114, 116, 120, 127, 132, 157, 181, 187, 193, 221, 266], "like": [1, 4, 6, 7, 8, 10, 13, 16, 18, 19, 21, 26, 27, 29, 31, 35, 39, 40, 41, 42, 45, 47, 48, 49, 56, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 158, 160, 166, 167, 168, 175, 176, 177, 179, 180, 181, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 207, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 229, 231, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "style": [1, 83, 86, 93, 95, 96, 98, 102, 107, 111, 179, 196], "15207": 1, "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 57, 58, 61, 76, 80, 85, 96, 105, 106, 114, 116, 127, 132, 141, 144, 145, 146, 147, 150, 176, 185, 187, 188, 190, 193, 194, 204, 207, 213, 217, 218, 222, 224, 240, 241, 242, 244, 245, 246, 248, 254, 256, 258, 259, 262], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 53, 55, 58, 60, 63, 64, 68, 69, 73, 74, 75, 76, 81, 82, 83, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 117, 118, 119, 120, 122, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 142, 143, 144, 145, 147, 149, 150, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 181, 185, 188, 191, 194, 196, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 221, 229, 232, 235, 238, 240, 241, 242, 244, 245, 246, 249, 250, 252, 254, 258, 259, 262, 263, 264, 268, 269, 271], "configur": [1, 3, 6, 7, 8, 11, 14, 16, 17, 18, 19, 20, 21, 26, 29, 31, 35, 38, 41, 42, 45, 47, 48, 49, 51, 53, 56, 57, 58, 59, 61, 62, 68, 69, 70, 73, 74, 76, 77, 78, 79, 82, 85, 86, 93, 95, 96, 98, 99, 102, 103, 106, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 131, 132, 136, 139, 140, 147, 149, 150, 151, 158, 163, 166, 170, 175, 178, 180, 182, 183, 185, 186, 188, 193, 194, 198, 203, 205, 207, 210, 212, 216, 217, 218, 219, 220, 222, 224, 230, 232, 233, 236, 239, 240, 241, 245, 246, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 268, 269, 270], "preset": [1, 29, 47, 48, 64, 85, 118, 129, 146, 186, 188, 261, 262, 263], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 51, 53, 55, 56, 58, 63, 64, 70, 74, 76, 80, 85, 86, 91, 95, 96, 102, 108, 112, 115, 116, 117, 118, 119, 120, 127, 129, 131, 132, 135, 138, 144, 146, 147, 149, 152, 154, 155, 157, 158, 182, 183, 185, 187, 188, 190, 191, 194, 203, 208, 210, 211, 212, 213, 216, 220, 221, 223, 224, 227, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 267, 268, 270, 271], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 51, 58, 70, 74, 82, 85, 86, 87, 90, 91, 96, 99, 103, 106, 114, 116, 117, 118, 119, 120, 127, 131, 142, 146, 152, 166, 185, 188, 200, 210, 216, 221, 227, 232, 237, 241, 246, 247, 250, 251, 252, 253, 255, 256, 258, 261, 262, 267, 271], "15192": 1, "warn": [1, 24, 53, 56, 63, 73, 79, 85, 106, 108, 116, 134, 135, 141, 147, 158, 196, 217, 227, 249, 271], "about": [1, 4, 6, 16, 18, 19, 21, 24, 31, 37, 42, 45, 47, 51, 53, 55, 56, 63, 64, 65, 69, 70, 74, 76, 78, 80, 82, 83, 86, 88, 90, 92, 96, 98, 102, 105, 106, 110, 111, 113, 116, 117, 118, 120, 122, 123, 127, 128, 129, 131, 132, 136, 137, 139, 142, 143, 147, 149, 151, 155, 160, 188, 202, 208, 214, 217, 229, 234, 236, 239, 240, 242, 246, 248, 249, 251, 252, 254, 258, 259, 261, 262, 265, 268, 269, 271], "potenti": [1, 5, 40, 58, 87, 119, 133, 134, 135, 188, 192, 268], "migrat": [1, 70, 219, 244], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 56, 58, 73, 74, 80, 90, 98, 101, 103, 108, 114, 116, 118, 120, 125, 127, 131, 132, 133, 134, 135, 136, 146, 147, 149, 150, 154, 157, 159, 175, 186, 188, 189, 192, 203, 211, 227, 240, 241, 242, 243, 248, 251, 254, 256, 257, 266, 267, 268, 269, 270], "print": [1, 4, 26, 39, 40, 45, 49, 53, 72, 79, 96, 99, 105, 108, 116, 141, 151, 155, 159, 160, 207, 217, 247, 256, 258], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 63, 70, 74, 80, 81, 84, 85, 98, 116, 127, 130, 131, 145, 146, 147, 150, 157, 159, 181, 182, 188, 192, 210, 211, 221, 222, 240, 244, 245, 255, 256, 260, 261, 264, 267, 268, 270, 271], "time": [1, 6, 8, 10, 24, 26, 42, 53, 56, 63, 70, 74, 81, 90, 99, 106, 108, 114, 116, 119, 120, 124, 125, 126, 127, 128, 129, 132, 133, 147, 152, 159, 175, 185, 187, 188, 193, 194, 198, 203, 208, 240, 243, 244, 245, 249, 252, 255, 256, 257, 260, 261, 263, 264, 265, 266, 268, 269, 271], "fail": [1, 4, 6, 21, 56, 58, 73, 79, 83, 86, 93, 95, 96, 98, 102, 106, 111, 116, 118, 137, 139, 151, 154, 157, 166, 185, 219, 231, 249, 254, 255, 261, 266, 267], "15174": 1, "deploi": [1, 30, 33, 53, 56, 83, 96, 98, 117, 131, 157, 167, 240, 245, 256, 262], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 51, 56, 57, 64, 69, 70, 73, 74, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 101, 102, 103, 105, 106, 108, 109, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 139, 142, 146, 147, 148, 149, 150, 152, 154, 155, 156, 157, 158, 159, 166, 168, 174, 175, 179, 183, 185, 186, 187, 188, 191, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 208, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 232, 233, 238, 240, 242, 243, 244, 245, 246, 247, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "explicit": [1, 41, 84, 98, 130, 145, 199, 223, 264, 265, 267, 270, 271], "per": [1, 6, 68, 70, 80, 105, 118, 127, 130, 132, 136, 147, 175, 181, 210, 211, 221], "deploy": [1, 6, 11, 30, 35, 74, 76, 83, 84, 85, 87, 96, 124, 136, 146, 152, 192, 217], "15172": 1, "sourc": [1, 2, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 28, 30, 31, 34, 35, 38, 39, 40, 42, 43, 45, 48, 49, 50, 53, 55, 56, 57, 73, 74, 75, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 115, 117, 118, 125, 126, 127, 129, 132, 139, 146, 147, 150, 158, 159, 166, 167, 174, 175, 185, 186, 187, 188, 192, 193, 196, 198, 200, 204, 205, 208, 214, 227, 232, 233, 234, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 254, 255, 256, 257, 258, 259, 260, 261, 265, 268, 270], "inject": [1, 39, 40, 43, 46, 62, 63, 85, 116, 131, 132, 141, 145, 146, 147, 150, 152, 154, 212, 223, 245, 248, 258], "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 56, 84, 114, 115, 116, 120, 123, 127, 136, 149, 157, 175, 196, 198, 204, 207, 219, 221, 258], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 53, 55, 56, 57, 58, 74, 84, 85, 105, 114, 115, 126, 129, 147, 152, 158, 159, 175, 176, 196, 200, 208, 211, 217, 222, 240, 242, 243, 244, 250, 252, 259, 260, 262, 263, 268], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 51, 56, 63, 64, 67, 68, 69, 74, 76, 77, 79, 81, 82, 83, 85, 86, 87, 90, 91, 93, 95, 96, 97, 99, 102, 106, 108, 111, 114, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 141, 143, 144, 145, 146, 150, 152, 153, 155, 157, 160, 163, 170, 177, 179, 180, 181, 182, 183, 184, 185, 187, 188, 191, 192, 193, 194, 198, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 229, 231, 232, 233, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 257, 258, 259, 262, 263, 267, 268], "yml": [1, 4, 7, 11, 23, 51, 56, 63, 73, 74, 76, 80, 85, 116, 125, 126, 127, 128, 136, 143, 147, 159, 196, 200, 246], "settings_us": [1, 11, 23, 73, 80, 143], "configapi": [1, 161, 163], "15151": 1, "builtin": [1, 11, 30, 70, 149], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 57, 58, 60, 63, 64, 65, 68, 69, 70, 73, 80, 105, 112, 118, 127, 132, 138, 149, 156, 159, 177, 234, 249, 250, 259, 267], "15150": 1, "core": [1, 3, 4, 10, 31, 45, 53, 57, 71, 78, 80, 84, 85, 114, 116, 131, 141, 145, 146, 147, 151, 175, 269], "warnings_as_error": [1, 85, 141, 146], "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 51, 56, 63, 67, 68, 69, 73, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 117, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 132, 139, 140, 146, 148, 152, 153, 155, 157, 158, 170, 181, 182, 183, 184, 185, 187, 188, 196, 198, 203, 205, 212, 213, 215, 220, 221, 222, 232, 235, 239, 244, 246, 248, 250, 252, 254, 256, 258, 265, 268, 269, 271], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 51, 107, 146, 150, 198, 256, 271], "argument": [1, 6, 7, 26, 29, 31, 35, 36, 47, 49, 64, 73, 74, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 124, 134, 135, 141, 145, 146, 151, 152, 154, 156, 157, 159, 166, 170, 174, 180, 181, 185, 186, 187, 188, 189, 191, 192, 196, 203, 205, 210, 213, 214, 220, 227, 231, 241, 242, 244, 248, 249, 250, 252, 255, 261, 262, 264, 267, 269, 270], "ftp_download": [1, 195], "commun": [1, 3, 8, 73, 85, 114, 132, 146, 149, 224, 235, 237], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 53, 56, 58, 63, 70, 74, 76, 78, 80, 82, 83, 85, 86, 90, 93, 95, 96, 102, 111, 116, 120, 123, 132, 143, 146, 149, 151, 152, 157, 161, 163, 166, 188, 191, 205, 212, 213, 216, 217, 219, 223, 239, 240, 242, 244, 245, 249, 254, 266, 267, 268, 269], "redefin": [1, 98, 147], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 58, 61, 63, 64, 65, 67, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 98, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 149, 151, 152, 153, 154, 155, 156, 157, 158, 166, 167, 168, 174, 175, 179, 181, 182, 185, 187, 188, 189, 191, 192, 194, 196, 199, 203, 205, 207, 208, 210, 211, 214, 216, 217, 221, 222, 227, 230, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 258, 265, 266, 267, 269, 270], "replac": [1, 19, 35, 49, 51, 73, 85, 116, 147, 151, 163, 188, 192, 196, 257], "zlibng": [1, 147], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 70, 73, 79, 81, 84, 85, 87, 91, 93, 95, 96, 98, 99, 102, 108, 109, 112, 116, 127, 132, 133, 142, 146, 147, 148, 156, 181, 187, 193, 194, 206, 208, 211, 221, 224, 229, 239, 240, 241, 242, 243, 244, 245, 250], "conflict": [1, 39, 40, 58, 74, 98, 115, 116, 120, 133, 147, 166, 187, 191, 208, 217, 232, 254, 265], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 58, 59, 64, 65, 70, 73, 74, 75, 78, 79, 80, 81, 82, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 105, 111, 116, 117, 118, 119, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 144, 145, 146, 147, 149, 150, 151, 153, 154, 155, 156, 158, 175, 181, 187, 188, 189, 191, 196, 198, 203, 204, 205, 207, 208, 212, 213, 214, 217, 223, 227, 231, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "system": [1, 5, 7, 8, 35, 39, 40, 42, 45, 51, 53, 55, 56, 57, 59, 61, 63, 64, 68, 73, 76, 80, 85, 98, 106, 113, 114, 116, 117, 118, 120, 127, 130, 132, 133, 136, 141, 143, 144, 146, 147, 150, 152, 156, 157, 158, 170, 176, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 196, 204, 205, 207, 221, 240, 241, 242, 244, 245, 246, 249, 250, 251, 255, 257, 258, 261, 262, 267, 268], "altern": [1, 56, 70, 86, 90, 92, 95, 116, 134, 135, 147, 175, 192, 227, 255], "wrap": [1, 118, 141, 147, 192, 213, 217, 224, 271], "anoth": [1, 7, 13, 35, 41, 51, 79, 116, 119, 120, 127, 137, 147, 149, 155, 187, 191, 203, 211, 231, 233, 238, 240, 241, 248, 249, 251, 255, 257, 258, 261, 268], "15136": 1, "stderr": [1, 70, 141, 185, 271], "captur": [1, 6, 11, 43, 86, 102, 136, 193, 194, 196, 227, 231, 241, 243, 244, 245, 248, 252, 267], "15121": 1, "platform_requir": 1, "definit": [1, 17, 61, 63, 64, 66, 67, 70, 80, 85, 90, 98, 105, 106, 107, 116, 123, 132, 136, 146, 147, 149, 152, 182, 188, 190, 192, 193, 194, 204, 205, 217, 221, 222, 223, 227, 244, 258, 261, 263, 270], "platform": [1, 8, 17, 39, 40, 55, 57, 58, 59, 67, 68, 73, 74, 80, 84, 95, 106, 122, 125, 126, 127, 130, 132, 136, 145, 146, 147, 149, 179, 188, 217, 219, 220, 221, 222, 231, 239, 240, 241, 244, 248, 259, 261, 268], "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 78, 80, 83, 84, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 105, 108, 109, 110, 111, 114, 117, 118, 124, 127, 130, 132, 133, 134, 135, 142, 145, 146, 147, 149, 150, 154, 157, 166, 185, 187, 188, 189, 191, 192, 196, 198, 200, 205, 207, 208, 217, 229, 242, 243, 244, 246, 255, 257, 258, 265, 267, 270, 271], "14871": 1, "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 57, 73, 74, 78, 80, 82, 85, 86, 97, 98, 100, 101, 102, 103, 106, 116, 117, 123, 127, 132, 133, 136, 137, 139, 142, 146, 147, 152, 155, 157, 161, 167, 181, 192, 221, 231, 239, 240, 241, 243, 245, 249, 264, 265, 266, 267, 268, 270], "explain": [1, 5, 56, 63, 70, 73, 78, 81, 92, 136, 146, 147, 149, 182, 189, 199, 231, 233, 239, 241, 242, 244, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 263, 265, 267, 270], "miss": [1, 5, 26, 35, 36, 42, 45, 53, 55, 78, 79, 80, 81, 83, 84, 86, 91, 92, 93, 95, 96, 98, 102, 111, 116, 137, 147, 158, 231, 240, 241, 242, 244, 245, 247, 248, 249, 251, 254, 255, 257, 258, 266, 268, 271], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 51, 53, 56, 57, 58, 60, 73, 74, 76, 79, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 115, 117, 118, 119, 120, 121, 124, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 146, 147, 148, 149, 152, 157, 167, 175, 179, 182, 187, 196, 203, 208, 217, 232, 233, 234, 235, 236, 238, 240, 241, 242, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 86, 91, 96, 129, 181, 187, 188, 189, 194, 196, 205, 206, 207, 208, 211, 250, 251, 252, 254, 255, 256, 263], "initi": [1, 6, 56, 63, 117, 128, 132, 134, 135, 166, 217, 225, 270], "compon": [1, 14, 15, 20, 127, 129, 178, 185, 187, 189, 206, 207, 208, 211, 221, 246], "13994": 1, "accept": [1, 5, 7, 89, 97, 98, 99, 102, 107, 109, 116, 141, 144, 147, 149, 180, 185, 188, 196, 200, 208, 213, 216, 220, 231], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 53, 57, 61, 63, 66, 68, 69, 73, 79, 80, 81, 82, 84, 87, 97, 101, 103, 105, 108, 109, 112, 114, 116, 117, 121, 127, 128, 131, 132, 141, 142, 145, 146, 147, 148, 152, 155, 161, 166, 170, 171, 174, 182, 183, 185, 186, 187, 188, 192, 196, 198, 203, 205, 206, 208, 210, 212, 217, 220, 221, 222, 223, 227, 229, 231, 232, 238, 243, 250, 251, 254, 255, 261, 262, 267, 268, 270, 271], "15297": 1, "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 53, 56, 57, 58, 70, 72, 73, 74, 77, 78, 80, 82, 83, 85, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 104, 105, 106, 110, 114, 117, 120, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 143, 144, 145, 147, 148, 149, 150, 151, 152, 157, 158, 160, 169, 170, 187, 188, 191, 196, 198, 200, 205, 208, 217, 221, 227, 228, 236, 237, 240, 242, 243, 245, 248, 249, 250, 251, 252, 254, 256, 257, 261, 262, 266, 269], "scope": [1, 116, 129, 141, 142, 146, 147, 191, 192, 193, 194, 213, 219, 224], "separ": [1, 21, 56, 82, 86, 108, 114, 116, 119, 129, 147, 151, 186, 187, 191, 192, 217, 237, 245, 251, 263, 269], "15296": 1, "rang": [1, 8, 9, 70, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 111, 116, 131, 133, 142, 146, 147, 149, 175, 232, 239, 250, 265, 267, 270], "escap": [1, 107, 151], "report": [1, 6, 13, 57, 58, 70, 85, 95, 98, 114, 137, 146, 149, 167, 231], "involv": [1, 261, 262], "15222": 1, "hard": [1, 149], "set_nam": [1, 97, 117, 127], "set_vers": [1, 97, 116, 117, 127, 175, 227, 270], "mutat": 1, "name": [1, 3, 4, 6, 7, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 56, 58, 65, 74, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 105, 106, 107, 109, 110, 114, 117, 120, 127, 128, 129, 131, 132, 134, 135, 136, 137, 139, 140, 142, 145, 146, 147, 148, 149, 151, 152, 154, 156, 157, 158, 170, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 206, 207, 212, 213, 217, 220, 221, 222, 224, 227, 229, 231, 236, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 266, 267, 268, 269, 270, 271], "version": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 35, 37, 38, 41, 42, 45, 47, 48, 49, 51, 55, 56, 57, 58, 59, 63, 65, 70, 73, 74, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 112, 114, 117, 120, 121, 127, 128, 131, 133, 135, 136, 137, 139, 140, 142, 146, 147, 149, 150, 152, 154, 156, 157, 160, 166, 175, 176, 179, 182, 183, 186, 187, 188, 191, 196, 199, 200, 203, 207, 208, 213, 217, 219, 222, 223, 224, 226, 227, 231, 232, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 271], "line": [1, 8, 10, 21, 26, 29, 31, 49, 56, 61, 62, 67, 68, 69, 70, 73, 74, 80, 83, 86, 93, 95, 96, 98, 102, 105, 106, 111, 114, 116, 118, 134, 135, 145, 146, 151, 154, 155, 156, 160, 180, 181, 185, 187, 188, 196, 203, 210, 211, 216, 220, 222, 224, 240, 242, 245, 247, 248, 250, 252, 257, 268, 269, 270, 271], "15211": 1, "format": [1, 6, 7, 13, 51, 65, 72, 82, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 106, 107, 108, 109, 111, 112, 113, 116, 121, 127, 132, 136, 137, 145, 149, 150, 154, 175, 189, 192, 196, 198, 206, 208, 214, 217, 222, 235, 248, 255, 256, 264, 271], "text": [1, 99, 114, 115, 116, 135, 146, 147, 155, 175, 196, 270], "stdout": [1, 70, 97, 99, 105, 113, 116, 141, 185, 271], "15170": 1, "avoid": [1, 5, 6, 10, 56, 58, 70, 74, 83, 85, 86, 90, 93, 95, 96, 97, 98, 102, 105, 108, 111, 114, 115, 116, 119, 120, 123, 127, 128, 133, 136, 146, 150, 151, 153, 159, 175, 187, 188, 192, 196, 203, 205, 214, 245, 248, 249, 254, 259, 261, 266, 267, 268], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 51, 55, 56, 63, 65, 70, 74, 76, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 124, 127, 131, 136, 146, 147, 151, 155, 157, 158, 175, 196, 198, 200, 207, 214, 217, 227, 240, 242, 244, 245, 247, 248, 251, 258, 259, 263, 268, 271], "due": [1, 81, 116, 263], "cmake_policy_default_cmp0091": 1, "unus": [1, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 232, 267], "variabl": [1, 26, 35, 36, 43, 45, 46, 57, 61, 76, 78, 80, 85, 105, 114, 116, 127, 131, 132, 144, 145, 146, 147, 150, 178, 182, 185, 187, 189, 190, 193, 194, 204, 205, 206, 207, 208, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224, 231, 241, 242, 244, 245, 248, 256, 257, 258, 259, 268, 269, 271], "15127": 1, "deprec": [1, 70, 85, 91, 141, 146, 149, 199, 205, 217], "system_tool": [1, 245], "favor": [1, 116], "platform_tool_requir": 1, "align": [1, 7, 149], "regular": [1, 41, 116, 127, 129, 132, 147, 151, 158, 175, 187, 198, 208, 221, 237, 239, 241, 254], "ensur": [1, 4, 8, 36, 42, 58, 63, 78, 86, 120, 149, 188, 196, 210, 213, 242], "have": [1, 4, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 45, 49, 51, 53, 55, 56, 58, 63, 65, 70, 73, 74, 78, 79, 80, 81, 82, 83, 84, 86, 93, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 120, 123, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 151, 155, 156, 158, 166, 175, 179, 181, 182, 187, 188, 196, 198, 203, 205, 208, 211, 213, 214, 217, 221, 222, 231, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "least": [1, 3, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 133, 243, 247, 254, 258, 264], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 51, 53, 55, 58, 65, 70, 73, 74, 85, 98, 105, 106, 116, 135, 136, 150, 176, 196, 226, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 270], "is_dirti": [1, 227], "statu": [1, 38, 49, 141, 227], "sure": [1, 8, 24, 29, 38, 42, 58, 99, 127, 130, 137, 141, 159, 175, 196, 217, 270], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 51, 53, 56, 63, 70, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 93, 95, 96, 97, 98, 99, 102, 105, 107, 108, 111, 112, 115, 116, 119, 120, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 166, 167, 175, 176, 181, 182, 183, 185, 186, 187, 188, 189, 193, 194, 196, 198, 203, 204, 205, 207, 208, 211, 212, 217, 221, 229, 231, 239, 241, 242, 243, 245, 246, 248, 250, 251, 252, 253, 255, 256, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "process": [1, 5, 7, 26, 53, 56, 58, 63, 70, 74, 80, 91, 101, 103, 105, 114, 116, 117, 118, 123, 132, 147, 151, 155, 157, 158, 188, 193, 217, 238, 242, 243, 246, 250, 255, 257, 267, 270, 271], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 58, 64, 66, 67, 68, 69, 70, 73, 74, 78, 80, 84, 85, 90, 98, 101, 105, 107, 114, 116, 117, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 139, 140, 144, 146, 147, 153, 160, 174, 175, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 238, 240, 241, 242, 244, 245, 247, 248, 250, 256, 261, 263, 267], "whole": [1, 6, 10, 17, 70, 78, 80, 84, 98, 116, 139, 175, 187, 188, 192, 207], "repo": [1, 4, 5, 6, 16, 56, 58, 65, 70, 105, 106, 158, 227, 263, 270], "similarli": [1, 147, 236, 269], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 56, 57, 58, 66, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 108, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 140, 146, 147, 149, 150, 151, 152, 155, 175, 176, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 210, 217, 222, 223, 227, 231, 232, 236, 238, 240, 241, 243, 244, 245, 246, 247, 249, 250, 252, 256, 258, 260, 261, 262, 263, 267, 268, 270], "15289": 1, "clear": [1, 107, 116, 131, 132, 139, 191, 244, 249, 254, 267], "header": [1, 6, 17, 35, 39, 40, 42, 74, 79, 80, 81, 91, 116, 120, 129, 130, 131, 132, 138, 139, 150, 179, 187, 189, 198, 221, 246, 250, 251, 253, 255, 256, 257, 261, 263, 271], "python_requir": [1, 74, 97, 101, 102, 103, 104, 117, 127, 128, 152, 166, 188, 214, 232, 243, 267, 269], "tool_requir": [1, 11, 35, 37, 39, 40, 74, 79, 80, 86, 90, 93, 95, 96, 98, 102, 105, 106, 117, 127, 131, 132, 133, 136, 175, 187, 188, 193, 204, 208, 211, 221, 241, 242, 243, 244, 245, 256, 259, 269], "15285": 1, "restor": [1, 2, 57, 192, 193, 194, 242, 243, 245], "portabl": [1, 70, 116], "across": [1, 8, 55, 146, 152, 153, 240], "window": [1, 8, 13, 17, 26, 29, 35, 39, 40, 42, 48, 55, 58, 59, 70, 74, 80, 81, 84, 85, 87, 99, 102, 103, 108, 112, 116, 119, 122, 127, 130, 132, 136, 139, 146, 147, 149, 160, 168, 192, 196, 204, 205, 213, 217, 231, 236, 237, 240, 242, 244, 245, 248, 249, 250, 251, 252, 255, 256, 261, 263, 268, 271], "oss": [1, 103, 132, 149, 268], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 101, 102, 104, 108, 111, 112, 116, 118, 119, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 141, 145, 146, 147, 149, 150, 151, 155, 157, 175, 183, 187, 188, 191, 196, 203, 217, 227, 231, 238, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 263, 264, 266, 267, 268, 270, 271], "relativ": 1, "absolut": [1, 35, 36, 49, 85, 105, 127, 144, 146, 147, 157, 169, 187, 188, 196, 198, 200, 201, 257], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 51, 64, 70, 80, 81, 85, 119, 122, 131, 143, 146, 147, 179, 180, 182, 183, 188, 205, 213, 217, 220, 231, 240, 241, 242, 244, 255, 259, 267], "cmakepreset": [1, 43, 46, 64, 85, 127, 146, 185, 186, 188, 244, 261, 262, 263, 271], "ignor": [1, 6, 29, 53, 74, 124, 134, 135, 151, 185, 200, 201, 227, 231, 267], "toolchain": [1, 26, 27, 45, 46, 61, 62, 64, 68, 69, 80, 85, 118, 127, 129, 146, 147, 149, 182, 185, 203, 205, 212, 217, 222, 240, 241, 242, 244, 245, 246, 249, 250, 256, 258, 262], "15215": 1, "html": [1, 45, 58, 73, 96, 155, 271], "mislead": 1, "node": [1, 13, 91, 137, 166], "15196": 1, "serial": [1, 7, 116], "show": [1, 21, 31, 39, 40, 42, 47, 48, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 120, 146, 147, 214, 227, 239, 242, 246, 250, 252, 258, 260, 261, 262, 263], "json": [1, 3, 4, 6, 13, 21, 47, 48, 56, 65, 76, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 101, 103, 106, 107, 108, 109, 111, 112, 113, 127, 128, 136, 137, 143, 155, 185, 186, 188, 255, 261, 262, 263, 264, 271], "15185": 1, "nmakedep": [1, 176, 189, 218], "quot": [1, 99, 107], "15140": 1, "lru": [1, 99, 108, 264], "data": [1, 6, 8, 80, 114, 116, 119, 126, 127, 128, 129, 132, 143, 183, 187, 196, 208, 215, 237, 252], "storage_path": [1, 85, 146], "15135": 1, "package_metadata_fold": [1, 6], "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 55, 61, 78, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 139, 140, 146, 147, 149, 156, 174, 175, 177, 181, 182, 187, 188, 193, 194, 196, 204, 205, 206, 207, 208, 211, 212, 213, 221, 222, 223, 224, 229, 230, 251, 255, 261, 269, 270], "15126": 1, "pyinstal": [1, 58], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 56, 57, 58, 63, 70, 74, 76, 80, 82, 83, 84, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 116, 121, 125, 127, 128, 129, 134, 135, 136, 137, 138, 139, 142, 147, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 166, 167, 175, 181, 182, 187, 193, 194, 200, 204, 205, 206, 208, 210, 211, 212, 213, 221, 222, 224, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 268, 269, 270], "broken": [1, 5, 65, 70, 129, 136, 201, 257, 268], "python": [1, 8, 31, 51, 56, 58, 61, 68, 70, 74, 76, 83, 85, 100, 101, 104, 113, 114, 116, 128, 141, 146, 147, 152, 154, 155, 156, 158, 160, 166, 185, 188, 192, 203, 205, 208, 210, 217, 220, 223, 244], "useless": [1, 128, 187], "distutil": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 49, 51, 56, 57, 58, 59, 61, 62, 66, 67, 68, 69, 70, 73, 78, 80, 82, 96, 98, 102, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 143, 145, 147, 149, 152, 153, 155, 156, 159, 175, 176, 177, 179, 180, 181, 182, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 229, 231, 232, 241, 243, 244, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 263, 267, 269, 270, 271], "15116": 1, "backup": [1, 7, 85, 114, 146, 174], "download_cach": [1, 4, 85, 146], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 53, 55, 58, 61, 62, 63, 65, 66, 67, 68, 74, 75, 78, 80, 82, 85, 98, 100, 105, 106, 107, 112, 116, 117, 122, 123, 131, 132, 136, 137, 146, 147, 148, 149, 157, 175, 177, 181, 188, 189, 191, 192, 196, 204, 213, 217, 219, 227, 230, 235, 239, 240, 241, 244, 246, 250, 256, 264, 265, 267, 268, 269, 270], "meson": [1, 11, 43, 57, 59, 70, 74, 76, 85, 105, 146, 147, 176, 240, 248, 250], "autotool": [1, 11, 43, 57, 59, 70, 85, 105, 127, 146, 176, 179, 189, 191, 192, 202, 204, 205, 240, 248, 250], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 53, 55, 63, 68, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 87, 91, 92, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 116, 118, 119, 120, 123, 127, 129, 130, 131, 132, 133, 136, 139, 142, 146, 147, 150, 152, 154, 155, 157, 160, 175, 179, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 196, 198, 203, 204, 205, 207, 211, 213, 216, 220, 221, 222, 223, 229, 231, 240, 241, 242, 243, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271], "simultan": [1, 187, 261, 266], "databas": [1, 85, 146, 231], "connect": [1, 53, 73, 85, 96, 107, 114, 146, 236], "15029": 1, "upload": [1, 3, 5, 7, 12, 29, 56, 65, 70, 73, 74, 80, 82, 85, 87, 89, 106, 107, 108, 114, 116, 125, 126, 146, 148, 152, 159, 161, 203, 232, 233, 234, 236, 243, 254, 255, 261, 264, 265, 271], "regardless": [1, 84, 249], "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 53, 55, 56, 58, 61, 62, 63, 66, 72, 73, 74, 79, 80, 82, 83, 84, 85, 86, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 113, 114, 116, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 140, 141, 144, 145, 146, 147, 149, 150, 152, 154, 157, 158, 159, 163, 175, 179, 180, 185, 187, 188, 191, 196, 198, 203, 205, 207, 210, 211, 212, 213, 214, 216, 217, 220, 221, 223, 231, 240, 242, 243, 244, 246, 249, 250, 251, 255, 261, 262, 264, 266, 269, 271], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 61, 62, 65, 66, 67, 69, 70, 73, 74, 75, 78, 79, 80, 84, 86, 87, 90, 92, 96, 97, 98, 100, 101, 103, 114, 116, 118, 120, 121, 123, 127, 129, 132, 133, 136, 137, 142, 145, 146, 147, 149, 150, 151, 155, 157, 158, 166, 175, 177, 179, 182, 185, 188, 196, 201, 210, 214, 217, 222, 227, 231, 238, 242, 243, 246, 249, 250, 251, 252, 254, 255, 256, 263, 264, 266, 267, 268, 269, 271], "15013": 1, "compact": [1, 84], "better": [1, 5, 6, 24, 27, 31, 36, 56, 64, 82, 98, 103, 116, 118, 131, 134, 135, 150, 192, 237, 255, 256, 266, 267, 271], "ux": [1, 109, 143], "15011": 1, "metadata": [1, 2, 7, 57, 65, 84, 112, 115, 131, 174, 250, 268], "pass": [1, 4, 13, 26, 36, 39, 45, 49, 53, 55, 64, 80, 84, 85, 86, 98, 105, 106, 114, 116, 123, 128, 129, 136, 141, 145, 146, 154, 155, 157, 163, 179, 180, 181, 182, 185, 186, 189, 198, 200, 203, 205, 206, 210, 213, 217, 220, 227, 231, 240, 248, 249, 250, 251, 252, 254, 258, 259, 261, 267, 271], "15007": 1, "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 51, 73, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 141, 146, 158, 245, 247, 248, 249, 252, 256, 258, 261, 268, 271], "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 85, 86, 105, 116, 131, 134, 135, 141, 146, 185, 200, 205, 210, 212, 217, 222, 223, 227, 247, 254, 258], "flag": [1, 49, 84, 85, 96, 122, 131, 132, 146, 149, 179, 180, 182, 187, 203, 204, 205, 208, 212, 216, 217, 219, 222, 223, 229, 249], "14966": 1, "implement": [1, 2, 7, 8, 41, 70, 74, 79, 84, 90, 105, 114, 121, 127, 130, 136, 149, 153, 157, 160, 175, 176, 180, 188, 214, 220, 228, 235, 237, 250, 252, 254, 255, 264, 266, 271], "load": [1, 16, 41, 45, 53, 56, 62, 98, 116, 125, 126, 128, 134, 135, 146, 147, 158, 169, 170, 175, 188, 195, 198, 203, 211, 213, 229, 242, 244, 270], "ci": [1, 2, 4, 5, 6, 7, 8, 56, 65, 74, 95, 106, 116, 118, 149, 150, 151, 267, 271], "workflow": [1, 56, 158, 262], "move": [1, 7, 35, 70, 74, 136, 175, 196, 250, 252, 257, 262, 263, 266, 267, 268, 270], "over": [1, 6, 8, 10, 72, 74, 80, 84, 85, 87, 98, 128, 131, 136, 144, 146, 147, 151, 154, 157, 170, 175, 180, 188, 198, 205, 207, 208, 227, 248, 251, 252, 257, 264, 266, 269, 271], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 56, 70, 73, 76, 77, 78, 92, 93, 96, 98, 99, 100, 102, 106, 116, 117, 123, 127, 131, 133, 136, 139, 147, 149, 160, 166, 170, 175, 193, 194, 204, 205, 238, 240, 242, 243, 245, 249, 250, 259, 268], "intersect": [1, 10], "compat": [1, 8, 24, 27, 45, 63, 70, 76, 77, 79, 80, 83, 86, 87, 93, 95, 96, 98, 102, 111, 112, 116, 117, 131, 147, 149, 152, 158, 187, 188, 203, 208, 217, 242, 244, 246, 256], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 68, 69, 70, 74, 83, 86, 87, 93, 95, 96, 98, 102, 111, 114, 116, 127, 129, 131, 147, 150, 157, 175, 181, 185, 187, 188, 189, 193, 203, 205, 214, 217, 221, 231, 232, 233, 236, 239, 246, 261, 263, 267, 269, 271], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 58, 59, 73, 81, 91, 96, 99, 106, 147, 149, 179, 202, 213, 217, 231, 240, 242, 244, 245, 248, 250, 251, 255, 261, 263], "14858": 1, "pkgconfigdep": [1, 45, 55, 61, 67, 132, 176, 202, 217, 248], "listen": [1, 114, 207, 210, 237], "system_package_vers": [1, 187, 208], "properti": [1, 21, 42, 67, 68, 91, 96, 116, 127, 129, 133, 163, 179, 188, 204, 213, 217, 221, 222, 230, 246, 257, 258, 262], "14808": 1, "shorthand": 1, "cli": [1, 10, 13, 31, 70, 91, 96, 146, 148, 151, 155, 185, 210, 236, 270], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 51, 73, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 99, 102, 104, 106, 107, 108, 109, 110, 111, 112, 114, 116, 120, 122, 123, 127, 129, 131, 132, 133, 141, 142, 146, 147, 148, 149, 157, 174, 183, 185, 186, 187, 188, 192, 196, 197, 198, 203, 205, 206, 208, 211, 213, 216, 217, 223, 227, 238, 240, 241, 242, 243, 244, 252, 254, 269, 270], "host": [1, 8, 13, 24, 30, 35, 42, 70, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 146, 147, 157, 166, 170, 177, 183, 187, 188, 189, 194, 198, 205, 208, 213, 217, 219, 221, 223, 231, 232, 235, 236, 239, 242, 256], "14727": 1, "control": [1, 4, 5, 49, 56, 70, 73, 78, 86, 116, 129, 135, 149, 151, 181, 188, 221, 255, 267, 269, 271], "clean": [1, 6, 7, 30, 32, 56, 58, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 196, 210, 255, 261, 267, 268], "artifact": [1, 6, 7, 13, 29, 65, 70, 74, 79, 84, 85, 87, 98, 108, 112, 116, 117, 119, 124, 129, 130, 131, 133, 146, 157, 159, 174, 188, 235, 236, 250, 255, 257, 261, 262, 263, 268, 271], "14054": 1, "overwrit": [1, 7, 24, 78, 83, 86, 90, 93, 95, 96, 98, 102, 105, 106, 111, 136, 175, 191, 208], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 53, 76, 115, 117, 127, 130, 132, 136, 176, 185, 186, 188, 200, 205, 211, 217, 225, 232, 239, 241, 250, 252, 254, 255, 256, 259, 260, 261, 262], "nor": [1, 36, 70, 124, 128, 136, 137, 174, 231], "15058": 1, "astra": 1, "elbru": [1, 149], "altlinux": 1, "distribut": [1, 7, 35, 45, 56, 58, 70, 106, 136, 149, 160, 231, 237], "apt": [1, 58, 85, 117, 137, 146, 230], "systempackagemanag": 1, "15051": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 51, 53, 55, 56, 58, 70, 73, 74, 80, 84, 85, 96, 106, 108, 114, 116, 131, 136, 137, 145, 146, 147, 150, 158, 168, 174, 177, 179, 183, 185, 186, 187, 189, 192, 195, 200, 203, 208, 211, 213, 217, 219, 220, 223, 227, 229, 231, 240, 242, 243, 248, 252, 254, 255, 256, 261, 262, 263, 266, 268, 271], "linux": [1, 8, 26, 27, 35, 44, 48, 55, 58, 59, 70, 80, 81, 85, 87, 95, 99, 102, 103, 137, 139, 146, 147, 149, 183, 198, 213, 231, 240, 241, 242, 244, 245, 248, 251, 255, 261, 263, 268], "mint": [1, 58], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 51, 56, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 106, 107, 111, 112, 114, 116, 118, 129, 131, 132, 136, 137, 139, 140, 146, 147, 149, 151, 152, 155, 158, 160, 166, 167, 174, 182, 183, 187, 192, 196, 197, 198, 203, 211, 213, 214, 217, 219, 227, 231, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 264, 267, 268, 271], "commit": [1, 19, 56, 65, 70, 74, 116, 129, 136, 196, 227, 247, 248, 251, 252, 258, 262, 263, 268, 270], "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 53, 56, 70, 73, 76, 82, 83, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 106, 108, 109, 111, 112, 114, 143, 145, 146, 147, 152, 161, 166, 167, 168, 174, 196, 227, 232, 233, 236, 237, 238, 240, 242, 245, 246, 249, 255, 262, 271], "server": [1, 4, 5, 6, 7, 8, 13, 29, 53, 56, 57, 65, 70, 74, 76, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 102, 105, 106, 107, 108, 111, 112, 116, 125, 126, 131, 145, 146, 150, 151, 159, 166, 198, 203, 232, 235, 236, 238, 240, 243, 252, 254, 264, 268, 271], "even": [1, 4, 6, 35, 36, 47, 51, 58, 59, 70, 73, 74, 79, 81, 87, 98, 103, 107, 112, 116, 118, 120, 123, 127, 133, 134, 135, 136, 137, 146, 147, 148, 149, 154, 157, 158, 175, 196, 214, 221, 238, 241, 243, 248, 249, 250, 254, 265, 266, 267, 268, 269, 270], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 85, 98, 136, 150, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268], "15023": 1, "appl": [1, 24, 42, 69, 70, 73, 76, 81, 85, 91, 96, 99, 106, 146, 147, 149, 176, 180, 181, 182, 186, 188, 203, 205, 215, 240, 242, 250], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 51, 56, 73, 74, 80, 81, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 103, 106, 108, 111, 112, 116, 119, 122, 123, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 145, 146, 147, 149, 150, 158, 159, 160, 168, 175, 179, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 236, 240, 241, 242, 243, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266], "15015": 1, "autotoolstoolchain": [1, 45, 61, 85, 146, 176, 191, 202, 203, 248], "extraflag": 1, "prioriti": [1, 98, 104, 116, 123, 132, 133, 134, 135, 145, 146, 147, 151, 170, 191, 266], "15005": 1, "color": [1, 31, 116, 247, 248, 251, 258, 259], "15002": 1, "sqlite3": [1, 127], "unsupport": [1, 252], "less": [1, 6, 35, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 270], "than": [1, 8, 56, 63, 70, 73, 78, 80, 85, 86, 87, 94, 101, 108, 116, 119, 121, 122, 128, 131, 132, 134, 135, 140, 141, 146, 149, 150, 157, 175, 182, 183, 187, 188, 205, 208, 222, 223, 231, 240, 243, 249, 253, 259, 268, 269, 271], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 70, 74, 75, 80, 98, 104, 105, 116, 119, 120, 125, 127, 131, 133, 134, 135, 136, 142, 147, 149, 150, 158, 176, 183, 185, 186, 188, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 223, 224, 225, 231, 240, 242, 243, 244, 254, 255, 264, 266, 268, 269, 271], "forward": [1, 6, 45, 53, 55, 70, 175, 198, 266, 270], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 56, 63, 74, 78, 79, 119, 120, 146, 147, 175, 188, 205, 211, 217, 251, 261, 262, 271], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 74, 78, 79, 81, 82, 83, 84, 86, 87, 90, 93, 95, 96, 98, 100, 101, 102, 103, 104, 106, 108, 111, 112, 116, 127, 131, 142, 149, 155, 166, 175, 196, 232, 239, 240, 245, 249, 251, 254, 256, 257, 262, 264, 265, 267], "forc": [1, 6, 31, 36, 41, 74, 83, 85, 86, 91, 93, 95, 96, 98, 102, 104, 105, 106, 107, 111, 112, 114, 116, 120, 145, 146, 147, 149, 151, 174, 188, 205, 213, 240, 243, 266, 267, 268], "rebuild": [1, 5, 79, 116, 255, 271], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 58, 70, 74, 75, 77, 78, 80, 85, 98, 104, 116, 117, 123, 132, 133, 141, 146, 147, 149, 157, 200, 208, 214, 239, 242, 258, 260, 261, 262, 264, 269, 270, 271], "previou": [1, 2, 6, 7, 13, 70, 78, 95, 98, 99, 101, 103, 149, 155, 181, 186, 187, 188, 191, 217, 222, 231, 238, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 269, 270], "still": [1, 5, 29, 39, 40, 56, 58, 101, 108, 116, 119, 120, 123, 131, 132, 149, 166, 174, 227, 254, 261, 268, 269, 271], "project": [1, 2, 4, 5, 16, 17, 18, 19, 21, 24, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 78, 80, 85, 86, 105, 114, 116, 117, 129, 132, 146, 157, 175, 180, 181, 182, 186, 203, 206, 210, 211, 212, 213, 214, 217, 221, 222, 225, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 269, 271], "14938": 1, "affect": [1, 5, 6, 10, 58, 78, 80, 81, 98, 116, 122, 123, 131, 133, 147, 149, 175, 182, 185, 187, 188, 196, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 230, 241, 244, 246, 248, 249, 251, 254, 261, 263], "14932": 1, "The": [1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 26, 27, 29, 31, 35, 36, 39, 40, 41, 42, 45, 47, 49, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 76, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 166, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 234, 236, 237, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 53, 55, 56, 57, 59, 70, 73, 74, 78, 79, 80, 81, 82, 83, 86, 87, 90, 91, 93, 95, 96, 99, 100, 101, 102, 105, 106, 111, 114, 116, 117, 118, 124, 127, 129, 130, 133, 134, 135, 136, 137, 139, 140, 142, 146, 147, 149, 152, 154, 156, 157, 158, 159, 160, 161, 166, 179, 180, 181, 182, 185, 186, 188, 193, 194, 203, 204, 205, 207, 210, 211, 212, 213, 216, 217, 221, 222, 224, 229, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 254, 255, 256, 258, 261, 263, 266, 267, 269, 270, 271], "pkgconfig": [1, 85, 146, 176, 202, 217], "fill_cpp_info": [1, 207], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 53, 55, 56, 70, 75, 78, 80, 96, 102, 116, 127, 132, 147, 149, 151, 175, 186, 214, 235, 236, 237, 240, 247, 248, 262, 268, 269, 270], "noisi": 1, "quiet": [1, 85, 141, 146, 180, 185, 216, 220], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 29, 35, 36, 39, 40, 49, 51, 56, 58, 63, 69, 70, 73, 74, 78, 80, 85, 86, 90, 96, 98, 99, 101, 103, 105, 108, 112, 116, 117, 118, 120, 125, 126, 127, 128, 130, 131, 132, 136, 137, 139, 140, 142, 145, 146, 147, 149, 150, 167, 177, 187, 188, 189, 193, 194, 196, 217, 223, 227, 229, 240, 242, 244, 245, 249, 251, 252, 254, 255, 259, 262, 264, 266, 267, 268, 269, 270, 271], "buildinfo": 1, "14886": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 78, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 108, 111, 114, 116, 118, 119, 120, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 144, 146, 147, 149, 150, 152, 154, 156, 157, 158, 160, 166, 174, 175, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 193, 196, 198, 203, 217, 219, 220, 221, 222, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 51, 58, 59, 65, 70, 74, 80, 84, 86, 87, 95, 98, 102, 105, 108, 112, 114, 116, 120, 127, 131, 132, 133, 136, 138, 139, 140, 141, 145, 146, 147, 149, 150, 151, 153, 156, 158, 160, 167, 170, 175, 179, 181, 187, 191, 192, 193, 205, 207, 217, 221, 231, 235, 236, 242, 243, 244, 248, 249, 250, 252, 255, 256, 259, 262, 264, 267, 268, 271], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 55, 56, 58, 63, 64, 68, 70, 74, 77, 78, 79, 82, 85, 90, 92, 96, 97, 101, 102, 105, 108, 112, 114, 116, 120, 122, 123, 128, 129, 131, 132, 133, 134, 135, 137, 141, 142, 146, 149, 150, 151, 152, 155, 156, 175, 179, 186, 187, 188, 189, 191, 200, 204, 205, 206, 213, 217, 220, 223, 227, 231, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 258, 261, 262, 263, 266, 268, 269, 270, 271], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 56, 57, 58, 63, 70, 74, 82, 84, 85, 89, 90, 92, 96, 98, 99, 106, 108, 114, 116, 125, 126, 136, 146, 147, 148, 150, 152, 159, 161, 166, 176, 195, 227, 233, 236, 238, 240, 243, 244, 245, 249, 252, 253, 256, 260, 262, 264, 266, 268, 271], "14852": 1, "min": [1, 96, 182, 217], "xro": [1, 149], "simul": 1, "14776": 1, "unnecessari": [1, 56, 119], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 56, 78, 80, 82, 84, 90, 93, 96, 98, 101, 103, 105, 116, 118, 119, 120, 121, 126, 127, 128, 129, 131, 132, 133, 135, 136, 137, 139, 145, 146, 147, 149, 154, 156, 157, 170, 175, 187, 188, 189, 192, 196, 205, 214, 216, 221, 238, 241, 242, 244, 248, 250, 252, 254, 255, 257, 258, 263, 266, 267, 268, 269, 270], "skip": [1, 4, 36, 85, 86, 87, 90, 91, 96, 116, 118, 141, 174, 179, 187, 188, 233, 241, 248, 249, 254, 259], "transit": [1, 13, 36, 74, 86, 87, 98, 120, 127, 133, 147, 175, 181, 187, 193, 204, 221, 239, 261], "15082": 1, "15042": 1, "download_sourc": [1, 36, 85, 136, 146], "edit": [1, 3, 14, 15, 21, 26, 29, 51, 58, 70, 73, 74, 82, 106, 107, 114, 116, 127, 129, 132, 136, 147, 149, 160, 175, 232, 235, 237, 240, 243, 260, 263, 268], "15004": 1, "incorrectli": 1, "xcconfig": [1, 69, 181, 182], "14898": 1, "export_sourc": [1, 7, 16, 18, 56, 84, 116, 117, 125, 127, 129, 200], "been": [1, 4, 6, 8, 13, 26, 58, 59, 65, 70, 74, 78, 84, 86, 90, 98, 99, 108, 123, 127, 132, 133, 136, 138, 139, 140, 147, 149, 167, 175, 181, 187, 193, 242, 243, 249, 250, 251, 261, 262, 264, 268, 271], "14850": 1, "properli": [1, 97, 146, 250, 259], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 51, 57, 58, 59, 65, 70, 73, 79, 81, 85, 91, 95, 96, 98, 99, 102, 105, 106, 116, 119, 129, 131, 132, 136, 146, 147, 149, 153, 157, 160, 175, 180, 181, 182, 185, 186, 187, 188, 193, 194, 198, 204, 205, 213, 217, 220, 221, 222, 227, 232, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269], "candid": 1, "14846": 1, "end": [1, 4, 70, 73, 74, 120, 133, 146, 147, 157, 158, 188, 192, 216, 242, 251, 259, 268, 269], "activ": [1, 8, 29, 35, 41, 49, 56, 58, 63, 70, 80, 85, 116, 127, 132, 141, 146, 149, 151, 152, 181, 185, 187, 188, 191, 193, 194, 208, 211, 221, 223, 224, 241, 242, 245, 256], "pre": [1, 9, 45, 53, 56, 58, 70, 73, 82, 85, 90, 106, 116, 136, 145, 146, 152, 158, 192, 214, 244, 246, 253, 262, 263, 269], "resolut": [1, 125, 152], "full": [1, 5, 6, 24, 36, 39, 40, 51, 61, 65, 66, 68, 69, 70, 79, 80, 84, 86, 90, 98, 99, 101, 105, 116, 121, 127, 131, 137, 142, 149, 153, 157, 159, 161, 166, 175, 187, 188, 191, 207, 213, 227, 249, 257, 261, 270], "14814": 1, "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 51, 53, 55, 56, 58, 70, 73, 77, 78, 79, 80, 84, 87, 88, 90, 97, 98, 101, 103, 104, 105, 108, 112, 114, 116, 118, 122, 123, 125, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 154, 155, 157, 158, 175, 180, 181, 182, 186, 187, 188, 189, 192, 193, 194, 196, 203, 205, 207, 208, 211, 221, 227, 231, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 263, 264, 266, 267, 268, 269, 270, 271], "correctli": [1, 17, 18, 24, 29, 42, 63, 74, 86, 103, 138, 187, 188, 189, 196, 203, 242, 246, 250, 254, 255, 259], "lower": [1, 214, 243, 255, 269], "bound": [1, 269], "exclud": [1, 39, 40, 83, 84, 85, 86, 93, 95, 96, 98, 102, 111, 116, 196, 221, 227, 243, 269], "upper": [1, 269], "wrong": [1, 92, 95, 130, 136], "cppstd": [1, 24, 26, 27, 73, 78, 91, 96, 106, 116, 123, 131, 147, 149, 160, 176, 182, 188, 205, 212, 223, 240, 241, 242, 249, 250, 254, 271], "newer": [1, 8, 70, 83, 86, 93, 95, 96, 98, 100, 101, 102, 104, 111, 116, 149, 166, 256, 269, 270], "clang": [1, 24, 26, 27, 42, 45, 70, 73, 80, 81, 85, 91, 96, 99, 106, 108, 113, 140, 146, 147, 149, 160, 179, 186, 188, 200, 217, 240, 242, 250], "introduc": [1, 29, 51, 77, 114, 136, 239, 249, 254, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14837": 1, "14781": 1, "dry": [1, 108, 112], "14760": 1, "host_tool": 1, "package_manag": [1, 85, 116, 132, 137, 146, 176, 230], "indic": [1, 4, 26, 63, 73, 85, 86, 90, 133, 146, 148, 185, 191, 196, 210, 211, 224, 242, 244, 256, 266], "whether": [1, 83, 85, 86, 89, 90, 95, 96, 98, 102, 114, 127, 137, 146, 181, 183, 219, 248, 251, 258, 263, 271], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 51, 53, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 85, 91, 96, 97, 98, 105, 116, 117, 119, 120, 123, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 146, 147, 150, 155, 179, 181, 182, 187, 188, 189, 192, 196, 202, 207, 208, 211, 213, 221, 232, 239, 240, 241, 244, 245, 246, 247, 250, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 53, 55, 58, 70, 73, 79, 95, 96, 98, 102, 107, 116, 124, 125, 126, 128, 136, 139, 147, 151, 160, 166, 175, 179, 186, 188, 213, 231, 238, 240, 242, 245, 248, 249, 251, 255, 258, 259, 262, 266, 267, 270], "being": [1, 6, 8, 10, 13, 31, 70, 74, 78, 79, 80, 81, 83, 86, 93, 95, 96, 98, 101, 102, 111, 116, 120, 125, 126, 127, 129, 132, 133, 134, 135, 136, 151, 153, 158, 159, 166, 175, 179, 185, 186, 196, 210, 211, 216, 242, 250, 255, 259, 266, 270, 271], "14819": 1, "set_properti": [1, 17, 21, 41, 132, 208, 211, 251], "14813": 1, "minor": [1, 70, 78, 79, 116, 147, 149, 175, 266, 269, 271], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 80, 131, 179, 256], "none": [1, 31, 36, 38, 49, 78, 85, 91, 96, 97, 98, 116, 127, 129, 139, 141, 146, 147, 158, 162, 166, 167, 170, 171, 174, 179, 180, 183, 185, 186, 187, 188, 191, 192, 196, 198, 200, 201, 203, 205, 206, 207, 210, 216, 217, 219, 220, 227, 231], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 77, 79, 85, 86, 93, 98, 100, 101, 103, 104, 116, 119, 130, 131, 134, 135, 146, 147, 150, 151, 153, 158, 159, 160, 170, 181, 182, 188, 193, 194, 198, 200, 205, 213, 216, 222, 227, 231, 232, 233, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270], "found": [1, 4, 21, 26, 27, 39, 40, 49, 53, 58, 83, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 129, 132, 137, 138, 144, 147, 150, 157, 185, 187, 188, 196, 203, 214, 217, 240, 242, 245, 254, 263, 267], "offlin": [1, 70], "14800": 1, "reus": [1, 29, 41, 70, 116, 117, 127, 128, 130, 132, 136, 152, 233, 240, 250, 251, 259, 264], "session": [1, 58], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 53, 57, 63, 78, 85, 114, 120, 144, 146, 157, 232, 233, 238, 242, 248, 251, 254], "14795": 1, "rel": [1, 5, 18, 35, 36, 63, 81, 105, 114, 116, 117, 118, 129, 132, 134, 135, 144, 147, 157, 158, 179, 187, 188, 191, 196, 200, 201, 257, 262, 263, 266, 268], "partial": [1, 79, 83, 86, 89, 90, 93, 95, 96, 97, 98, 101, 102, 103, 104, 111, 267, 271], "directori": [1, 26, 27, 35, 36, 38, 47, 58, 98, 105, 114, 116, 125, 126, 127, 129, 132, 134, 135, 136, 144, 146, 147, 148, 155, 187, 196, 200, 201, 211, 214, 227, 242, 248, 254, 255, 260, 261, 262], "14782": 1, "14743": 1, "arg": [1, 31, 85, 118, 151, 155, 203, 210, 213, 224, 227, 231, 270], "cmd": [1, 26, 116, 132, 138, 147, 154, 192, 203, 220, 227, 237, 259], "14737": 1, "block": [1, 51, 271], "interfac": [1, 6, 56, 63, 70, 79, 114, 152, 189], "select": [1, 21, 26, 63, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 106, 107, 108, 109, 111, 112, 113, 177, 186, 188, 196, 213, 220, 236, 246, 257, 264], "kei": [1, 56, 85, 105, 114, 116, 127, 132, 146, 150, 155, 188, 200, 205, 217, 222, 223, 236, 252, 260, 261], "14731": 1, "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 58, 70, 74, 79, 84, 85, 98, 99, 105, 114, 116, 117, 124, 125, 126, 127, 129, 130, 136, 146, 152, 157, 175, 195, 199, 200, 238, 246, 250, 251, 252, 254, 255, 256, 258, 260, 271], "larg": [1, 6, 10, 114, 116, 131, 147, 192, 260, 270], "14716": 1, "mesontoolchain": [1, 55, 67, 85, 146, 176, 215, 216], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 56, 70, 73, 74, 78, 79, 80, 84, 85, 86, 87, 91, 97, 98, 99, 101, 103, 105, 106, 108, 109, 114, 116, 118, 119, 120, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 141, 144, 146, 147, 149, 151, 152, 155, 158, 175, 176, 182, 185, 186, 187, 188, 193, 196, 198, 201, 203, 206, 208, 210, 211, 213, 217, 221, 222, 228, 231, 236, 238, 240, 242, 243, 247, 249, 250, 254, 255, 256, 260, 261, 264, 266, 267, 268, 269, 270, 271], "14692": 1, "cl": [1, 70, 223], "plugin": [1, 26, 59, 70, 74, 76, 82, 85, 114, 121, 131, 141, 152, 153, 154, 159, 256], "14682": 1, "mechan": [1, 7, 13, 56, 70, 73, 74, 80, 114, 116, 121, 127, 135, 136, 147, 150, 152, 157, 175, 189, 192, 227, 242, 243, 249, 265, 267, 268, 270, 271], "transform": [1, 151, 196, 217], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 53, 55, 65, 70, 75, 78, 81, 83, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 114, 116, 123, 131, 132, 136, 137, 143, 146, 147, 179, 182, 186, 187, 188, 189, 192, 200, 205, 212, 213, 216, 221, 222, 223, 224, 235, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 258, 262, 264, 268, 269, 271], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 51, 53, 63, 70, 79, 85, 132, 138, 146, 147, 149, 186, 188, 205, 214, 217, 223, 236, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 262, 268], "ld": [1, 53, 96, 205, 217, 241], "blank": [1, 114, 191, 217], "string": [1, 6, 26, 42, 45, 51, 55, 80, 85, 99, 105, 114, 116, 131, 134, 135, 141, 146, 147, 148, 174, 185, 186, 188, 191, 192, 196, 200, 205, 208, 212, 217, 240, 241, 248, 250, 270, 271], "14676": 1, "nobara": 1, "distro": [1, 58, 146, 149, 231], "dnf": [1, 85, 146, 230], "map": [1, 79, 127, 132, 175, 180, 185, 188, 205, 217, 220, 223, 231, 255, 263], "14668": 1, "b_vscrt": [1, 217], "14664": 1, "regex": [1, 80, 116, 131, 187], "pattern": [1, 6, 7, 13, 31, 80, 83, 84, 85, 86, 87, 88, 93, 95, 96, 98, 99, 102, 104, 107, 108, 111, 112, 114, 116, 130, 131, 136, 141, 142, 143, 171, 174, 187, 196, 198, 221, 227, 228, 242, 249, 257, 264], "14621": 1, "makedep": [1, 66, 176, 202], "tweak": [1, 188], "14605": 1, "detect_api": [1, 146, 147], "jinja": [1, 49, 145, 146, 147, 150, 192], "templat": [1, 26, 47, 49, 70, 81, 82, 96, 106, 116, 143, 147, 150, 169, 186, 188, 192], "14578": 1, "14532": 1, "14740": 1, "improv": [1, 6, 70, 118, 271], "conanapi": [1, 31, 155, 161, 162], "init": [1, 56, 117, 127, 175, 270], "failur": [1, 70, 85, 146, 198], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 53, 70, 74, 85, 87, 90, 98, 103, 105, 106, 107, 112, 116, 122, 123, 128, 146, 147, 166, 174, 177, 181, 187, 188, 196, 205, 208, 231, 232, 233, 238, 242, 244, 245, 247, 248, 249, 250, 253, 256, 257, 259, 263, 266, 268, 270, 271], "duplic": [1, 39, 40, 53, 107, 132], "alias": [1, 116, 175, 187, 208], "14644": 1, "regress": [1, 70], "win_bash": [1, 85, 91, 146], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 51, 56, 70, 73, 74, 78, 79, 80, 81, 85, 91, 95, 96, 97, 99, 102, 105, 106, 108, 116, 120, 123, 127, 130, 132, 133, 134, 142, 147, 149, 152, 156, 175, 181, 182, 185, 186, 187, 188, 192, 202, 205, 208, 212, 217, 221, 231, 232, 233, 238, 239, 240, 241, 248, 249, 250, 251, 252, 258, 264, 266, 271], "test_requir": [1, 74, 117, 127, 133, 241, 244, 248, 254, 256, 269], "diamond": [1, 266], "14721": 1, "crash": [1, 6, 74, 266], "test_packag": [1, 21, 27, 42, 56, 74, 86, 90, 105, 106, 111, 117, 138, 166, 175, 246, 247, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 51, 53, 56, 61, 63, 68, 69, 74, 79, 82, 83, 87, 90, 98, 105, 106, 110, 114, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 137, 138, 141, 150, 154, 155, 157, 158, 159, 175, 180, 185, 187, 188, 189, 192, 193, 194, 199, 203, 205, 210, 212, 213, 216, 220, 222, 223, 224, 231, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 265, 266, 268, 271], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 106, 114, 123, 124, 136, 147, 149, 154, 159, 183, 187, 188, 192, 196, 198, 217, 219, 220, 227, 238, 242, 259, 266], "chain": [1, 5, 141, 271], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 55, 56, 58, 62, 70, 74, 78, 83, 84, 85, 86, 90, 93, 95, 96, 97, 98, 99, 101, 102, 107, 108, 111, 114, 116, 118, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 139, 146, 149, 151, 152, 155, 156, 157, 174, 175, 179, 181, 182, 187, 188, 189, 193, 194, 196, 205, 206, 208, 217, 221, 223, 231, 234, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 254, 256, 257, 261, 262, 264, 265, 266, 267, 268], "14673": 1, "cpu": [1, 8, 85, 146, 149, 183, 212, 220], "nativ": [1, 26, 27, 55, 68, 74, 85, 146, 175, 183, 211, 216, 217, 224], "arm64": [1, 26, 42, 149, 177, 180, 220], "14667": 1, "updat": [1, 4, 6, 8, 26, 39, 40, 59, 63, 70, 74, 83, 85, 86, 89, 90, 93, 95, 96, 98, 101, 102, 111, 114, 116, 128, 132, 133, 137, 146, 149, 153, 166, 179, 189, 196, 205, 231, 243, 251, 265, 270, 271], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 53, 55, 56, 58, 59, 65, 79, 81, 84, 95, 96, 116, 157, 159, 175, 181, 187, 211, 213, 236, 238, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "ones": [1, 6, 10, 30, 31, 42, 43, 46, 62, 70, 74, 78, 82, 84, 85, 95, 108, 121, 133, 137, 146, 147, 149, 157, 158, 163, 177, 187, 188, 191, 192, 196, 201, 208, 213, 219, 220, 221, 238, 243, 257, 262, 263, 267, 268, 270], "14643": 1, "unnecessarili": [1, 80], "decor": [1, 152], "sequenc": [1, 45, 92, 114], "14642": 1, "shouldn": [1, 6, 35, 39, 40, 56, 58, 74, 80, 108, 116, 120, 123, 130, 132, 176, 221, 227, 243, 254, 268], "14622": 1, "patch_us": [1, 200], "conandata": [1, 4, 51, 56, 63, 74, 116, 125, 126, 127, 128, 136, 159, 196, 200, 246], "patch": [1, 6, 19, 43, 50, 70, 74, 78, 79, 84, 116, 118, 126, 136, 147, 149, 175, 176, 179, 195, 203, 246, 252, 269, 271], "handl": [1, 6, 9, 56, 73, 114, 116, 132, 149, 191, 200, 232, 246, 248, 263], "apply_conandata_patch": [1, 126, 136, 195], "14576": 1, "xcode": [1, 57, 59, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 146, 180, 181, 182, 185, 186, 213, 217], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 59, 65, 70, 73, 85, 91, 96, 97, 116, 148, 149, 179, 180, 217, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "tvo": [1, 149, 179], "watcho": [1, 149, 179, 217], "14538": 1, "incorrect": [1, 70], "conancent": [1, 2, 13, 29, 56, 57, 70, 73, 79, 81, 91, 95, 96, 99, 109, 116, 132, 146, 148, 234, 240, 243, 245], "web": [1, 4, 6, 58, 116, 149, 235, 236], "url": [1, 3, 4, 56, 84, 85, 91, 96, 97, 105, 107, 114, 127, 136, 146, 148, 150, 158, 196, 198, 227, 236, 237, 247, 248, 250, 251, 252, 255, 258], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 70, 74, 80, 105, 114, 116, 124, 132, 142, 147, 158, 175, 181, 191, 192, 221, 243, 267], "14529": 1, "rrev": [1, 31, 99], "rrev_timestamp": 1, "prev_timestamp": 1, "14526": 1, "resolv": [1, 8, 10, 83, 84, 85, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 104, 111, 114, 120, 146, 147, 170, 192, 196, 243, 265, 267, 268, 269], "14510": 1, "verifi": [1, 5, 51, 74, 84, 85, 140, 146, 148, 152, 159, 198, 252, 255, 259, 271], "14508": 1, "visiono": [1, 149, 179], "14504": 1, "unknown": [1, 78, 91, 96, 141], "14493": 1, "skip_binari": [1, 36, 85, 146], "14466": 1, "symlink": [1, 85, 146, 157, 176, 195, 196, 246], "disabl": [1, 85, 86, 114, 146, 148, 151, 157, 188, 198, 205, 254], "14461": 1, "14413": 1, "cli_arg": [1, 185], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 73, 76, 107, 114, 143, 150, 227, 236], "store": [1, 4, 6, 13, 56, 63, 65, 70, 78, 84, 85, 98, 105, 106, 114, 116, 132, 145, 146, 156, 158, 188, 196, 200, 203, 232, 233, 238, 240, 242, 246, 249, 250, 251, 255, 261, 263, 267, 270, 271], "14392": 1, "apk": [1, 85, 146, 230], "alpin": [1, 231], "14382": 1, "msvc": [1, 81, 85, 99, 116, 132, 146, 147, 160, 205, 219, 222, 244], "invok": [1, 42, 45, 85, 98, 146, 147, 157, 167, 179, 221, 230, 241, 242, 245, 247, 248, 252, 257, 259, 262], "within": [1, 85, 114, 116, 147, 179, 189, 196, 244, 269], "visual": [1, 28, 35, 57, 59, 70, 72, 80, 85, 127, 132, 146, 149, 176, 185, 186, 187, 188, 205, 213, 214, 217, 218, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "studio": [1, 11, 25, 27, 28, 35, 57, 59, 60, 70, 80, 85, 127, 132, 146, 149, 185, 186, 187, 188, 205, 213, 214, 217, 219, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "prompt": [1, 31, 151, 188, 220, 223, 224], "where": [1, 4, 8, 19, 21, 31, 42, 45, 51, 55, 58, 70, 80, 84, 85, 97, 98, 114, 116, 118, 127, 129, 132, 144, 146, 148, 149, 155, 175, 180, 187, 188, 189, 191, 192, 196, 198, 203, 205, 210, 211, 213, 214, 216, 217, 220, 227, 236, 240, 241, 242, 244, 249, 250, 251, 252, 263, 268], "point": [1, 4, 8, 29, 35, 39, 40, 56, 57, 63, 70, 80, 85, 96, 98, 103, 105, 116, 127, 147, 157, 158, 166, 179, 188, 196, 201, 203, 241, 243, 255, 257, 263, 266, 271], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 51, 55, 56, 57, 64, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 105, 106, 108, 111, 112, 116, 119, 121, 123, 127, 130, 131, 132, 133, 136, 140, 143, 146, 147, 160, 168, 179, 180, 181, 182, 183, 185, 186, 187, 191, 193, 194, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 216, 217, 219, 220, 221, 222, 223, 224, 229, 232, 239, 240, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 55, 56, 63, 74, 78, 79, 80, 84, 85, 90, 97, 98, 105, 112, 116, 119, 120, 122, 123, 124, 128, 130, 131, 132, 133, 134, 135, 136, 138, 141, 142, 146, 147, 151, 154, 155, 158, 159, 179, 182, 185, 188, 192, 193, 194, 203, 205, 207, 210, 216, 217, 221, 223, 227, 229, 231, 242, 244, 245, 248, 249, 250, 251, 254, 256, 259, 261, 262, 263, 271], "14364": 1, "document": [1, 3, 4, 26, 27, 58, 65, 74, 75, 80, 87, 108, 116, 124, 127, 132, 137, 149, 152, 160, 175, 176, 188, 189, 196, 199, 213, 217, 235, 236, 244, 245, 249, 263, 271], "mode": [1, 17, 21, 70, 73, 85, 88, 99, 116, 127, 129, 136, 137, 146, 149, 213, 231, 232, 242, 260, 263, 271], "14358": 1, "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 53, 56, 58, 65, 70, 73, 74, 76, 78, 80, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 108, 111, 116, 118, 121, 125, 126, 127, 129, 132, 136, 137, 140, 142, 143, 152, 153, 159, 166, 175, 177, 181, 185, 187, 189, 196, 202, 210, 216, 221, 240, 241, 242, 244, 245, 246, 248, 249, 250, 251, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14347": 1, "default_build_opt": 1, "attribut": [1, 19, 21, 48, 74, 76, 78, 80, 97, 115, 118, 120, 122, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 141, 142, 158, 175, 181, 186, 187, 188, 200, 211, 214, 218, 242, 244, 247, 250, 251, 252, 254, 257, 259, 262, 263, 270], "14340": 1, "match": [1, 4, 10, 17, 26, 31, 35, 45, 53, 58, 78, 80, 82, 83, 84, 85, 86, 87, 92, 93, 95, 96, 98, 99, 102, 107, 108, 111, 112, 114, 116, 120, 131, 132, 136, 141, 145, 146, 147, 149, 150, 160, 183, 187, 196, 197, 198, 200, 220, 223, 240, 242, 243, 244, 245, 249, 250, 256, 263, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 56, 68, 70, 74, 80, 82, 85, 87, 90, 92, 96, 98, 99, 100, 101, 104, 106, 107, 108, 112, 114, 116, 119, 120, 125, 127, 131, 133, 134, 135, 137, 139, 141, 146, 147, 149, 151, 158, 163, 175, 187, 188, 191, 196, 200, 219, 231, 243, 244, 250, 252, 257, 258, 260, 261, 262, 267, 268, 269, 270], "channel": [1, 5, 57, 70, 73, 83, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 110, 114, 127, 147, 243], "14338": 1, "makefil": [1, 45, 57, 59, 70, 185, 186, 203, 205, 206, 223, 244], "14133": 1, "14594": 1, "v2": [1, 149, 158, 183, 237], "readi": [1, 30, 53, 55, 73, 147, 205, 214, 240, 250], "center": [1, 5, 8, 56, 63, 70, 73, 91, 96, 97, 148, 149, 152, 232, 233, 240, 245], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 53, 57, 74, 79, 80, 96, 116, 120, 129, 132, 133, 138, 181, 187, 188, 189, 196, 208, 217, 222, 223, 236, 239, 241, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "14593": 1, "inspect": [1, 6, 7, 36, 63, 82, 84, 106, 166, 223], "14572": 1, "hyphen": [1, 208, 211], "14561": 1, "user_toolchain": [1, 49, 85, 146, 188], "14556": 1, "boolean": [1, 85, 116, 127, 146, 187, 188, 210, 212, 217, 271], "14530": 1, "14511": 1, "14491": 1, "non": [1, 70, 74, 78, 84, 85, 103, 116, 130, 146, 183, 239, 247, 271], "stacktrac": 1, "14444": 1, "conf_info": [1, 127, 129, 146, 188, 251, 258], "14442": 1, "msbuildtoolchain": [1, 68, 85, 116, 132, 146, 176, 218], "msbuilddep": [1, 68, 85, 127, 146, 176, 218], "resourcecompil": [1, 222], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 58, 70, 73, 74, 78, 79, 80, 86, 87, 98, 99, 100, 101, 103, 104, 105, 106, 112, 116, 118, 127, 129, 131, 136, 137, 141, 146, 147, 149, 153, 155, 166, 170, 175, 188, 189, 205, 217, 227, 242, 244, 245, 249, 251, 252, 257, 262, 268, 271], "14376": 1, "processor": [1, 149, 183, 217], "armv8": [1, 26, 27, 42, 45, 80, 96, 106, 116, 132, 147, 149, 177, 183, 217, 231, 244, 255, 259], "aarch64": [1, 96, 149, 231], "14362": 1, "mandat": [1, 191], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 53, 56, 63, 70, 77, 98, 99, 103, 116, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 136, 147, 149, 170, 187, 189, 196, 205, 208, 216, 233, 240, 245, 247, 250, 256, 259, 260, 262, 265, 266, 269, 271], "14342": 1, "default_opt": [1, 42, 51, 56, 80, 91, 97, 123, 128, 181, 185, 188, 217, 221, 248, 249, 250, 252, 258, 266], "xcrun": [1, 176, 178], "14326": 1, "abspath": 1, "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 45, 48, 53, 55, 61, 62, 64, 65, 69, 73, 74, 78, 82, 105, 106, 114, 127, 132, 142, 146, 147, 149, 152, 154, 155, 156, 157, 160, 161, 180, 182, 185, 186, 187, 188, 207, 208, 210, 212, 213, 221, 222, 237, 240, 242, 244, 245, 247, 248, 251, 255, 259, 261, 263, 271], "14183": 1, "build_id": [1, 13, 91, 96, 117], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 102, 108, 116, 117, 119, 120, 121, 127, 129, 131, 133, 134, 135, 136, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 175, 179, 181, 182, 183, 185, 187, 189, 196, 203, 205, 208, 211, 214, 217, 221, 222, 227, 231, 238, 240, 241, 242, 243, 244, 245, 249, 250, 251, 252, 254, 255, 256, 257, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14555": 1, "timestamp": [1, 13, 95, 99, 101, 103], "except": [1, 26, 31, 39, 40, 49, 78, 80, 85, 114, 116, 120, 121, 123, 129, 136, 141, 142, 146, 147, 149, 151, 175, 183, 185, 196, 227, 231, 240, 244, 249, 266], "vtrace": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "14522": 1, "confirm": [1, 31, 108, 112], "interact": [1, 85, 107, 145, 146, 151], "14512": 1, "entri": [1, 57, 63, 83, 85, 86, 90, 93, 95, 96, 98, 102, 111, 116, 127, 145, 150, 179, 186, 187, 188, 198, 200, 213, 269], "filter": [1, 6, 85, 96, 108, 116, 127, 139, 155, 174, 196, 267], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 58, 68, 70, 73, 74, 79, 80, 85, 87, 98, 103, 104, 105, 108, 114, 116, 118, 119, 120, 131, 133, 136, 142, 149, 151, 154, 158, 160, 175, 181, 187, 198, 203, 221, 228, 231, 236, 238, 240, 241, 242, 245, 248, 249, 252, 256, 257, 258, 259, 261, 267, 270, 271], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 51, 56, 63, 74, 80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 118, 119, 125, 126, 130, 133, 136, 140, 158, 167, 175, 196, 198, 234, 236, 254, 261, 262, 268], "14478": 1, "14443": 1, "context": [1, 6, 13, 42, 74, 80, 83, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 142, 146, 147, 157, 177, 187, 188, 191, 192, 193, 194, 196, 208, 211, 217, 219, 221, 232, 239, 242, 256], "14441": 1, "parallel": [1, 63, 74, 80, 85, 146, 151, 152, 154, 183, 188, 271], "14410": 1, "powershel": [1, 85, 146, 192, 193, 194, 245], "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 51, 61, 74, 85, 116, 118, 119, 127, 130, 132, 133, 135, 146, 154, 158, 160, 187, 188, 191, 192, 193, 194, 203, 204, 205, 212, 213, 217, 222, 223, 224, 236, 241, 242, 250, 258, 259, 267], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 73, 74, 85, 87, 98, 107, 112, 116, 136, 150, 152, 158, 211, 227, 231, 232, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "dirti": [1, 6, 56, 227], "outsid": [1, 8, 56, 70, 78, 114, 116, 131, 144, 201], "revision_mod": [1, 91, 96, 97, 268], "scm_folder": [1, 116], "14330": 1, "trace": [1, 141, 255], "14322": 1, "flush": 1, "stream": [1, 70, 185], "after": [1, 6, 10, 24, 26, 36, 42, 45, 58, 59, 63, 70, 98, 120, 122, 127, 132, 138, 139, 146, 155, 158, 182, 185, 187, 188, 192, 193, 194, 203, 212, 217, 222, 229, 239, 240, 242, 245, 246, 248, 250, 254, 257, 259, 261, 262, 263, 271], "write": [1, 4, 27, 45, 53, 70, 74, 98, 105, 114, 119, 129, 152, 159, 175, 187, 188, 196, 205, 244, 250, 252, 258, 262], "14310": 1, "sign": [1, 76, 114, 152], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 56, 84, 188, 255, 261, 262, 263], "inherit": [1, 48, 74, 128, 175, 244], "typo": 1, "14325": 1, "conanpreset": [1, 48, 188], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 53, 55, 56, 61, 62, 66, 70, 78, 79, 80, 81, 83, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 109, 110, 111, 114, 116, 117, 119, 123, 127, 128, 129, 132, 133, 144, 146, 149, 151, 152, 157, 159, 160, 163, 175, 179, 181, 187, 188, 189, 193, 194, 200, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 227, 229, 240, 241, 243, 247, 250, 254, 255, 256, 258, 259, 261, 262, 263, 267, 269, 270, 271], "14296": 1, "prefix": [1, 96, 108, 116, 147, 155, 188, 205, 206, 207, 208, 211, 212, 217, 249, 257], "param": [1, 31, 155, 167, 174, 185, 191, 216], "unix": [1, 147, 185, 186, 196, 244], "14295": 1, "invalid": [1, 6, 96, 114, 117, 139, 140, 183, 187, 266], "loglevel": 1, "14289": 1, "gcc": [1, 24, 39, 40, 45, 70, 74, 78, 80, 81, 83, 84, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 116, 121, 131, 136, 140, 147, 149, 160, 168, 183, 198, 205, 241], "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 63, 79, 80, 81, 84, 93, 96, 98, 99, 103, 120, 131, 146, 147, 154, 155, 160, 181, 187, 211, 221, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "pkg_config_custom_cont": [1, 208], "pc": [1, 45, 55, 206, 207, 208], "14233": 1, "dict": [1, 85, 116, 127, 132, 146, 155, 168, 188, 205, 208, 217, 222, 223], "object": [1, 6, 19, 21, 27, 42, 45, 91, 96, 114, 116, 127, 128, 129, 130, 131, 132, 141, 154, 155, 157, 158, 166, 174, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 219, 220, 221, 222, 223, 224, 225, 231, 241, 242, 248, 249, 250, 251, 254, 259, 262, 263], "fix_apple_shared_install_nam": [1, 176, 178, 203], "otool": [1, 179, 203], "install_name_tool": [1, 179, 203], "program": [1, 29, 45, 53, 55, 85, 128, 146, 203, 224, 240, 242], "14195": 1, "fpic": [1, 42, 51, 56, 73, 80, 81, 91, 96, 97, 99, 116, 122, 123, 185, 188, 205, 212, 217, 248, 249, 250, 252, 258], "header_onli": [1, 80, 116, 123, 131, 254], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 59, 63, 64, 69, 73, 78, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 116, 118, 119, 131, 132, 137, 146, 147, 149, 175, 179, 181, 187, 188, 221, 222, 239, 244, 246, 254, 255, 256, 261, 271], "type": [1, 6, 37, 64, 70, 79, 85, 89, 106, 116, 131, 132, 143, 157, 175, 185, 187, 188, 193, 194, 208, 215, 232, 235, 236, 242, 243, 244, 245, 246, 248, 249, 271], "cmake_package_version_compat": 1, "anynewervers": [1, 187], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 70, 73, 157, 243, 271], "won": [1, 4, 29, 39, 40, 70, 101, 108, 114, 116, 149, 155, 187, 196, 217, 241, 249, 257, 261], "14261": 1, "permit": [1, 269], "empti": [1, 4, 6, 85, 86, 107, 108, 116, 132, 146, 147, 155, 166, 174, 205, 208, 211, 221, 254, 255, 266, 267, 270], "14254": 1, "guarante": [1, 4, 7, 56, 80, 103, 106, 131, 147, 175, 252, 265, 268], "rm_safe": [1, 42, 80, 116, 122, 123, 131, 249], "never": [1, 70, 74, 78, 79, 83, 86, 90, 93, 95, 96, 98, 99, 102, 111, 116, 142, 167, 231, 243, 249, 255], "14238": 1, "gnu": [1, 45, 61, 66, 76, 80, 85, 96, 146, 149, 176, 183, 191, 192, 198, 203, 204, 205, 206, 207, 208, 212, 241], "make_program": [1, 85, 146], "14223": 1, "package_typ": [1, 38, 42, 91, 96, 97, 128, 131, 139, 156, 175, 256, 271], "lib": [1, 17, 21, 26, 35, 42, 84, 91, 95, 96, 114, 116, 120, 127, 129, 130, 132, 149, 179, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 223, 229, 241, 249, 250, 251, 252, 254, 255, 257, 263, 271], "14215": 1, "clarif": [1, 70], "shown": [1, 4, 36, 96, 97, 121, 217], "queri": [1, 84, 85, 87, 96, 99, 108, 109, 112, 168], "14199": 1, "enabl": [1, 8, 10, 63, 73, 85, 116, 146, 148, 183, 188, 196, 205, 231, 254, 269], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 51, 55, 56, 58, 63, 70, 73, 74, 79, 84, 85, 105, 116, 117, 127, 132, 136, 137, 139, 146, 149, 150, 152, 175, 180, 186, 187, 188, 189, 198, 208, 213, 221, 227, 231, 240, 242, 243, 244, 246, 247, 249, 250, 252, 254, 258, 259, 261, 262, 263, 264, 265, 267, 268, 270], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 62, 70, 74, 79, 86, 105, 114, 116, 120, 126, 130, 134, 135, 138, 141, 142, 146, 147, 150, 152, 155, 157, 158, 159, 160, 175, 177, 183, 186, 187, 192, 196, 200, 203, 211, 217, 244, 248, 250, 251, 252, 254, 257, 266, 267, 271], "14177": 1, "xcodedep": [1, 69, 176, 178, 182], "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 51, 56, 65, 73, 78, 80, 81, 91, 95, 96, 97, 98, 99, 106, 116, 119, 123, 131, 132, 140, 147, 149, 153, 160, 180, 181, 182, 185, 186, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 240, 241, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 263, 268], "14168": 1, "respect": [1, 31, 36, 73, 103, 116, 147, 151, 152, 191, 217, 241, 266, 268], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 63, 88, 98, 105, 106, 114, 116, 127, 129, 130, 132, 134, 135, 146, 147, 148, 149, 151, 152, 153, 154, 157, 159, 160, 170, 179, 180, 181, 185, 187, 188, 196, 203, 205, 214, 223, 240, 241, 242, 245, 250, 251, 252, 255, 256, 257, 263, 268], "14164": 1, "intern": [1, 53, 74, 85, 114, 136, 147, 149, 150, 179, 180, 217, 220, 231, 241, 243, 254, 268], "runner": [1, 26], "13985": 1, "leak": [1, 56, 150], "cmake_find_library_suffix": 1, "14253": 1, "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 73, 79, 80, 95, 98, 116, 130, 132, 149, 152, 179, 187, 189, 203, 207, 213, 217, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267], "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 63, 65, 70, 73, 74, 76, 77, 82, 85, 98, 106, 108, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 131, 143, 146, 147, 151, 152, 153, 154, 158, 160, 162, 175, 176, 178, 184, 186, 191, 200, 202, 209, 215, 218, 246, 249, 251, 257, 258, 263], "14227": 1, "displai": [1, 13, 63, 81, 82, 85, 92, 99, 116, 137, 154, 160, 250, 267], "14190": 1, "cross": [1, 11, 26, 42, 55, 57, 58, 60, 70, 85, 118, 131, 132, 136, 146, 147, 183, 184, 187, 205, 208, 212, 215, 216, 231, 232, 239, 242, 259], "osx": [1, 35, 58, 70, 127, 132, 188, 242], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 149], "cmake_generator_platform": [1, 149, 188], "14114": 1, "cppinfo": [1, 21, 76, 116, 127, 132, 176, 187, 251], "public": [1, 3, 4, 42, 53, 56, 70, 74, 82, 97, 106, 114, 115, 152, 155, 176, 187, 189, 211, 217, 237, 257, 258], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 72, 79, 80, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 100, 102, 103, 105, 106, 108, 111, 116, 119, 127, 128, 129, 130, 132, 134, 135, 141, 146, 147, 149, 151, 157, 175, 179, 181, 182, 183, 187, 191, 211, 227, 235, 238, 240, 242, 244, 245, 251, 255, 256, 257, 259, 261, 263, 266, 267, 270, 271], "summari": [1, 4, 8, 78, 213, 251], "delet": [1, 31, 42, 58, 74, 108, 114, 116, 123, 249], "thing": [1, 13, 18, 21, 29, 63, 64, 70, 73, 74, 98, 103, 116, 131, 167, 175, 176, 188, 192, 203, 240, 242, 244, 246, 248, 250, 251, 256, 257, 258, 263, 271], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 64, 70, 73, 116, 214, 233, 238, 239, 241, 242, 248, 250, 254, 256, 259, 260, 261, 267, 271], "14011": 1, "express": [1, 42, 49, 80, 104, 116, 129, 141, 142, 147, 188, 243, 265, 271], "14004": 1, "equival": [1, 56, 84, 85, 98, 99, 102, 109, 116, 118, 120, 125, 126, 132, 133, 142, 149, 175, 185, 189, 191, 227, 241, 242, 243, 244, 250, 251, 262, 263, 267], "14002": 1, "13999": 1, "small": [1, 56, 70, 114, 125, 196, 237, 250, 255, 259, 266, 267], "13989": 1, "packageslist": 1, "input": [1, 8, 74, 78, 80, 85, 87, 89, 96, 98, 99, 100, 101, 102, 104, 105, 108, 112, 131, 136, 145, 146, 151, 196, 217, 222, 242, 244, 254, 264, 268], "13928": 1, "associ": [1, 3, 6, 105, 107, 108, 147, 149, 188, 243], "13918": 1, "13757": 1, "split": [1, 147], "two": [1, 6, 18, 45, 51, 70, 79, 80, 84, 89, 114, 116, 119, 120, 147, 156, 157, 175, 183, 188, 191, 200, 205, 221, 222, 231, 239, 240, 242, 248, 249, 254, 261, 263, 267], "13729": 1, "bindir": [1, 18, 39, 40, 91, 96, 132, 138, 186, 188, 205, 208, 214, 217, 251, 254, 256, 259], "13623": 1, "autopackag": [1, 176, 195], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 58, 70, 98, 107, 114, 116, 130, 149, 191, 269], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 58, 70, 73, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 157, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 189, 206, 210, 211, 212, 213, 219], "subsystem": [1, 85, 116, 132, 146, 149, 176, 192, 218], "msys2": [1, 85, 146, 149, 231, 239], "14061": 1, "intermedi": [1, 98], "aggregated_compon": [1, 189], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 56, 58, 70, 79, 81, 83, 84, 86, 87, 93, 95, 96, 98, 99, 102, 104, 105, 106, 108, 111, 112, 116, 149, 155, 193, 194, 227, 236, 240, 243, 250, 257, 265, 267, 268, 269, 270, 271], "14110": 1, "doubl": [1, 29, 107, 187, 236, 249], "base": [1, 4, 8, 35, 36, 39, 42, 47, 53, 55, 58, 70, 79, 80, 83, 87, 96, 97, 98, 99, 102, 108, 112, 116, 127, 128, 130, 133, 147, 152, 155, 157, 177, 180, 182, 186, 188, 213, 217, 219, 220, 222, 240, 242, 248, 258, 271], "setup": [1, 7, 41, 55, 56, 216, 233], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 196, 250], "14106": 1, "overlap": [1, 217], "14095": 1, "freebsd": [1, 8, 58, 70, 147, 149, 231], "14065": 1, "through": [1, 24, 90, 105, 116, 148, 158, 216, 232, 238, 248, 250, 259], "root": [1, 10, 16, 18, 19, 27, 36, 38, 83, 85, 88, 90, 91, 96, 98, 129, 132, 146, 147, 149, 155, 157, 166, 167, 187, 205, 211, 213, 214, 240, 241, 243, 245, 249, 250, 255], "14051": 1, "return": [1, 6, 26, 29, 31, 42, 45, 53, 55, 78, 81, 82, 84, 85, 92, 97, 99, 106, 113, 114, 116, 121, 127, 141, 147, 153, 154, 155, 163, 166, 168, 170, 171, 175, 177, 179, 180, 183, 187, 188, 189, 191, 192, 193, 194, 196, 204, 205, 213, 219, 220, 223, 227, 231, 240, 242, 244, 254, 256, 259, 268], "irrespect": [1, 116, 131, 134, 135, 137, 221, 227, 244, 250], "problem": [1, 4, 6, 8, 70, 120, 237, 242, 259], "parent": [1, 116, 129, 144, 196, 252], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 56, 58, 70, 73, 91, 96, 97, 107, 152, 179, 234], "libdir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 196, 205, 207, 208, 214, 217, 251, 254, 255, 256, 263], "includedir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 205, 207, 208, 217, 221, 251, 255, 263], "cmake_program": [1, 85, 146, 185], "13940": 1, "str": [1, 17, 31, 36, 116, 131, 157, 168, 181, 192, 196, 213, 214, 216, 217, 219, 220, 221, 224, 244, 248, 255, 263], "int": [1, 29, 42, 45, 53, 55, 183, 200, 240, 242, 254, 259], "13964": 1, "layer": [1, 149, 155, 250, 271], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 53, 56, 57, 70, 73, 74, 79, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 110, 111, 114, 116, 118, 127, 129, 132, 134, 135, 136, 147, 157, 158, 166, 170, 182, 196, 198, 203, 207, 213, 214, 222, 227, 232, 233, 236, 238, 240, 241, 245, 248, 249, 250, 251, 253, 254, 257, 261, 262, 263, 268, 270, 271], "13944": 1, "unzip": [1, 6, 19, 27, 58, 116, 136, 195, 198, 236, 252, 262], "13937": 1, "13929": 1, "13967": 1, "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 56, 57, 64, 68, 69, 79, 82, 86, 106, 115, 117, 120, 127, 129, 132, 133, 140, 142, 147, 166, 167, 175, 181, 189, 191, 203, 206, 208, 211, 221, 229, 232, 242, 243, 244, 245, 246, 247, 250, 254, 255, 256, 259, 260, 261, 263, 266, 268, 270, 271], "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 51, 85, 91, 96, 97, 129, 130, 136, 167, 188, 196, 200, 203, 216, 248, 254, 255, 257], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 53, 56, 70, 86, 96, 98, 99, 101, 103, 108, 116, 124, 127, 131, 132, 134, 135, 136, 139, 147, 149, 157, 158, 174, 188, 231, 235, 236, 251, 255, 258, 261, 263, 271], "publicli": [1, 4], "13934": 1, "premakedep": 1, "13926": 1, "http": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 73, 85, 91, 96, 97, 105, 114, 116, 136, 146, 148, 150, 158, 198, 200, 222, 234, 236, 237, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 85, 91, 96, 97, 114, 116, 127, 136, 149, 152, 158, 200, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 85, 91, 96, 97, 114, 116, 136, 147, 158, 200, 222, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "pull": [1, 70, 73, 200, 234, 267], "13898": 1, "overrid": [1, 39, 40, 74, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 114, 120, 146, 147, 185, 188, 231, 242, 265], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 63, 70, 80, 84, 85, 87, 96, 99, 104, 107, 112, 114, 116, 127, 129, 131, 132, 142, 146, 147, 149, 154, 157, 185, 188, 192, 193, 194, 196, 214, 217, 221, 224, 231, 238, 242, 245, 246, 250, 252, 255, 256, 263, 269], "13923": 1, "v": [1, 26, 48, 78, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 121, 131, 142, 146, 149, 151, 175, 216, 217, 221, 222, 223, 227, 232, 239, 240, 242, 245, 250, 271], "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 53, 56, 63, 114, 116, 122, 123, 147, 185, 203, 213, 246, 249, 255, 258, 261, 262], "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 51, 63, 73, 74, 98, 102, 105, 106, 116, 119, 132, 141, 147, 149, 153, 160, 180, 181, 182, 186, 187, 188, 193, 194, 196, 205, 217, 220, 221, 222, 232, 239, 244, 247, 249, 250, 254, 255, 256, 258, 261, 262, 263], "13833": 1, "relocat": [1, 29, 35, 202, 257], "upload_polici": [1, 91], "build_polici": [1, 90, 91, 255], "debugg": 1, "13810": 1, "possible_valu": [1, 116], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 56, 58, 70, 73, 74, 78, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 108, 111, 112, 116, 118, 119, 120, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 142, 146, 147, 149, 150, 152, 154, 155, 159, 163, 166, 175, 177, 181, 183, 185, 187, 189, 191, 192, 213, 217, 221, 228, 231, 242, 243, 248, 249, 252, 260, 261, 263, 264, 266, 267, 268, 269, 270], "13796": 1, "optim": [1, 70, 90, 116, 119, 254], "hit": [1, 192, 237], "13771": 1, "sh": [1, 35, 39, 40, 45, 53, 85, 127, 146, 149, 191, 192, 193, 194, 204, 205, 213, 223, 236, 241, 242, 244, 245, 248, 256, 262, 263], "shell": [1, 35, 39, 40, 42, 58, 61, 85, 116, 141, 146, 191, 192, 196, 204, 205, 213], "13764": 1, "13748": 1, "auto": [1, 42, 73, 74, 85, 106, 146, 147, 149, 240], "home": [1, 4, 26, 27, 31, 56, 57, 73, 105, 106, 114, 116, 132, 144, 146, 148, 149, 151, 155, 169, 206, 240, 241, 242, 250], "13746": 1, "render": [1, 21, 99, 105, 143, 145, 146, 150], "profile_nam": [1, 147], "13721": 1, "extens": [1, 4, 11, 31, 35, 36, 38, 57, 58, 70, 74, 76, 77, 78, 85, 98, 153, 154, 155, 156, 157, 158, 159, 160, 183, 192, 196, 241, 249, 256, 262], "13718": 1, "understand": [1, 24, 31, 36, 47, 61, 66, 73, 77, 95, 103, 116, 142, 146, 157, 204, 205, 223, 232, 239, 250, 260], "13716": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 51, 55, 56, 58, 64, 70, 73, 78, 79, 84, 85, 96, 97, 98, 99, 101, 104, 105, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 127, 131, 132, 136, 137, 139, 141, 145, 146, 150, 151, 155, 157, 181, 182, 186, 187, 188, 191, 193, 194, 198, 205, 206, 208, 210, 211, 213, 217, 220, 221, 222, 223, 229, 231, 236, 240, 244, 250, 251, 252, 255, 256, 259, 264, 266, 269, 270], "13712": 1, "skip_warn": [1, 85, 141, 146], "silenc": 1, "13706": 1, "info_invalid": [1, 91, 96], "13688": 1, "13680": 1, "mono": [1, 116], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 51, 58, 63, 73, 78, 80, 86, 87, 93, 95, 99, 102, 103, 114, 116, 118, 119, 120, 121, 131, 132, 133, 134, 135, 136, 137, 146, 147, 149, 166, 175, 181, 186, 187, 188, 189, 196, 205, 213, 221, 223, 227, 229, 231, 235, 238, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 261, 262, 263, 264, 266, 267, 268, 269, 270], "scm": [1, 11, 43, 76, 98, 116, 135, 176, 196, 227, 247, 252, 268, 270], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 74], "field": [1, 82, 86, 96, 97, 99, 106, 109, 115, 116, 127, 129, 132, 145, 148, 149, 150, 158, 179, 200, 203, 208, 271], "13870": 1, "compiler_execut": [1, 85, 146, 147, 188, 205, 217, 223, 240], "13867": 1, "13857": 1, "suffix": [1, 155, 187, 208], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 187, 195, 208], "d": [1, 7, 13, 27, 47, 79, 83, 84, 96, 98, 105, 114, 116, 128, 147, 175, 186, 188, 206, 236, 250, 255, 268], "13740": 1, "omit": [1, 21, 116, 146, 263], "l": [1, 83, 84, 86, 87, 89, 90, 93, 95, 96, 97, 98, 102, 108, 111, 112, 203, 204, 206, 208, 227], "libpath": [1, 229], "13704": 1, "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 64, 66, 69, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 118, 119, 120, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 144, 146, 147, 149, 150, 151, 152, 156, 158, 159, 175, 177, 179, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 223, 224, 229, 231, 233, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271], "13855": 1, "out": [1, 26, 29, 31, 36, 53, 55, 56, 70, 72, 80, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111, 114, 124, 127, 213, 217, 248, 252, 263, 267], "13853": 1, "13846": 1, "intel": [1, 42, 70, 76, 85, 146, 176, 219], "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 92, 100, 189, 234, 263, 267, 271], "alia": [1, 105, 187, 203], "13763": 1, "dep": [1, 21, 36, 41, 53, 79, 95, 127, 139, 147, 156, 157, 181, 185, 187, 189, 211, 221, 223, 248], "13762": 1, "cmake_system_nam": [1, 85, 146, 188], "baremet": [1, 149], "13739": 1, "deactiv": [1, 49, 158, 188, 193, 194, 242, 269], "13707": 1, "13597": 1, "extend": [1, 43, 46, 73, 76, 77, 86, 102, 117, 128, 152, 158, 184, 267, 269, 271], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 85, 127, 146, 188, 191, 192, 193, 194, 204, 205, 213, 217, 222, 223, 224, 236, 242, 244, 245], "13607": 1, "preliminari": 1, "dev": [1, 137, 149, 231], "premake5": 1, "13390": 1, "old": [1, 30, 32, 116, 149, 163, 264, 267], "login": [1, 82, 114, 145, 198, 236], "13671": 1, "msg": [1, 141, 155], "13668": 1, "correct": [1, 40, 42, 73, 74, 78, 116, 129, 130, 132, 134, 135, 159, 179, 181, 187, 188, 192, 196, 216, 223, 241, 242, 251, 252, 255, 257, 261], "origin": [1, 4, 6, 8, 13, 24, 56, 58, 85, 98, 116, 120, 130, 145, 149, 191, 192, 217, 227, 243, 252, 255], "13667": 1, "13661": 1, "respond": [1, 70], "forbidden": [1, 71, 101, 103, 120], "13626": 1, "13622": 1, "direct_deploi": [1, 98, 271], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 51, 68, 84, 87, 91, 96, 99, 107, 108, 112, 206, 220, 236, 248, 249, 251, 252, 254, 255, 257, 263], "had": [1, 13, 56, 90, 116, 120, 244, 249, 252, 261, 263, 266], "13662": 1, "13657": 1, "close": [1, 90, 196], "13631": 1, "13618": 1, "full_deploi": [1, 35, 98, 271], "collis": [1, 115, 187, 203, 205], "log": [1, 6, 26, 56, 87, 107, 114, 141, 150, 152, 263], "13610": 1, "13601": 1, "temp": [1, 84], "everyth": [1, 5, 13, 19, 42, 56, 58, 65, 70, 73, 84, 103, 108, 120, 129, 176, 227, 244, 261], "temporari": [1, 6, 7, 24, 74, 84, 130, 133, 196, 198, 249, 257, 262, 266], "13581": 1, "dictionari": [1, 85, 116, 127, 132, 146, 155, 185, 188, 196, 198], "semant": [1, 116, 149, 250, 265], "13571": 1, "sdk": [1, 26, 35, 85, 146, 149, 179, 180, 182, 205, 217], "avail": [1, 3, 4, 8, 24, 26, 36, 51, 63, 70, 72, 73, 85, 90, 95, 97, 99, 104, 105, 108, 114, 116, 121, 129, 133, 142, 146, 147, 158, 175, 179, 183, 188, 230, 240, 243, 244, 249, 250, 254, 255, 256, 261, 262, 271], "13531": 1, "togeth": [1, 56, 67, 70, 84, 106, 116, 125, 126, 136, 174, 175, 185, 188, 216, 223, 243, 250, 264, 271], "13526": 1, "13505": 1, "legaci": [1, 119, 146, 188, 219], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 114, 116, 132, 146, 240, 241, 248, 258, 268], "third": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 198, 227, 255, 262, 263], "parti": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 227, 255, 262, 263], "13461": 1, "android": [1, 8, 11, 25, 57, 59, 70, 76, 85, 116, 132, 146, 149, 176, 188, 215, 241], "cmake_legacy_toolchain": [1, 85, 146, 188], "android_use_legacy_toolchain_fil": [1, 85, 146, 188], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 51, 56, 58, 62, 63, 64, 68, 69, 70, 72, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 101, 103, 104, 105, 106, 108, 109, 112, 116, 118, 119, 120, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 151, 152, 153, 155, 158, 174, 175, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 203, 204, 205, 206, 207, 210, 211, 212, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 235, 236, 237, 240, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 264, 266, 267, 268, 269, 270, 271], "cflag": [1, 45, 85, 91, 96, 132, 146, 147, 182, 188, 204, 205, 208, 212, 217, 222, 223], "cxxflag": [1, 49, 80, 85, 91, 96, 132, 146, 182, 188, 189, 204, 205, 212, 217, 222, 223, 229], "prevent": [1, 114, 116, 188], "13459": 1, "13458": 1, "authent": [1, 3, 56, 73, 106, 107, 145, 148, 150, 151, 198, 235, 236], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 51, 56, 58, 64, 73, 78, 82, 84, 85, 86, 95, 99, 114, 116, 118, 127, 129, 130, 147, 149, 150, 151, 152, 156, 175, 188, 207, 214, 221, 227, 236, 238, 240, 242, 244, 247, 248, 249, 252, 254, 260, 261, 266, 268, 269, 271], "python_requires_extend": [1, 74, 128, 175], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 51, 84, 86, 114, 139, 141, 159, 211, 213, 227, 238, 242, 254, 255, 257, 261, 266, 268], "mydep": [1, 78, 127, 223], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 85, 146, 213, 217], "vs2022": 1, "rather": [1, 8, 78, 85, 131, 146, 149, 205, 223, 253, 263], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 152, 154, 271], "paramet": [1, 31, 53, 62, 82, 132, 152, 157, 166, 168, 171, 177, 179, 180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 224, 225, 227, 231, 250], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 56, 58, 59, 63, 70, 78, 81, 84, 99, 101, 102, 116, 123, 130, 131, 132, 133, 137, 146, 147, 149, 159, 175, 183, 187, 188, 208, 213, 242, 243, 245, 249, 254, 255, 256, 257, 261, 262, 263, 266, 267, 268, 269], "13544": 1, "subcommand": [1, 92, 100, 155, 271], "underscor": [1, 250], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 85, 129, 146, 186, 188], "13488": 1, "composit": [1, 128, 149, 190], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 185, 203, 254], "autoreconf": [1, 203, 205, 248], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 51, 56, 70, 74, 78, 80, 98, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 147, 149, 152, 155, 156, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 223, 224, 227, 228, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 262, 263, 266, 267, 268, 269, 270], "mirror": [1, 4, 198], "behavior": [1, 8, 47, 70, 74, 78, 80, 101, 102, 103, 116, 119, 122, 123, 127, 131, 132, 142, 146, 151, 154, 158, 183, 187, 208, 211, 217, 227, 231, 252, 271], "That": [1, 8, 13, 17, 24, 38, 62, 74, 93, 98, 136, 151, 160, 181, 187, 192, 208, 213, 222, 241, 242, 243, 254, 258, 267, 270, 271], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 105, 106, 146, 147], "inclus": [1, 221], "13336": 1, "13324": 1, "version_rang": [1, 10, 85, 116, 146, 269], "resolve_prereleas": [1, 10, 85, 116, 146, 269], "prereleas": [1, 10, 269], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "help": [1, 8, 31, 36, 45, 48, 58, 61, 62, 66, 67, 68, 70, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 155, 182, 191, 205, 213, 222, 244, 245, 256, 264, 265], "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 73, 91, 96, 106, 147, 149, 188, 217, 240, 242, 250], "13359": 1, "vswhere": [1, 85, 146], "13355": 1, "convers": [1, 82], "13323": 1, "13230": 1, "msbuild": [1, 59, 68, 70, 85, 105, 132, 146, 147, 149, 176, 185, 218, 221, 222, 224], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 70, 120, 127, 131, 145, 170, 262, 269], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 91, 96, 132, 189, 206, 207], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 116, 132, 147, 176, 188, 190, 191, 192, 241, 242, 245, 251, 256], "instanti": [1, 116, 127, 181, 182, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 149], "13326": 1, "insecur": [1, 85, 107], "ssl": [1, 85, 107, 132, 146, 148, 198, 211], "13270": 1, "conanignor": [1, 85], "13269": 1, "traceback": 1, "vv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vvv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 70, 114], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 70, 150, 151, 198], "13285": 1, "unexpect": [1, 73, 74, 141, 217, 267], "13282": 1, "runtime_typ": [1, 149, 160, 205], "reli": [1, 4, 70, 74, 99, 134, 135, 208, 240, 255, 257], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 53, 55, 57, 63, 64, 74, 76, 81, 83, 84, 88, 93, 95, 96, 98, 102, 105, 106, 116, 126, 130, 134, 135, 147, 156, 159, 167, 175, 181, 182, 185, 186, 187, 188, 193, 194, 196, 204, 205, 206, 208, 211, 212, 213, 214, 221, 222, 224, 229, 232, 239, 240, 241, 245, 247, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "pars": [1, 31, 70, 99, 146, 147, 152, 207, 227, 228, 252], "13266": 1, "unifi": [1, 6, 149], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 70, 74, 80, 84, 85, 87, 98, 99, 101, 108, 116, 118, 122, 123, 125, 127, 131, 132, 133, 136, 137, 146, 175, 187, 189, 240, 243, 251, 266, 268, 269, 270], "state": [1, 7, 133, 175, 217, 243], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 51, 56, 57, 58, 59, 67, 70, 73, 74, 82, 87, 88, 98, 103, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 127, 129, 136, 139, 140, 145, 147, 149, 155, 158, 175, 183, 185, 187, 188, 192, 211, 214, 217, 227, 232, 237, 240, 241, 242, 244, 249, 250, 252, 255, 257, 260, 262, 263, 266, 271], "13211": 1, "13207": 1, "readm": [1, 158, 198, 262], "13186": 1, "13298": 1, "certain": [1, 58, 98, 104, 108, 127, 132, 146, 147, 149, 158, 221, 243, 249, 251, 258], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 58, 103, 255], "drive": 1, "13248": 1, "13191": 1, "gnu17": [1, 42, 91, 96, 106, 147, 149, 183, 240], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 57, 64, 67, 70, 74, 82, 85, 98, 102, 103, 106, 114, 116, 117, 119, 123, 127, 129, 130, 131, 132, 138, 146, 147, 149, 151, 152, 159, 179, 180, 187, 188, 189, 191, 193, 194, 204, 205, 208, 217, 221, 224, 235, 236, 239, 240, 249, 252, 254, 255, 258, 263, 268, 270, 271], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 63, 70, 72, 74, 96, 101, 103, 105, 114, 116, 150, 158, 176, 188, 189, 195, 198, 214, 239, 240, 246, 248, 254, 267, 268], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 51, 53, 55, 56, 57, 63, 65, 86, 87, 96, 98, 103, 113, 116, 128, 130, 149, 155, 176, 181, 182, 187, 200, 210, 222, 240, 242, 244, 245, 248, 250, 252, 254, 259, 262, 263, 268, 269, 271], "13117": 1, "13112": 1, "valid": [1, 6, 8, 10, 73, 74, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 127, 140, 146, 149, 150, 160, 166, 183, 188, 198, 205, 206, 208, 217, 219, 222, 239, 247, 250, 254, 255, 258, 259, 262, 266, 267, 269], "13110": 1, "13109": 1, "assign": [1, 74, 78, 116, 122, 131, 134, 135, 186, 187, 188, 207, 217, 227, 249, 256], "13099": 1, "ui": [1, 31, 235, 236], "13093": 1, "abil": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 149, 271], "presets_prefix": 1, "prepend": [1, 132, 146, 147, 191, 192, 207], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 61, 64, 66, 68, 69, 70, 75, 77, 78, 80, 81, 82, 85, 86, 87, 91, 97, 99, 102, 106, 107, 112, 113, 114, 116, 120, 122, 123, 124, 127, 131, 133, 142, 143, 144, 145, 146, 149, 150, 151, 153, 155, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 182, 188, 189, 191, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 232, 233, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 267, 268, 269, 270], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 51, 53, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 80, 84, 86, 96, 105, 106, 115, 116, 117, 118, 122, 123, 125, 126, 127, 128, 131, 132, 136, 141, 146, 147, 149, 152, 155, 156, 157, 158, 159, 160, 175, 177, 180, 181, 182, 183, 186, 188, 196, 203, 205, 211, 212, 213, 214, 216, 217, 221, 223, 227, 229, 231, 232, 233, 238, 239, 240, 242, 244, 245, 246, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 271], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 56, 58, 70, 73, 74, 77, 80, 81, 96, 105, 106, 115, 116, 118, 119, 127, 136, 146, 147, 149, 152, 155, 156, 157, 158, 175, 177, 187, 188, 214, 227, 233, 235, 246, 250, 255, 259, 261, 263], "10166": 1, "13084": 1, "hash": [1, 77, 81, 91, 96, 97, 116, 136, 175, 198, 242, 243, 249, 251, 252, 268, 271], "13011": 1, "13003": 1, "12980": 1, "12937": 1, "pkgconfidep": 1, "get_transitive_requir": 1, "13013": 1, "13010": 1, "12992": 1, "12962": 1, "concurr": [1, 7, 63, 74, 85, 146, 151, 267, 271], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 74, 107, 116, 124, 132, 141, 145, 148, 149, 154, 229, 242, 250, 251, 259, 266, 267], "12913": 1, "system_requir": [1, 91, 96, 117, 127, 231], "12912": 1, "tar": [1, 4, 8, 116, 196, 198], "pax": 1, "python3": [1, 58, 114], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 74, 90, 116, 117, 129, 158, 175, 181, 187, 188, 189, 191, 196, 205, 207, 208, 211, 232, 246, 250, 252, 254, 255, 256, 263], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 78, 80, 81, 84, 86, 90, 95, 98, 100, 102, 104, 114, 115, 116, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 142, 147, 149, 156, 157, 158, 166, 175, 180, 181, 183, 186, 187, 188, 191, 192, 203, 205, 213, 217, 219, 222, 231, 233, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "perform": [1, 4, 65, 84, 85, 98, 101, 103, 106, 107, 108, 112, 114, 116, 146, 151, 158, 174, 179, 196, 212, 227, 231, 235, 236, 244, 260, 262, 271], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 70, 116, 188, 240, 242, 244, 245, 256, 261], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 99], "12801": 1, "prev": [1, 13, 31, 91, 93, 96, 99], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 85, 146, 205], "12881": 1, "ref": [1, 13, 19, 40, 45, 51, 73, 88, 91, 93, 96, 114, 116, 127, 130, 137, 139, 142, 154, 156, 159, 167, 252, 261, 262, 263], "12722": 1, "12699": 1, "required_conan_vers": [1, 85, 146], "between": [1, 7, 13, 27, 51, 78, 85, 95, 98, 116, 121, 127, 131, 132, 146, 175, 198, 235, 239, 241, 261, 266, 271], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 78, 150, 188, 235, 244], "12666": 1, "12636": 1, "simplifi": [1, 13, 103, 142, 249, 250, 271], "conaninfo": [1, 24, 81, 84, 240, 245, 249, 257], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 187], "12578": 1, "12525": 1, "api": [1, 6, 27, 65, 70, 74, 76, 116, 147, 152, 155, 158, 235, 236], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 256], "12351": 1, "12379": 1, "reciperefer": [1, 166], "equal": [1, 84, 105, 116, 136, 191, 269], "12506": 1, "compress": [1, 6, 55, 58, 85, 91, 96, 146, 174, 196, 198, 240, 241, 242, 244, 245], "uncompress": [1, 55, 58, 240, 242, 244, 245], "12378": 1, "12475": 1, "proper": [1, 7, 132, 203, 205, 215, 241], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 56, 58, 59, 63, 68, 73, 80, 81, 82, 87, 92, 98, 100, 103, 116, 119, 146, 147, 155, 175, 181, 187, 188, 211, 227, 231, 235, 236, 240, 242, 248, 250, 252, 257, 259, 262, 264, 265, 266, 269, 271], "loos": 1, "12502": 1, "produc": [1, 73, 74, 80, 84, 85, 98, 100, 101, 103, 116, 119, 127, 129, 132, 146, 149, 175, 187, 188, 193, 194, 196, 252, 266], "drop": [1, 98, 147], "compat_app": 1, "12484": 1, "transitive_head": [1, 91, 271], "12508": 1, "transitive_lib": [1, 91, 271], "static": [1, 8, 19, 21, 27, 38, 51, 78, 79, 80, 81, 91, 96, 102, 116, 123, 130, 132, 133, 149, 168, 170, 181, 186, 205, 221, 232, 239, 240, 248, 249, 250, 251, 263, 266, 271], "uncommit": 1, "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 227], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 122, 123, 136, 146, 149], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 51, 78, 80, 105, 116, 117, 120, 141, 146, 147, 175, 187, 191, 203, 208, 242, 244, 269], "char": [1, 29, 42, 55, 200, 240], "12053": 1, "12032": 1, "clicolor_forc": [1, 151], "12028": 1, "12050": 1, "output_fold": [1, 36, 83, 88, 90, 98, 157, 167], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 76, 143], "11675": 1, "11672": 1, "max": [1, 85, 146, 149], "11610": 1, "post_build_fail": 1, "hook": [1, 70, 74, 76, 85, 152], "11593": 1, "pre_gener": [1, 158], "post_gener": [1, 158], "cover": [1, 65, 129, 149, 233, 239, 256, 260], "around": [1, 8, 61, 62, 67, 68, 69, 70, 180, 185, 203, 210, 220, 231, 246], "brought": 1, "back": [1, 2, 10, 18, 57, 70, 78, 85, 104, 146, 270], "11575": 1, "11522": 1, "model": [1, 17, 21, 57, 70, 73, 75, 76, 81, 114, 115, 121, 127, 131, 132, 133, 137, 149, 153, 239, 246, 249, 250], "relationship": [1, 116, 271], "linkag": [1, 242], "autom": [1, 5, 13, 26, 70, 99, 116, 136, 137, 151, 222, 265, 267, 271], "flexibl": [1, 116, 142, 232, 239, 269, 271], "power": [1, 13, 70, 98, 152, 155, 188, 239, 271], "transpar": [1, 4, 11, 37, 64, 240, 261, 271], "pythonapi": 1, "cleaner": [1, 271], "structur": [1, 6, 18, 42, 45, 51, 53, 55, 74, 97, 98, 99, 113, 132, 144, 147, 152, 166, 186, 211, 240, 244, 245, 250, 251, 252, 254, 255, 263, 266, 271], "take": [1, 6, 21, 29, 30, 56, 81, 85, 86, 103, 108, 114, 116, 127, 134, 135, 138, 144, 145, 146, 149, 180, 181, 186, 187, 188, 191, 205, 208, 221, 228, 231, 241, 242, 244, 249, 250, 256, 258, 259, 264, 271], "account": [1, 6, 29, 78, 114, 116, 127, 130, 149, 175, 180, 186, 188, 191, 228, 241, 249, 256, 258, 264, 271], "simpler": [1, 5, 6, 41, 109, 127, 133], "immut": [1, 6, 19, 74, 78, 136, 150, 243, 247, 248, 251, 252, 258, 262, 268], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 56, 57, 70, 83, 90, 98, 110, 127, 132, 182, 187, 222, 232, 236, 248, 260, 267, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 51, 53, 55, 57, 64, 70, 83, 86, 88, 90, 98, 101, 102, 103, 107, 110, 111, 112, 116, 118, 120, 122, 123, 127, 129, 130, 131, 132, 136, 138, 139, 214, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "aim": [2, 70, 91, 120, 142, 146, 149, 211, 258], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 53, 55, 56, 57, 65, 70, 74, 83, 84, 90, 98, 99, 110, 114, 116, 118, 124, 129, 132, 134, 135, 136, 146, 149, 151, 157, 160, 177, 182, 187, 213, 214, 222, 224, 232, 235, 236, 237, 240, 241, 245, 248, 255, 261, 267], "intend": [2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 59, 70, 74, 80, 84, 85, 98, 99, 120, 124, 125, 126, 127, 138, 147, 158, 175, 185, 187, 188, 192, 210, 216, 227, 231, 242, 245, 248, 256, 267], "engin": [2, 21, 104, 146, 266, 267], "administr": [2, 3, 236], "architect": 2, "adopt": 2, "design": [2, 18, 70, 128, 149, 263, 271], "product": [2, 5, 6, 35, 57, 70, 74, 86, 103, 106, 120, 124, 131, 263], "team": [2, 5, 8, 55, 70, 73, 78, 104, 105, 106, 114, 116, 149, 235, 236, 237, 240, 255], "plan": [2, 127, 132], "we": [3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 65, 74, 78, 79, 80, 81, 84, 93, 95, 98, 99, 102, 103, 104, 105, 114, 116, 119, 121, 123, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 140, 146, 147, 149, 166, 175, 181, 183, 186, 187, 188, 189, 192, 208, 211, 213, 214, 221, 227, 231, 233, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "ll": [3, 4, 31, 45, 53, 55, 63, 96, 147, 155, 188, 213, 222, 224, 240, 262], "free": [3, 4, 70, 91, 96, 114, 235, 236, 237], "tab": [3, 63], "exampl": [3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 60, 63, 64, 65, 67, 70, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 104, 106, 111, 112, 114, 116, 119, 120, 121, 122, 123, 128, 129, 130, 131, 132, 133, 136, 137, 138, 139, 142, 144, 145, 146, 147, 149, 154, 155, 157, 158, 159, 160, 167, 179, 180, 181, 182, 186, 187, 188, 189, 192, 193, 196, 200, 206, 207, 208, 211, 214, 217, 219, 220, 221, 227, 231, 232, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 269, 270, 271], "imagin": [3, 10, 95, 187, 211, 244, 249, 257], "give": [3, 4, 8, 70, 82, 95, 106, 113, 193, 194], "upload_url": [3, 4, 85, 146], "myteam": [3, 4, 146], "myorg": [3, 4], "next": [3, 26, 29, 45, 70, 81, 103, 116, 205, 221, 227, 241, 247, 248, 249, 256, 270], "anonym": [3, 114, 145, 150, 151], "see": [3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 36, 38, 39, 40, 41, 42, 47, 48, 49, 51, 53, 56, 58, 63, 65, 73, 79, 80, 81, 82, 85, 86, 87, 93, 97, 98, 99, 102, 106, 108, 112, 113, 114, 116, 120, 122, 123, 124, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 187, 188, 189, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270], "offici": [3, 31, 97, 152, 155, 213, 233, 271], "guid": [3, 4, 57, 232], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 51, 53, 56, 60, 63, 64, 70, 73, 76, 77, 78, 80, 86, 90, 99, 102, 103, 107, 112, 115, 116, 129, 133, 144, 146, 147, 148, 149, 152, 157, 175, 187, 211, 214, 230, 232, 233, 234, 238, 239, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270], "token": [3, 56, 114, 145, 150, 227], "live": [3, 13, 19, 116, 136, 142, 221, 271], "source_credenti": [3, 4, 76, 143], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 51, 58, 65, 84, 87, 105, 116, 127, 139, 142, 146, 147, 149, 156, 158, 160, 175, 181, 182, 191, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 224, 241, 243, 250, 251, 261, 266, 267], "last": [3, 7, 99, 133, 149, 170, 212, 222, 264, 269, 271], "permiss": [3, 4, 58, 70, 74, 196, 235, 236], "feel": [3, 132], "modifi": [3, 4, 6, 10, 17, 26, 27, 29, 48, 51, 63, 73, 74, 80, 84, 114, 116, 119, 120, 127, 132, 149, 151, 154, 158, 160, 181, 188, 189, 196, 204, 239, 243, 244, 248, 249, 250, 252, 257, 258, 266, 268, 269, 270], "accord": [3, 45, 63, 64, 80, 136, 147, 180, 187, 188, 224, 251, 269], "With": [3, 4, 7, 17, 21, 35, 36, 58, 63, 70, 145, 147, 149, 200, 213, 242, 248, 256, 261], "common": [4, 6, 8, 13, 17, 18, 27, 35, 51, 73, 74, 80, 84, 85, 99, 116, 125, 126, 127, 131, 132, 135, 149, 152, 154, 155, 175, 180, 214, 220, 227, 231, 242, 243, 250, 257, 264, 265], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 56, 70, 71, 78, 80, 84, 86, 99, 101, 103, 105, 106, 114, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 132, 133, 136, 139, 142, 147, 150, 175, 217, 232, 241, 243, 245, 247, 248, 251, 252, 256, 258, 262, 266, 267, 268, 269, 270], "canon": [4, 187], "page": [4, 27, 57, 116, 236], "keep": [4, 6, 18, 26, 56, 65, 74, 103, 104, 128, 149, 158, 175, 186, 187, 188, 196, 240, 243, 244, 255, 256, 264, 270, 271], "record": 4, "traceabl": [4, 6, 70, 256, 265, 270, 271], "purpos": [4, 7, 58, 74, 116, 123, 125, 127, 128, 146, 150, 152, 227, 231, 232, 233, 238, 256, 263, 267, 270], "howev": [4, 5, 21, 35, 39, 40, 58, 59, 65, 96, 114, 119, 142, 146, 149, 158, 187, 243, 244, 245, 252, 266, 267, 268, 270], "often": [4, 29, 129, 269], "long": [4, 7, 70, 73, 116, 129, 149, 175, 267, 269, 271], "term": [4, 7, 250], "futur": [4, 7, 36, 56, 66, 73, 74, 105, 106, 116, 147, 153, 154, 157, 159, 199, 244, 252], "mai": [4, 8, 19, 21, 26, 58, 70, 73, 87, 113, 116, 118, 122, 123, 132, 149, 181, 187, 188, 228, 237, 239, 242, 244, 245, 251, 252, 258], "encount": [4, 116], "thu": [4, 8, 74, 114, 116, 119, 125, 126, 203, 206, 271], "retriev": [4, 6, 7, 8, 56, 74, 84, 87, 96, 114, 116, 121, 198, 227, 240, 242, 245, 246, 247, 250, 252, 255, 268], "addition": [4, 8, 96, 120, 133, 141, 146, 187, 208], "alongsid": [4, 211, 232], "infrastructur": [4, 6], "trigger": [4, 141, 271], "sha256": [4, 116, 197, 198, 252], "signatur": [4, 157, 159, 160, 197], "few": [4, 36, 80, 151, 152, 154, 175, 256], "download_url": [4, 85, 146], "repres": [4, 6, 74, 78, 80, 81, 116, 187, 189, 192, 217, 231, 242, 268, 271], "fetch": [4, 6, 58, 70, 82, 84, 97, 136, 227, 242], "either": [4, 8, 36, 105, 114, 116, 118, 127, 131, 132, 133, 141, 151, 159, 170, 174, 177, 191, 243, 269], "present": [4, 13, 36, 45, 73, 75, 84, 85, 97, 98, 116, 133, 149, 151, 174, 183, 245], "prefer": [4, 47, 48, 58, 63, 78, 150, 180, 188, 205, 227, 255, 261, 262, 263], "ahead": [4, 10], "Being": [4, 175], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 51, 56, 58, 70, 73, 74, 75, 78, 80, 84, 86, 95, 98, 99, 101, 102, 103, 105, 114, 116, 119, 123, 126, 127, 129, 130, 131, 132, 135, 136, 137, 146, 147, 149, 166, 177, 191, 205, 217, 221, 222, 237, 242, 250, 255, 256, 261, 262, 266, 270], "exclude_url": [4, 84, 85, 146], "start": [4, 5, 6, 17, 29, 45, 53, 55, 56, 58, 74, 105, 115, 116, 131, 132, 149, 150, 155, 158, 166, 196, 198, 208, 213, 217, 236, 237, 240, 250, 261, 262, 263, 266, 267, 268, 270, 271], "begin": [4, 70, 85, 146, 147, 239, 246], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 63, 70, 74, 80, 81, 103, 114, 116, 123, 126, 127, 129, 131, 132, 136, 142, 145, 146, 147, 149, 155, 160, 177, 179, 188, 207, 213, 227, 240, 242, 243, 261, 262, 263, 267, 268, 270], "A": [4, 6, 13, 47, 51, 65, 70, 80, 84, 85, 87, 91, 95, 96, 99, 102, 103, 108, 112, 114, 116, 120, 122, 131, 133, 135, 136, 137, 141, 146, 147, 154, 158, 166, 174, 175, 185, 188, 191, 196, 198, 202, 219, 222, 231, 236, 240, 243, 246, 248, 249, 251, 253, 254, 255, 259, 261, 264, 267, 269, 271], "put": [4, 6, 17, 29, 36, 58, 84, 85, 90, 105, 116, 127, 129, 132, 136, 145, 146, 147, 152, 159, 192, 211, 212, 214, 250, 256, 259, 263, 264, 268], "its": [4, 13, 24, 29, 31, 36, 39, 40, 56, 58, 59, 70, 73, 77, 79, 80, 81, 82, 83, 84, 86, 87, 97, 98, 106, 108, 116, 119, 127, 131, 132, 133, 136, 138, 145, 146, 147, 155, 157, 158, 175, 187, 188, 191, 203, 222, 239, 241, 243, 244, 250, 259, 261, 263, 264, 267], "strongli": [4, 8, 58, 78, 116, 119, 150, 217, 252], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 53, 55, 56, 59, 70, 74, 78, 80, 85, 98, 99, 103, 106, 114, 116, 119, 124, 125, 130, 131, 133, 134, 136, 146, 147, 151, 158, 175, 187, 199, 231, 235, 236, 237, 245, 248, 250, 255, 267, 269], "below": [4, 5, 6, 8, 63, 70, 78, 80, 81, 84, 121, 133, 136, 144, 179, 181, 182, 188, 196, 205, 208, 211, 249], "relev": [4, 21, 57, 61, 62, 66, 67, 68, 69, 80, 146, 247, 248, 249, 251, 252, 256, 258, 259, 267], "suppli": [4, 5, 84, 100, 101, 104, 157, 271], "els": [4, 6, 17, 26, 31, 39, 40, 51, 70, 114, 116, 130, 131, 132, 136, 147, 174, 183, 231, 242, 244, 247, 248, 251, 256, 258], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 51, 53, 58, 62, 70, 73, 85, 91, 98, 105, 114, 116, 119, 121, 127, 129, 131, 132, 142, 147, 148, 149, 155, 157, 181, 182, 187, 188, 200, 205, 212, 217, 229, 231, 241, 244, 249, 250, 251, 252, 255, 256, 261, 267, 268, 269], "blob": [4, 65, 271], "belong": [4, 84, 87, 99, 103, 174, 176, 187, 196, 208, 241, 250, 256, 259], "artifactori": [4, 13, 59, 70, 114, 152, 235, 237], "describ": [4, 5, 6, 8, 10, 45, 55, 77, 79, 82, 116, 127, 129, 135, 145, 183, 188, 189, 217, 263, 270], "approach": [4, 6, 8, 13, 29, 41, 56, 70, 73, 74, 78, 80, 98, 116, 129, 130, 131, 132, 133, 134, 136, 147, 149, 155, 175, 185, 187, 199, 227, 241, 248, 255, 256, 267, 270], "deal": [4, 9, 119, 131], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 51, 53, 56, 70, 79, 80, 81, 84, 87, 96, 102, 105, 108, 114, 116, 127, 128, 131, 133, 142, 146, 149, 159, 175, 181, 182, 185, 187, 188, 192, 193, 196, 211, 221, 231, 242, 251, 252, 257, 258, 261, 263, 266, 267, 268, 270, 271], "travers": [4, 144], "until": [4, 8, 63, 74, 144, 145, 150], "client": [4, 7, 13, 31, 63, 70, 73, 82, 85, 106, 113, 114, 116, 145, 158, 236, 237, 242, 250], "regard": [4, 70, 75, 102, 149, 158, 196, 257], "capabl": [4, 7, 97, 98, 147, 188, 244, 271], "1": [4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 65, 70, 72, 73, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 108, 109, 112, 113, 114, 116, 120, 127, 128, 131, 132, 133, 135, 136, 139, 140, 142, 146, 147, 148, 149, 156, 157, 158, 175, 181, 183, 185, 186, 187, 188, 191, 193, 194, 196, 198, 200, 203, 206, 208, 211, 217, 219, 221, 222, 223, 224, 227, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270, 271], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 79, 80, 81, 86, 93, 98, 99, 101, 102, 103, 105, 113, 114, 116, 120, 127, 137, 142, 147, 149, 175, 180, 181, 187, 188, 193, 198, 208, 211, 213, 240, 241, 243, 244, 245, 248, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267, 269, 270, 271], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 58, 73, 85, 91, 96, 106, 151, 206, 240, 242, 248, 249, 250, 251, 252, 254, 257], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 51, 53, 55, 79, 84, 116, 124, 129, 130, 187, 196, 211, 240, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268], "net": [4, 85, 91, 96, 114, 146], "fossil": 4, "gz": [4, 116, 196, 198], "madler": 4, "v1": [4, 183], "newli": 4, "therefor": [4, 8, 63, 119, 196, 231, 254], "dure": [4, 8, 26, 56, 63, 116, 123, 133, 185, 217, 250, 262, 269], "address": [4, 8, 131, 149, 265], "scenario": [4, 7, 40, 41, 42, 56, 58, 80, 116, 118, 119, 132, 133, 147, 255, 271], "ce": [4, 70, 235], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 52, 54, 56, 62, 67, 70, 73, 74, 86, 105, 114, 116, 117, 118, 120, 128, 133, 142, 155, 158, 175, 210, 211, 212, 214, 232, 235, 237, 239, 242, 244, 246, 250, 252, 253, 254, 258, 261, 262, 269, 270], "suffici": [4, 114], "instruct": [4, 58, 63, 73, 117, 130, 149, 242], "author": [4, 6, 8, 56, 91, 128, 150, 250], "agent": [4, 56], "done": [5, 6, 36, 38, 51, 70, 73, 74, 77, 101, 103, 108, 114, 118, 119, 120, 127, 132, 133, 135, 136, 145, 147, 149, 151, 156, 157, 158, 167, 175, 179, 187, 188, 192, 193, 194, 203, 234, 241, 243, 244, 248, 250, 251, 259, 261, 262, 263, 264, 269, 270, 271], "much": [5, 6, 74, 118, 125, 136, 175, 250, 262, 271], "fulli": [5, 35, 56, 70, 101, 103, 116, 133, 134, 135, 157, 181, 182, 188, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229, 261, 271], "fork": [5, 8, 116], "maintain": [5, 8, 18, 70, 101, 116, 131, 142, 147, 158, 208, 243, 264], "pr": [5, 42, 49, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 147, 211, 213, 241], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 53, 55, 56, 58, 59, 63, 70, 72, 73, 75, 79, 81, 84, 85, 87, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 108, 109, 112, 113, 114, 116, 120, 125, 127, 128, 130, 132, 133, 135, 139, 142, 146, 147, 148, 149, 156, 159, 175, 181, 187, 193, 194, 198, 199, 203, 206, 208, 211, 219, 221, 224, 240, 241, 242, 243, 244, 245, 247, 250, 254, 255, 261, 266, 267, 268, 269, 270], "13": [5, 6, 13, 24, 35, 42, 79, 81, 84, 87, 95, 96, 98, 99, 102, 106, 108, 109, 112, 113, 120, 142, 147, 149, 156, 206, 240, 243, 247], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 70, 80, 85, 86, 87, 99, 108, 116, 117, 120, 123, 125, 126, 129, 130, 131, 133, 146, 147, 149, 175, 233, 235, 247, 248, 249, 250, 251, 252, 258, 259, 262, 263, 268, 270], "mostli": [5, 31, 45, 116, 133, 149, 158, 231], "proprietari": [5, 70, 150, 207], "idea": [5, 127, 146, 267, 271], "further": [5, 78, 116, 120, 149, 188, 271], "soon": [5, 59, 70, 271], "straightforward": [5, 77, 86, 98, 127, 260, 266], "mani": [5, 6, 45, 49, 56, 58, 65, 70, 73, 74, 80, 101, 105, 127, 147, 175, 192, 238, 261, 264, 267, 271], "advantag": [5, 58, 156, 182, 222, 244], "mitig": [5, 192], "risk": [5, 56, 73, 146], "befor": [5, 6, 7, 10, 26, 45, 53, 55, 56, 112, 116, 118, 122, 127, 129, 136, 139, 147, 157, 158, 175, 192, 196, 205, 210, 213, 217, 223, 227, 231, 241, 242, 244, 245, 248, 249, 252, 256, 263, 267, 271], "No": [5, 24, 116, 123, 242, 254, 270], "central": [5, 70, 233], "outag": 5, "adapt": [5, 77, 105, 106, 116], "perfectli": [5, 73, 142], "minut": [5, 99, 108], "week": [5, 99, 108, 264], "appli": [5, 8, 49, 51, 74, 80, 82, 83, 84, 86, 90, 93, 95, 96, 98, 101, 102, 103, 106, 111, 114, 116, 118, 119, 123, 126, 127, 132, 136, 146, 147, 149, 181, 188, 190, 200, 213, 241, 242, 243, 245, 246, 248, 249, 254, 255, 258, 266, 269, 271], "wouldn": [5, 58, 63, 185], "elimin": [5, 261], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 53, 152], "diff": [5, 51, 95, 99, 200], "trim": [5, 102], "don": [5, 10, 13, 24, 31, 39, 40, 45, 63, 73, 79, 95, 98, 99, 107, 115, 116, 136, 145, 147, 155, 175, 187, 189, 240, 241, 242, 243, 254, 255, 257, 261, 264], "fire": [5, 136, 175, 263], "effici": [5, 35, 55, 70, 78, 116, 131, 221, 240, 271], "thank": [5, 26, 39, 40, 45, 55, 80, 152, 155, 255], "secondari": [5, 70], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 56, 63, 65, 74, 105, 120, 122, 123, 128, 131, 132, 145, 147, 156, 157, 187, 189, 196, 203, 213, 222, 233, 236, 237, 239, 240, 241, 243, 246, 249, 250, 251, 257, 259, 265, 266, 269, 270], "good": [5, 19, 56, 70, 71, 78, 103, 105, 114, 116, 118, 120, 121, 127, 128, 132, 133, 146, 166, 222, 224, 235, 247, 248, 251, 258, 262, 266, 267, 270], "experiment": [6, 7, 13, 31, 70, 91, 97, 105, 112, 113, 116, 120, 122, 123, 124, 131, 132, 142, 145, 147, 149, 150, 153, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213, 227, 271], "subject": [6, 7, 13, 31, 70, 91, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213], "stabil": [6, 7, 13, 31, 65, 70, 97, 99, 106, 113, 120, 122, 123, 124, 131, 144, 145, 147, 149, 150, 153, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 189, 196, 206, 210, 211, 212, 264], "typic": [6, 8, 13, 27, 39, 40, 56, 58, 63, 73, 80, 116, 122, 125, 126, 127, 129, 132, 133, 147, 150, 159, 179, 180, 186, 187, 189, 192, 208, 214, 220, 225, 231, 241, 242, 244, 248, 249, 251, 254, 255, 256, 261, 262, 264, 271], "compos": [6, 98, 132, 146, 147, 163, 170, 180, 191, 254], "But": [6, 7, 13, 29, 39, 40, 56, 70, 80, 90, 99, 104, 116, 119, 127, 138, 140, 141, 147, 155, 159, 187, 208, 211, 241, 243, 244, 250, 254, 256, 266, 267, 268], "normal": [6, 35, 42, 67, 73, 108, 116, 124, 155, 158, 191, 261, 269], "consumpt": [6, 21, 70, 117, 142], "complianc": [6, 119], "technic": [6, 116], "busi": 6, "reason": [6, 8, 41, 56, 73, 74, 86, 90, 103, 136, 150, 256, 263, 266, 268], "suit": [6, 142, 147, 214, 248, 254], "heavi": [6, 29, 70, 116, 118, 154], "pdb": [6, 29], "coverag": [6, 187], "sanit": 6, "analysi": [6, 85, 146], "exact": [6, 47, 48, 74, 78, 84, 101, 103, 108, 116, 119, 147, 182, 196, 222, 243, 250, 261, 262, 263, 268, 270], "machin": [6, 29, 58, 80, 90, 106, 114, 116, 124, 149, 151, 183, 187, 203, 208, 216, 217, 221, 231, 233, 238, 241, 242, 259, 268], "relat": [6, 45, 58, 67, 116, 127, 146, 182, 188, 196, 208, 217, 244, 249, 250, 262, 271], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 56, 58, 63, 70, 72, 73, 80, 85, 98, 105, 108, 114, 116, 118, 125, 129, 130, 131, 139, 140, 146, 151, 158, 175, 187, 188, 191, 214, 231, 235, 236, 244, 248, 249, 251, 255, 256, 261, 265, 266, 268, 271], "regul": 6, "insid": [6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 74, 79, 81, 85, 99, 105, 116, 120, 129, 132, 144, 146, 149, 155, 156, 158, 179, 188, 192, 196, 201, 214, 231, 237, 244, 246, 249, 250, 257, 261, 263, 267, 271], "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 56, 73, 81, 86, 108, 118, 125, 126, 127, 130, 131, 132, 145, 150, 151, 155, 192, 240, 243, 245, 249, 250, 254, 261, 263, 266, 267, 269, 271], "lot": [6, 8, 258, 269, 271], "impact": [6, 8], "experi": [6, 116, 118, 237, 269, 271], "cost": [6, 74], "furthermor": [6, 53, 74, 271], "append": [6, 26, 49, 58, 85, 114, 116, 132, 134, 135, 146, 147, 153, 159, 185, 187, 188, 191, 192, 196, 204, 205, 206, 222, 223, 256], "highlight": [6, 26, 141, 191, 211, 252], "probabl": [6, 31, 188, 214, 221, 243], "scan": [6, 201], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 70, 72, 75, 78, 79, 84, 87, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 113, 114, 116, 120, 127, 128, 131, 133, 136, 137, 139, 140, 142, 147, 149, 156, 157, 175, 185, 186, 187, 188, 191, 193, 194, 196, 198, 199, 200, 203, 208, 211, 217, 219, 221, 222, 223, 224, 231, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 53, 56, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 147, 149, 150, 153, 154, 155, 156, 157, 158, 159, 160, 175, 177, 179, 180, 181, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 270], "Or": [6, 85, 118, 127, 147, 188, 207, 223, 229], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 51, 56, 85, 142, 146, 176, 184, 188, 214, 241, 244, 250, 252, 254, 256, 259, 261, 262, 263], "mybuild": [6, 116], "recipe_fold": [6, 16, 18, 56, 91, 96, 125, 126, 127, 128, 134, 135], "dst": [6, 17, 38, 116, 124, 196, 257], "join": [6, 16, 17, 18, 19, 36, 39, 40, 51, 73, 116, 126, 128, 129, 130, 132, 134, 135, 138, 147, 158, 159, 175, 187, 188, 191, 196, 214, 244, 248, 254, 255, 256, 257, 259, 263], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 53, 55, 59, 61, 62, 66, 67, 68, 69, 70, 74, 80, 82, 86, 99, 100, 102, 116, 121, 130, 131, 133, 134, 143, 146, 175, 186, 188, 189, 196, 214, 223, 231, 232, 240, 247, 256, 259, 260, 262, 266, 267], "mylog": 6, "build_fold": [6, 17, 74, 91, 96, 97, 127, 129, 130, 158, 186, 196, 211, 216, 254, 255, 256, 257], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 58, 63, 75, 78, 80, 84, 96, 98, 101, 103, 105, 108, 114, 116, 118, 128, 131, 132, 136, 138, 141, 142, 147, 149, 157, 159, 175, 181, 187, 188, 202, 217, 231, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 257, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "clutter": [6, 214], "accross": [6, 78], "sai": [6, 13, 16, 18, 38, 41, 51, 80, 84, 95, 98, 103, 116, 146, 147, 181, 221, 249, 263], "no_copy_sourc": [6, 118, 254], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 53, 70, 73, 79, 80, 81, 84, 99, 104, 105, 116, 136, 147, 149, 150, 157, 175, 177, 182, 187, 192, 211, 231, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 263, 266, 267, 268, 270, 271], "post_export": [6, 158], "post_sourc": [6, 158], "post_build": [6, 152, 158], "usag": [6, 27, 31, 35, 37, 39, 40, 41, 63, 70, 74, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 119, 129, 132, 133, 145, 146, 147, 149, 151, 157, 189, 196, 198, 200, 203, 207, 214, 223, 243, 256, 261], "similar": [6, 8, 18, 58, 65, 70, 87, 90, 103, 112, 114, 116, 129, 137, 147, 155, 187, 189, 191, 227, 240, 247, 249, 252, 254, 263, 269], "effect": [6, 8, 49, 73, 76, 77, 78, 98, 116, 127, 131, 136, 146, 152, 221, 231, 249, 267], "To": [6, 24, 26, 29, 31, 36, 55, 56, 58, 63, 64, 73, 99, 103, 106, 108, 116, 120, 128, 129, 136, 141, 146, 147, 150, 153, 158, 181, 186, 187, 188, 193, 194, 196, 203, 204, 205, 214, 240, 242, 244, 245, 251, 252, 261, 263, 267, 270], "achiev": [6, 8, 39, 56, 74, 118, 131, 157, 182, 187, 196, 222, 239, 244, 250, 254, 267, 270, 271], "didn": [6, 47, 56, 73, 79, 250, 254], "far": [6, 242, 243, 244, 247, 249, 261, 271], "r": [6, 13, 31, 35, 56, 65, 73, 79, 81, 83, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 108, 109, 111, 112, 227, 236, 238, 243, 264, 268], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 254], "By": [6, 21, 41, 48, 70, 73, 78, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 111, 112, 114, 116, 132, 145, 146, 151, 175, 187, 188, 191, 203, 205, 206, 208, 210, 217, 231, 267, 268], "situat": [6, 13, 35, 39, 40, 80, 101, 108, 116, 118, 130, 131, 135, 147, 175, 187, 208, 265, 266], "sometim": [6, 7, 29, 51, 73, 86, 116, 137, 243, 248, 252, 254, 260], "mix": [6, 80, 175], "recov": [6, 56, 196], "previous": [6, 13, 24, 31, 36, 58, 98, 103, 145, 147, 149, 188, 191, 213, 245, 252, 255, 266], "under": [6, 8, 36, 61, 66, 68, 69, 70, 81, 114, 116, 129, 131, 147, 155, 158, 200, 217, 231, 237, 240, 250, 255, 260, 269], "collect": [6, 36, 96, 98, 127, 132, 136, 196, 206, 249, 258], "recal": [6, 101, 103, 108, 120, 123, 147, 151, 181, 185, 188], "At": [6, 10, 21, 26, 63, 70, 74, 93, 103, 116, 127, 149, 196, 204, 212, 213], "moment": [6, 7, 35, 74, 114, 127, 132, 149, 204, 212], "addit": [6, 8, 58, 59, 85, 86, 100, 116, 133, 146, 147, 149, 178, 188, 196, 198, 205, 217, 222, 223, 244, 245, 251], "quit": [6, 146, 175, 237], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 74, 98, 103, 116, 120, 125, 126, 128, 130, 136, 142, 181, 182, 239, 248, 249, 267, 269], "metatada": 6, "best": [6, 7, 13, 35, 56, 78, 80, 84, 86, 99, 101, 106, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 139, 147, 150, 170, 175, 245, 256, 266, 268, 270], "mandatori": [6, 36, 80, 101, 105, 116, 154, 157, 175, 250], "frequent": [6, 8, 196], "excepcion": 6, "decompress": [6, 196, 198, 240, 245, 260], "consid": [6, 7, 8, 21, 45, 70, 78, 79, 80, 84, 116, 119, 121, 181, 183, 188, 217, 244, 268], "zip": [6, 8, 19, 51, 85, 106, 112, 116, 136, 150, 196, 198, 235, 236, 246, 262], "yourself": 6, "categori": [6, 241], "illustr": [6, 79, 270], "later": [6, 7, 13, 26, 63, 65, 86, 96, 119, 123, 126, 132, 141, 147, 196, 227, 233, 238, 243, 244, 248, 249, 255, 265, 267], "necessarili": [6, 116, 267], "ton": 6, "assum": [6, 29, 35, 63, 70, 74, 78, 79, 84, 87, 95, 99, 108, 112, 116, 128, 132, 137, 147, 149, 151, 181, 187, 211, 221, 240, 242, 244, 245, 270], "stage": [6, 26, 58, 86, 90, 149, 158], "applic": [6, 8, 27, 38, 45, 48, 53, 55, 58, 70, 73, 79, 80, 96, 116, 120, 131, 133, 139, 187, 194, 196, 208, 221, 232, 237, 239, 240, 245, 246, 250, 253, 254, 256, 259, 261, 266, 271], "cp": [6, 35, 56], "todo": [6, 166], "hear": 6, "feedback": [6, 70, 269], "continu": [7, 70, 74, 101, 114, 234, 263, 267], "conveni": [7, 13, 65, 99, 105, 116, 136, 137, 147, 157, 160, 175, 187, 191, 193, 194, 243, 256, 259], "recent": [7, 21, 99, 108, 264], "transfer": [7, 8, 114, 271], "job": [7, 56, 74, 85, 146, 147, 183, 185, 216, 271], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 99], "b": [7, 21, 24, 29, 42, 51, 58, 83, 84, 86, 90, 93, 95, 96, 98, 102, 106, 111, 136, 146, 200, 206, 211, 241, 248, 249, 251, 252, 254, 257, 263], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "consider": 7, "well": [7, 56, 70, 72, 90, 99, 113, 116, 129, 149, 185, 187, 188, 208, 217, 250, 271], "pkg773791b8c97aa": 7, "substitut": [7, 151, 231], "storag": [7, 70, 84, 114, 152, 198, 237, 268], "transitori": 7, "strategi": [7, 8, 56, 131, 136, 262, 271], "proof": 7, "stabl": [7, 58, 99, 105, 106, 116, 146, 147], "expect": [7, 10, 42, 45, 56, 74, 90, 95, 98, 116, 118, 136, 146, 149, 197, 214, 250, 252, 262, 268], "fantast": 8, "resourc": [8, 57, 96, 132, 244, 268], "1500": 8, "contribut": [8, 70, 192, 200, 232, 233], "great": [8, 58, 70, 73, 236, 271], "knowledg": [8, 57, 70, 73], "wide": [8, 58, 80, 242, 244, 245, 250], "variant": [8, 66], "On": [8, 45, 80, 114, 137, 149, 213, 237, 240, 241, 242, 250], "top": [8, 133, 147, 227], "contributor": [8, 70], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 87, 116, 188, 242], "snapshot": [8, 243, 267], "contrari": 8, "e": [8, 42, 58, 70, 73, 84, 87, 88, 91, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 120, 146, 147, 148, 149, 179, 183, 185, 188, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 251, 252, 271], "g": [8, 35, 42, 47, 48, 73, 83, 84, 87, 88, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 146, 147, 148, 149, 156, 167, 179, 183, 185, 188, 193, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 240, 241, 242, 244, 245, 252, 261, 262, 263], "opencv": [8, 114, 137, 154], "greater": 8, "remain": [8, 114, 116, 151, 181, 191, 217], "older": [8, 70, 101, 104, 268, 269, 270], "push": [8, 56, 70, 227], "ecosystem": [8, 80, 213], "themselv": [8, 105, 175, 249], "hand": [8, 70, 80, 102, 118, 137], "combin": [8, 83, 86, 93, 95, 96, 98, 102, 104, 106, 111, 130, 136, 270], "mean": [8, 13, 29, 31, 35, 39, 40, 58, 63, 70, 73, 74, 78, 79, 80, 84, 87, 95, 96, 97, 98, 99, 108, 112, 116, 118, 120, 123, 127, 131, 132, 136, 139, 142, 147, 149, 151, 154, 166, 174, 175, 181, 187, 191, 192, 196, 203, 205, 214, 231, 242, 243, 254, 258, 260, 263, 266, 267, 268, 269], "languag": [8, 38, 42, 45, 49, 53, 55, 70, 182, 240], "pip": [8, 56, 114, 237], "pypi": [8, 58], "npm": 8, "cargo": 8, "discourag": [8, 84, 116, 150, 175, 217, 252], "unconstrain": 8, "manner": [8, 261], "guidelin": [8, 57, 58, 70, 71, 176], "seri": [8, 116, 260], "highli": [8, 24, 31, 36, 45, 53, 55], "mention": [8, 91, 96, 131, 133, 147, 181, 187, 205, 212, 217, 223, 248, 258, 263, 271], "earlier": [8, 70, 269], "caus": [8, 74, 116, 120, 133, 139, 187, 208, 250, 252, 266, 267, 268], "solver": 8, "actual": [8, 13, 19, 39, 40, 70, 73, 80, 90, 108, 112, 118, 127, 133, 137, 147, 149, 192, 193, 194, 196, 231, 238, 243, 263, 266, 267, 270], "4": [8, 10, 21, 26, 48, 53, 73, 78, 79, 96, 99, 103, 113, 114, 116, 121, 127, 131, 137, 142, 146, 147, 149, 175, 188, 211, 241, 244, 247, 254, 264, 270], "5": [8, 10, 63, 73, 78, 85, 93, 98, 101, 102, 103, 104, 116, 120, 127, 131, 147, 149, 160, 198, 221, 243, 267, 269, 270], "greatli": [8, 271], "encourag": [8, 70, 116, 250, 262], "consist": [8, 18, 78, 80, 85, 86, 266, 267, 270, 271], "rust": 8, "technologi": [8, 149], "upstream": [8, 56, 120, 127, 133, 174, 187, 261, 266], "period": [8, 264], "downtim": 8, "schedul": 8, "effort": [8, 127, 271], "made": [8, 84, 271], "unschedul": 8, "rare": [8, 118, 132, 134], "treat": [8, 85, 133, 146, 149, 196], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 114, 149, 235, 237], "strong": [8, 70, 80, 147], "uptim": 8, "protect": [8, 58, 115, 149], "transient": 8, "network": [8, 21, 85, 114, 143], "extern": [8, 19, 26, 49, 58, 246, 250, 252, 255, 257, 268], "These": [8, 21, 31, 45, 68, 70, 78, 85, 86, 98, 114, 125, 126, 127, 129, 141, 143, 146, 147, 150, 151, 155, 186, 188, 189, 203, 204, 208, 217, 241, 242, 249, 250, 254, 255, 259, 263, 267, 271], "industri": 8, "financ": 8, "robot": 8, "embed": [8, 70, 78, 79, 116, 133, 149], "stronger": 8, "licens": [8, 36, 55, 70, 91, 96, 97, 98, 105, 125, 126, 127, 128, 130, 158, 235, 240, 246, 250, 258, 262, 268], "medic": 8, "automot": 8, "advis": [8, 134, 135, 147], "instanc": [8, 31, 42, 63, 91, 96, 114, 116, 120, 129, 130, 131, 146, 147, 155, 177, 179, 183, 187, 188, 191, 192, 193, 194, 205, 213, 217, 219, 220, 221, 224, 227, 251, 259], "backport": [8, 200, 271], "suitabl": [8, 149], "review": [8, 63, 253, 254, 256, 263], "tight": 8, "subsect": 8, "come": [10, 58, 127, 147, 155, 183, 188, 208, 217, 236, 242, 255, 271], "glanc": 10, "becom": [10, 58, 80, 125, 126, 175, 268, 271], "unfeas": 10, "benefit": 10, "interest": [10, 13, 70, 84, 86], "pick": [10, 243], "action": [10, 31, 53, 56, 63, 114, 243, 251], "summar": [10, 271], "libpng": [10, 93, 97, 181], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 60, 64, 65, 70, 74, 81, 136, 243, 250, 262, 266], "8": [10, 73, 78, 98, 109, 116, 121, 127, 149, 180, 193, 194, 196, 200, 217, 221, 222, 224, 243, 247, 248, 249, 258, 259, 269], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 53, 58, 70, 73, 78, 99, 113, 114, 121, 136, 139, 149, 181, 200, 207, 241, 243, 244, 245], "40": [10, 99, 268], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 51, 73, 78, 85, 102, 120, 121, 127, 142, 146, 147, 149, 198, 241, 269], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 70, 79, 81, 87, 116, 127, 142, 208, 211], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 99, 255], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 79, 81, 96, 99, 120], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 51, 53, 55, 63, 90, 104, 125, 133, 142, 147, 188, 214, 221, 238, 240, 253, 254, 256, 259, 261, 263, 266, 269], "usual": [10, 58, 116, 133, 138, 147, 152, 157, 181, 191, 261, 263, 267], "behaviour": [10, 114, 187, 231, 249, 250, 251], "googl": [11, 42, 43, 53, 62, 76, 85, 146, 176, 200, 210, 211, 212], "ndk": [11, 25, 26, 60, 116, 132, 177, 188, 217, 241], "macro": [11, 37, 45], "modul": [11, 37, 45, 58, 65, 114, 116, 127, 128, 147, 152, 156, 175, 187, 211], "concaten": [13, 87, 112], "11": [13, 24, 55, 73, 81, 84, 85, 91, 95, 98, 99, 108, 109, 116, 127, 133, 142, 146, 147, 148, 149, 156, 181, 187, 193, 194, 200, 203, 208, 211, 221, 224, 240, 241, 242, 243, 244, 245, 247, 248, 254, 258, 259, 262, 269], "sent": 13, "12": [13, 21, 24, 26, 27, 91, 99, 108, 109, 142, 147, 149, 183, 200, 208, 217, 237, 243, 250, 254, 255, 268], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 102], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 99], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 51, 56, 58, 69, 73, 80, 81, 84, 87, 91, 95, 96, 97, 99, 106, 108, 112, 116, 119, 122, 123, 128, 131, 132, 137, 140, 147, 149, 157, 160, 168, 177, 179, 180, 181, 182, 185, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 221, 222, 223, 224, 229, 231, 240, 241, 242, 243, 244, 248, 250, 252, 254, 255, 256, 259, 267, 268], "x86_64": [13, 24, 26, 27, 35, 42, 73, 80, 81, 91, 95, 99, 106, 122, 129, 137, 147, 149, 157, 160, 180, 181, 183, 188, 193, 194, 231, 240, 241, 242, 244, 245, 248, 250, 255, 256, 259, 262, 267, 268], "singl": [13, 26, 47, 48, 70, 78, 82, 87, 103, 106, 116, 158, 171, 181, 185, 186, 187, 188, 189, 193, 194, 196, 217, 221, 244, 252, 255, 263, 271], "invoc": [13, 36, 61, 62, 67, 68, 69, 74, 118, 141, 152, 154, 179, 180, 181, 182, 185, 188, 193, 203, 210, 211, 220, 222], "almost": [13, 78, 82], "myremot": [13, 87, 108, 112, 114, 145, 264, 268], "slow": 13, "promot": 13, "magnitud": 13, "faster": [13, 80, 227, 243, 270], "dedupl": 13, "One": [13, 70, 73, 116, 156, 182, 188, 196, 217, 222, 241, 248], "mypkg": [13, 80, 84, 98, 105, 116, 134, 136, 137, 147, 156, 187, 191, 211], "cmake_lib": [13, 27, 79, 84, 105, 186, 250, 255, 268], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 84, 268], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 80, 91, 93, 97, 149], "known": [13, 149, 198, 243, 254, 271], "destruct": 13, "natur": [13, 80, 266, 268], "cannot": [13, 27, 42, 56, 74, 80, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 117, 118, 119, 128, 136, 140, 142, 146, 151, 155, 175, 183, 187, 188, 189, 242, 250, 254, 255, 260, 266, 267], "OR": [13, 26, 84, 87, 99, 108, 112, 168, 223, 269], "leav": [13, 26, 80, 108, 114, 127, 146, 149, 264], "subproject": [14, 15, 129, 263], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 51, 53, 55, 56, 58, 79, 187, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 271], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 63, 64, 74, 84, 105, 116, 130, 185, 186, 187, 188, 214, 240, 244, 245, 247, 248, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "h": [16, 17, 18, 21, 26, 31, 42, 45, 53, 55, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 130, 155, 196, 240, 241, 242, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 261, 262, 263], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 51, 126, 200], "cmake_fil": 16, "real": [17, 26, 56, 70, 112, 132, 139, 196, 266, 270, 271], "editable_compon": 17, "greet": [17, 155, 217], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 51, 53, 56, 79, 96, 99, 105, 116, 127, 155, 175, 185, 186, 187, 188, 210, 217, 238, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 261, 262, 263, 268], "bye": [17, 18, 155, 261, 268], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 51, 56, 74, 125, 126, 175, 188, 250, 252, 254, 256, 263, 268, 270], "src_folder": [17, 19, 186, 214, 262], "dir": [17, 19, 21, 27, 85, 105, 116, 132, 147, 189, 206, 213, 227, 248, 249, 250, 251, 254, 259, 262, 263], "bt": [17, 86], "package_fold": [17, 38, 39, 40, 41, 91, 96, 97, 115, 124, 127, 129, 130, 132, 158, 179, 181, 188, 191, 196, 203, 206, 208, 216, 254, 255, 256, 257], "keep_path": [17, 130, 196, 255, 256, 257], "cmake_file_nam": [17, 132, 187], "myg": 17, "cmake_target_nam": [17, 21, 132, 187, 251], "mygreet": 17, "myhello": [17, 251], "myby": 17, "beyond": 17, "filenam": [17, 48, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 111, 147, 157, 159, 192, 196, 198, 216], "besid": [17, 31, 48, 56, 66, 98, 146, 147, 149, 152, 181, 187, 189, 240, 249, 251, 252, 258, 262], "app": [17, 26, 38, 55, 69, 79, 80, 85, 103, 114, 127, 133, 146, 180, 182, 183, 185, 187, 188, 191, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 222, 229, 236, 240, 269, 270], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 63, 105, 187, 240, 245, 248, 251, 258, 259], "add_execut": [17, 21, 63, 187, 240, 245, 248, 251, 259], "target_link_librari": [17, 21, 26, 42, 63, 187, 240, 245, 248, 251, 258, 259], "adio": 17, "multiple_subproject": 18, "sibl": 18, "myhead": [18, 198], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 85, 114, 116, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 259, 262, 263], "world": [18, 27, 47, 48, 51, 53, 56, 70, 79, 116, 155, 188, 210, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 268], "fine": [18, 19, 42, 103, 114, 116, 237, 250], "principl": [18, 266, 267], "must": [18, 56, 58, 62, 74, 84, 100, 101, 103, 114, 116, 122, 123, 125, 126, 131, 136, 146, 147, 154, 155, 159, 185, 187, 196, 200, 203, 205, 207, 240, 243, 244, 245, 250, 251, 267], "third_party_librari": 19, "whose": [19, 82, 83, 86, 93, 95, 96, 98, 102, 111, 136, 147], "mypatch": 19, "sour": 19, "libhello": [19, 27, 51, 247, 248, 249, 251, 252, 255, 257, 258, 259, 262], "archiv": [19, 51, 84, 85, 136, 179, 196, 207, 252, 262], "head": [19, 51, 136, 227, 247, 248, 251, 252, 258, 262, 268], "strip_root": [19, 51, 196, 198, 252, 262], "awar": [19, 39, 40, 58, 64, 87, 106, 122, 123, 144, 227, 247, 248, 249, 251, 252, 255, 258, 262, 271], "branch": [19, 58, 74, 135, 136, 227, 246, 247, 248, 251, 258, 262, 265, 268, 270], "tag": [19, 58, 74, 85, 116, 135, 136, 141, 146, 227, 247, 248, 250, 251, 252, 258, 262, 268, 270], "patch_fil": [19, 51, 200], "7kb": [19, 252, 262], "50": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "cmakefil": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "libcrypto": [21, 132], "libssl": [21, 132], "abstract": [21, 49, 61, 68, 69, 74, 80, 180, 185, 203, 210, 220, 251], "rest": [21, 70, 80, 104, 146, 147, 196, 199, 208, 235, 236], "game": [21, 105, 266, 267], "algorithm": [21, 198], "ai": [21, 105], "coupl": [21, 29, 119, 240, 248, 251, 259], "package_nam": [21, 105, 142, 181, 231, 236], "component_nam": [21, 187, 189, 211], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 63, 85, 106, 146, 149, 187, 231, 240, 242, 243, 244, 245, 248, 251, 257, 258, 259], "packagetest": [21, 248, 251, 259], "barbarian": [21, 96, 106], "d6e361d329116": 21, "j16": [21, 251], "25": [21, 35, 79, 80, 147, 149, 248, 251, 256, 268], "37": [21, 181], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 248, 251], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 266], "NOT": [21, 26, 116, 136, 175, 187, 228, 248], "stack": 21, "incomplet": [21, 101, 104, 149], "occur": [21, 141, 198], "22": [21, 79, 81, 99, 147, 149, 241, 243, 244, 245, 250, 254, 255], "conanexcept": [21, 36, 56, 197, 198], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 149, 179, 180], "7": [24, 53, 56, 73, 78, 85, 121, 149, 269], "cortexa15t2hf": 24, "rc": [24, 53, 62, 85, 146, 188, 210, 212, 223], "rewrit": [24, 102], "sub": [24, 100, 107, 116, 147, 155, 196, 262], "conan_hom": [24, 36, 74, 96, 106, 144, 146, 147, 148, 149, 156, 157, 158], "myuser": [24, 29, 42, 56, 116, 145, 147, 150], "pkgconan": [24, 147, 216], "gnu98": [24, 149], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 85, 146, 147, 149, 205, 213, 241], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 211], "right": [24, 26, 59, 74, 98, 118, 175, 187, 261, 262, 267, 269], "2023": [24, 79, 81, 99, 268], "02": [24, 81, 99, 203, 268], "16": [24, 85, 99, 142, 146, 147, 149], "06": [24, 243], "42": [24, 80, 85, 99, 116, 175], "10": [24, 45, 53, 56, 85, 99, 113, 146, 147, 149, 217, 243], "utc": [24, 79, 81, 99, 243, 250, 254, 255, 268], "wizard": 26, "myconanappl": 26, "minimum": [26, 116, 137, 217, 250, 258], "suggest": [26, 70, 116, 123], "21": [26, 27, 99, 113, 120, 149, 188, 217], "rememb": [26, 36, 114, 213, 244], "api_level": [26, 27, 149, 217], "standard": [26, 27, 35, 70, 116, 119, 129, 143, 146, 147, 177, 182, 187, 188, 217, 221, 222, 227, 240, 241, 247, 249, 254, 258, 262, 269], "choic": [26, 149, 257], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 51, 205, 212, 248, 258, 268], "zlibvers": [26, 55, 240], "newstringutf": 26, "c_str": 26, "prepar": [26, 74, 112, 118, 127, 139, 174, 232, 241, 246, 250, 262, 271], "my_conan_app": 26, "view": [26, 29, 63, 99, 116, 121, 131, 153, 249], "past": [26, 84, 99], "task": [26, 56, 74, 136, 151, 152, 255, 267, 271], "conaninstal": 26, "element": [26, 31, 74, 108, 221, 222], "conanexecut": 26, "builddir": [26, 38, 41, 91, 96, 132, 187], "mkdir": [26, 56, 79, 195, 255, 268], "armv7": [26, 27, 149, 177, 180, 231], "x86": [26, 27, 84, 85, 87, 99, 108, 112, 146, 149, 168, 183, 196, 220, 224, 231, 267], "n": [26, 36, 42, 45, 51, 53, 55, 149, 159, 186, 220, 227, 240, 242, 247, 248, 258, 268], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 84, 141, 151], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 79, 122, 149, 183, 213, 224, 241, 250, 255, 267], "defaultconfig": 26, "adjust": [26, 27, 129, 179, 187, 188, 205, 206, 208, 249], "focu": [26, 258], "proil": 26, "_static": [26, 27, 149], "14": [26, 27, 73, 96, 99, 105, 106, 116, 147, 149, 160, 208, 224, 240, 241, 242, 250, 254, 258], "ndk_path": [26, 27, 85, 116, 132, 146, 188, 217], "luism": [26, 254, 256], "7075529": 26, "bin": [26, 27, 35, 39, 40, 53, 91, 96, 132, 147, 179, 188, 205, 206, 208, 211, 236, 241, 254, 256, 257], "android31": [26, 27], "llvm": [26, 27, 149], "prebuilt": [26, 27, 79, 95, 246, 253, 262], "darwin": [26, 27, 53, 96, 106, 147], "_share": [26, 27, 149], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 204, 205], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "respons": [26, 39, 40, 58, 64, 73, 85, 90, 98, 115, 116, 118, 123, 132, 134, 135, 146, 158, 196, 200, 217, 227, 250], "android_abi": [26, 176, 188], "exit": [26, 31, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 139], "prematur": 26, "essenti": [26, 45, 70, 147, 148], "absent": 26, "cmake_build_typ": [26, 187, 188], "endif": [26, 51, 242, 247, 248, 251, 258], "strequal": [26, 248], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 85, 127, 146, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "elseif": 26, "v8a": [26, 177], "armeabi": [26, 177], "v7a": [26, 177], "Not": [26, 74, 91, 96, 116, 123, 127, 154, 240, 245, 252, 266], "add_librari": [26, 42, 251, 257, 258], "virtual": [26, 58, 70, 114, 147, 242, 245, 249], "devic": [26, 27], "pair": [26, 114], "qr": 26, "click": [26, 29, 63, 208, 236], "brew": [27, 58, 85, 146, 230], "usr": [27, 114, 147, 207, 241], "choos": [27, 116, 187, 203, 231, 240, 258], "fit": [27, 82, 183, 267], "balanc": [27, 78], "unless": [27, 70, 84, 98, 108, 112, 114, 116, 125, 126, 146, 151, 200, 221, 240, 264], "know": [27, 31, 78, 86, 90, 116, 140, 149, 155, 187, 203, 242, 249, 251, 256, 263, 270], "bare": [29, 70, 250], "symbol": [29, 63, 144, 179, 188], "box": [29, 263], "consuming_packag": [29, 240, 241, 242, 243, 244, 245], "simple_cmake_project": [29, 240], "finish": [29, 53], "successfulli": [29, 53, 64, 241, 251, 259, 261], "23": [29, 47, 48, 86, 98, 102, 120, 142, 149, 188, 254, 255, 256, 261, 262, 263, 268], "compressor": [29, 35, 55, 187, 240, 241, 242, 244, 245], "sln": [29, 68, 220], "solut": [29, 68, 70, 74, 114, 129, 133, 221, 222, 235, 237, 266], "startup": 29, "breakpoint": 29, "void": [29, 42, 51, 55, 240, 242, 247, 258, 268], "deflateinit": [29, 55, 240], "defstream": [29, 55, 240], "z_best_compress": [29, 55, 240], "deflat": [29, 55, 240], "z_finish": [29, 55, 240], "f5": 29, "stop": [29, 98, 188], "Into": 29, "navig": [29, 63, 236], "zlib4f7275ba0a71f": 29, "zexport": 29, "deflateinit_": 29, "strm": 29, "stream_siz": 29, "z_streamp": 29, "const": 29, "deflateinit2_": 29, "z_deflat": 29, "max_wbit": 29, "def_mem_level": 29, "z_default_strategi": 29, "next_in": [29, 55, 240], "inspir": 30, "agnost": [30, 33, 98, 157], "enough": [31, 56, 58, 74, 90, 120, 127, 131, 146, 147, 151, 189, 244, 257, 266], "cmd_clean": 31, "your_conan_hom": [31, 155, 263], "Will": [31, 39, 40, 83, 86, 87, 93, 95, 96, 98, 102, 104, 108, 111, 116, 127, 136, 160, 179, 182, 187, 188, 192, 217, 231], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "conanoutput": [31, 155], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "group": [31, 85, 116, 271], "add_argu": [31, 155], "store_tru": 31, "parse_arg": [31, 155], "request_boolean": 31, "non_interact": [31, 85, 145, 146, 151], "output_remot": 31, "writeln": 31, "f": [31, 36, 39, 40, 56, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 105, 106, 107, 108, 109, 111, 112, 113, 116, 132, 136, 150, 156, 158, 159, 175, 188, 208, 223], "fg": [31, 247, 258], "all_rrev": 31, "recipe_revis": [31, 78, 116, 243], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 78], "latest_prev": 31, "argpars": [31, 155], "argumentpars": [31, 155], "visit": [31, 80, 82, 103, 114, 118, 236], "websit": [31, 155], "proce": [31, 42, 242], "translat": [31, 63, 68, 69, 73, 132, 182, 188, 205, 217, 221, 222, 244, 250, 251], "bg": 31, "font": 31, "foreground": 31, "background": [31, 151], "apart": [31, 53, 211], "predefin": [31, 47, 82, 105, 120, 142, 176, 188, 261, 263], "success": [31, 116, 141], "remotesapi": [31, 161, 171], "remoteregistri": 31, "searchapi": [31, 161, 173], "listapi": [31, 161, 168], "removeapi": [31, 161, 172], "deserv": [31, 146], "especi": [31, 58, 116, 255, 260, 271], "attent": [31, 146, 257], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 58], "elsewher": [35, 116, 135], "place": [35, 36, 42, 73, 80, 93, 96, 116, 118, 120, 132, 144, 156, 158, 175, 191, 196, 244, 250, 255, 256, 257, 269], "conanbuild": [35, 45, 53, 127, 132, 147, 185, 191, 192, 193, 203, 205, 224, 241, 244, 245, 256, 262], "17": [35, 63, 79, 85, 99, 113, 146, 147, 149, 212, 250, 254, 255], "2022": [35, 63, 75, 99, 113, 149, 243, 250, 254, 255], "big": [35, 114, 125, 149], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 185, 187, 240, 241, 242, 244, 245, 255, 261, 262, 263], "fact": [35, 114, 249], "limit": [35, 99, 108, 132, 183, 192, 196, 217, 240, 271], "ticket": 35, "manual": [35, 45, 63, 84, 100, 101, 103, 114, 127, 133, 267, 270], "exclus": [35, 83, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 108, 111, 112, 116, 117, 120, 132, 133, 136, 221], "cwd": [36, 98, 105, 134, 135, 141, 157, 170], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 105, 118, 221], "dependencies_sourc": 36, "preprocess": 36, "accomplish": 36, "source_deploi": 36, "kwarg": [36, 154, 157, 159, 200, 231], "robust": [36, 154], "dependency_sourc": 36, "iter": [36, 98, 103, 157, 159, 188, 190], "said": [36, 249, 267], "advanc": [37, 39, 40, 63, 70, 75, 116, 133, 147, 184, 189, 227, 235, 236, 267, 271], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 86, 101, 102, 103, 104, 117, 127, 133, 147, 187, 208, 211, 241, 243, 244, 256, 267], "different_opt": 39, "myoption": [39, 119, 139], "echo": [39, 40, 154, 175, 256], "off": [39, 40, 59, 64, 156, 188, 212, 248, 262], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 56, 74, 114, 116, 131, 132, 136, 244, 250, 259, 264], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 159, 188, 192], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 53, 116, 148, 175, 187, 203, 211, 213, 240, 248, 251, 259], "anyth": [39, 40, 70, 74, 194, 231, 241, 255, 256, 259, 268, 271], "identifi": [39, 40, 65, 77, 79, 81, 108, 116, 117, 242, 249, 256, 263], "construct": [39, 40], "Of": [39, 40, 70, 266], "cours": [39, 40, 266], "invis": [39, 40], "exactli": [39, 40, 70, 78, 127, 129, 131, 231, 256], "obtain": [39, 40, 56, 81, 82, 84, 117, 131, 137, 147, 179, 180, 185, 190, 192, 193, 194, 217, 220, 222, 227, 270], "disambigu": [39, 40, 187, 208], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 116, 175], "cmake_build_modul": [41, 187], "tc": [41, 48, 116, 127, 149, 182, 185, 188, 204, 205, 212, 217, 222, 223, 229, 248, 250, 252, 256, 258, 262], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 132, 187], "build_context": [41, 187, 219], "behav": [42, 203, 242], "protobuf": [42, 116, 120, 132, 187, 208], "perhap": 42, "pb": 42, "nonetheless": [42, 254], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 116, 117, 123, 127, 246, 249, 250, 252], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 257, 258], "build_interfac": 42, "cmake_current_source_dir": 42, "cmake_current_binary_dir": 42, "install_interfac": 42, "set_target_properti": [42, 251, 257, 258], "public_head": [42, 257, 258], "iostream": [42, 116, 258], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 146], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 51, 258, 268], "alloc": [42, 211], "shutdownprotobuflibrari": 42, "simpli": [42, 62, 147, 213, 214, 261], "argc": [42, 200], "argv": [42, 200], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 96, 102], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 91, 99], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 63, 84, 248, 254], "notic": [42, 63, 85, 116, 148, 155, 205, 208, 210, 211, 216, 217, 242, 247, 248, 249, 258], "arm": [42, 80, 149, 220, 241, 244], "mach": 42, "64": [42, 149, 183, 213, 224, 241, 267], "bit": [42, 51, 56, 122, 132, 147, 149, 155, 183, 196, 224, 241, 250, 255, 259, 270], "arbitrari": [43, 46, 63, 70, 101, 103, 131, 152, 269], "bazel": [43, 52, 57, 59, 85, 105, 146, 176, 209, 211, 212, 240], "popular": [45, 53, 55, 59, 66, 70, 149, 231, 240], "fmt": [45, 53, 102, 247, 248, 249, 258, 259], "mac": [45, 183, 259], "string_formatt": [45, 53], "ac": 45, "www": [45, 96, 97, 114, 116, 271], "org": [45, 58, 96, 97, 116, 146, 198], "softwar": [45, 96, 213, 231, 271], "autoconf": 45, "60": [45, 53], "html_node": 45, "configure_002eac": 45, "_": [45, 74, 116, 147, 151, 156, 176, 182, 208, 221, 255], "cstdlib": [45, 53], "exit_success": [45, 53, 55, 240, 242], "ac_prog_cxx": 45, "pkg_check_modul": 45, "ac_init": 45, "stringformatt": 45, "am_init_automak": 45, "wall": 45, "foreign": 45, "ac_config_srcdir": 45, "ac_config_fil": 45, "ac_output": 45, "automake_opt": 45, "subdir": [45, 114, 196], "aclocal_amflag": 45, "aclocal_flag": 45, "bin_program": 45, "string_formatter_sourc": 45, "string_formatter_cppflag": 45, "fmt_cflag": 45, "string_formatter_ldadd": 45, "fmt_lib": 45, "automak": 45, "pkgconf": 45, "vari": [45, 58, 74, 80], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 205], "conanbuildenv": [45, 193, 256, 262], "conanrun": [45, 53, 132, 138, 147, 185, 192, 194, 242, 259, 262], "conanrunenv": [45, 194, 262], "deactivate_conanbuild": [45, 193, 241, 244, 245, 262], "deactivate_conanrun": [45, 242, 262, 263], "_fmt": 45, "run_exampl": 45, "u": [45, 70, 73, 83, 86, 93, 95, 96, 98, 102, 111, 120, 244, 252], "ldflag": [45, 116, 132, 146, 147, 204, 205, 217, 223], "pkg_config_path": [45, 205, 207, 217], "m4": 45, "second": [45, 56, 79, 85, 114, 130, 146, 181, 198, 249, 256], "cmake_ex": [47, 79, 105], "foo": [47, 48, 49, 87, 114, 116, 129, 187, 188, 192, 196, 205, 207, 223], "correspond": [47, 63, 116, 188, 193, 194, 205, 208, 219, 242, 249, 251], "binarydir": 47, "sinc": [47, 48, 63, 96, 203, 231, 238, 261, 262, 263, 268], "everytim": [47, 48, 241, 261, 262, 263], "multi": [47, 48, 103, 132, 157, 181, 184, 185, 187, 221, 242, 244, 255, 261, 263, 265], "did": [47, 84, 175, 241, 242, 245, 247, 250, 252, 263, 270], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 188], "displaynam": 48, "buildpreset": [48, 188], "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 77, 120], "appconan": 49, "myvar1": [49, 147, 191], "my_user_var1": 49, "myvar": [49, 116, 132, 147, 175, 188, 191, 217, 256], "myprofil": [49, 98, 106, 147], "profile_dir": [49, 147], "evalu": [49, 78, 97, 98, 100, 102, 106, 114, 116, 125, 127, 133, 139, 146, 150, 166, 244, 267], "myvalue1": [49, 191], "system_nam": [49, 85, 146, 188], "simplest": [51, 118, 252, 257, 270], "hellorecip": [51, 56, 247, 248, 249, 250, 251, 252, 255, 258, 262, 268], "friend": [51, 248], "rule": [51, 78, 84, 114, 115, 116, 131, 150, 152, 153, 205, 208, 211, 264, 266, 269], "ifdef": [51, 242, 247, 258, 268], "ndebug": [51, 205, 242, 247, 258, 268], "hello_patch": 51, "conan_data": [51, 56, 125, 127, 200, 252], "complex": [51, 116, 128, 147, 175, 196, 219, 269], "bazeltoolchain": [53, 62, 105, 176, 209, 210], "workspac": [53, 62, 88, 211, 256], "demo": [53, 56, 114], "charg": [53, 130], "bzl": [53, 62, 211], "load_conan_depend": [53, 211], "rules_cc": [53, 211], "cc_binari": 53, "bazeldep": [53, 62, 105, 176, 209], "bazel_layout": [53, 142, 211], "conan_bzl": [53, 62, 210, 212], "franchuti": [53, 91], "bazelrc": [53, 85, 146, 210, 212], "38": [53, 96, 255], "272": 53, "lc": 53, "date": 53, "elaps": 53, "180": [53, 149], "critic": [53, 84, 250, 268], "68": [53, 95, 99], "sandbox": 53, "total": [53, 98, 142, 146, 149, 192, 248, 254], "simple_meson_project": 55, "stdlib": [55, 149, 188, 205, 240, 242], "stdio": [55, 240], "buffer_in": [55, 240], "256": [55, 198, 240], "mit": [55, 70, 105, 116, 128, 235, 240, 268], "easili": [55, 56, 73, 80, 114, 118, 119, 132, 136, 150, 157, 188, 189, 240, 248, 270, 271], "buffer_out": [55, 240], "z_stream": [55, 240], "zalloc": [55, 240], "z_null": [55, 240], "zfree": [55, 240], "opaqu": [55, 240], "avail_in": [55, 240], "uint": [55, 240], "strlen": [55, 240], "bytef": [55, 240], "avail_out": [55, 240], "sizeof": [55, 240], "next_out": [55, 240], "deflateend": [55, 240], "printf": [55, 240, 242], "size": [55, 192, 240, 242, 244, 245, 264], "lu": [55, 240], "conan_meson_": 55, "ini": [55, 67, 216, 240], "conan_meson_n": [55, 216], "233": [55, 240, 242, 244, 245], "147": [55, 240, 242, 244, 245], "pragmat": 56, "someon": [56, 267], "coordin": [56, 136, 196, 227], "who": [56, 269], "tri": [56, 95, 160, 240, 243], "capture_scm": 56, "update_conandata": [56, 195], "scm_url": 56, "scm_commit": 56, "get_url_and_commit": [56, 227], "checkout": [56, 58, 73, 74, 227, 247, 248, 251, 252, 258, 268], "myfold": [56, 98, 196], "m": [56, 58, 85, 87, 99, 108, 112, 146, 185, 193, 194, 207, 220, 221, 224, 248, 254, 270], "wip": 56, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 56, "buildabl": 56, "techniqu": 56, "imposs": [56, 79, 80, 147, 266, 267], "squash": 56, "19": [56, 73, 99, 149, 250, 255], "xdf": [56, 261], "gitignor": [56, 227], "anywai": [56, 116], "encod": [56, 150, 196, 222, 268], "password": [56, 107, 114, 145, 150, 151, 198, 236], "repeat": [56, 70, 116, 186, 193, 194, 255, 264], "consequ": 56, "orthogon": [56, 152, 158, 271], "ssh": [56, 150], "actor": 56, "ubuntu": [56, 70, 149, 231, 241], "v3": [56, 149, 245], "secret": [56, 114, 150, 151], "ssh_private_kei": 56, "v4": [56, 149], "webfactori": 56, "v0": [56, 237], "privat": [56, 70, 73, 74, 114, 128, 132, 146, 150, 175, 176, 235, 236, 237, 250, 258], "care": [56, 80], "receiv": [56, 73, 80, 100, 120, 154, 155, 158, 159, 160, 189, 217, 227, 250, 256, 264, 269], "riski": 56, "disclos": 56, "welcom": 57, "decentr": 57, "blog": [57, 63, 72], "social": 57, "mail": 57, "tracker": [57, 70], "question": [57, 70], "tabl": 57, "introduct": [57, 59, 103, 133, 143, 152, 232, 236, 239, 247, 255, 267, 271], "devop": 57, "clion": [57, 59, 188], "jfrog": [57, 59, 70, 236], "cheat": [57, 71], "sheet": [57, 71], "faq": [57, 70, 71, 116, 268], "video": [57, 70, 71, 266], "changelog": 57, "solari": [58, 70, 231], "suno": [58, 70, 149], "modern": [58, 73, 127, 200, 258, 271], "carefulli": 58, "sudo": [58, 85, 116, 132, 146, 231], "virtualenv": [58, 85, 146, 192, 193, 194, 245], "virtualenvwrapp": 58, "readthedoc": 58, "en": [58, 73, 196, 271], "venv": 58, "restart": [58, 63], "logout": [58, 82], "termin": [58, 70, 85, 99, 146, 154], "upgrad": [58, 187, 266, 271], "inconsist": 58, "somehow": 58, "userhom": 58, "attempt": [58, 63, 74, 85, 127, 136, 146, 149, 198], "yield": 58, "xyz": 58, "mark": [58, 63, 139], "interfer": 58, "pep": 58, "668": 58, "isol": [58, 74, 262, 267, 269], "isn": [58, 63], "debian": [58, 70, 149, 198, 231], "ensurepath": 58, "number": [58, 65, 70, 85, 131, 146, 149, 183, 186, 198, 200, 219, 220, 231, 254, 255, 269, 270, 271], "gatekeep": 58, "quarantin": 58, "browser": 58, "curl": [58, 63], "wget": 58, "util": [58, 63, 73, 81, 89, 116, 136, 179, 192, 196, 203, 231, 241, 257], "interpret": [58, 146, 175, 241], "conan_src": 58, "develop2": 58, "beta": [58, 116], "matter": [58, 98, 140, 146, 151, 201, 255, 266], "seamless": 59, "shelf": [59, 64, 156], "though": [59, 86, 99, 114, 116, 130, 146, 237, 243, 269], "yet": [59, 63, 78, 91, 95, 96, 127, 129, 155, 166, 204, 251], "resum": 59, "enhanc": 59, "autotoolsdep": [61, 176, 202], "wrapper": [61, 62, 67, 68, 69, 76, 141, 152, 179, 180, 185, 187, 198, 203, 210, 220, 227, 231, 250], "jetbrain": 63, "marketplac": 63, "higher": [63, 80, 98, 132, 133, 141, 145, 267, 269], "brows": 63, "conan_provid": 63, "cmake_project_top_level_includ": 63, "bear": [63, 248], "mind": [63, 240, 248, 259], "24": [63, 98, 147, 149, 203, 237, 255], "button": [63, 236], "appear": [63, 155, 157, 236, 262], "bottom": 63, "toolbar": 63, "wheel": 63, "checkbox": 63, "sequenti": [63, 70], "uncheck": 63, "haven": [63, 78, 251, 261, 264], "disappear": 63, "libcurl": 63, "imag": [63, 70, 81, 97, 105, 132, 236], "internet": [63, 96, 150, 255], "along": [63, 64, 84, 116, 187, 249], "ey": 63, "icon": 63, "snippet": 63, "project_nam": [63, 187, 240, 245], "cmake_cxx_standard": [63, 188], "reload": [63, 114], "recollect": [65, 136], "down": [65, 78, 79, 248, 254, 267, 268], "segment": 65, "histori": 65, "servic": [65, 234], "offer": [65, 116, 147], "dedic": [65, 70, 86, 107, 112, 120, 244, 268], "sf": [65, 85], "art": 65, "tf": [65, 79, 85, 86, 90, 248, 249, 257], "create_releas": 65, "mybuildname_releas": 65, "my_artifactori": 65, "mybuildname_aggreg": 65, "readme_build_info": 65, "md": [65, 116, 125, 126, 222, 262, 271], "bsd": 66, "maketoolchain": 66, "prop": [68, 127, 187, 221, 222], "myproject": [68, 220], "xcodebuild": [69, 176, 178, 181], "xcodetoolchain": [69, 176, 178, 181], "xcodeproj": [69, 180], "mobil": 70, "metal": 70, "scon": [70, 76, 176], "acceler": 70, "matur": [70, 116], "polici": [70, 73, 116, 175, 187, 188, 255, 264], "creator": [70, 73, 82, 106, 155, 243], "thousand": 70, "compani": [70, 116, 158, 235, 236], "high": [70, 104, 126, 198], "consol": [70, 141, 217, 227, 242], "logic": [70, 74, 117, 122, 123, 127, 131, 136, 149, 153, 156, 181, 182, 188, 214, 244, 264, 267, 269], "creation": [70, 74, 117, 149, 158, 227, 243], "webui": [70, 236], "protocol": [70, 116], "ldap": [70, 114], "topologi": 70, "conan_serv": [70, 114, 237], "boost": [70, 132, 142, 146, 154, 187], "poco": [70, 127, 136, 142], "signific": 70, "truth": [70, 75], "redhat": 70, "archlinux": 70, "raspbian": [70, 231], "desktop": 70, "likewis": [70, 120, 123, 131, 132, 136, 267, 269, 270], "runtim": [70, 116, 120, 132, 147, 149, 160, 191, 194, 203, 205, 217, 219, 222, 223, 242, 259], "onward": 70, "goal": [70, 119, 131, 138], "evolv": [70, 149, 175, 243, 265], "backward": 70, "incompat": [70, 120, 149, 175, 261], "disrupt": [70, 267], "label": [70, 91, 96, 97, 210, 211, 222], "preview": [70, 99, 121, 144, 153, 157, 159, 187, 196, 264], "year": [70, 271], "life": [70, 270], "eol": 70, "tomtom": 70, "audi": 70, "rti": 70, "continent": 70, "plex": 70, "electrolux": 70, "merced": 70, "benz": 70, "amaz": 70, "5k": 70, "star": 70, "count": 70, "300": 70, "cpplang": [70, 73], "slack": [70, 73], "discuss": [70, 166], "discord": 70, "plai": [70, 116, 183], "exercis": 70, "narr": 70, "explan": [70, 77, 95, 102, 116, 131, 149], "conduct": 70, "thread": [70, 85, 146, 149], "bad": [70, 136, 217, 252, 268], "confer": [70, 75], "talk": [70, 75], "evolut": [70, 267], "troubleshoot": 71, "concept": [72, 79, 239, 249, 263, 265, 267], "handi": [72, 116, 186, 252], "pdf": 72, "png": [72, 97, 105], "post": [72, 152, 158, 257], "goe": [72, 267], "behind": [73, 114], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [73, 99, 250, 262], "gnu11": [73, 149, 242, 250], "precompil": [73, 84, 98, 116, 130, 132, 211, 232, 255], "mayb": [73, 187, 249, 257], "influenc": [73, 242], "overcom": 73, "nest": [73, 196, 261], "agre": 73, "spell": [73, 149], "submit": [73, 127, 234], "Such": [73, 74, 243, 271], "httpconnect": 73, "debuglevel": 73, "netrc": 73, "honor": 73, "crlf": [73, 74, 268], "lf": [73, 268], "gitattribut": 73, "gitconfig": 73, "editor": 73, "notepad": 73, "playground": 74, "colleagu": 74, "kept": 74, "kind": [74, 103, 114, 125, 126, 149, 150, 151, 158, 236, 255, 269], "unit": [74, 118, 131, 138, 248, 250, 259], "among": [74, 78, 116, 130, 132, 149, 196, 222, 243, 244], "convert": [74, 105, 132, 179, 201, 249, 257], "reduc": [74, 137], "flat": [74, 175, 196], "strictli": [74, 90, 116, 120, 132, 205, 244, 250, 266], "extrem": [74, 267, 269], "complic": [74, 133], "workaround": [74, 133, 266], "Its": [74, 105, 116, 133, 231], "whenev": [74, 116, 125, 133, 136, 147, 183, 248], "abus": [74, 128, 256], "ninja": [74, 80, 85, 98, 104, 120, 127, 141, 146, 185, 188, 217, 245, 256], "entrant": 74, "undefin": [74, 80, 101, 103, 160, 196, 250, 252], "indirect": [74, 133], "reserv": [74, 80, 115], "namespac": [74, 187, 203, 205, 248], "_conan": [74, 114, 115], "sens": [74, 90, 101, 123, 134, 147, 149, 227, 242, 249], "rewritten": 74, "checksum": [74, 81, 84, 116, 176, 195, 198, 268], "educ": 75, "outdat": 75, "accu": 75, "diego": 75, "rodriguez": 75, "losada": 75, "fall": [78, 270], "ill": 78, "form": [78, 84, 87, 95, 99, 105, 108, 112, 114, 116, 120, 125, 126, 132, 136, 138, 231, 243, 244, 250, 268, 269], "taken": [78, 130, 149, 175, 188], "eras": [78, 131], "decid": [78, 114, 116, 120, 131, 134, 135, 244, 248, 266, 268, 269], "del": [78, 122, 131, 140, 249, 250, 252, 256], "gcc5": 78, "lost": 78, "default_xxx": 78, "default_build_mod": [78, 85, 146], "default_embed_mod": [78, 85, 146], "full_mod": [78, 79, 85, 116, 146, 271], "default_non_embed_mod": [78, 85, 146], "minor_mod": [78, 79, 85, 116, 133, 146, 175, 271], "default_python_mod": [78, 85, 146, 175], "default_unknown_mod": [78, 85, 146], "semver_mod": [78, 85, 116, 146], "confus": [78, 269], "safeti": 78, "emb": 78, "package_id_xxxx_mod": 78, "package_id_embed_mod": [78, 116], "package_id_non_embed_mod": [78, 116], "package_id_unknown_mod": [78, 116], "patch_mod": [78, 116, 175], "package_id_": 78, "non_emb": 78, "_mode": 78, "package_id_mod": [78, 91, 116, 249, 271], "differenti": [78, 149, 241], "expand": [78, 81, 123, 131, 144], "major_mod": [78, 116], "inlin": [79, 81, 254], "pure": [79, 132, 182, 188, 205, 212, 217, 222, 223, 255], "linker": [79, 85, 96, 132, 146, 182, 188, 203, 205, 212, 217, 222, 223, 241, 242], "8879e931d726a8aad7f372e28470faa1": [79, 81], "09": [79, 81, 99, 243], "52": [79, 81], "54": [79, 81], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [79, 81], "z": [79, 80, 81, 95, 116, 175, 206, 250], "quickli": [79, 90, 255], "632e236936211ac2293ec33339ce582b": 79, "34": [79, 254, 268], "3ca530d20914cf632eb00efbccc564da48190314": 79, "d125304fb1fb088d5b92d4f8135f4dff": 79, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": 79, "bump": [79, 175, 243, 271], "moon": [79, 155], "1c90e8b8306c359b103da31faeee824c": 79, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 79, "rebuilt": [79, 266, 268], "wil": 79, "49": [79, 99], "embed_mod": 79, "subset": [80, 123, 131, 149, 188], "new_subset": 80, "subvalue1": 80, "subvalue2": 80, "new_root_set": 80, "value1": [80, 116, 147], "value2": [80, 116, 147], "implictli": 80, "explicilti": 80, "implicitli": [80, 116, 149, 175], "build_test": [80, 86, 116, 188, 248], "option2": [80, 116], "option1": [80, 116], "wherebi": 80, "therebi": 80, "comment": [80, 99, 105, 144, 149, 153, 160, 187, 259, 266], "tune": [80, 250], "realli": [80, 86, 123, 149, 261, 266, 270], "retri": [80, 85, 145, 146, 196, 198], "spirit": 80, "myconf": [80, 116, 129, 131, 132, 146, 147], "myitem": [80, 131], "x64": [80, 129, 149, 220], "settings_build": [80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 256], "outcom": [80, 212], "irrelev": [80, 142], "reflect": [80, 179, 243], "97d5730b529b4224045fe7090592d4c1": [81, 99], "08": [81, 99, 268], "51": [81, 99, 269], "57": [81, 99], "d62dff20d86436b9c58ddc0162499d197be9de1": [81, 99], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [81, 99], "sha1": [81, 197, 198, 241], "cat": [81, 101, 102, 103, 104, 204, 242, 267], "compilerruntim": 81, "dynam": [81, 99, 116, 117, 134, 135, 147, 149, 158, 160, 217, 241, 242, 244, 270, 271], "compilerruntime_typ": 81, "193": [81, 149], "sha1sum": [81, 197], "386": 81, "seen": [81, 177, 243, 266, 270], "worthi": 82, "deployer_fold": [83, 96, 98], "nr": [83, 86, 88, 89, 90, 93, 95, 96, 97, 98, 102, 111], "profile_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "lockfile_out": [83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111], "lockfile_overrid": [83, 86, 90, 93, 95, 96, 98, 102, 111], "posit": [83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 111, 112], "vquiet": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "verror": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vwarn": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vnotic": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vstatu": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vverbos": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vdebug": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "disallow": [83, 86, 93, 95, 96, 98, 102, 111], "cascad": [83, 86, 93, 95, 96, 98, 102, 111], "fnmatch": [83, 85, 86, 93, 95, 96, 98, 102, 107, 111, 116, 196], "wildcard": [83, 86, 87, 93, 95, 96, 97, 98, 99, 102, 107, 109, 111, 196], "satisfi": [83, 86, 93, 95, 96, 98, 102, 111, 147, 243], "with_qt": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "cdc0d9d0e8f554d3df2388c535137d77": 84, "5cb229164ec1d245": 84, "conanmanifest": [84, 159, 240, 245], "liter": [84, 105, 147], "ident": [84, 116, 131, 175, 238, 242], "1cae77d6250c23b7": 84, "al": 84, "eventu": [84, 187], "extract": [84, 124, 132, 145, 196, 207, 252, 257], "package_queri": [84, 87, 99, 108, 112], "AND": [84, 87, 99, 108, 112, 168], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 84, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 84, "verify_ssl": [85, 148], "target_fold": 85, "origin2": 85, "target2": 85, "submodul": 85, "conan_config": [85, 181, 182], "recurs": [85, 144, 196], "deduc": [85, 116, 186, 192, 194, 198, 199, 223, 270], "verif": [85, 146, 198], "certif": [85, 114, 148, 198], "my_set": 85, "retry_wait": [85, 146, 198], "wait": [85, 146, 198], "gzip": [85, 146, 196], "compresslevel": [85, 146], "cacert_path": [85, 114, 146], "cacert": [85, 114, 146], "clean_system_proxi": [85, 146], "proxi": [85, 114, 146], "discard": [85, 133, 146], "client_cert": [85, 146], "tupl": [85, 116, 128, 146, 147, 196, 198, 227], "cert": [85, 146], "max_retri": [85, 146], "maximum": [85, 114, 116, 146, 183, 220, 250, 258], "no_proxy_match": [85, 146], "timeout": [85, 146], "allow_uppercase_pkg_nam": [85, 146], "temporarili": [85, 146, 147, 151], "uppercas": [85, 146, 151], "default_build_profil": [85, 146, 151], "default_profil": [85, 146, 151], "cmake_android_ndk": [85, 146], "enable_arc": [85, 146, 188], "arc": [85, 146, 188], "enable_bitcod": [85, 146, 188], "bitcod": [85, 146, 188], "enable_vis": [85, 146, 188], "sdk_path": [85, 146, 179, 180, 217], "cross_build": [85, 146, 217, 241, 259], "can_run": [85, 118, 138, 146, 259], "bool": [85, 146, 148, 183, 210, 216, 217, 219], "cuda": [85, 146, 188, 205], "objc": [85, 146, 188, 217], "objcxx": [85, 146], "fortran": [85, 146, 188, 205], "asm": [85, 146, 149, 188, 223], "hip": [85, 146, 188], "ispc": [85, 146, 188], "exelinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_exe_linker_flags_init": [85, 146, 188], "jx": [85, 146], "mp": [85, 146, 188], "linker_script": [85, 146, 188, 205, 212, 217], "sharedlinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_shared_linker_flags_init": [85, 146, 188], "skip_test": [85, 118, 146, 188, 210, 248, 254], "sysroot": [85, 91, 96, 146, 179, 188, 205, 217], "find_package_prefer_config": [85, 146], "cmake_find_package_prefer_config": [85, 146, 188], "presets_environ": [85, 146, 188], "wether": [85, 146], "system_processor": [85, 146, 188], "cmake_system_processor": [85, 146, 188], "system_vers": [85, 146, 188], "cmake_system_vers": [85, 146, 188], "toolchain_fil": [85, 146, 147, 188], "toolset_arch": [85, 146, 188], "toolset": [85, 146, 149, 188, 213, 219], "cmake_generator_toolset": [85, 146, 188], "install_strip": [85, 146, 185], "strip": [85, 146, 179, 185, 196, 200, 217, 227, 241], "launcher": [85, 146, 192, 193, 194, 204, 205, 224, 256, 259], "define_libcxx11_abi": [85, 146], "glibcxx_use_cxx11_abi": [85, 146], "host_triplet": [85, 146], "pkg_config": [85, 146, 207, 208, 217], "bazelrc_path": [85, 146, 210], "rcpath1": [85, 146, 210], "config1": [85, 146, 210], "installation_path": [85, 146, 213, 224], "oneapi": [85, 146, 149, 213], "setvars_arg": [85, 146, 213], "onto": [85, 146], "setvar": [85, 146, 213], "backend": [85, 114, 146, 217], "vs2010": [85, 146, 217], "vs2012": [85, 146], "vs2013": [85, 146], "vs2015": [85, 146, 217], "vs2017": [85, 146, 213, 217], "extra_machine_fil": [85, 146, 216], "bash": [85, 116, 146, 224, 237], "msy": [85, 146, 149, 237], "cygwin": [85, 146, 149], "wsl": [85, 146, 149], "sfu": [85, 146], "2019": [85, 146, 149, 213, 224], "max_cpu_count": [85, 132, 146, 147, 185, 220], "vs_version": [85, 146, 147, 149], "exclude_code_analysi": [85, 146, 221], "suppress": [85, 146, 188], "compile_opt": [85, 116, 132, 146, 222], "sudo_askpass": [85, 146, 231], "yum": [85, 146, 230], "pacman": [85, 146, 230], "choco": [85, 146, 231], "zypper": [85, 146, 230], "pkgutil": [85, 146, 230], "30": [85, 93, 99, 255], "test_fold": [86, 90, 248], "serv": [86, 114, 236, 242], "misus": 86, "mutual": [87, 98, 108, 112], "packagelist": [87, 112], "pgkg": 87, "resid": [88, 106], "my_project": [88, 93, 95, 96, 98, 102], "variou": [89, 133, 149, 262], "sb": 90, "vendor": [90, 150], "this_pkg": 90, "slower": [90, 125], "y": [90, 95, 116, 250], "invalid_build": [91, 96], "homepag": [91, 96, 97, 127], "win_bash_run": 91, "options_descript": 91, "options_definit": [91, 97], "generators_fold": [91, 96, 97, 127, 187, 188, 221], "srcdir": [91, 96, 132], "resdir": [91, 96, 132, 188, 205, 217], "frameworkdir": [91, 96, 132], "framework": [91, 96, 120, 132, 133, 208, 221, 229, 241, 248, 256], "ffa77daf83a57094149707928bdce823": [91, 99], "massiv": [91, 96], "spiffi": [91, 96], "delic": [91, 96], "unobtrus": [91, 96], "unencumb": [91, 96], "patent": [91, 96], "zlib774aa77541f8b": 91, "resolved_rang": 91, "closest": [92, 95], "why": [92, 95, 249, 254, 256], "5c0f3a1a222eebb6bff34980bcd3e024": 93, "be7ccd6109b8a8f9da81fd00ee143a1f5bbd5bbf": 93, "build_arg": 93, "ed8593b3f837c6c9aa766f231c917a5b": 93, "235f6d8c648e7c618d86155a8c3c6efb96d61fa1": 93, "pref": [93, 114, 127], "closest_binari": 95, "dc0e384f0551386cd76dc29cc964c95": 95, "1692672717": [95, 99], "b647c43bfefae3f830561ca202b6cfd935b56205": 95, "package_filt": [96, 155], "df": 96, "dot": [96, 155, 269], "myproject_fold": 96, "binutil": 96, "0dc90586530d3e194d01d17cb70d9461": 96, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 96, "cci": 96, "degrad": 96, "gpl": 96, "assembl": 96, "objcopi": 96, "objdump": 96, "multilib": 96, "target_arch": 96, "target_o": 96, "target_triplet": 96, "with_libquadmath": 96, "binut53bd9b3ee9490": 96, "416618fa04d433c6bd94279ed2e93638": 96, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 96, "866f53e31e2d9b04d49d0bb18606e88": 96, "zlibbcf9063fcc882": 96, "digraph": 96, "vi": 96, "j": [96, 116, 149, 216], "css": 96, "cloudfar": 96, "cdnj": 96, "cloudflar": 96, "ajax": 96, "info_graph": 96, "basi": [96, 105], "neon": 97, "msa": 97, "sse": 97, "vsx": 97, "api_prefix": 97, "graphic": 97, "redirect": [97, 99, 113, 114, 141, 151, 185, 261, 271], "deployer_packag": 98, "recomput": 98, "fallback": [98, 180, 271], "myconan": [98, 116], "bzip2": [98, 127, 193, 194, 221, 224], "compound": 98, "left": [98, 114, 250, 263, 269], "highest": 98, "myprofile3": 98, "myprofile1": [98, 147], "myprofile2": [98, 147], "minim": [98, 105, 183, 259], "immedi": [98, 132, 138, 146, 147, 221, 259], "uniqu": [98, 116, 118, 131, 146, 242, 249, 254, 268], "strict": [98, 101, 103, 147, 196, 267, 271], "newpkg": 98, "gb": 99, "graph_binari": 99, "gr": 99, "graph_recip": 99, "5d": [99, 108], "dai": [99, 108], "4w": [99, 108, 264], "hour": [99, 108], "26": 99, "mycompani": 99, "20": [99, 147, 149, 160, 193, 247, 250], "lite": 99, "shortest": 99, "46": 99, "53": [99, 113], "placehold": [99, 112, 191, 192, 250], "8b23adc7acd6f1d6e220338a78e3a19": 99, "ce3665ce19f82598aa0f7ac0b71ee966": 99, "31ee767cb2828e539c42913a471e821a": 99, "05": [99, 243], "39": [99, 243, 255], "d77ee68739fcbe5bf37b8a4690eea6ea": 99, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 99, "implicit": [99, 200, 267], "e4e1703f72ed07c15d73a555ec3a2fa1": 99, "07": [99, 113], "04": 99, "45": [99, 243, 254, 269], "fdb823f07bc228621617c6397210a5c6c4c8807b": 99, "4834a9b0d050d7cf58c3ab391fe32e25": 99, "33": [99, 254, 255], "31": [99, 120, 250, 268], "6a6451bbfcb0e591333827e9784d7dfa": 99, "29": [99, 243, 268], "67bb089d9d968cbc4ef69e657a03de84": 99, "47": [99, 243], "36": [99, 255], "5e196dbea832f1efee1e70e058a7eead": 99, "26475a416fa5b61cb962041623748d73": 99, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [99, 250], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 99, "human": 99, "zli": 99, "b58eeddfe2fd25ac3a105f72836b3360": 99, "01": [99, 203, 268], "d9b1e9044ee265092e81db7028ae10e0": 99, "192": [99, 114, 149, 160, 219], "denomin": 99, "deviat": 99, "mypytool": 101, "sort": [101, 103, 104, 132, 159, 189, 196, 267, 271], "manipul": [101, 103, 136, 196, 257], "moreov": 101, "scratch": [102, 260, 261], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 102, "1675126491": 102, "773": 102, "5f184bc602682bcea668356d75e7563b": 102, "1676913225": 102, "027": [102, 271], "733": 102, "e747928f85b03f48aaf227ff897d9634": 102, "1675126490": 102, "952": 102, "lock1": 103, "lock2": 103, "consolid": 103, "diverg": 103, "simplic": 103, "pkgb": 103, "app1": 103, "pkgawin": 103, "pkganix": 103, "gone": [103, 248, 259], "nix": [103, 196], "math": [104, 105, 133, 196, 266], "85d927a4a067a531b1a9c7619522c015": 104, "1702683583": 104, "3411012": 104, "fd2b006646a54397c16a1478ac4111ac": 104, "3544693": 104, "mytool": [104, 211], "othertool": 104, "downgrad": 104, "unlock": 104, "meson_lib": 105, "meson_ex": 105, "msbuild_lib": 105, "msbuild_ex": 105, "bazel_lib": 105, "bazel_ex": 105, "autotools_lib": 105, "autotools_ex": 105, "aid": 105, "boilerpl": [105, 116], "requires1": 105, "requires2": 105, "tool_requires1": 105, "tool_requires2": 105, "magic": 105, "mygam": 105, "mytempl": 105, "full_path": 105, "conan_vers": [105, 146], "parametr": 105, "brack": 105, "not_templ": 105, "image2": 105, "guess": [106, 147, 170, 240], "Be": [106, 122, 123, 144, 227, 249], "carlosz": 106, "ios_bas": 106, "ios_simul": 106, "clang_15": 106, "package_set": 106, "build_env": 106, "registri": [107, 236], "usernam": [107, 114, 147, 151], "insert": 107, "conan_login_": 107, "expos": [107, 114, 127, 147, 227], "new_nam": 107, "keyword": [108, 154, 200, 203], "intact": 108, "smell": [108, 268], "manifest": [112, 116, 258], "sys_vers": 113, "1316": 113, "mainli": [114, 237], "pro": [114, 235, 237], "conan_server_hom": 114, "server_dir": 114, "server_directori": 114, "prior": [114, 158], "hot": 114, "relaunch": 114, "jwt_secret": 114, "ijkhyoiouinmxcrtytrr": 114, "jwt_expire_minut": 114, "120": 114, "ssl_enabl": 114, "port": [114, 237], "9300": [114, 237], "public_port": 114, "host_nam": 114, "localhost": [114, 198, 236, 237], "authorize_timeout": 114, "1800": 114, "disk_storage_path": 114, "disk_authorize_timeout": 114, "updown_secret": 114, "hjhjujkjkjkjkluyyuuyhj": 114, "write_permiss": 114, "lasot": 114, "default_us": 114, "default_user2": 114, "read_permiss": 114, "jwt": 114, "random": [114, 187], "safe": [114, 116, 136, 183], "anytim": 114, "amount": 114, "ip": [114, 198], "domain": 114, "168": 114, "docker": [114, 236], "9999": 114, "p9300": 114, "traffic": 114, "somedir": [114, 207], "crt": 114, "pem": [114, 146], "reject": 114, "regist": 114, "plain": [114, 116], "premis": 114, "firewal": 114, "trust": 114, "sysadmin": 114, "restrict": [114, 116, 149], "comma": [114, 116], "allowed_user1": 114, "allowed_user2": 114, "packagea": 114, "john": [114, 116], "peter": 114, "custom_authent": 114, "authenticator_nam": 114, "collabor": [114, 163], "htpasswd": 114, "schiffner": 114, "uilianri": 114, "my_authent": 114, "get_class": 114, "myauthent": 114, "valid_us": 114, "plain_password": 114, "factori": 114, "custom_author": 114, "authorizer_nam": 114, "my_author": 114, "authenticationexcept": 114, "forbiddenexcept": 114, "myauthor": 114, "_check_conan": 114, "deni": [114, 196], "_check_packag": 114, "_check": 114, "check_read_conan": 114, "check_write_conan": 114, "check_delete_conan": 114, "check_read_packag": 114, "check_write_packag": 114, "check_delete_packag": 114, "conform": 114, "check_": 114, "conanfilerefer": 114, "meanwhil": 114, "_packag": 114, "packagerefer": 114, "443": 114, "server_nam": 114, "myservernam": 114, "mydomain": 114, "proxy_pass": 114, "ssl_certif": 114, "ssl_certificate_kei": 114, "mod_wsgi": 114, "apache2": 114, "site": [114, 116], "0_conan": 114, "virtualhost": 114, "80": 114, "wsgiscriptalia": 114, "dist": 114, "server_launch": 114, "wsgicallableobject": 114, "wsgipassauthor": 114, "grant": 114, "srv": 114, "helloconan": [115, 116, 179, 203, 255], "varieti": 115, "member": [115, 116, 127, 175], "_my_data": 115, "_my_help": 115, "lowercas": [116, 250], "101": 116, "charact": [116, 151, 191, 192, 250], "shorter": [116, 192], "z0": 116, "9_": 116, "alphanumer": [116, 250], "ing": 116, "pkgname": [116, 221, 243], "pre1": [116, 250, 269], "build2": [116, 250], "pkgversion": 116, "programmat": 116, "mychannel": 116, "short": [116, 250], "incred": 116, "spdx": 116, "peopl": 116, "smith": 116, "protocinstallerconan": 116, "protoc_instal": 116, "buffer": 116, "rpc": 116, "overview": 116, "eigenconan": 116, "eigen": 116, "tuxfamili": 116, "mylibconan": 116, "otherlib": 116, "otherus": 116, "bracket": [116, 269], "alpha": [116, 269], "tool_a": 116, "tool_b": 116, "gtest": [116, 120, 127, 133, 142, 221, 241, 248, 254, 259], "downstream": [116, 120, 132, 133, 175, 187, 266], "other_test_tool": 116, "pyreq": [116, 128, 156, 175], "myconanfilebas": [116, 128], "utilsbas": 116, "tmp": [116, 188, 196, 248, 249, 251, 252, 254, 257], "got": [116, 256, 262, 267], "shutil": [116, 136], "emul": [116, 149, 222, 267], "mistak": 116, "yaml": 116, "mylib": [116, 120, 147, 188, 205, 271], "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 116, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 116, "opt": [116, 192, 212, 213, 269, 271], "7zip": [116, 142, 147], "7z": 116, "determin": [116, 133, 147, 191, 242], "gnu20": [116, 149], "get_saf": [116, 122, 123, 214, 244], "compiler_vers": [116, 147, 183], "feasibl": [116, 132], "is_android": 116, "option3": 116, "option4": 116, "comparison": [116, 235, 269], "encapsul": 116, "zwave": 116, "reference_pattern": 116, "option_nam": 116, "condition": [116, 118, 119, 123, 127, 136, 221, 222, 244, 246, 251, 258], "otherpkg": 116, "some_opt": 116, "overridden": [116, 175, 198], "particularli": [116, 129, 131], "explanatori": 116, "reference_conanfile_methods_package_id": 116, "semver": [116, 228, 269, 271], "modif": [116, 131, 149, 191, 243, 268, 271], "unrelated_mod": 116, "ever": 116, "pocotimerconan": 116, "foorecip": 116, "myrecip": 116, "methodconan": 116, "export_fold": [116, 125], "codebas": 116, "androidndk": [116, 132], "define_path": [116, 129, 132, 191], "fill": [116, 158, 174, 207], "append_path": [116, 132, 191], "runtime_var": 116, "flag3": [116, 132], "flag1": [116, 132, 146, 147, 212], "flag2": [116, 132, 146, 147], "expandattributedsourc": [116, 132], "unset": [116, 132, 146, 147, 149, 191, 204], "flag0": [116, 132], "pop": [116, 217, 242], "friendli": 116, "emit": 116, "taskflow": 116, "odr": [116, 133], "violat": [116, 133], "libressl": 116, "boringssl": 116, "libav": 116, "ffmpeg": [116, 154], "mariadb": 116, "mysql": 116, "libjpeg": 116, "9d": 116, "turbo": 116, "libjpegturbo": 116, "openbla": 116, "cbla": 116, "lapack": 116, "redund": 116, "myconsum": [116, 256], "my_android_ndk": 116, "var1": [116, 147], "green": 116, "neutral": 116, "white": [116, 151], "yellow": 116, "red": 116, "three": [116, 129, 146, 182, 191, 222, 231], "distinct": 116, "tend": 116, "auto_shared_fp": 116, "auto_header_onli": 116, "parenthes": 116, "validate_build": 117, "mybuildsystem": 118, "interrupt": 118, "lift": 118, "info_build": 119, "myvalu": [119, 188, 191, 217], "fullsourc": 119, "theori": [120, 244], "parameter": 120, "ran": [120, 137, 157, 248, 254], "nutshel": [120, 205], "mylibrecip": 120, "myapprecip": 120, "myapp": [120, 271], "gettext": 120, "libgettext": 120, "constrain": 122, "sse2": 122, "with_sse2": 122, "elif": 123, "deploy_fold": [124, 167, 191], "destinaton": 124, "mor": 124, "destin": [125, 126, 196, 198, 221], "intrins": 125, "myfil": [126, 175, 196, 271], "export_conandata_patch": [126, 195], "conanvcvar": [127, 188, 217, 222, 223, 224], "repetit": [127, 132], "mygener": [127, 156], "mygen": [127, 156], "dylib": [127, 132, 179, 196, 203, 242, 249, 257], "dll": [127, 130, 132, 192, 242, 257], "xxxdir": 127, "indirectli": 127, "buildenv_info": [127, 129, 191, 193, 251, 256], "runenv_info": [127, 129, 191, 193, 194, 251], "is_build_context": 127, "fashion": 127, "pcre": 127, "44": 127, "expat": 127, "35": [127, 255, 268], "1k": 127, "criteria": 127, "direct_host": 127, "direct_build": 127, "heavili": 127, "mycomp": 127, "mylicens": 128, "overwritten": [128, 132, 136], "baseconan": 128, "derivedconan": 128, "deriv": [128, 136], "uncondition": 128, "datafil": 128, "my": [128, 129, 132, 147, 149, 158, 175, 198, 205, 217], "awesom": 128, "me": 128, "word": [128, 149, 268], "__init__": [128, 156, 158, 180, 223], "constructor": [128, 189, 200, 203, 205, 218, 227, 231], "subdirectori": 129, "classic": [129, 149, 213, 253], "hopefulli": 129, "release64": 129, "stub": 129, "my_includ": 129, "sayconan": [129, 263], "mydata_path": 129, "obvious": 129, "mydata_path2": 129, "my_conf_fold": 129, "creating_packages_package_method": 130, "relax": [131, 267], "assumpt": [131, 244, 267], "couldn": 131, "disadvantag": [131, 270], "lose": 131, "although": [131, 192, 259], "predict": 131, "obj": 132, "preprocessor": [132, 182, 188, 205, 217, 222, 223], "property_nam": 132, "property_valu": 132, "xml": [132, 222], "pkg_config_nam": [132, 208], "zmq": 132, "zmq_static": 132, "ws2_32": 132, "get_properti": 132, "crypto": [132, 208, 211], "define_crypto": 132, "headers_ssl": 132, "obj_ext": 132, "prepend_path": [132, 191], "mypath": [132, 191, 256], "myarmarch": 132, "otherarch": 132, "my_android_arch": 132, "myrunpath": 132, "settin": 132, "mypkghom": 132, "ti": 132, "former": [132, 267], "virtualrunenv": [132, 147, 176, 188, 190, 191, 192, 242, 251, 256], "transmit": [132, 271], "exceptionhandl": [132, 146], "async": [132, 146, 200], "bundl": [132, 236], "android_ndk": 132, "albeit": 132, "switch": [132, 160, 181, 221, 222], "adequ": 132, "claus": 133, "catch2": [133, 248], "seem": 133, "ambigu": [133, 271], "priorit": [134, 135, 189, 196, 266, 267], "tarbal": [136, 227, 235, 268], "check_sha1": [136, 195], "pococonan": 136, "zip_nam": 136, "pocoproject": 136, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 136, "unlink": 136, "bypass": 136, "appar": 136, "problemat": [136, 267], "destroi": [136, 149, 160], "lead": [136, 244], "frozen": 136, "realiz": [137, 243, 267], "gtk": 137, "undesir": 137, "libgtk": 137, "pkg1": [137, 187, 231], "pkg2": [137, 187, 231], "prove": [138, 259], "conaninvalidconfigur": [139, 140, 183, 244, 266], "succe": [139, 231], "cfc18fcc7a50ead278a7c1820be74e56": 139, "warn_tag": 141, "custom_tag": 141, "ignore_error": 141, "appropri": 141, "unnot": 141, "ninja_stdout": 141, "w": [141, 159], "stringio": 141, "pin": [142, 243, 268, 270], "revision1": 142, "70": 142, "revision2": 142, "00": [142, 203, 268], "inde": 142, "vs_layout": [142, 176, 214, 218], "aka": [143, 179], "preced": [144, 176, 188, 191, 205, 208], "project1": [144, 221], "project2": [144, 221], "unauthor": 145, "ask": [145, 151], "conan_login_usernam": [145, 151], "conan_login_username_": [145, 151], "conan_password": [145, 151], "conan_password_": [145, 151], "admin": [145, 236], "emptiv": 145, "getenv": [145, 147, 150, 192], "mytk": [145, 150], "mytoken": [145, 150], "briefli": [146, 233, 249, 250], "whatev": [146, 147, 155, 213], "confvar": [146, 147], "hint": [146, 147], "yyi": [146, 147], "ins": 146, "zzz": [146, 147], "everywher": 146, "discret": 146, "establish": 146, "packagenam": [146, 187], "orgnam": 146, "cpu_count": 146, "myconf1": 146, "detect_o": [146, 147], "myconf2": 146, "detect_arch": [146, 147], "conan_home_fold": 146, "eval": 146, "integ": [146, 228], "unmodifi": 146, "rid": [146, 147], "f1": 146, "f2": 146, "f0": 146, "pai": [146, 257], "tl": [146, 148, 198], "constitut": 146, "implic": [146, 249], "tool1": 147, "tool4": 147, "environmentvar1": 147, "123": [147, 175], "dlib": 147, "ab": 147, "relpath": 147, "my_pkg_opt": 147, "myvalue12": 147, "mypath1": [147, 191], "path11": 147, "path12": 147, "comp": [147, 208], "chanel": 147, "ration": 147, "kitwar": 147, "3488ec5c2829b44387152a6c4b013767": 147, "20496b332552131b67fb99bf425f95f64d0d0818": 147, "profile_var": 147, "my_build_typ": 147, "referenc": [147, 187, 198], "loop": 147, "meant": [147, 250, 259], "judici": 147, "compiler_ex": 147, "detect_default_compil": 147, "default_msvc_runtim": 147, "default_compiler_vers": 147, "default_cppstd": 147, "detect_libcxx": 147, "v143": [147, 149], "gnu14": [147, 149, 205, 241], "default_msvc_ide_vers": 147, "digit": [147, 149, 269, 271], "zlib_clang_profil": 147, "my_var": [147, 256], "statement": 147, "gcc_49": 147, "my_remote_nam": 148, "windowsstor": 149, "windowsc": 149, "ios_vers": 149, "iphoneo": [149, 217], "iphonesimul": 149, "watchsimul": 149, "appletvo": 149, "appletvsimul": 149, "xrsimul": 149, "catalyst": 149, "aix": 149, "arduino": 149, "board": 149, "emscripten": 149, "neutrino": 149, "vxwork": 149, "ppc32be": 149, "ppc32": [149, 183, 231], "ppc64le": [149, 231], "ppc64": [149, 183], "armv4": 149, "armv4i": 149, "armv5el": [149, 177], "armv5hf": [149, 177], "armv6": [149, 177], "armv7hf": [149, 177, 231, 241], "armv7k": 149, "armv8_32": 149, "sparc": [149, 183, 188], "sparcv9": [149, 183], "mip": 149, "mips64": 149, "avr": 149, "s390": 149, "s390x": [149, 231], "wasm": 149, "sh4le": 149, "e2k": 149, "v5": 149, "v6": [149, 177], "v7": 149, "xtensalx6": 149, "xtensalx106": 149, "xtensalx7": 149, "sun": 149, "posix": 149, "libcstd": 149, "libstdcxx": 149, "libstlport": 149, "win32": 149, "mingw": [149, 239, 245], "dwarf2": 149, "sjlj": 149, "seh": 149, "98": 149, "gnu23": 149, "170": 149, "190": 149, "191": 149, "v110_xp": 149, "v120_xp": 149, "v140_xp": 149, "v141_xp": 149, "runtime_vers": 149, "v140": 149, "v141": 149, "v142": 149, "2021": [149, 213], "icx": [149, 213], "dpcpp": [149, 213], "03": [149, 243, 268], "gnu03": 149, "gpp": 149, "ne": 149, "accp": 149, "acpp": 149, "ecpp": 149, "mcst": 149, "lcc": 149, "relwithdebinfo": 149, "minsizerel": 149, "hardwar": 149, "microprocessor": 149, "microcontrol": 149, "famili": 149, "2015": 149, "2017": [149, 213, 240, 242, 244, 245], "finer": 149, "1913": 149, "dpc": [149, 213], "suppos": 149, "311": 149, "brief": [149, 236, 239], "arch_build": 149, "arch_target": 149, "powerpc": [149, 231], "endian": 149, "littl": [149, 155], "soft": 149, "float": 149, "swift": 149, "a6": 149, "a6x": 149, "chip": 149, "iphon": 149, "5c": 149, "ipad": 149, "k": 149, "aarch32": 149, "ilp32": 149, "a12": 149, "chipset": 149, "xr": [149, 196], "scalabl": [149, 235, 236], "microsystem": 149, "interlock": 149, "pipelin": [149, 151], "formerli": 149, "atmel": 149, "microchip": 149, "390": 149, "ibm": 149, "javascript": 149, "low": 149, "assembli": 149, "byte": [149, 196], "hitachi": 149, "superh": 149, "2000": 149, "512": 149, "vliw": 149, "2cm": 149, "2c": 149, "moscow": 149, "4c": 149, "8c": 149, "8c1": 149, "1c": 149, "1ck": 149, "8c2": 149, "8cb": 149, "2c3": 149, "12c": 149, "16c": 149, "32c": 149, "xtensa": 149, "lx6": 149, "dpu": 149, "esp32": 149, "esp8266": 149, "lx7": 149, "s2": 149, "s3": 149, "_glibcxx_use_cxx11_abi": [149, 188, 205], "abi": [149, 177, 241], "wise": 149, "cento": [149, 231], "rogu": 149, "wave": 149, "stlport": 149, "apach": 149, "dinkum": 149, "abridg": 149, "rhel6": 149, "cache_vari": 149, "some_centos_flag": 149, "usabl": 149, "anymor": 149, "mycompil": 149, "my_custom_compil": 149, "sync": [149, 200], "tarballnam": 150, "bearer": 150, "mypassword": 150, "hardcod": [150, 259, 269], "difficult": [150, 175, 248, 270], "remote_nam": 151, "challeng": 151, "unauthent": 151, "unattend": 151, "stuck": 151, "autodetect": [151, 188], "tty": 151, "no_color": 151, "conan_color_dark": 151, "scheme": [151, 269, 271], "light": 151, "dark": 151, "mypythoncod": [152, 264], "altogeth": [152, 155, 188], "pre_build": [152, 158], "complement": 152, "qualiti": [152, 158], "facilit": [152, 157], "intercept": 154, "commmand": 154, "startswith": 154, "caller": 154, "heavy_pkg": 154, "qt": 154, "abseil": 154, "_commands_": 155, "cmd_": 155, "your_command_nam": 155, "cmd_hello": 155, "cmd_bye": 155, "topic_nam": 155, "topic1": 155, "topic2": 155, "cmd_command": 155, "output_json": 155, "parser": 155, "hello_moon": 155, "subpars": 155, "act": 155, "narg": 155, "add_reference_arg": 155, "mygroup": 155, "mycommand": 155, "mycommand_mysubcommand": 155, "add_my_common_arg": 155, "chose": 155, "format_graph_html": 155, "format_graph_info": 155, "field_filt": 155, "format_graph_json": 155, "format_graph_dot": 155, "graph_info": 155, "deps_graph": [155, 167], "command_subcommand": 155, "child": 155, "arg1": [155, 185, 213], "arg2": [155, 185, 213], "arg3": 155, "_conanfil": 156, "deps_info": 156, "repeatedli": [157, 271], "my_custom_deploy": 157, "hook_exampl": 158, "pre_export": 158, "field_valu": 158, "getattr": 158, "abort": 158, "hook_": 158, "replace_in_fil": [158, 195, 248], "post_packag": 158, "isdir": 158, "custom_modul": 158, "hook_print": 158, "my_print": 158, "hook_ful": 158, "pre_sourc": 158, "pre_packag": 158, "pre_package_info": 158, "post_package_info": 158, "artifacts_fold": 159, "signature_fold": 159, "conan_packag": [159, 240, 245], "written": [159, 251, 271], "twice": 159, "conan_sourc": 159, "signer": 159, "asc": 159, "listdir": 159, "isfil": 159, "profile_plugin": 160, "ordereddict": [160, 189], "profilesapi": [161, 170], "installapi": [161, 167], "graphapi": [161, 166], "exportapi": [161, 165], "newapi": [161, 169], "uploadapi": [161, 174], "downloadapi": [161, 164], "cache_fold": 162, "global_conf": 163, "settings_yml": 163, "load_root_test_conanfil": 166, "tested_refer": 166, "tested_python_requir": 166, "recipe_consum": 166, "load_graph": 166, "root_nod": 166, "check_upd": 166, "load_root_nod": 166, "analyze_binari": 166, "build_mod": 166, "build_modes_test": 166, "tested_graph": 166, "buildmod": 166, "install_binari": 167, "intal": 167, "install_system_requir": 167, "only_info": 167, "install_sourc": 167, "install_consum": 167, "deploy_packag": 167, "filter_packages_configur": 168, "pkg_configur": 168, "pkgrefer": 168, "pkgconfigur": 168, "get_templ": 169, "template_fold": 169, "get_home_templ": 169, "template_nam": 169, "get_default_host": 170, "get_default_build": 170, "get_profil": 170, "get_path": 170, "sin": 170, "alphabet": [170, 269], "only_en": 171, "check_upstream": 174, "package_list": 174, "enabled_remot": 174, "upload_data": 174, "get_backup_sourc": 174, "234": 175, "mybas": 175, "cool": 175, "super": [175, 205], "pyreq_path": 175, "myfile_path": 175, "mynumb": 175, "gradual": 175, "hierarchi": 175, "is_apple_o": [176, 178], "to_apple_arch": [176, 178], "envvar": [176, 190, 191, 193, 194], "intelcc": 176, "basic_layout": 176, "nmaketoolchain": [176, 218], "sconsdep": 176, "armv5": 177, "lc_id_dylib": [179, 203], "lc_load_dylib": [179, 203], "rpath": [179, 188, 203], "lc_rpath": [179, 203], "outlin": 179, "libnam": 179, "my_execut": 179, "add_rpath": 179, "executable_path": 179, "use_settings_target": 179, "ranlib": 179, "lipo": 179, "codesign": 179, "isysroot": [179, 217], "sdk_platform_path": 179, "sdk_platform_vers": 179, "libtool": 179, "alltarget": 180, "i386": [180, 217], "sdkroot": 180, "ios8": 180, "skd": 180, "conan_libpng": 181, "conan_libpng_libpng": 181, "conan_libpng_libpng_debug_x86_64": 181, "conan_libpng_libpng_release_x86_64": 181, "conan_zlib": [181, 221], "conan_zlib_zlib": 181, "conan_zlib_zlib_debug_x86_64": 181, "conan_zlib_zlib_release_x86_64": 181, "system_header_search_path": 181, "gcc_preprocessor_definit": 181, "other_cflag": 181, "other_cplusplusflag": 181, "framework_search_path": 181, "library_search_path": 181, "other_ldflag": 181, "conan_libpng_debug_x86_64": 181, "package_root_": 181, "releaseshar": [181, 187, 221, 258], "mycustomconfig": [181, 221], "conantoolchain_release_x86_64": 182, "conantoolchain_debug_x86_64": 182, "conantoolchain": [182, 222], "conan_global_flag": 182, "conantoolchain_": [182, 222], "_x86_64": 182, "clang_cxx_librari": 182, "clang_cxx_language_standard": 182, "macosx_deployment_target": 182, "mmacosx": 182, "_cpu_count": 183, "cgroup": 183, "skip_x64_x86": 183, "m1": [183, 217, 259], "gnu_extens": 183, "cppstd_default": 183, "dxxx": 185, "dvar": 185, "build_tool_arg": 185, "barg1": 185, "barg2": 185, "underli": 185, "diagnost": 185, "dcmake_verbose_makefil": 185, "maxcpucount": 185, "cmake_gener": 186, "shared_fals": 186, "shared_tru": 186, "chosen": [186, 213], "cmake_prefix_path": [187, 188], "cmake_module_path": [187, 188], "findxxx": 187, "conandeps_legaci": 187, "cmake_binary_dir": 187, "enumer": 187, "overal": 187, "releasedshar": 187, "my_tool": [187, 208, 211], "collid": [187, 208, 271], "capnproto": [187, 208], "_build": [187, 208], "81": 187, "fakecomp": 187, "cmake_module_file_nam": 187, "cmake_module_target_nam": 187, "dep_nam": 187, "get_cmake_package_nam": 187, "module_mod": 187, "get_find_mod": 187, "cmake_target_alias": 187, "rout": 187, "cmake_set_interface_link_directori": 187, "pragma": 187, "nosonam": 187, "sonam": 187, "cmake_config_version_compat": 187, "samemajorvers": 187, "sameminorvers": 187, "exactvers": 187, "configvers": 187, "myfilenam": [187, 198], "myfooalia": 187, "mycompon": [187, 208, 211], "varcompon": 187, "myfilenameconfig": 187, "findmyfilenam": 187, "zlibconan": 187, "alter": 187, "colon": 187, "new_component_target_nam": 187, "buildir": 187, "popul": [187, 241], "cmake_map_imported_config_": 187, "dcmake_map_imported_config_coverag": 187, "myvar_valu": 188, "mydefin": [188, 217], "mydef_valu": [188, 217], "cmake_path": 188, "cmake_position_independent_cod": 188, "nmake": [188, 189, 223], "easier": [188, 271], "schema": [188, 196, 222], "testpreset": 188, "jon": 188, "mydef": [188, 217], "myconfigdef": 188, "mydebugvalu": 188, "myreleasevalu": 188, "add_definit": 188, "cachevari": 188, "foo2": 188, "ON": [188, 241, 262], "myconfigvar": 188, "sentenc": 188, "extra_cxxflag": [188, 205, 223], "extra_cflag": [188, 205, 223], "extra_sharedlinkflag": 188, "extra_exelinkflag": 188, "clash": 188, "filepath": 188, "mytoolchainpackag": 188, "mytoolchain": 188, "mytoolrequir": 188, "toolchain1": 188, "toolchain2": 188, "yyyi": 188, "ninclud": 188, "generic_system": 188, "cmake_c_compil": 188, "cmake_cxx_compil": 188, "android_system": 188, "android_platform": 188, "android_stl": 188, "android_ndk_path": 188, "apple_system": 188, "cmake_osx_architectur": 188, "cmake_osx_sysroot": 188, "arch_flag": [188, 205], "m32": 188, "m64": 188, "vs_runtim": 188, "cmake_msvc_runtime_librari": 188, "cmake_cxx_extens": 188, "cmake_flags_init": 188, "cmake_xxx_flag": 188, "conan_xxx": 188, "cmake_cxx_flags_init": 188, "conan_cxx_flag": 188, "try_compil": 188, "in_try_compil": 188, "find_path": 188, "cmake_skip_rpath": 188, "skip_rpath": 188, "build_shared_lib": [188, 251, 262], "output_dir": 188, "cmake_install_xxx": 188, "cmake_install_prefix": [188, 257], "cmake_install_bindir": 188, "cmake_install_sbindir": 188, "cmake_install_libexecdir": 188, "cmake_install_libdir": 188, "cmake_install_includedir": 188, "cmake_install_oldincludedir": 188, "cmake_install_datarootdir": 188, "mybin": [188, 205], "myinclud": [188, 205], "myre": [188, 205], "block_nam": 188, "new_tmp": 188, "other_toolset": 188, "generic_block": 188, "methodtyp": 188, "mygenericblock": 188, "helloworld": 188, "myblock": 188, "mynewblock": 188, "64bit": [188, 267], "32bit": [188, 267], "ppc": 188, "r23c": 188, "cmake_c_flags_init": 188, "cmake_xcode_attribute_enable_bitcod": 188, "cmake_xcode_attribute_clang_enable_objc_arc": 188, "cmake_xcode_attribute_gcc_symbols_private_extern": 188, "cmake_sysroot": 188, "cmp0149": 188, "cmake_rc_compil": 188, "cmake_objc_compil": 188, "objcpp": [188, 217], "cmake_objcxx_compil": 188, "cmake_cuda_compil": 188, "cmake_fortran_compil": 188, "cmake_asm_compil": 188, "cmake_hip_compil": 188, "cmake_ispc_compil": 188, "collaps": 189, "aggregated_cpp_info": 189, "topological_sort": 189, "revers": 189, "dep_cppinfo": 189, "get_sorted_compon": 189, "fewer": 189, "other_cppinfo": 189, "myvar2": 191, "myvalue2": 191, "myvar3": 191, "myvalue3": 191, "myvar4": 191, "mypath2": 191, "mypath3": 191, "env1": [191, 192], "env2": 191, "compose_env": 191, "prevail": [191, 266], "autootoolsdep": 191, "buildenv": [191, 213, 241], "runenv": 191, "mypkg_data_dir": 191, "datadir": [191, 208, 217], "filesystem": [191, 198], "deploy_base_fold": 191, "save_script": 192, "my_env_fil": 192, "ps1": [192, 193, 194, 245], "var2": 192, "variable_refer": 192, "penv": 192, "32k": 192, "2048": 192, "closer": 192, "varnam": 192, "ld_library_path": [193, 194, 242, 251, 256], "deactivate_conanbuildenv": [193, 241, 244, 245, 248], "accumul": [193, 194, 204, 229], "auto_gener": [193, 194], "dyld_library_path": [194, 242], "dyld_framework_path": [194, 242], "deactivate_conanrunenv": 194, "rm": 195, "rmdir": 195, "chdir": 195, "trim_conandata": 195, "collect_lib": 195, "check_md5": 195, "check_sha256": 195, "absolute_to_relative_symlink": [195, 257], "remove_external_symlink": 195, "remove_broken_symlink": 195, "ignore_cas": 196, "insensit": 196, "utf": [196, 222], "otherfil": 196, "robocopi": 196, "abe2h9f": 196, "file_path": [196, 197], "mydir": 196, "newdir": 196, "do_someth": 196, "tzb2": 196, "bz2": 196, "txz": 196, "xz": 196, "keep_permiss": [196, 198], "bigfil": 196, "danger": 196, "inter": 196, "libmylib": [196, 203], "stare": 196, "libmath": 196, "other_libdir": 196, "rwxr": 196, "lrwxr": 196, "md5sum": 197, "sha256sum": 197, "md5": 198, "ftp": 198, "impli": [198, 268, 271], "overriden": 198, "httpbasic": 198, "sha": 198, "someurl": 198, "somefil": 198, "e5d695597e9fa520209d1b41edad2a27": 198, "ia64": 198, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 198, "base_path": 200, "patch_str": 200, "fuzz": 200, "fuzzi": 200, "0001": 200, "buildflatbuff": 200, "0002": 200, "patch_typ": 200, "patch_sourc": 200, "flatbuff": 200, "5650": 200, "patch_descript": 200, "misc": 200, "1232": 200, "1292": 200, "g_test_add_func": 200, "paus": 200, "cancel": 200, "do_pause_cancel_test": 200, "g_test_add_data_func": 200, "steal": 200, "gint_to_point": 200, "do_stealing_test": 200, "length": 200, "do_response_informational_content_length_test": 200, "ret": 200, "g_test_run": 200, "0003": 200, "base_fold": 201, "configure_arg": 203, "make_arg": 203, "_conanbuild": [203, 205], "destdir": 203, "unix_path": [203, 218], "install_nam": 203, "cmdsize": 203, "48": 203, "offset": 203, "stamp": 203, "jan": 203, "1970": 203, "loader": 203, "wl": [203, 207], "conanautotoolsdep": 204, "undesired_valu": 204, "seamlessli": 205, "precalcul": 205, "my_argu": 205, "sbindir": [205, 217], "oldincludedir": 205, "datarootdir": 205, "he": 205, "extra_defin": [205, 223], "extra_ldflag": [205, 223], "gcc_cxx11_abi": 205, "build_type_flag": 205, "sysroot_flag": 205, "apple_arch_flag": [205, 217], "apple_isysroot_flag": [205, 217], "msvc_runtime_flag": [205, 218], "myflag": 205, "update_configure_arg": 205, "updated_flag": 205, "update_make_arg": 205, "update_autoreconf_arg": 205, "xxxxxx_arg": 205, "prune": [205, 267], "gold": [205, 217], "lld": [205, 217], "nvcc": 205, "fc": 205, "mk": 206, "conan_dep": 206, "conan_name_zlib": 206, "conan_version_zlib": 206, "conan_reference_zlib": 206, "conan_root_zlib": 206, "zlib273508b343e8c": 206, "conan_include_dirs_zlib": 206, "conan_include_dir_flag": 206, "conan_lib_dirs_zlib": 206, "conan_lib_dir_flag": 206, "conan_bin_dirs_zlib": 206, "conan_bin_dir_flag": 206, "conan_libs_zlib": 206, "conan_lib_flag": 206, "conan_include_dir": 206, "conan_lib_dir": 206, "conan_bin_dir": 206, "conan_lib": [206, 263], "conan_define_flag": 206, "conan_system_lib_flag": 206, "lz": [206, 208], "libastr": 207, "_use_libastr": 207, "astral": 207, "linkflag": [207, 229], "tmp_dir": 207, "is_system": 207, "rt": 207, "your_us": 208, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 208, "pkg_config_alias": 208, "xxxxx": [208, 212, 217], "freeform": 208, "component_vers": 208, "custom_cont": 208, "mynam": 208, "componentnam": 208, "alias1": 208, "alias2": 208, "rcpath": 210, "bz": [210, 211], "fresh": 210, "new_local_repositori": 211, "build_fil": 211, "cc_import": 211, "cc_librari": 211, "z_precompil": 211, "static_librari": 211, "libz": [211, 242], "hdr": 211, "glob": 211, "filegroup": 211, "zlib_binari": 211, "bazel_target_nam": 211, "bazel_repository_nam": 211, "my_target": 211, "my_repo": 211, "cxxopt": 212, "dynamic_mod": 212, "compilation_mod": 212, "force_p": 212, "copt": 212, "flagn": 212, "conlyopt": 212, "linkopt": 212, "dbg": 212, "crosstool_top": 212, "icpx": 213, "conanintelsetvar": 213, "intelprofil": 213, "ms_toolset": 213, "batch": 213, "argn": 213, "intel64": 213, "ia32": 213, "ia": 213, "mysrcfold": 214, "reconfigur": 216, "dprefix": 216, "conan_meson_cross": 216, "n_job": 216, "55": [217, 243], "default_librari": 217, "buildtyp": 217, "libexecdir": 217, "localedir": 217, "mandir": 217, "infodir": 217, "wrap_mod": 217, "nofallback": 217, "cpp_arg": 217, "c_arg": 217, "c_link_arg": 217, "cpp_link_arg": 217, "conan_meson_xxxx": 217, "with_msg": 217, "hi": 217, "everyon": 217, "contrast": 217, "packageopt": 217, "upon": 217, "mio": 217, "ios_host_profil": 217, "objc_arg": 217, "objc_link_arg": 217, "objcpp_arg": 217, "objcpp_link_arg": 217, "android_host_profil": 217, "c_ld": 217, "cc_ld": 217, "cpp_ld": 217, "cxx_ld": 217, "as_": 217, "AS": [217, 223], "windr": 217, "macosx": 217, "apple_min_version_flag": 217, "objcflag": 217, "objcxxflag": 217, "check_min_v": 218, "is_msvc": 218, "is_msvc_static_runtim": 218, "msvs_toolset": 218, "raise_invalid": 219, "visualstudio": 219, "worth": 219, "mt": [219, 222], "neither": 219, "myreleas": 220, "myplatform": 220, "conan_zlib_vars_release_x64": 221, "conanzlibxxxx": 221, "conanzlibincludedir": 221, "conanzliblib": 221, "conan_zlib_vars_debug_x64": 221, "conanzlib": 221, "conan_zlib_release_x64": 221, "conan_zlib_debug_x64": 221, "conan_bzip": 221, "bzip": 221, "conan_bzip2": 221, "conan_pkgname_compname_vars_release_x64": 221, "compnam": 221, "conan_pkgname_compname_release_x64": 221, "conan_pkgname_compnam": 221, "conan_pkgnam": 221, "conan_pkgname_vars_release_x64": 221, "gather": [221, 269], "catch": 221, "executablepath": 221, "binarydirectori": 221, "custombuild": 221, "caexcludepath": 221, "uncondit": 221, "conan_": 221, "_var": 221, "conantoolchain_release_x86": 222, "mtd": 222, "mdd": 222, "clcompil": 222, "windowstargetplatformvers": 222, "additionalopt": 222, "preprocessordefinit": 222, "vcvarsal": [222, 224], "includeextern": 222, "xmln": 222, "2003": 222, "itemdefinitiongroup": 222, "propertygroup": 222, "conannmakedep": 223, "_link_": 223, "conannmaketoolchain": 223, "my_flag": 223, "env_var": 223, "cl_env_var": 223, "winsdk": 224, "thin": [227, 250], "repourl": 227, "children": 227, "get_commit": 227, "rev": 227, "get_remote_url": 227, "commit_in_remot": 227, "occurr": 227, "get_repo_root": 227, "toplevel": 227, "fetch_commit": 227, "qualifi": [228, 269], "sconscript_conandep": 229, "cpppath": 229, "binpath": 229, "frameworkpath": 229, "cppdefin": 229, "ccflag": 229, "shlinkflag": 229, "sconscript": 229, "mergeflag": 229, "chocolatei": 230, "libgl": 231, "libglvnd": 231, "devel": 231, "mesa": 231, "linuxmint": 231, "pidora": 231, "scientif": 231, "xenserv": 231, "amazon": 231, "oracl": 231, "amzn": 231, "almalinux": 231, "rocki": 231, "fedora": 231, "rhel": 231, "mageia": 231, "manjaro": 231, "opensus": 231, "sle": 231, "host_packag": 231, "install_substitut": 231, "packages_substitut": 231, "pkg3": 231, "_arch_nam": 231, "multiarch": 231, "arch_nam": 231, "libxcb": 231, "util0": 231, "packages_altern": 231, "amd64": 231, "conan_arch_set": 231, "apt_arch_set": 231, "86": 231, "armv7hl": 231, "lib32": 231, "c3i": 234, "profession": 235, "matrix": [235, 266, 267], "8081": 236, "8082": 236, "bintrai": 236, "jdk": 236, "dialog": 236, "bottl": 237, "wsgirefserv": 237, "ctrl": 237, "my_local_serv": 238, "lan": 238, "easiest": 240, "conan_export": 240, "f1fadf0d3b196dc0332750354ad8ab7b": [240, 245], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 240, "dd7bf2a1ab4eb5d1943598c09b616121": 240, "raspberri": 241, "pi": 241, "someprofil": 241, "gnueabihf": 241, "compressorrecip": [241, 243, 244], "identif": 241, "elf": 241, "lsb": 241, "eabi5": 241, "sysv": 241, "armhf": 241, "buildid": 241, "2a216076864a1b1f30211debf297ac37a9195196": 241, "different_configur": 242, "anywher": 242, "tutorial_us": 242, "zlib1": 242, "reinstal": 242, "wonder": 242, "answer": 242, "li": [242, 269], "factor": 242, "breakdown": 242, "approxim": [243, 269], "87a7211557b6690ef5bf7fc599dd8349": 243, "f305019023c2db74d1001c5afa5cf362": 243, "82202701ea360c0863f1db5008067122": 243, "bd533fb124387a214816ab72c8d1df28": 243, "59": [243, 250], "58": 243, "3b9e037ae1c615d045a06c67d88491a": 243, "chronolog": 243, "tediou": [243, 261, 270], "occas": 243, "4524fcdd41f33e8df88ece6e755a5dcc": 243, "1650538915": 243, "154": 243, "stai": 243, "conanfile_pi": 244, "neater": 244, "auxiliari": 244, "v8": 244, "base64": 244, "cmake_vers": 245, "3e3d8f3a848b2a60afafbe7a0955085a": 245, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 245, "48bc7191ec1ee467f1e951033d7d41b2": 245, "f2f48d9745706caf77ea883a5855538256e7f2d4": 245, "6c519070f013da19afd56b52c465b596": 245, "scaffold": 246, "walkthrough": 246, "peculiar": 246, "fanci": 247, "colour": [247, 258], "creating_packag": [247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259], "add_requir": 247, "check_max_cppstd": [247, 258], "check_min_cppstd": [247, 254, 258], "require_fmt": 247, "crimson": [247, 258], "emphasi": [247, 258], "bold": [247, 258], "__x86_64__": [247, 250, 252, 255, 262], "__cplusplu": 247, "201103": 247, "__gnuc__": 247, "__gnuc_minor__": 247, "__clang_major__": 247, "__clang_minor__": 247, "__apple_build_version__": 247, "13160021": 247, "build_method": 248, "with_test": 248, "with_fmt": [248, 249, 258], "test_hello": [248, 251], "novelti": 248, "compose_messag": 248, "add_subdirectori": 248, "googletest": [248, 254], "gtest_main": [248, 254], "hellotest": 248, "composemessag": 248, "expect_eq": 248, "c51d80ef47661865": 248, "3ad4c6873a47059c": 248, "tear": [248, 254], "82b6c0c858e739929f74f59c25c187b927d514f3": 248, "particular": 248, "uncommon": 248, "configure_options_set": 249, "constraint": [249, 250, 267, 271], "nevertheless": 249, "meet": 249, "ng": 249, "738feca714b7251063cc51448da0cf4811424e7c": 249, "7fe7f5af0ef27552": 249, "3bd9faedc711cbb4fdf10b295268246": 249, "e6b11fb0cb64e3777f8d62f4543cd6b3": 249, "5c497cbb5421cbda": 249, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 249, "19a2e552db727a2b": 249, "67b887a0805c2a535b58be404529c1f": 249, "c7796386fcad5369": 249, "depict": 249, "diagram": 249, "intuit": 249, "2a899fd0da3125064bf9328b8db681cd82899d56": 249, "f0d1385f4f90ae465341c15740552d7": 249, "8a55286c6595f662": 249, "601209640bd378c906638a8de90070f7": 249, "d1b3f3666400710fec06446a697f9eeddd1235aa": 249, "24a2edf207deeed4151bd87bca4af51c": 249, "concret": 250, "email": 250, "leverag": 250, "__cplusplus199711": [250, 252, 255], "__gnuc__4": [250, 252, 255, 262], "__gnuc_minor__2": [250, 252, 255, 262], "__clang_major__13": [250, 252, 255], "__clang_minor__1": [250, 252, 255], "__apple_build_version__13160021": [250, 252, 255], "fa5f6b17d0adc4de6030c9ab71cdbed": 250, "pid": [250, 254, 255], "6679492451b5d0750f14f9024fdbf84e19d2941b": 250, "customis": 250, "breakag": [250, 252], "package_inform": 251, "output_nam": 251, "a311fcf8a63f3206": 251, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [251, 257, 259], "44d78a68b16b25c5e6d7e8884b8f58b8": 251, "a8cb81b31dc10d96": 251, "handle_sourc": 252, "mutabl": 252, "0fcb5ffd11025446": 252, "update_sourc": 252, "369786d0fb355069": 252, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 252, "saw": [253, 254, 267], "other_packag": [254, 255, 256], "sumconan": 254, "sum": 254, "8d9f1fb3655adcb348befcd8374c5292": 254, "header_only_gtest": 254, "test_sum": 254, "9bf83ef65d5ff0d6": 254, "sumtest": 254, "basicsum": 254, "lack": 254, "3rd": 255, "circumst": 255, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 255, "deep": 255, "local_include_fold": 255, "local_lib_fold": 255, "prebuilt_binari": 255, "vendor_hello_librari": 255, "_o": 255, "_arch": 255, "9c7634dfe0369907f569c4e583f9bc50": 255, "522dcea5982a3f8a5b624c16477e47195da2f84f": 255, "63fead0844576fc02943e16909f08fcdddd6f44b": 255, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [255, 256], "28": 255, "a0cd51c51fe9010370187244af885b0efcc5b69b": 255, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 255, "dcf68e932572755309a5f69f3cee1bede410e907": 255, "somewher": 255, "prebuilt_remote_binari": 255, "base_url": 255, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 255, "secure_scannerrecip": 256, "secure_scann": 256, "scanner": 256, "secure_scannertestconan": 256, "tested_reference_str": [256, 259], "my_consum": 256, "enviorn": 256, "overwrot": 256, "rundenv_info": 256, "package_method": 257, "predetermin": 257, "b5857f2e70d1b2fd": 257, "bf7f5b9a3bb2c957742be4be216dfcbb": 257, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [257, 259], "47b4c4c61c8616e5": 257, "222db0532bba7cbc": 257, "50f91e204d09b64b24b29df3b87a2f3a": 257, "96ed9fb1f78bc96708b1abf4841523b0": 257, "21ec37b931782de8": 257, "preparing_the_build": 258, "optional_fmt": 258, "target_compile_definit": 258, "using_fmt": 258, "endl": 258, "debugshar": 258, "testing_packag": 259, "hellotestconan": 259, "cd132b054cf999f31bd2fd2424053ddc": 259, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 259, "1d9bb4c015de50bcb4a338c07229b3bc": 259, "4ff3fd65a1d37b52436bf62ea6eaac04": 259, "d136b3379fdb29bdfe31404b916b29e1": 259, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 259, "ee8cbd2bf32d1c89e553bdd9d5606127": 259, "costli": 260, "entir": 260, "depth": 260, "developing_packag": [261, 262, 263], "editable_packag": 261, "fledg": 261, "perspect": 261, "inconveni": 261, "increment": 261, "trial": 262, "phase": 262, "local_package_development_flow": 262, "ve": 262, "cmakedeps_macro": 262, "f09ef573c22f3919ba26ee91ae444eaa": 262, "__cplusplus201103": 262, "__clang_major__14": 262, "__apple_build_version__14000029": 262, "po": 262, "examin": 263, "package_layout": 263, "sayb3ea744527a91": 263, "say830097e941e10": 263, "libsai": 263, "say8938ceae216fc": 263, "say_say_releas": 263, "local_fold": 263, "expir": 264, "increas": [264, 265], "oppos": [264, 271], "intent": 264, "intro": [266, 267], "credit": 266, "videogam": 266, "0fe4e6890766f7b8e21f764f0049aec7": 266, "d639998c2e55cf36d261ab319801c322": 266, "905c3f0babc520684c84127378fefdd0": [266, 267], "converg": 266, "variat": 266, "mathemat": 267, "sound32": 267, "sound": 267, "1675278126": 267, "0552447": 267, "83d4b7bf607b3b60a6546f8b58b5cdd7": 267, "1675278904": 267, "0791488": 267, "1675278900": 267, "0103245": 267, "enforc": 267, "paramount": 267, "1675278901": 267, "7527816": 267, "harm": 267, "1675294635": 267, "6049662": 267, "1675294637": 267, "9775107": 267, "2475ece651f666f42c155623228c75d2": 268, "2b547b7f20f5541c16d0b5cbcf207502": 268, "licenc": 268, "1d674b4349d2b1ea06aa6419f5f99dd9": 268, "chat": 268, "17b45a168519b8e0ed178d822b7ad8c8": 268, "12f87e1b8a881da6b19cc7f229e16c76": 268, "ago": 268, "determinist": 268, "subsequ": 268, "8b8c3deef5ef47a8009d4afaebfe952": 268, "8e8d380347e6d067240c4c00132d42b1": 268, "c347faaedc1e7e3282d3bfed31700019": 268, "wast": 268, "pkgrecip": [269, 270], "apprecip": [269, 270], "newest": 269, "hold": 269, "letter": [269, 271], "becam": 269, "evid": 269, "demand": 269, "entiti": 269, "numer": 269, "tild": 269, "caret": 269, "include_prereleas": 269, "henc": 269, "fast": 270, "blown": 270, "intervent": 270, "excit": 271, "lesson": 271, "youtub": 271, "watch": 271, "kkgglzm5ou": 271, "tribe": 271, "026": 271, "requirements_trait": 271, "modular": 271, "subapi": 271, "redesign": 271, "send": 271, "thorough": 271, "mydeploi": 271, "meaning": 271, "mylib_a": 271, "mylib_b": 271, "034": 271, "new_lockfil": 271, "enviro": 271, "shorten": 271, "short_path": 271, "incredibuild": 271, "grow": 271, "sigstor": 271, "accur": 271}, "objects": {"conan.api.conan_api": [[162, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[163, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[163, 1, 1, "", "global_conf"], [163, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[164, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.export": [[165, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[166, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[166, 2, 1, "", "analyze_binaries"], [166, 2, 1, "", "load_graph"], [166, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[167, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[167, 2, 1, "", "install_binaries"], [167, 2, 1, "", "install_consumer"], [167, 2, 1, "", "install_sources"], [167, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[168, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[168, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[169, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[169, 2, 1, "", "get_home_template"], [169, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[170, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[170, 2, 1, "", "detect"], [170, 2, 1, "", "get_default_build"], [170, 2, 1, "", "get_default_host"], [170, 2, 1, "", "get_path"], [170, 2, 1, "", "get_profile"], [170, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[171, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[171, 2, 1, "", "list"]], "conan.api.subapi.remove": [[172, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[173, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[174, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[174, 2, 1, "", "check_upstream"], [174, 2, 1, "", "get_backup_sources"], [174, 2, 1, "", "prepare"]], "conan.tools.android": [[177, 3, 1, "", "android_abi"]], "conan.tools.apple": [[179, 0, 1, "", "XCRun"], [179, 3, 1, "", "fix_apple_shared_install_name"], [179, 3, 1, "", "is_apple_os"], [179, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[179, 1, 1, "", "ar"], [179, 1, 1, "", "cc"], [179, 1, 1, "", "cxx"], [179, 2, 1, "", "find"], [179, 1, 1, "", "install_name_tool"], [179, 1, 1, "", "libtool"], [179, 1, 1, "", "otool"], [179, 1, 1, "", "ranlib"], [179, 1, 1, "", "sdk_path"], [179, 1, 1, "", "sdk_platform_path"], [179, 1, 1, "", "sdk_platform_version"], [179, 1, 1, "", "sdk_version"], [179, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[180, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[180, 2, 1, "", "__init__"], [180, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[183, 3, 1, "", "check_max_cppstd"], [183, 3, 1, "", "check_min_cppstd"], [183, 3, 1, "", "default_cppstd"], [183, 3, 1, "", "supported_cppstd"], [183, 3, 1, "", "valid_max_cppstd"], [183, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[183, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[183, 3, 1, "", "can_run"], [183, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[185, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[185, 2, 1, "", "build"], [185, 2, 1, "", "configure"], [185, 2, 1, "", "ctest"], [185, 2, 1, "", "install"], [185, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[187, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[187, 2, 1, "", "generate"], [187, 2, 1, "", "get_cmake_package_name"], [187, 2, 1, "", "get_find_mode"], [187, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[186, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[188, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[188, 2, 1, "", "generate"]], "conan.tools.env.environment": [[192, 0, 1, "", "EnvVars"], [191, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[192, 2, 1, "", "apply"], [192, 2, 1, "", "get"], [192, 2, 1, "", "items"], [192, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[191, 2, 1, "", "append"], [191, 2, 1, "", "append_path"], [191, 2, 1, "", "compose_env"], [191, 2, 1, "", "define"], [191, 2, 1, "", "deploy_base_folder"], [191, 2, 1, "", "dumps"], [191, 2, 1, "", "prepend"], [191, 2, 1, "", "prepend_path"], [191, 2, 1, "", "remove"], [191, 2, 1, "", "unset"], [191, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[193, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[193, 2, 1, "", "environment"], [193, 2, 1, "", "generate"], [193, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[194, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[194, 2, 1, "", "environment"], [194, 2, 1, "", "generate"], [194, 2, 1, "", "vars"]], "conan.tools.files": [[196, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[196, 3, 1, "", "trim_conandata"], [196, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[196, 3, 1, "", "copy"]], "conan.tools.files.files": [[196, 3, 1, "", "chdir"], [197, 3, 1, "", "check_md5"], [197, 3, 1, "", "check_sha1"], [197, 3, 1, "", "check_sha256"], [198, 3, 1, "", "download"], [198, 3, 1, "", "ftp_download"], [198, 3, 1, "", "get"], [196, 3, 1, "", "load"], [196, 3, 1, "", "mkdir"], [196, 3, 1, "", "rename"], [196, 3, 1, "", "replace_in_file"], [196, 3, 1, "", "rm"], [196, 3, 1, "", "rmdir"], [196, 3, 1, "", "save"], [196, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[200, 3, 1, "", "apply_conandata_patches"], [200, 3, 1, "", "export_conandata_patches"], [200, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[201, 3, 1, "", "absolute_to_relative_symlinks"], [201, 3, 1, "", "remove_broken_symlinks"], [201, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[206, 0, 1, "", "MakeDeps"], [207, 0, 1, "", "PkgConfig"], [208, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[206, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[207, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[208, 1, 1, "", "content"], [208, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[203, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[203, 2, 1, "", "autoreconf"], [203, 2, 1, "", "configure"], [203, 2, 1, "", "install"], [203, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[204, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[204, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[205, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[205, 2, 1, "", "update_autoreconf_args"], [205, 2, 1, "", "update_configure_args"], [205, 2, 1, "", "update_make_args"]], "conan.tools.google": [[210, 0, 1, "", "Bazel"], [211, 0, 1, "", "BazelDeps"], [212, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[210, 2, 1, "", "build"], [210, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[211, 4, 1, "", "build_context_activated"], [211, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[212, 4, 1, "", "compilation_mode"], [212, 4, 1, "", "compiler"], [212, 4, 1, "", "conlyopt"], [212, 4, 1, "", "copt"], [212, 4, 1, "", "cppstd"], [212, 4, 1, "", "cpu"], [212, 4, 1, "", "crosstool_top"], [212, 4, 1, "", "cxxopt"], [212, 4, 1, "", "dynamic_mode"], [212, 4, 1, "", "force_pic"], [212, 2, 1, "", "generate"], [212, 4, 1, "", "linkopt"]], "conan.tools.intel": [[213, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[213, 4, 1, "", "arch"], [213, 1, 1, "", "command"], [213, 2, 1, "", "generate"], [213, 1, 1, "", "installation_path"], [213, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[216, 0, 1, "", "Meson"], [217, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[216, 2, 1, "", "build"], [216, 2, 1, "", "configure"], [216, 2, 1, "", "install"], [216, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[217, 4, 1, "", "apple_arch_flag"], [217, 4, 1, "", "apple_isysroot_flag"], [217, 4, 1, "", "apple_min_version_flag"], [217, 4, 1, "", "ar"], [217, 4, 1, "", "as_"], [217, 4, 1, "", "c"], [217, 4, 1, "", "c_args"], [217, 4, 1, "", "c_ld"], [217, 4, 1, "", "c_link_args"], [217, 4, 1, "", "cpp"], [217, 4, 1, "", "cpp_args"], [217, 4, 1, "", "cpp_ld"], [217, 4, 1, "", "cpp_link_args"], [217, 4, 1, "", "cross_build"], [217, 2, 1, "", "generate"], [217, 4, 1, "", "ld"], [217, 4, 1, "", "objc"], [217, 4, 1, "", "objc_args"], [217, 4, 1, "", "objc_link_args"], [217, 4, 1, "", "objcpp"], [217, 4, 1, "", "objcpp_args"], [217, 4, 1, "", "objcpp_link_args"], [217, 4, 1, "", "pkg_config_path"], [217, 4, 1, "", "pkgconfig"], [217, 4, 1, "", "preprocessor_definitions"], [217, 4, 1, "", "project_options"], [217, 4, 1, "", "properties"], [217, 4, 1, "", "strip"], [217, 4, 1, "", "windres"]], "conan.tools.microsoft": [[220, 0, 1, "", "MSBuild"], [221, 0, 1, "", "MSBuildDeps"], [222, 0, 1, "", "MSBuildToolchain"], [224, 0, 1, "", "VCVars"], [219, 3, 1, "", "unix_path"], [225, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[220, 2, 1, "", "build"], [220, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[221, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[222, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[219, 3, 1, "", "check_min_vs"], [219, 3, 1, "", "is_msvc"], [219, 3, 1, "", "is_msvc_static_runtime"], [219, 3, 1, "", "msvc_runtime_flag"], [219, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[228, 0, 1, "", "Version"]], "conan.tools.scm.git": [[227, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[227, 2, 1, "", "checkout"], [227, 2, 1, "", "clone"], [227, 2, 1, "", "commit_in_remote"], [227, 2, 1, "", "fetch_commit"], [227, 2, 1, "", "get_commit"], [227, 2, 1, "", "get_remote_url"], [227, 2, 1, "", "get_repo_root"], [227, 2, 1, "", "get_url_and_commit"], [227, 2, 1, "", "included_files"], [227, 2, 1, "", "is_dirty"], [227, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[231, 0, 1, "", "Apk"], [231, 0, 1, "", "Apt"], [231, 0, 1, "", "Brew"], [231, 0, 1, "", "Chocolatey"], [231, 0, 1, "", "PacMan"], [231, 0, 1, "", "Pkg"], [231, 0, 1, "", "PkgUtil"], [231, 0, 1, "", "Yum"], [231, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conans.model.conf.Conf": [[132, 2, 1, "", "append"], [132, 2, 1, "", "define"], [132, 2, 1, "", "prepend"], [132, 2, 1, "", "remove"], [132, 2, 1, "", "unset"], [132, 2, 1, "", "update"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function", "4": "py:attribute"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"]}, "titleterms": {"page": 0, "Not": 0, "found": 0, "changelog": 1, "2": [1, 57, 271], "0": [1, 57, 261, 271], "17": 1, "10": 1, "jan": 1, "2024": 1, "16": 1, "21": 1, "dec": 1, "2023": 1, "15": 1, "20": 1, "14": 1, "nov": 1, "13": 1, "28": 1, "sept": 1, "12": 1, "26": 1, "11": 1, "18": 1, "29": 1, "aug": 1, "9": 1, "19": 1, "jul": 1, "8": 1, "7": 1, "jun": 1, "6": 1, "mai": 1, "5": 1, "4": 1, "apr": 1, "3": 1, "03": 1, "mar": 1, "1": [1, 261], "22": 1, "feb": 1, "beta10": 1, "beta9": 1, "31": 1, "beta8": 1, "beta7": 1, "2022": 1, "beta6": 1, "02": 1, "beta5": 1, "beta4": 1, "oct": 1, "beta3": 1, "beta2": 1, "27": 1, "beta1": 1, "devop": 2, "guid": [2, 271], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 86, 102, 114, 192, 236, 246, 250, 268], "an": [3, 244], "artifactori": [3, 65, 236], "backup": [3, 4, 84], "repo": [3, 236], "your": [3, 5, 24, 36, 47, 48, 114, 241, 248, 250], "sourc": [3, 4, 29, 36, 51, 58, 70, 110, 116, 136, 248, 251, 252, 262, 263], "back": 4, "up": [4, 235, 237], "third": [4, 19], "parti": [4, 19], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 53, 55, 57, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 156, 162, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 203, 209, 213, 214, 215, 217, 218, 219, 226, 229, 230, 231, 233, 234, 235, 236, 237, 240, 241, 245, 249, 250, 251, 257, 259, 262, 263, 264, 271], "configur": [4, 22, 23, 63, 80, 114, 123, 129, 143, 146, 157, 181, 187, 213, 221, 231, 242, 244, 249, 251, 267, 271], "overview": 4, "usag": 4, "set": [4, 24, 73, 78, 80, 98, 107, 116, 147, 149, 186, 235, 237, 242, 249, 251, 256], "necessari": 4, "config": [4, 85, 163], "run": [4, 31, 36, 114, 133, 141, 192, 236, 248], "normal": 4, "upload": [4, 6, 13, 84, 112, 174, 238, 268], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 57, 70, 73, 99, 116, 130, 159, 231, 238, 239, 242, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 268, 271], "repositori": [4, 233, 252], "host": [5, 241], "own": [5, 114], "conancent": [5, 8], "binari": [5, 70, 77, 78, 80, 116, 153, 249, 255], "updat": [5, 58, 107], "from": [5, 7, 13, 29, 36, 58, 78, 141, 158, 187, 252, 264], "upstream": 5, "manag": [6, 56, 57, 70, 205, 231, 257, 271], "metadata": [6, 87, 116], "file": [6, 23, 50, 143, 146, 175, 187, 188, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 204, 205, 206, 208, 211, 212, 217, 221, 252, 257], "recip": [6, 31, 43, 78, 99, 141, 176, 248, 249, 251, 256], "hook": [6, 158], "ad": [6, 131, 149], "command": [6, 12, 31, 32, 65, 82, 141, 154, 155, 271], "download": [6, 13, 87, 164, 198, 255], "remov": [6, 13, 88, 104, 107, 108, 172, 256, 264], "test_packag": 6, "save": [7, 84, 196], "restor": [7, 84], "cach": [7, 84, 136, 250, 264, 271], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 51, 53, 55, 58, 63, 86, 114, 156, 187, 188, 203, 217, 236, 240, 241, 242, 244, 245, 252, 257, 261, 268], "product": 8, "environ": [8, 22, 129, 151, 191, 192, 205, 223, 251, 271], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 78, 80, 105, 114, 149, 155, 156, 157, 181, 187, 188, 189, 204, 205, 206, 208, 211, 213, 217, 220, 221, 222, 223, 224, 271], "version": [9, 10, 39, 40, 78, 98, 113, 116, 228, 243, 265, 269, 270], "handl": [10, 252], "rang": [10, 243, 269], "pre": [10, 255], "releas": [10, 242], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 105], "list": [13, 85, 88, 99, 106, 107, 168, 264], "them": 13, "one": 13, "remot": [13, 107, 148, 151, 171, 235, 252], "differ": [13, 39, 40, 73, 242, 268], "build": [13, 25, 26, 27, 29, 45, 47, 51, 53, 55, 65, 70, 80, 83, 86, 93, 94, 116, 118, 132, 133, 183, 188, 203, 217, 240, 241, 242, 245, 248, 255, 258, 261, 262, 263, 271], "conanfil": [14, 15, 16, 20, 26, 98, 115, 142, 244], "method": [14, 51, 78, 117, 231, 244, 248, 251, 257], "layout": [15, 16, 18, 19, 116, 129, 142, 214, 244, 263], "declar": [16, 18, 19, 191], "when": [16, 18, 19, 203], "i": [16, 81, 203], "insid": [16, 41], "subfold": 16, "compon": [17, 21, 132, 181, 251], "edit": [17, 88, 236, 261], "we": 18, "have": 18, "multipl": [18, 21, 242, 251], "subproject": 18, "librari": [19, 21, 132, 149, 203, 242, 248, 249, 251, 254], "package_info": [20, 132, 251], "defin": [21, 181, 251], "provid": [21, 116, 251], "propag": [22, 251], "inform": [22, 56, 78, 116, 131, 132, 146, 189, 251], "consum": [22, 78, 116, 187, 239, 251], "settings_us": [24, 149], "yml": [24, 149, 252], "locat": [24, 31, 36, 155], "new": [24, 26, 105, 149, 169, 270, 271], "cross": [25, 27, 80, 188, 217, 241], "integr": [26, 59, 84, 271], "android": [26, 27, 60, 177, 217], "studio": [26, 29, 68], "project": [26, 45, 47, 53, 55, 187, 240, 248], "introduc": [26, 242, 248, 251], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 78, 79, 116, 127, 221, 242, 247, 251, 261, 266], "txt": [26, 142, 244], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 64, 184, 185, 187, 240, 257], "cmakelist": 26, "applic": [26, 241, 242], "ndk": 27, "read": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "more": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "develop": [28, 35, 260, 262], "tool": [28, 39, 40, 43, 44, 46, 50, 51, 52, 54, 146, 176, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 209, 213, 214, 215, 218, 219, 226, 229, 230, 231, 245, 256, 257], "flow": [28, 262], "debug": [29, 242], "step": [29, 257], "visual": [29, 68, 219], "extens": [30, 65, 152, 271], "clean": [31, 84], "old": 31, "revis": [31, 73, 99, 243, 268, 271], "code": [31, 36, 248], "tour": [31, 36], "parser": 31, "user": [31, 98, 107, 116, 146, 271], "input": 31, "output": [31, 86, 89, 99, 116, 141], "public": [31, 271], "api": [31, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 271], "builtin": 33, "deploy": [33, 34, 36, 98, 157, 271], "agnost": 35, "deploi": [35, 36, 124], "copi": [36, 196, 257], "all": [36, 70], "graph": [37, 91, 92, 93, 94, 95, 96, 99, 166, 271], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 86, 98, 116, 133, 137, 142, 175, 221, 244, 256, 270], "option": [39, 78, 80, 98, 116, 142, 147, 186, 217, 242, 249, 251, 266], "modul": [41, 158], "tool_requir": [41, 42, 116, 120, 142, 147], "transpar": 41, "autotool": [44, 45, 61, 203], "simpl": [45, 53, 55, 240, 256], "linux": [45, 73], "maco": [45, 203], "cmaketoolchain": [47, 48, 49, 188], "cmakepreset": [47, 48], "gener": [47, 48, 65, 98, 116, 127, 142, 156, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 217, 221, 251], "toolchain": [47, 188], "extend": [48, 80, 175, 188], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 129, 151, 181, 188, 191, 192], "patch": [51, 200, 248], "replace_in_fil": [51, 196], "apply_conandata_patch": [51, 200], "googl": [52, 209], "bazel": [53, 62, 210], "meson": [54, 55, 67, 215, 216, 217], "captur": 56, "git": [56, 227, 252], "scm": [56, 226], "credenti": [56, 145], "c": [57, 149, 217, 236, 249], "document": [57, 70], "instal": [58, 63, 65, 85, 98, 167, 187, 257, 262], "pip": 58, "recommend": 58, "known": 58, "issu": 58, "pipx": 58, "system": [58, 70, 137, 149, 230, 231, 248, 271], "self": [58, 127, 129, 263], "contain": 58, "execut": 58, "android_logo": 60, "autotools_logo": 61, "bazel_logo": 62, "clion_logo": 63, "clion": 63, "introduct": [63, 70, 146, 147, 175, 243], "plugin": [63, 78, 160, 271], "cmake_logo": 64, "jfrog_logo": 65, "jfrog": 65, "info": [65, 91, 96, 116], "how": [65, 81, 203, 231, 241], "gnu_make_logo": 66, "makefil": 66, "meson_logo": 67, "visual_studio_logo": 68, "xcode_logo": 69, "xcode": 69, "open": 70, "decentr": 70, "platform": 70, "compil": [70, 149, 188, 241], "stabl": 70, "commun": [70, 236], "navig": 70, "knowledg": 71, "cheat": 72, "sheet": 72, "faq": 73, "troubleshoot": 73, "error": [73, 244], "miss": 73, "prebuilt": [73, 255], "invalid": 73, "authenticationexcept": 73, "obtain": [73, 191], "window": 73, "core": 74, "guidelin": 74, "good": 74, "practic": 74, "forbidden": 74, "video": 75, "refer": [76, 99, 116, 162, 180, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 224, 231], "The": [77, 78, 79], "model": [77, 80, 116, 241, 251, 271], "compat": [78, 121, 153, 249, 271], "erasur": [78, 131], "package_id": [78, 79, 81, 131, 175, 256, 271], "py": [78, 115, 244, 271], "global": [78, 146, 156], "default": [78, 133, 217], "mode": [78, 79, 261], "effect": [79, 175], "non": [79, 244], "emb": [79, 116], "v": [80, 244], "conf": [80, 98, 116, 146, 147, 180, 182, 185, 188, 198, 205, 207, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224], "target": [80, 187], "comput": 81, "formatt": [82, 91, 155], "path": [84, 98, 106], "check": 84, "home": 85, "show": [85, 106], "add": [88, 101, 107, 149, 247], "export": [89, 90, 116, 125, 165, 262], "format": [89, 99], "pkg": [90, 231, 262], "json": [91, 99, 145, 148, 150], "order": [93, 94], "merg": [94, 103], "explain": 95, "inspect": 97, "profil": [98, 106, 147, 160, 170, 241, 271], "name": [98, 116, 155, 208, 211], "channel": [98, 116], "lockfil": [98, 243, 267, 271], "id": [99, 242, 249], "artifact": 99, "html": 99, "compact": 99, "lock": [100, 101, 102, 103, 104], "templat": [105, 146], "detect": 106, "auth": 107, "disabl": [107, 187], "enabl": 107, "login": [107, 151], "logout": 107, "renam": [107, 196], "search": [109, 173], "test": [111, 133, 138, 175, 248, 254, 259], "server": [114, 237], "paramet": [114, 155], "permiss": 114, "authent": 114, "author": [114, 116], "ssl": 114, "nginx": 114, "subdirectori": 114, "apach": 114, "attribut": [116, 205, 208, 217, 220, 222, 223], "descript": 116, "licens": [116, 257], "topic": 116, "homepag": 116, "url": 116, "build_requir": [116, 120], "test_requir": [116, 120, 142], "python_requir": [116, 156, 175, 264], "python_requires_extend": 116, "exports_sourc": 116, "conan_data": 116, "source_buildenv": 116, "package_typ": [116, 133], "default_opt": 116, "default_build_opt": 116, "options_descript": 116, "package_id_": 116, "non_emb": 116, "unknown": 116, "_mode": 116, "build_polici": 116, "win_bash": 116, "win_bash_run": 116, "folder": [116, 129, 263], "source_fold": 116, "export_sources_fold": 116, "build_fold": 116, "package_fold": 116, "recipe_fold": 116, "recipe_metadata_fold": 116, "package_metadata_fold": 116, "no_copy_sourc": 116, "cpp": [116, 129, 263], "cpp_info": [116, 127, 132], "buildenv_info": [116, 132], "runenv_info": [116, 132], "conf_info": [116, 132], "deprec": [116, 147], "other": [116, 253, 264], "content": [116, 188, 233, 239, 246, 253, 265], "revision_mod": 116, "upload_polici": 116, "required_conan_vers": 116, "implement": [116, 122, 123, 131], "alia": 116, "build_id": 119, "host_vers": 120, "config_opt": 122, "avail": [122, 123, 131, 231], "automat": [122, 123, 131], "auto_shared_fp": [122, 123], "export_sourc": 126, "interfac": [127, 158], "iter": [127, 192], "init": 128, "auto_header_onli": 131, "partial": 131, "properti": [132, 187, 208, 210, 211, 231, 251], "trait": [133, 221], "header": [133, 249, 254], "lib": 133, "visibl": 133, "transitive_head": 133, "transitive_lib": 133, "package_id_mod": 133, "forc": [133, 136], "overrid": [133, 266], "direct": 133, "infer": 133, "each": 133, "kind": 133, "set_nam": 134, "set_vers": 135, "retriev": 136, "system_requir": 137, "collect": 137, "valid": [139, 244], "validate_build": 140, "text": 141, "conanrc": 144, "data": [146, 217], "type": [146, 217, 253], "oper": [146, 149, 196], "pattern": [146, 147], "about": [146, 203, 250], "built": [146, 157, 203, 255], "network": 146, "client": 146, "certif": 146, "ux": 146, "skip": 146, "warn": 146, "section": 147, "system_tool": 147, "buildenv": 147, "runenv": 147, "replace_requir": 147, "replace_tool_requir": 147, "platform_requir": 147, "platform_tool_requir": 147, "render": 147, "includ": 147, "msvc": 149, "intel": [149, 213], "cc": 149, "architectur": 149, "standard": 149, "aka": 149, "libcxx": 149, "sub": 149, "valu": 149, "source_credenti": 150, "conan_hom": 151, "conan_default_profil": 151, "termin": 151, "color": 151, "log": 151, "wrapper": [154, 271], "scope": 155, "decor": 155, "conan_command": 155, "group": 155, "none": 155, "conan_subcommand": 155, "argument": [155, 217], "definit": [155, 191], "pars": 155, "full_deploi": 157, "direct_deploi": 157, "structur": 158, "import": [158, 187, 264], "storag": 158, "activ": 158, "share": [158, 203, 242], "offici": 158, "sign": [159, 271], "python": [161, 175, 271], "base": 175, "class": 175, "reus": 175, "resolut": 175, "android_abi": 177, "appl": [178, 179, 217], "fix_apple_shared_install_nam": 179, "is_apple_o": 179, "to_apple_arch": 179, "xcrun": 179, "xcodebuild": 180, "xcodedep": 181, "addit": 181, "support": [181, 221, 244], "xcodetoolchain": 182, "build_job": 183, "cross_build": 183, "can_run": 183, "cppstd": 183, "check_min_cppstd": 183, "check_max_cppstd": 183, "valid_min_cppstd": 183, "valid_max_cppstd": 183, "default_cppstd": 183, "supported_cppstd": 183, "cmake_layout": 186, "multi": [186, 267, 271], "cmakedep": 187, "build_context_activ": [187, 208, 211], "build_context_suffix": [187, 208], "build_context_build_modul": 187, "check_components_exist": 187, "overwrit": 187, "side": 187, "set_properti": 187, "For": 187, "map": 187, "": [187, 271], "preprocessor_definit": [188, 217], "cache_vari": 188, "user_presets_path": 188, "extra": 188, "flag": [188, 206], "presets_prefix": 188, "advanc": 188, "block": 188, "cppinfo": 189, "aggreg": 189, "env": 190, "composit": 191, "envvar": 192, "appli": 192, "virtualbuildenv": 193, "virtualrunenv": 194, "basic": 196, "load": 196, "rm": 196, "mkdir": 196, "rmdir": 196, "chdir": 196, "unzip": 196, "update_conandata": 196, "trim_conandata": 196, "collect_lib": 196, "checksum": 197, "check_md5": 197, "check_sha1": 197, "check_sha256": 197, "get": 198, "ftp_download": 198, "autopackag": 199, "export_conandata_patch": 200, "symlink": [201, 257], "absolute_to_relative_symlink": 201, "remove_external_symlink": 201, "remove_broken_symlink": 201, "gnu": 202, "A": [203, 250, 256], "note": [203, 250], "relocat": 203, "helper": 203, "why": 203, "thi": 203, "problem": 203, "address": 203, "autotoolsdep": 204, "autotoolstoolchain": 205, "configure_arg": 205, "make_arg": 205, "autoreconf_arg": 205, "makedep": 206, "pkgconfig": 207, "pkgconfigdep": 208, "bazeldep": 211, "bazeltoolchain": 212, "intelcc": 213, "predefin": 214, "basic_layout": 214, "mesontoolchain": 217, "conan_meson_n": 217, "ini": 217, "conan_meson_cross": 217, "directori": 217, "project_opt": 217, "proper": 217, "object": 217, "microsoft": [218, 219], "check_min_v": 219, "msvc_runtime_flag": 219, "is_msvc": 219, "is_msvc_static_runtim": 219, "msvs_toolset": 219, "subsystem": 219, "unix_path": 219, "msbuild": 220, "msbuilddep": 221, "msbuildtoolchain": 222, "nmakedep": 223, "nmaketoolchain": 223, "constructor": 223, "vcvar": 224, "vs_layout": 225, "scon": 229, "sconsdep": 229, "package_manag": 231, "affect": 231, "ar": 231, "invok": 231, "apk": 231, "apt": 231, "yum": 231, "dnf": 231, "pacman": 231, "zypper": 231, "brew": 231, "pkgutil": 231, "chocolatei": 231, "tutori": 232, "work": [233, 261], "tabl": [233, 239, 246, 253, 265], "contribut": 234, "center": 234, "ce": 236, "context": 241, "two": 241, "static": 242, "modifi": 242, "its": 242, "link": 242, "between": 242, "concept": 242, "understand": [244, 263], "flexibl": 244, "rais": 244, "condit": 244, "chang": [248, 251], "condition": 248, "select": 248, "onli": [249, 254], "first": 250, "specif": 251, "zip": 252, "store": 252, "branch": 252, "conandata": 252, "local": [255, 260], "alreadi": 255, "prepar": 258, "put": 261, "sai": 261, "revert": 261, "featur": 264, "unus": 264, "conflict": 266, "resolv": 266, "evolv": 267, "semant": 269, "express": 269, "autom": 270, "what": 271, "migrat": 271, "cli": 271, "checker": 271, "immut": 271, "optim": 271}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"Page Not Found": [[0, "page-not-found"]], "Changelog": [[1, "changelog"]], "2.0.17 (10-Jan-2024)": [[1, "jan-2024"]], "2.0.16 (21-Dec-2023)": [[1, "dec-2023"]], "2.0.15 (20-Dec-2023)": [[1, "id8"]], "2.0.14 (14-Nov-2023)": [[1, "nov-2023"]], "2.0.13 (28-Sept-2023)": [[1, "sept-2023"]], "2.0.12 (26-Sept-2023)": [[1, "id90"]], "2.0.11 (18-Sept-2023)": [[1, "id102"]], "2.0.10 (29-Aug-2023)": [[1, "aug-2023"]], "2.0.9 (19-Jul-2023)": [[1, "jul-2023"]], "2.0.8 (13-Jul-2023)": [[1, "id188"]], "2.0.7 (21-Jun-2023)": [[1, "jun-2023"]], "2.0.6 (26-May-2023)": [[1, "may-2023"]], "2.0.5 (18-May-2023)": [[1, "id257"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id317"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id366"]], "2.0.0 (22-Feb-2023)": [[1, "feb-2023"]], "2.0.0-beta10 (16-Feb-2023)": [[1, "beta10-16-feb-2023"]], "2.0.0-beta9 (31-Jan-2023)": [[1, "beta9-31-jan-2023"]], "2.0.0-beta8 (12-Jan-2023)": [[1, "beta8-12-jan-2023"]], "2.0.0-beta7 (22-Dec-2022)": [[1, "beta7-22-dec-2022"]], "2.0.0-beta6 (02-Dec-2022)": [[1, "beta6-02-dec-2022"]], "2.0.0-beta5 (11-Nov-2022)": [[1, "beta5-11-nov-2022"]], "2.0.0-beta4 (11-Oct-2022)": [[1, "beta4-11-oct-2022"]], "2.0.0-beta3 (12-Sept-2022)": [[1, "beta3-12-sept-2022"]], "2.0.0-beta2 (27-Jul-2022)": [[1, "beta2-27-jul-2022"]], "2.0.0-beta1 (20-Jun-2022)": [[1, "beta1-20-jun-2022"]], "Devops guide": [[2, "devops-guide"]], "Creating an Artifactory backup repo for your sources": [[3, "creating-an-artifactory-backup-repo-for-your-sources"]], "Backing up third-party sources with Conan": [[4, "backing-up-third-party-sources-with-conan"]], "Configuration overview": [[4, "configuration-overview"]], "Usage": [[4, "usage"]], "Setting up the necessary configs": [[4, "setting-up-the-necessary-configs"]], "Run Conan as normal": [[4, "run-conan-as-normal"]], "Upload the packages": [[4, "upload-the-packages"]], "Creating the backup repository": [[4, "creating-the-backup-repository"]], "Creating and hosting your own ConanCenter binaries": [[5, "creating-and-hosting-your-own-conancenter-binaries"]], "Updating from upstream": [[5, "updating-from-upstream"]], "Managing package metadata files": [[6, "managing-package-metadata-files"]], "Creating metadata in recipes": [[6, "creating-metadata-in-recipes"]], "Creating metadata with hooks": [[6, "creating-metadata-with-hooks"]], "Adding metadata with commands": [[6, "adding-metadata-with-commands"]], "Uploading metadata": [[6, "uploading-metadata"]], "Downloading metadata": [[6, "downloading-metadata"], [87, "downloading-metadata"]], "Removing metadata": [[6, "removing-metadata"]], "test_package as metadata": [[6, "test-package-as-metadata"]], "Save and restore packages from/to the cache": [[7, "save-and-restore-packages-from-to-the-cache"]], "Using ConanCenter packages in production environments": [[8, "using-conancenter-packages-in-production-environments"]], "Repeatability and reproducibility": [[8, "repeatability-and-reproducibility"]], "Service reliability": [[8, "service-reliability"]], "Compliance and security": [[8, "compliance-and-security"]], "Control and customization": [[8, "control-and-customization"]], "Versioning": [[9, "versioning"], [265, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [105, "examples"]], "Conan commands examples": [[12, "conan-commands-examples"]], "Using packages-lists": [[13, "using-packages-lists"]], "Listing packages and downloading them": [[13, "listing-packages-and-downloading-them"]], "Downloading from one remote and uploading to a different remote": [[13, "downloading-from-one-remote-and-uploading-to-a-different-remote"]], "Building and uploading packages": [[13, "building-and-uploading-packages"]], "Removing packages lists": [[13, "removing-packages-lists"]], "ConanFile methods examples": [[14, "conanfile-methods-examples"]], "ConanFile layout() examples": [[15, "conanfile-layout-examples"]], "Declaring the layout when the Conanfile is inside a subfolder": [[16, "declaring-the-layout-when-the-conanfile-is-inside-a-subfolder"]], "Using components and editable packages": [[17, "using-components-and-editable-packages"]], "Declaring the layout when we have multiple subprojects": [[18, "declaring-the-layout-when-we-have-multiple-subprojects"]], "Declaring the layout when creating packages for third-party libraries": [[19, "declaring-the-layout-when-creating-packages-for-third-party-libraries"]], "ConanFile package_info() examples": [[20, "conanfile-package-info-examples"]], "Define components for Conan packages that provide multiple libraries": [[21, "define-components-for-conan-packages-that-provide-multiple-libraries"], [251, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [251, "propagating-environment-or-configuration-information-to-consumers"]], "Configuration files examples": [[23, "configuration-files-examples"]], "Customize your settings: create your settings_user.yml": [[24, "customize-your-settings-create-your-settings-user-yml"]], "Locate the settings_user.yml": [[24, "locate-the-settings-user-yml"]], "Use your new settings": [[24, "use-your-new-settings"]], "Cross-building examples": [[25, "cross-building-examples"]], "Integrating Conan in Android Studio": [[26, "integrating-conan-in-android-studio"]], "Creating a new project": [[26, "creating-a-new-project"]], "Introducing dependencies with Conan": [[26, "introducing-dependencies-with-conan"]], "conanfile.txt": [[26, "conanfile-txt"], [142, "conanfile-txt"]], "build.gradle": [[26, "build-gradle"]], "conan_android_toolchain.cmake": [[26, "conan-android-toolchain-cmake"]], "CMakeLists.txt": [[26, "cmakelists-txt"]], "Building the application": [[26, "building-the-application"]], "Cross building to Android with the NDK": [[27, "cross-building-to-android-with-the-ndk"]], "Read more": [[27, "read-more"], [107, "read-more"], [112, "read-more"], [142, "read-more"], [155, "read-more"], [162, "read-more"], [217, "read-more"], [238, "read-more"], [240, "read-more"], [241, "read-more"], [242, "read-more"], [243, "read-more"], [244, "read-more"], [245, "read-more"], [247, "read-more"], [248, "read-more"], [249, "read-more"], [250, "read-more"], [251, "read-more"], [252, "read-more"], [256, "read-more"], [257, "read-more"], [258, "read-more"], [259, "read-more"], [267, "read-more"]], "Developer tools and flows": [[28, "developer-tools-and-flows"]], "Debugging and stepping into dependencies": [[29, "debugging-and-stepping-into-dependencies"]], "Building from source": [[29, "building-from-source"]], "Step into a dependency with Visual Studio": [[29, "step-into-a-dependency-with-visual-studio"]], "Conan extensions examples": [[30, "conan-extensions-examples"]], "Custom command: Clean old recipe and package revisions": [[31, "custom-command-clean-old-recipe-and-package-revisions"]], "Locate the command": [[31, "locate-the-command"]], "Run it": [[31, "run-it"], [36, "run-it"]], "Code tour": [[31, "code-tour"], [36, "code-tour"]], "parser": [[31, "parser"]], "User input and user output": [[31, "user-input-and-user-output"]], "Conan public API": [[31, "conan-public-api"]], "Custom commands": [[32, "custom-commands"], [155, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [157, "custom-deployers"]], "Creating a Conan-agnostic deploy of dependencies for developer use": [[35, "creating-a-conan-agnostic-deploy-of-dependencies-for-developer-use"]], "Copy sources from all your dependencies": [[36, "copy-sources-from-all-your-dependencies"]], "Locate the deployer": [[36, "locate-the-deployer"]], "deploy()": [[36, "deploy"], [124, "deploy"]], "Graph examples": [[37, "graph-examples"]], "Use a CMake macro packaged in a dependency": [[38, "use-a-cmake-macro-packaged-in-a-dependency"]], "Depending on same version of a tool-require with different options": [[39, "depending-on-same-version-of-a-tool-require-with-different-options"]], "Depending on different versions of the same tool-require": [[40, "depending-on-different-versions-of-the-same-tool-require"]], "Use cmake modules inside a tool_requires transparently": [[41, "use-cmake-modules-inside-a-tool-requires-transparently"]], "Using the same requirement as a requires and as a tool_requires": [[42, "using-the-same-requirement-as-a-requires-and-as-a-tool-requires"]], "Conan recipe tools examples": [[43, "conan-recipe-tools-examples"]], "tools.autotools": [[44, "tools-autotools"]], "Build a simple Autotools project using Conan": [[45, "build-a-simple-autotools-project-using-conan"]], "Building on Linux and macOS": [[45, "building-on-linux-and-macos"]], "tools.cmake": [[46, "tools-cmake"]], "CMakeToolchain: Building your project using CMakePresets": [[47, "cmaketoolchain-building-your-project-using-cmakepresets"]], "Generating the toolchain": [[47, "generating-the-toolchain"]], "Building the project using CMakePresets": [[47, "building-the-project-using-cmakepresets"]], "CMakeToolchain: Extending your CMakePresets with Conan generated ones": [[48, "cmaketoolchain-extending-your-cmakepresets-with-conan-generated-ones"]], "CMakeToolchain: Inject arbitrary CMake variables into dependencies": [[49, "cmaketoolchain-inject-arbitrary-cmake-variables-into-dependencies"]], "tools.files": [[50, "tools-files"]], "Patching sources": [[51, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[51, "patching-using-replace-in-file"]], "in source() method": [[51, "in-source-method"]], "in build() method": [[51, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[51, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[51, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[52, "tools-google"]], "Build a simple Bazel project using Conan": [[53, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[54, "tools-meson"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Capturing Git scm information": [[56, "capturing-git-scm-information"]], "Credentials management": [[56, "credentials-management"]], "Conan 2.0 - C and C++ Package Manager Documentation": [[57, "conan-2-0-c-and-c-package-manager-documentation"]], "Install": [[58, "install"]], "Install with pip (recommended)": [[58, "install-with-pip-recommended"]], "Known installation issues with pip": [[58, "known-installation-issues-with-pip"]], "Update": [[58, "update"]], "Install with pipx": [[58, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[58, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[58, "install-from-source"]], "Integrations": [[59, "integrations"]], "android_logo Android": [[60, "android-logo-android"]], "autotools_logo Autotools": [[61, "autotools-logo-autotools"]], "bazel_logo Bazel": [[62, "bazel-logo-bazel"]], "clion_logo CLion": [[63, "clion-logo-clion"]], "Introduction": [[63, "introduction"], [70, "introduction"], [175, "introduction"]], "Installing the plugin": [[63, "installing-the-plugin"]], "Configuring the plugin": [[63, "configuring-the-plugin"]], "Using the plugin": [[63, "using-the-plugin"]], "cmake_logo CMake": [[64, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[65, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[65, "artifactory-build-info"]], "How to install the build info extension commands": [[65, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[65, "generating-a-build-info"]], "gnu_make_logo Makefile": [[66, "gnu-make-logo-makefile"]], "meson_logo Meson": [[67, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[68, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[69, "xcode-logo-xcode"]], "Open Source": [[70, "open-source"]], "Decentralized package manager": [[70, "decentralized-package-manager"]], "Binary management": [[70, "binary-management"]], "All platforms, all build systems and compilers": [[70, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[70, "stable"]], "Community": [[70, "community"]], "Navigating the documentation": [[70, "navigating-the-documentation"]], "Knowledge": [[71, "knowledge"]], "Cheat sheet": [[72, "cheat-sheet"]], "FAQ": [[73, "faq"]], "Troubleshooting": [[73, "troubleshooting"]], "ERROR: Missing prebuilt package": [[73, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[73, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[73, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[73, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[74, "core-guidelines"]], "Good practices": [[74, "good-practices"]], "Forbidden practices": [[74, "forbidden-practices"]], "Videos": [[75, "videos"]], "Reference": [[76, "reference"], [180, "reference"], [185, "reference"], [186, "reference"], [187, "reference"], [188, "reference"], [191, "reference"], [192, "reference"], [193, "reference"], [194, "reference"], [203, "reference"], [204, "reference"], [205, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [213, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [222, "reference"], [224, "reference"], [231, "reference"], [231, "id4"], [231, "id6"], [231, "id7"], [231, "id8"], [231, "id9"], [231, "id10"], [231, "id11"], [231, "id12"]], "The binary model": [[77, "the-binary-model"]], "Customizing the binary compatibility": [[78, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[78, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[78, "information-erasure-in-package-id-method"]], "The compatibility() method": [[78, "the-compatibility-method"]], "The compatibility.py plugin": [[78, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[78, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[78, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[78, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[78, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[79, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[79, "non-embed-mode"]], "Embed mode": [[79, "embed-mode"]], "Extending the binary model": [[80, "extending-the-binary-model"]], "Custom settings": [[80, "custom-settings"]], "Custom options": [[80, "custom-options"]], "Settings vs options vs conf": [[80, "settings-vs-options-vs-conf"]], "Custom configuration": [[80, "custom-configuration"]], "Cross build target settings": [[80, "cross-build-target-settings"]], "How the package_id is computed": [[81, "how-the-package-id-is-computed"]], "Commands": [[82, "commands"]], "Command formatters": [[82, "command-formatters"]], "conan build": [[83, "conan-build"], [262, "conan-build"]], "conan cache": [[84, "conan-cache"]], "conan cache path": [[84, "conan-cache-path"]], "conan cache clean": [[84, "conan-cache-clean"]], "conan cache check-integrity": [[84, "conan-cache-check-integrity"]], "conan cache backup-upload": [[84, "conan-cache-backup-upload"]], "conan cache save": [[84, "conan-cache-save"]], "conan cache restore": [[84, "conan-cache-restore"]], "conan config": [[85, "conan-config"]], "conan config home": [[85, "conan-config-home"]], "conan config install": [[85, "conan-config-install"]], "conan config list": [[85, "conan-config-list"]], "conan config show": [[85, "conan-config-show"]], "conan create": [[86, "conan-create"]], "Using conan create with build requirements": [[86, "using-conan-create-with-build-requirements"]], "Conan create output": [[86, "conan-create-output"]], "conan download": [[87, "conan-download"]], "conan editable": [[88, "conan-editable"]], "conan editable add": [[88, "conan-editable-add"]], "conan editable remove": [[88, "conan-editable-remove"]], "conan editable list": [[88, "conan-editable-list"]], "conan export": [[89, "conan-export"]], "Output Formats": [[89, "output-formats"]], "conan export-pkg": [[90, "conan-export-pkg"], [262, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[91, "formatter-graph-info-json"]], "conan graph": [[92, "conan-graph"]], "conan graph build-order": [[93, "conan-graph-build-order"]], "conan graph build-order-merge": [[94, "conan-graph-build-order-merge"]], "conan graph explain": [[95, "conan-graph-explain"]], "conan graph info": [[96, "conan-graph-info"]], "conan inspect": [[97, "conan-inspect"]], "conan install": [[98, "conan-install"], [262, "conan-install"]], "Conanfile path or \u2013requires": [[98, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[98, "profiles-settings-options-conf"]], "Generators and deployers": [[98, "generators-and-deployers"]], "Name, version, user, channel": [[98, "name-version-user-channel"]], "Lockfiles": [[98, "lockfiles"], [243, "lockfiles"], [267, "lockfiles"]], "conan list": [[99, "conan-list"]], "Listing recipe references": [[99, "listing-recipe-references"]], "Listing recipe revisions": [[99, "listing-recipe-revisions"]], "Listing package IDs": [[99, "listing-package-ids"]], "Listing package revisions": [[99, "listing-package-revisions"]], "Listing graph artifacts": [[99, "listing-graph-artifacts"]], "List json output format": [[99, "list-json-output-format"]], "List html output format": [[99, "list-html-output-format"]], "List compact output format": [[99, "list-compact-output-format"]], "conan lock": [[100, "conan-lock"]], "conan lock add": [[101, "conan-lock-add"]], "conan lock create": [[102, "conan-lock-create"]], "conan lock merge": [[103, "conan-lock-merge"]], "conan lock remove": [[104, "conan-lock-remove"]], "conan new": [[105, "conan-new"], [105, "id1"]], "Custom templates": [[105, "custom-templates"]], "conan profile": [[106, "conan-profile"]], "conan profile detect": [[106, "conan-profile-detect"]], "conan profile list": [[106, "conan-profile-list"]], "conan profile path": [[106, "conan-profile-path"]], "conan profile show": [[106, "conan-profile-show"]], "conan remote": [[107, "conan-remote"]], "conan remote add": [[107, "conan-remote-add"]], "conan remote auth": [[107, "conan-remote-auth"]], "conan remote disable": [[107, "conan-remote-disable"]], "conan remote enable": [[107, "conan-remote-enable"]], "conan remote list": [[107, "conan-remote-list"]], "conan remote list-users": [[107, "conan-remote-list-users"]], "conan remote login": [[107, "conan-remote-login"]], "conan remote logout": [[107, "conan-remote-logout"]], "conan remote remove": [[107, "conan-remote-remove"]], "conan remote rename": [[107, "conan-remote-rename"]], "conan remote set-user": [[107, "conan-remote-set-user"]], "conan remote update": [[107, "conan-remote-update"]], "conan remove": [[108, "conan-remove"]], "conan search": [[109, "conan-search"]], "conan source": [[110, "conan-source"], [262, "conan-source"]], "conan test": [[111, "conan-test"]], "conan upload": [[112, "conan-upload"]], "conan version": [[113, "conan-version"]], "Conan Server": [[114, "conan-server"]], "Configuration": [[114, "configuration"]], "Server Parameters": [[114, "server-parameters"]], "Permissions Parameters": [[114, "permissions-parameters"]], "Authentication": [[114, "authentication"]], "Create Your Own Custom Authenticator": [[114, "create-your-own-custom-authenticator"]], "Authorizations": [[114, "authorizations"]], "Create Your Own Custom Authorizer": [[114, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[114, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[114, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[114, "running-conan-server-using-apache"]], "conanfile.py": [[115, "conanfile-py"]], "Attributes": [[116, "attributes"], [208, "attributes"], [217, "attributes"], [222, "attributes"], [223, "attributes"]], "Package reference": [[116, "package-reference"]], "name": [[116, "name"]], "version": [[116, "version"]], "user": [[116, "user"]], "channel": [[116, "channel"]], "Metadata": [[116, "metadata"]], "description": [[116, "description"]], "license": [[116, "license"]], "author": [[116, "author"]], "topics": [[116, "topics"]], "homepage": [[116, "homepage"]], "url": [[116, "url"]], "Requirements": [[116, "requirements"]], "requires": [[116, "requires"]], "tool_requires": [[116, "tool-requires"]], "build_requires": [[116, "build-requires"]], "test_requires": [[116, "test-requires"], [120, "test-requires"]], "python_requires": [[116, "python-requires"], [264, "python-requires"]], "python_requires_extend": [[116, "python-requires-extend"]], "Sources": [[116, "sources"]], "exports": [[116, "exports"]], "exports_sources": [[116, "exports-sources"]], "conan_data": [[116, "conan-data"]], "source_buildenv": [[116, "source-buildenv"]], "Binary model": [[116, "binary-model"]], "package_type": [[116, "package-type"]], "settings": [[116, "settings"]], "options": [[116, "options"]], "default_options": [[116, "default-options"]], "default_build_options": [[116, "default-build-options"]], "options_description": [[116, "options-description"]], "info": [[116, "info"]], "package_id_{embed,non_embed,unknown}_mode": [[116, "package-id-embed-non-embed-unknown-mode"]], "Build": [[116, "build"]], "generators": [[116, "generators"]], "build_policy": [[116, "build-policy"]], "win_bash": [[116, "win-bash"]], "win_bash_run": [[116, "win-bash-run"]], "Folders and layout": [[116, "folders-and-layout"]], "source_folder": [[116, "source-folder"]], "export_sources_folder": [[116, "export-sources-folder"]], "build_folder": [[116, "build-folder"]], "package_folder": [[116, "package-folder"]], "recipe_folder": [[116, "recipe-folder"]], "recipe_metadata_folder": [[116, "recipe-metadata-folder"]], "package_metadata_folder": [[116, "package-metadata-folder"]], "no_copy_source": [[116, "no-copy-source"]], "Layout": [[116, "layout"]], "folders": [[116, "folders"]], "cpp": [[116, "cpp"]], "layouts": [[116, "layouts"]], "Package information for consumers": [[116, "package-information-for-consumers"]], "cpp_info": [[116, "cpp-info"]], "buildenv_info": [[116, "buildenv-info"]], "runenv_info": [[116, "runenv-info"]], "conf_info": [[116, "conf-info"], [132, "conf-info"]], "deprecated": [[116, "deprecated"]], "provides": [[116, "provides"]], "Other": [[116, "other"]], "dependencies": [[116, "dependencies"]], "conf": [[116, "conf"], [180, "conf"], [182, "conf"], [185, "conf"], [188, "conf"], [198, "conf"], [205, "conf"], [207, "conf"], [210, "conf"], [212, "conf"], [213, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [222, "conf"], [223, "conf"], [224, "conf"]], "Output": [[116, "output"]], "Output contents": [[116, "output-contents"]], "revision_mode": [[116, "revision-mode"]], "upload_policy": [[116, "upload-policy"]], "required_conan_version": [[116, "required-conan-version"]], "implements": [[116, "implements"]], "alias": [[116, "alias"]], "Methods": [[117, "methods"]], "build()": [[118, "build"]], "build_id()": [[119, "build-id"]], "build_requirements()": [[120, "build-requirements"]], "tool_requires()": [[120, "tool-requires"]], "": [[120, "host-version"]], "compatibility()": [[121, "compatibility"]], "config_options()": [[122, "config-options"]], "Available automatic implementations": [[122, "available-automatic-implementations"], [123, "available-automatic-implementations"], [131, "available-automatic-implementations"]], "auto_shared_fpic": [[122, "auto-shared-fpic"], [123, "auto-shared-fpic"]], "configure()": [[123, "configure"]], "export()": [[125, "export"]], "export_sources()": [[126, "export-sources"]], "generate()": [[127, "generate"]], "self.dependencies": [[127, "self-dependencies"]], "Dependencies interface": [[127, "dependencies-interface"]], "Iterating dependencies": [[127, "iterating-dependencies"]], "Dependencies cpp_info interface": [[127, "dependencies-cpp-info-interface"]], "init()": [[128, "init"]], "layout()": [[129, "layout"]], "self.folders": [[129, "self-folders"], [263, "self-folders"]], "self.cpp": [[129, "self-cpp"], [263, "self-cpp"]], "Environment variables and configuration": [[129, "environment-variables-and-configuration"]], "package()": [[130, "package"]], "package_id()": [[131, "package-id"]], "auto_header_only": [[131, "auto-header-only"]], "Information erasure": [[131, "information-erasure"]], "Partial information erasure": [[131, "partial-information-erasure"]], "Adding information": [[131, "adding-information"]], "package_info()": [[132, "package-info"]], "cpp_info: Library and build information": [[132, "cpp-info-library-and-build-information"]], "Properties": [[132, "properties"], [187, "properties"], [208, "properties"], [210, "properties"], [211, "properties"]], "Components": [[132, "components"]], "buildenv_info, runenv_info": [[132, "buildenv-info-runenv-info"]], "requirements()": [[133, "requirements"]], "Requirement traits": [[133, "requirement-traits"]], "headers": [[133, "headers"]], "libs": [[133, "libs"]], "build": [[133, "build"]], "run": [[133, "run"]], "visible": [[133, "visible"]], "transitive_headers": [[133, "transitive-headers"]], "transitive_libs": [[133, "transitive-libs"]], "test": [[133, "test"]], "package_id_mode": [[133, "package-id-mode"]], "force": [[133, "force"]], "override": [[133, "override"]], "direct": [[133, "direct"]], "package_type trait inferring": [[133, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[133, "default-traits-for-each-kind-of-requires"]], "set_name()": [[134, "set-name"]], "set_version()": [[135, "set-version"]], "source()": [[136, "source"]], "Source caching": [[136, "source-caching"]], "Forced retrieval of sources": [[136, "forced-retrieval-of-sources"]], "system_requirements()": [[137, "system-requirements"]], "Collecting system requirements": [[137, "collecting-system-requirements"]], "test()": [[138, "test"]], "validate()": [[139, "validate"]], "validate_build()": [[140, "validate-build"]], "Running and output": [[141, "running-and-output"]], "Output text from recipes": [[141, "output-text-from-recipes"]], "Running commands": [[141, "running-commands"]], "[requires]": [[142, "requires"]], "[tool_requires]": [[142, "tool-requires"], [147, "tool-requires"]], "[test_requires]": [[142, "test-requires"]], "[generators]": [[142, "generators"]], "[options]": [[142, "options"], [147, "options"]], "[layout]": [[142, "layout"]], "Configuration files": [[143, "configuration-files"]], ".conanrc": [[144, "conanrc"]], "credentials.json": [[145, "credentials-json"]], "global.conf": [[146, "global-conf"]], "Introduction to configuration": [[146, "introduction-to-configuration"]], "User/Tools configurations": [[146, "user-tools-configurations"]], "Configuration file template": [[146, "configuration-file-template"]], "Configuration data types": [[146, "configuration-data-types"]], "Configuration data operators": [[146, "configuration-data-operators"]], "Configuration patterns": [[146, "configuration-patterns"]], "Information about built-in confs": [[146, "information-about-built-in-confs"]], "Networking confs": [[146, "networking-confs"]], "Configuration of client certificates": [[146, "configuration-of-client-certificates"]], "UX confs": [[146, "ux-confs"]], "Skip warnings": [[146, "skip-warnings"]], "profiles": [[147, "profiles"]], "Introduction to profiles": [[147, "introduction-to-profiles"]], "Profile sections": [[147, "profile-sections"]], "[settings]": [[147, "settings"]], "[system_tools] (DEPRECATED)": [[147, "system-tools-deprecated"]], "[buildenv]": [[147, "buildenv"]], "[runenv]": [[147, "runenv"]], "[conf]": [[147, "conf"]], "[replace_requires]": [[147, "replace-requires"]], "[replace_tool_requires]": [[147, "replace-tool-requires"]], "[platform_requires]": [[147, "platform-requires"]], "[platform_tool_requires]": [[147, "platform-tool-requires"]], "Profile rendering": [[147, "profile-rendering"]], "Profile patterns": [[147, "profile-patterns"]], "Profile includes": [[147, "profile-includes"]], "remotes.json": [[148, "remotes-json"]], "settings.yml": [[149, "settings-yml"]], "Operating systems": [[149, "operating-systems"]], "Compilers": [[149, "compilers"]], "msvc": [[149, "msvc"]], "intel-cc": [[149, "intel-cc"]], "Architectures": [[149, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[149, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[149, "customizing-settings"]], "Adding new settings": [[149, "adding-new-settings"]], "Adding new sub-settings": [[149, "adding-new-sub-settings"]], "Add new values": [[149, "add-new-values"]], "settings_user.yml": [[149, "settings-user-yml"]], "source_credentials.json": [[150, "source-credentials-json"]], "Environment variables": [[151, "environment-variables"]], "CONAN_HOME": [[151, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[151, "conan-default-profile"]], "Remote login variables": [[151, "remote-login-variables"]], "Terminal color variables": [[151, "terminal-color-variables"]], "Logging": [[151, "logging"]], "Extensions": [[152, "extensions"]], "Binary compatibility": [[153, "binary-compatibility"]], "Command wrapper": [[154, "command-wrapper"], [271, "command-wrapper"]], "Location and naming": [[155, "location-and-naming"]], "Scoping": [[155, "scoping"]], "Decorators": [[155, "decorators"]], "conan_command(group=None, formatters=None)": [[155, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[155, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[155, "argument-definition-and-parsing"]], "Formatters": [[155, "formatters"]], "Commands parameters": [[155, "commands-parameters"]], "Custom Conan generators": [[156, "custom-conan-generators"]], "Custom generators as python_requires": [[156, "custom-generators-as-python-requires"]], "Using global custom generators": [[156, "using-global-custom-generators"]], "Deployers": [[157, "deployers"]], "Built-in deployers": [[157, "built-in-deployers"]], "full_deploy": [[157, "full-deploy"]], "direct_deploy": [[157, "direct-deploy"]], "configuration": [[157, "configuration"], [187, "configuration"]], "Hooks": [[158, "hooks"]], "Hook structure": [[158, "hook-structure"]], "Importing from a module": [[158, "importing-from-a-module"]], "Hook interface": [[158, "hook-interface"]], "Storage, activation and sharing": [[158, "storage-activation-and-sharing"]], "Official Hooks": [[158, "official-hooks"]], "Package signing": [[159, "package-signing"], [271, "package-signing"]], "Profile plugin": [[160, "profile-plugin"]], "Python API": [[161, "python-api"]], "Conan API Reference": [[162, "conan-api-reference"]], "Config API": [[163, "config-api"]], "Download API": [[164, "download-api"]], "Export API": [[165, "export-api"]], "Graph API": [[166, "graph-api"]], "Install API": [[167, "install-api"]], "List API": [[168, "list-api"]], "New API": [[169, "new-api"]], "Profiles API": [[170, "profiles-api"]], "Remotes API": [[171, "remotes-api"]], "Remove API": [[172, "remove-api"]], "Search API": [[173, "search-api"]], "Upload API": [[174, "upload-api"]], "Python requires": [[175, "python-requires"]], "Extending base classes": [[175, "extending-base-classes"]], "Reusing files": [[175, "reusing-files"]], "Testing python-requires": [[175, "testing-python-requires"]], "Effect in package_id": [[175, "effect-in-package-id"]], "Resolution of python_requires": [[175, "resolution-of-python-requires"]], "Recipe tools": [[176, "recipe-tools"]], "conan.tools.android": [[177, "conan-tools-android"]], "android_abi()": [[177, "android-abi"]], "conan.tools.apple": [[178, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[179, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[179, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[179, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[179, "conan-tools-apple-xcrun"]], "XcodeBuild": [[180, "xcodebuild"]], "XcodeDeps": [[181, "xcodedeps"]], "Additional variables defined": [[181, "additional-variables-defined"]], "Components support": [[181, "components-support"]], "Custom configurations": [[181, "custom-configurations"], [213, "custom-configurations"]], "XcodeToolchain": [[182, "xcodetoolchain"]], "conan.tools.build": [[183, "conan-tools-build"]], "Building": [[183, "building"]], "conan.tools.build.build_jobs()": [[183, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[183, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[183, "conan-tools-build-can-run"]], "Cppstd": [[183, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[183, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[183, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[183, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[183, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[183, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[183, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[184, "conan-tools-cmake"]], "CMake": [[185, "cmake"]], "cmake_layout": [[186, "cmake-layout"]], "Multi-setting/option cmake_layout": [[186, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[187, "cmakedeps"]], "Generated files": [[187, "generated-files"], [188, "generated-files"], [193, "generated-files"], [194, "generated-files"], [204, "generated-files"], [205, "generated-files"], [206, "generated-files"], [208, "generated-files"], [211, "generated-files"], [212, "generated-files"], [217, "generated-files"], [221, "generated-files"]], "Customization": [[187, "customization"], [188, "customization"], [204, "customization"], [205, "customization"], [206, "customization"], [208, "customization"], [211, "customization"], [217, "customization"], [220, "customization"], [221, "customization"], [222, "customization"], [224, "customization"]], "build_context_activated": [[187, "build-context-activated"], [208, "build-context-activated"], [211, "build-context-activated"]], "build_context_suffix": [[187, "build-context-suffix"], [208, "build-context-suffix"]], "build_context_build_modules": [[187, "build-context-build-modules"]], "check_components_exist": [[187, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[187, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[187, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[187, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[188, "cmaketoolchain"]], "preprocessor_definitions": [[188, "preprocessor-definitions"], [217, "preprocessor-definitions"]], "cache_variables": [[188, "cache-variables"]], "variables": [[188, "variables"]], "user_presets_path": [[188, "user-presets-path"]], "Extra compilation flags": [[188, "extra-compilation-flags"]], "presets_prefix": [[188, "presets-prefix"]], "Using a custom toolchain file": [[188, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[188, "extending-and-advanced-customization"]], "Customizing the content blocks": [[188, "customizing-the-content-blocks"]], "Cross building": [[188, "cross-building"]], "conan.tools.CppInfo": [[189, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[189, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[190, "conan-tools-env"]], "Environment": [[191, "environment"]], "Variable declaration": [[191, "variable-declaration"]], "Composition": [[191, "composition"]], "Obtaining environment variables": [[191, "obtaining-environment-variables"]], "Environment definition": [[191, "environment-definition"]], "EnvVars": [[192, "envvars"]], "Creating environment files": [[192, "creating-environment-files"]], "Running with environment files": [[192, "running-with-environment-files"]], "Applying the environment variables": [[192, "applying-the-environment-variables"]], "Iterating the variables": [[192, "iterating-the-variables"]], "VirtualBuildEnv": [[193, "virtualbuildenv"]], "VirtualRunEnv": [[194, "virtualrunenv"]], "conan.tools.files": [[195, "conan-tools-files"]], "conan.tools.files basic operations": [[196, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[196, "conan-tools-files-copy"]], "conan.tools.files.load()": [[196, "conan-tools-files-load"]], "conan.tools.files.save()": [[196, "conan-tools-files-save"]], "conan.tools.files.rename()": [[196, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[196, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[196, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[196, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[196, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[196, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[196, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[196, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[196, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[196, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[197, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[197, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[197, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[197, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[198, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[198, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[198, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[198, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[199, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[200, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[200, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[200, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[200, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[201, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[201, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[201, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[201, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[202, "conan-tools-gnu"]], "Autotools": [[203, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[203, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[203, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[203, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[204, "autotoolsdeps"]], "AutotoolsToolchain": [[205, "autotoolstoolchain"]], "Customizing the environment": [[205, "customizing-the-environment"], [223, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[205, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[206, "makedeps"]], "Flags": [[206, "flags"]], "PkgConfig": [[207, "pkgconfig"]], "PkgConfigDeps": [[208, "pkgconfigdeps"]], "Naming": [[208, "naming"], [211, "naming"]], "conan.tools.google": [[209, "conan-tools-google"]], "Bazel": [[210, "bazel"]], "BazelDeps": [[211, "bazeldeps"]], "BazelToolchain": [[212, "bazeltoolchain"]], "conan.tools.intel": [[213, "conan-tools-intel"]], "IntelCC": [[213, "intelcc"]], "conan.tools.layout": [[214, "conan-tools-layout"]], "Predefined layouts": [[214, "predefined-layouts"]], "basic_layout": [[214, "basic-layout"]], "conan.tools.meson": [[215, "conan-tools-meson"]], "Meson": [[216, "meson"]], "MesonToolchain": [[217, "mesontoolchain"]], "conan_meson_native.ini": [[217, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[217, "conan-meson-cross-ini"]], "Default directories": [[217, "default-directories"]], "project_options": [[217, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[217, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[217, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[217, "objective-c-arguments"]], "conan.tools.microsoft": [[218, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[219, "conan-tools-microsoft-visual"]], "check_min_vs": [[219, "check-min-vs"]], "msvc_runtime_flag": [[219, "msvc-runtime-flag"]], "is_msvc": [[219, "is-msvc"]], "is_msvc_static_runtime": [[219, "is-msvc-static-runtime"]], "msvs_toolset": [[219, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[219, "conan-tools-microsoft-subsystems"]], "unix_path": [[219, "unix-path"]], "MSBuild": [[220, "msbuild"]], "attributes": [[220, "attributes"]], "MSBuildDeps": [[221, "msbuilddeps"]], "Requirement traits support": [[221, "requirement-traits-support"]], "Configurations": [[221, "configurations"]], "Dependencies": [[221, "dependencies"]], "MSBuildToolchain": [[222, "msbuildtoolchain"]], "NMakeDeps": [[223, "nmakedeps"]], "NMakeToolchain": [[223, "nmaketoolchain"]], "constructor": [[223, "constructor"]], "VCVars": [[224, "vcvars"]], "vs_layout": [[225, "vs-layout"]], "conan.tools.scm": [[226, "conan-tools-scm"]], "Git": [[227, "git"]], "Version": [[228, "version"]], "conan.tools.scons": [[229, "conan-tools-scons"]], "SConsDeps": [[229, "sconsdeps"]], "conan.tools.system": [[230, "conan-tools-system"]], "conan.tools.system.package_manager": [[231, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[231, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[231, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[231, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[231, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[231, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[231, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[231, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[231, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[231, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[231, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[231, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[231, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[232, "tutorial"]], "Working with Conan repositories": [[233, "working-with-conan-repositories"]], "Table of contents": [[233, null], [239, null], [246, null], [253, null], [265, null]], "Contributing to Conan Center": [[234, "contributing-to-conan-center"]], "Setting up a Conan remote": [[235, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[236, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[236, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[236, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[237, "setting-up-a-conan-server"]], "Uploading Packages": [[238, "uploading-packages"]], "Consuming packages": [[239, "consuming-packages"]], "Build a simple CMake project using Conan": [[240, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[241, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[241, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[241, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[242, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[242, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[242, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[242, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[242, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[243, "introduction-to-versioning"]], "Version ranges": [[243, "version-ranges"], [269, "version-ranges"]], "Revisions": [[243, "revisions"], [268, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[244, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[244, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[244, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[244, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[245, "using-build-tools-as-conan-packages"]], "Creating packages": [[246, "creating-packages"]], "Add dependencies to packages": [[247, "add-dependencies-to-packages"]], "Build packages: the build() method": [[248, "build-packages-the-build-method"]], "Build and run tests for your project": [[248, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[248, "changes-introduced-in-the-recipe"], [251, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[248, "changes-introduced-in-the-library-sources"], [251, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[248, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[248, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[249, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[249, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[249, "c-libraries"]], "Header-only libraries": [[249, "header-only-libraries"]], "Create your first Conan package": [[250, "create-your-first-conan-package"]], "A note about the Conan cache": [[250, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[251, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[251, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[251, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[251, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[252, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[252, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[252, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[252, "using-the-conandata-yml-file"]], "Other types of packages": [[253, "other-types-of-packages"]], "Header-only packages": [[254, "header-only-packages"]], "Header-only library with tests": [[254, "header-only-library-with-tests"]], "Package prebuilt binaries": [[255, "package-prebuilt-binaries"]], "Locally building binaries": [[255, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[255, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[255, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[256, "tool-requires-packages"]], "A simple tool require recipe": [[256, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[256, "removing-settings-in-package-id"]], "Package files: the package() method": [[257, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[257, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[257, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[257, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[258, "preparing-the-build"]], "Testing Conan packages": [[259, "testing-conan-packages"]], "Developing packages locally": [[260, "developing-packages-locally"]], "Packages in editable mode": [[261, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[261, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[261, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[261, "working-with-editable-packages"]], "Building editable dependencies": [[261, "building-editable-dependencies"]], "Revert the editable mode": [[261, "revert-the-editable-mode"]], "Package Development Flow": [[262, "package-development-flow"]], "Understanding the Conan Package layout": [[263, "understanding-the-conan-package-layout"]], "cpp.package": [[263, "cpp-package"]], "cpp.source and cpp.build": [[263, "cpp-source-and-cpp-build"]], "Other important Conan features": [[264, "other-important-conan-features"]], "Packages lists": [[264, "packages-lists"]], "Removing unused packages from the cache": [[264, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[266, "dependencies-conflicts"]], "Resolving conflicts": [[266, "resolving-conflicts"]], "Overriding options": [[266, "overriding-options"]], "Multi-configuration lockfiles": [[267, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[267, "evolving-lockfiles"]], "Creating different revisions": [[268, "creating-different-revisions"]], "Using revisions": [[268, "using-revisions"]], "Uploading revisions": [[268, "uploading-revisions"]], "Package revisions": [[268, "package-revisions"]], "Semantic versioning": [[269, "semantic-versioning"]], "Range expressions": [[269, "range-expressions"]], "Versions": [[270, "versions"]], "Automating versions": [[270, "automating-versions"]], "Requiring the new versions": [[270, "requiring-the-new-versions"]], "What\u2019s new in Conan 2.0": [[271, "what-s-new-in-conan-2-0"]], "Conan 2.0 migration guide": [[271, "conan-2-0-migration-guide"]], "New graph model": [[271, "new-graph-model"]], "New public Python API": [[271, "new-public-python-api"]], "New build system integrations": [[271, "new-build-system-integrations"]], "New custom user commands": [[271, "new-custom-user-commands"]], "New CLI": [[271, "new-cli"]], "New deployers": [[271, "new-deployers"]], "New package_id": [[271, "new-package-id"]], "compatibility.py": [[271, "compatibility-py"]], "New lockfiles": [[271, "new-lockfiles"]], "New configuration and environment management": [[271, "new-configuration-and-environment-management"]], "Multi-revision cache": [[271, "multi-revision-cache"]], "New extensions plugins": [[271, "new-extensions-plugins"]], "Profile checker": [[271, "profile-checker"]], "Package immutability optimizations": [[271, "package-immutability-optimizations"]]}, "indexentries": {"append() (conf method)": [[132, "conans.model.conf.Conf.append"]], "define() (conf method)": [[132, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[132, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[132, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[132, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[132, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[162, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[163, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[164, "conan.api.subapi.download.DownloadAPI"]], "exportapi (class in conan.api.subapi.export)": [[165, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[166, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[167, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[168, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[168, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[169, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[170, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[171, "conan.api.subapi.remotes.RemotesAPI"]], "list() (remotesapi method)": [[171, "conan.api.subapi.remotes.RemotesAPI.list"]], "removeapi (class in conan.api.subapi.remove)": [[172, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[173, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[174, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.prepare"]], "android_abi() (in module conan.tools.android)": [[177, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[179, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[179, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[179, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[179, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[179, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[179, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[179, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[179, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[179, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[179, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[179, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[179, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[179, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[183, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[185, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[186, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[191, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[191, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[191, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[191, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[191, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[191, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[191, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[191, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[191, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[191, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[192, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[196, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[196, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[203, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[206, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[206, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[207, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[207, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[208, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[208, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[208, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[210, "conan.tools.google.Bazel"]], "build() (bazel method)": [[210, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[210, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[211, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[211, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[211, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[212, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[212, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[213, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[213, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[213, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[213, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[213, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[213, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[216, "conan.tools.meson.Meson"]], "build() (meson method)": [[216, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[216, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[216, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[216, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[217, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[217, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[219, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[220, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[221, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[221, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[222, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[222, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[224, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[225, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[227, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[227, "conan.tools.scm.git.Git.checkout"]], "clone() (git method)": [[227, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[227, "conan.tools.scm.git.Git.commit_in_remote"]], "fetch_commit() (git method)": [[227, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[227, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[227, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[227, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[227, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[227, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[228, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[231, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[231, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[231, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[231, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[231, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[231, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[231, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[231, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["404", "changelog", "devops", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo", "devops/backup_sources/sources_backup", "devops/conancenter/hosting_binaries", "devops/metadata", "devops/save_restore", "devops/using_conancenter", "devops/versioning", "devops/versioning/resolve_prereleases", "examples", "examples/commands", "examples/commands/pkglists", "examples/conanfile", "examples/conanfile/layout", "examples/conanfile/layout/conanfile_in_subfolder", "examples/conanfile/layout/editable_components", "examples/conanfile/layout/multiple_subprojects", "examples/conanfile/layout/third_party_libraries", "examples/conanfile/package_info", "examples/conanfile/package_info/components", "examples/conanfile/package_info/package_info_conf_and_env", "examples/config_files", "examples/config_files/settings/settings_user", "examples/cross_build", "examples/cross_build/android/android_studio", "examples/cross_build/android/ndk", "examples/dev_flow", "examples/dev_flow/debug/step_into_dependencies", "examples/extensions", "examples/extensions/commands/clean/custom_command_clean_revisions", "examples/extensions/commands/custom_commands", "examples/extensions/deployers/builtin_deployers", "examples/extensions/deployers/custom_deployers", "examples/extensions/deployers/dev/development_deploy", "examples/extensions/deployers/sources/custom_deployer_sources", "examples/graph", "examples/graph/requires/consume_cmake_macro", "examples/graph/tool_requires/different_options", "examples/graph/tool_requires/different_versions", "examples/graph/tool_requires/use_cmake_modules", "examples/graph/tool_requires/using_protobuf", "examples/tools", "examples/tools/autotools/autotools", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain", "examples/tools/cmake/cmake", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables", "examples/tools/files/files", "examples/tools/files/patches/patch_sources", "examples/tools/google/bazel", "examples/tools/google/bazeltoolchain/build_simple_bazel_project", "examples/tools/meson/meson", "examples/tools/meson/mesontoolchain/build_simple_meson_project", "examples/tools/scm/git/capture_scm/git_capture_scm", "index", "installation", "integrations", "integrations/android", "integrations/autotools", "integrations/bazel", "integrations/clion", "integrations/cmake", "integrations/jfrog", "integrations/makefile", "integrations/meson", "integrations/visual_studio", "integrations/xcode", "introduction", "knowledge", "knowledge/cheatsheet", "knowledge/faq", "knowledge/guidelines", "knowledge/videos", "reference", "reference/binary_model", "reference/binary_model/custom_compatibility", "reference/binary_model/dependencies", "reference/binary_model/extending", "reference/binary_model/package_id", "reference/commands", "reference/commands/build", "reference/commands/cache", "reference/commands/config", "reference/commands/create", "reference/commands/download", "reference/commands/editable", "reference/commands/export", "reference/commands/export-pkg", "reference/commands/formatters/graph_info_json_formatter", "reference/commands/graph", "reference/commands/graph/build_order", "reference/commands/graph/build_order_merge", "reference/commands/graph/explain", "reference/commands/graph/info", "reference/commands/inspect", "reference/commands/install", "reference/commands/list", "reference/commands/lock", "reference/commands/lock/add", "reference/commands/lock/create", "reference/commands/lock/merge", "reference/commands/lock/remove", "reference/commands/new", "reference/commands/profile", "reference/commands/remote", "reference/commands/remove", "reference/commands/search", "reference/commands/source", "reference/commands/test", "reference/commands/upload", "reference/commands/version", "reference/conan_server", "reference/conanfile", "reference/conanfile/attributes", "reference/conanfile/methods", "reference/conanfile/methods/build", "reference/conanfile/methods/build_id", "reference/conanfile/methods/build_requirements", "reference/conanfile/methods/compatibility", "reference/conanfile/methods/config_options", "reference/conanfile/methods/configure", "reference/conanfile/methods/deploy", "reference/conanfile/methods/export", "reference/conanfile/methods/export_sources", "reference/conanfile/methods/generate", "reference/conanfile/methods/init", "reference/conanfile/methods/layout", "reference/conanfile/methods/package", "reference/conanfile/methods/package_id", "reference/conanfile/methods/package_info", "reference/conanfile/methods/requirements", "reference/conanfile/methods/set_name", "reference/conanfile/methods/set_version", "reference/conanfile/methods/source", "reference/conanfile/methods/system_requirements", "reference/conanfile/methods/test", "reference/conanfile/methods/validate", "reference/conanfile/methods/validate_build", "reference/conanfile/running_and_output", "reference/conanfile_txt", "reference/config_files", "reference/config_files/conanrc", "reference/config_files/credentials", "reference/config_files/global_conf", "reference/config_files/profiles", "reference/config_files/remotes", "reference/config_files/settings", "reference/config_files/source_credentials", "reference/environment", "reference/extensions", "reference/extensions/binary_compatibility", "reference/extensions/command_wrapper", "reference/extensions/custom_commands", "reference/extensions/custom_generators", "reference/extensions/deployers", "reference/extensions/hooks", "reference/extensions/package_signing", "reference/extensions/profile_plugin", "reference/extensions/python_api", "reference/extensions/python_api/ConanAPI", "reference/extensions/python_api/ConfigAPI", "reference/extensions/python_api/DownloadAPI", "reference/extensions/python_api/ExportAPI", "reference/extensions/python_api/GraphAPI", "reference/extensions/python_api/InstallAPI", "reference/extensions/python_api/ListAPI", "reference/extensions/python_api/NewAPI", "reference/extensions/python_api/ProfilesAPI", "reference/extensions/python_api/RemotesAPI", "reference/extensions/python_api/RemoveAPI", "reference/extensions/python_api/SearchAPI", "reference/extensions/python_api/UploadAPI", "reference/extensions/python_requires", "reference/tools", "reference/tools/android", "reference/tools/apple", "reference/tools/apple/other", "reference/tools/apple/xcodebuild", "reference/tools/apple/xcodedeps", "reference/tools/apple/xcodetoolchain", "reference/tools/build", "reference/tools/cmake", "reference/tools/cmake/cmake", "reference/tools/cmake/cmake_layout", "reference/tools/cmake/cmakedeps", "reference/tools/cmake/cmaketoolchain", "reference/tools/cpp_info", "reference/tools/env", "reference/tools/env/environment", "reference/tools/env/envvars", "reference/tools/env/virtualbuildenv", "reference/tools/env/virtualrunenv", "reference/tools/files", "reference/tools/files/basic", "reference/tools/files/checksum", "reference/tools/files/downloads", "reference/tools/files/packaging", "reference/tools/files/patches", "reference/tools/files/symlinks", "reference/tools/gnu", "reference/tools/gnu/autotools", "reference/tools/gnu/autotoolsdeps", "reference/tools/gnu/autotoolstoolchain", "reference/tools/gnu/makedeps", "reference/tools/gnu/pkgconfig", "reference/tools/gnu/pkgconfigdeps", "reference/tools/google", "reference/tools/google/bazel", "reference/tools/google/bazeldeps", "reference/tools/google/bazeltoolchain", "reference/tools/intel", "reference/tools/layout", "reference/tools/meson", "reference/tools/meson/meson", "reference/tools/meson/mesontoolchain", "reference/tools/microsoft", "reference/tools/microsoft/helpers", "reference/tools/microsoft/msbuild", "reference/tools/microsoft/msbuilddeps", "reference/tools/microsoft/msbuildtoolchain", "reference/tools/microsoft/nmake", "reference/tools/microsoft/vcvars", "reference/tools/microsoft/visual_layout", "reference/tools/scm", "reference/tools/scm/git", "reference/tools/scm/version", "reference/tools/scons", "reference/tools/system", "reference/tools/system/package_manager", "tutorial", "tutorial/conan_repositories", "tutorial/conan_repositories/conan_center", "tutorial/conan_repositories/setting_up_conan_remotes", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server", "tutorial/conan_repositories/uploading_packages", "tutorial/consuming_packages", "tutorial/consuming_packages/build_simple_cmake_project", "tutorial/consuming_packages/cross_building_with_conan", "tutorial/consuming_packages/different_configurations", "tutorial/consuming_packages/intro_to_versioning", "tutorial/consuming_packages/the_flexibility_of_conanfile_py", "tutorial/consuming_packages/use_tools_as_conan_packages", "tutorial/creating_packages", "tutorial/creating_packages/add_dependencies_to_packages", "tutorial/creating_packages/build_packages", "tutorial/creating_packages/configure_options_settings", "tutorial/creating_packages/create_your_first_package", "tutorial/creating_packages/define_package_information", "tutorial/creating_packages/handle_sources_in_packages", "tutorial/creating_packages/other_types_of_packages", "tutorial/creating_packages/other_types_of_packages/header_only_packages", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages", "tutorial/creating_packages/package_method", "tutorial/creating_packages/preparing_the_build", "tutorial/creating_packages/test_conan_packages", "tutorial/developing_packages", "tutorial/developing_packages/editable_packages", "tutorial/developing_packages/local_package_development_flow", "tutorial/developing_packages/package_layout", "tutorial/other_features", "tutorial/versioning", "tutorial/versioning/conflicts", "tutorial/versioning/lockfiles", "tutorial/versioning/revisions", "tutorial/versioning/version_ranges", "tutorial/versioning/versions", "whatsnew"], "filenames": ["404.rst", "changelog.rst", "devops.rst", "devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.rst", "devops/backup_sources/sources_backup.rst", "devops/conancenter/hosting_binaries.rst", "devops/metadata.rst", "devops/save_restore.rst", "devops/using_conancenter.rst", "devops/versioning.rst", "devops/versioning/resolve_prereleases.rst", "examples.rst", "examples/commands.rst", "examples/commands/pkglists.rst", "examples/conanfile.rst", "examples/conanfile/layout.rst", "examples/conanfile/layout/conanfile_in_subfolder.rst", "examples/conanfile/layout/editable_components.rst", "examples/conanfile/layout/multiple_subprojects.rst", "examples/conanfile/layout/third_party_libraries.rst", "examples/conanfile/package_info.rst", "examples/conanfile/package_info/components.rst", "examples/conanfile/package_info/package_info_conf_and_env.rst", "examples/config_files.rst", "examples/config_files/settings/settings_user.rst", "examples/cross_build.rst", "examples/cross_build/android/android_studio.rst", "examples/cross_build/android/ndk.rst", "examples/dev_flow.rst", "examples/dev_flow/debug/step_into_dependencies.rst", "examples/extensions.rst", "examples/extensions/commands/clean/custom_command_clean_revisions.rst", "examples/extensions/commands/custom_commands.rst", "examples/extensions/deployers/builtin_deployers.rst", "examples/extensions/deployers/custom_deployers.rst", "examples/extensions/deployers/dev/development_deploy.rst", "examples/extensions/deployers/sources/custom_deployer_sources.rst", "examples/graph.rst", "examples/graph/requires/consume_cmake_macro.rst", "examples/graph/tool_requires/different_options.rst", "examples/graph/tool_requires/different_versions.rst", "examples/graph/tool_requires/use_cmake_modules.rst", "examples/graph/tool_requires/using_protobuf.rst", "examples/tools.rst", "examples/tools/autotools/autotools.rst", "examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.rst", "examples/tools/cmake/cmake.rst", "examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.rst", "examples/tools/cmake/cmake_toolchain/inject_cmake_variables.rst", "examples/tools/files/files.rst", "examples/tools/files/patches/patch_sources.rst", "examples/tools/google/bazel.rst", "examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst", "examples/tools/meson/meson.rst", "examples/tools/meson/mesontoolchain/build_simple_meson_project.rst", "examples/tools/scm/git/capture_scm/git_capture_scm.rst", "index.rst", "installation.rst", "integrations.rst", "integrations/android.rst", "integrations/autotools.rst", "integrations/bazel.rst", "integrations/clion.rst", "integrations/cmake.rst", "integrations/jfrog.rst", "integrations/makefile.rst", "integrations/meson.rst", "integrations/visual_studio.rst", "integrations/xcode.rst", "introduction.rst", "knowledge.rst", "knowledge/cheatsheet.rst", "knowledge/faq.rst", "knowledge/guidelines.rst", "knowledge/videos.rst", "reference.rst", "reference/binary_model.rst", "reference/binary_model/custom_compatibility.rst", "reference/binary_model/dependencies.rst", "reference/binary_model/extending.rst", "reference/binary_model/package_id.rst", "reference/commands.rst", "reference/commands/build.rst", "reference/commands/cache.rst", "reference/commands/config.rst", "reference/commands/create.rst", "reference/commands/download.rst", "reference/commands/editable.rst", "reference/commands/export.rst", "reference/commands/export-pkg.rst", "reference/commands/formatters/graph_info_json_formatter.rst", "reference/commands/graph.rst", "reference/commands/graph/build_order.rst", "reference/commands/graph/build_order_merge.rst", "reference/commands/graph/explain.rst", "reference/commands/graph/info.rst", "reference/commands/inspect.rst", "reference/commands/install.rst", "reference/commands/list.rst", "reference/commands/lock.rst", "reference/commands/lock/add.rst", "reference/commands/lock/create.rst", "reference/commands/lock/merge.rst", "reference/commands/lock/remove.rst", "reference/commands/new.rst", "reference/commands/profile.rst", "reference/commands/remote.rst", "reference/commands/remove.rst", "reference/commands/search.rst", "reference/commands/source.rst", "reference/commands/test.rst", "reference/commands/upload.rst", "reference/commands/version.rst", "reference/conan_server.rst", "reference/conanfile.rst", "reference/conanfile/attributes.rst", "reference/conanfile/methods.rst", "reference/conanfile/methods/build.rst", "reference/conanfile/methods/build_id.rst", "reference/conanfile/methods/build_requirements.rst", "reference/conanfile/methods/compatibility.rst", "reference/conanfile/methods/config_options.rst", "reference/conanfile/methods/configure.rst", "reference/conanfile/methods/deploy.rst", "reference/conanfile/methods/export.rst", "reference/conanfile/methods/export_sources.rst", "reference/conanfile/methods/generate.rst", "reference/conanfile/methods/init.rst", "reference/conanfile/methods/layout.rst", "reference/conanfile/methods/package.rst", "reference/conanfile/methods/package_id.rst", "reference/conanfile/methods/package_info.rst", "reference/conanfile/methods/requirements.rst", "reference/conanfile/methods/set_name.rst", "reference/conanfile/methods/set_version.rst", "reference/conanfile/methods/source.rst", "reference/conanfile/methods/system_requirements.rst", "reference/conanfile/methods/test.rst", "reference/conanfile/methods/validate.rst", "reference/conanfile/methods/validate_build.rst", "reference/conanfile/running_and_output.rst", "reference/conanfile_txt.rst", "reference/config_files.rst", "reference/config_files/conanrc.rst", "reference/config_files/credentials.rst", "reference/config_files/global_conf.rst", "reference/config_files/profiles.rst", "reference/config_files/remotes.rst", "reference/config_files/settings.rst", "reference/config_files/source_credentials.rst", "reference/environment.rst", "reference/extensions.rst", "reference/extensions/binary_compatibility.rst", "reference/extensions/command_wrapper.rst", "reference/extensions/custom_commands.rst", "reference/extensions/custom_generators.rst", "reference/extensions/deployers.rst", "reference/extensions/hooks.rst", "reference/extensions/package_signing.rst", "reference/extensions/profile_plugin.rst", "reference/extensions/python_api.rst", "reference/extensions/python_api/ConanAPI.rst", "reference/extensions/python_api/ConfigAPI.rst", "reference/extensions/python_api/DownloadAPI.rst", "reference/extensions/python_api/ExportAPI.rst", "reference/extensions/python_api/GraphAPI.rst", "reference/extensions/python_api/InstallAPI.rst", "reference/extensions/python_api/ListAPI.rst", "reference/extensions/python_api/NewAPI.rst", "reference/extensions/python_api/ProfilesAPI.rst", "reference/extensions/python_api/RemotesAPI.rst", "reference/extensions/python_api/RemoveAPI.rst", "reference/extensions/python_api/SearchAPI.rst", "reference/extensions/python_api/UploadAPI.rst", "reference/extensions/python_requires.rst", "reference/tools.rst", "reference/tools/android.rst", "reference/tools/apple.rst", "reference/tools/apple/other.rst", "reference/tools/apple/xcodebuild.rst", "reference/tools/apple/xcodedeps.rst", "reference/tools/apple/xcodetoolchain.rst", "reference/tools/build.rst", "reference/tools/cmake.rst", "reference/tools/cmake/cmake.rst", "reference/tools/cmake/cmake_layout.rst", "reference/tools/cmake/cmakedeps.rst", "reference/tools/cmake/cmaketoolchain.rst", "reference/tools/cpp_info.rst", "reference/tools/env.rst", "reference/tools/env/environment.rst", "reference/tools/env/envvars.rst", "reference/tools/env/virtualbuildenv.rst", "reference/tools/env/virtualrunenv.rst", "reference/tools/files.rst", "reference/tools/files/basic.rst", "reference/tools/files/checksum.rst", "reference/tools/files/downloads.rst", "reference/tools/files/packaging.rst", "reference/tools/files/patches.rst", "reference/tools/files/symlinks.rst", "reference/tools/gnu.rst", "reference/tools/gnu/autotools.rst", "reference/tools/gnu/autotoolsdeps.rst", "reference/tools/gnu/autotoolstoolchain.rst", "reference/tools/gnu/makedeps.rst", "reference/tools/gnu/pkgconfig.rst", "reference/tools/gnu/pkgconfigdeps.rst", "reference/tools/google.rst", "reference/tools/google/bazel.rst", "reference/tools/google/bazeldeps.rst", "reference/tools/google/bazeltoolchain.rst", "reference/tools/intel.rst", "reference/tools/layout.rst", "reference/tools/meson.rst", "reference/tools/meson/meson.rst", "reference/tools/meson/mesontoolchain.rst", "reference/tools/microsoft.rst", "reference/tools/microsoft/helpers.rst", "reference/tools/microsoft/msbuild.rst", "reference/tools/microsoft/msbuilddeps.rst", "reference/tools/microsoft/msbuildtoolchain.rst", "reference/tools/microsoft/nmake.rst", "reference/tools/microsoft/vcvars.rst", "reference/tools/microsoft/visual_layout.rst", "reference/tools/scm.rst", "reference/tools/scm/git.rst", "reference/tools/scm/version.rst", "reference/tools/scons.rst", "reference/tools/system.rst", "reference/tools/system/package_manager.rst", "tutorial.rst", "tutorial/conan_repositories.rst", "tutorial/conan_repositories/conan_center.rst", "tutorial/conan_repositories/setting_up_conan_remotes.rst", "tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.rst", "tutorial/conan_repositories/setting_up_conan_remotes/conan_server.rst", "tutorial/conan_repositories/uploading_packages.rst", "tutorial/consuming_packages.rst", "tutorial/consuming_packages/build_simple_cmake_project.rst", "tutorial/consuming_packages/cross_building_with_conan.rst", "tutorial/consuming_packages/different_configurations.rst", "tutorial/consuming_packages/intro_to_versioning.rst", "tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst", "tutorial/consuming_packages/use_tools_as_conan_packages.rst", "tutorial/creating_packages.rst", "tutorial/creating_packages/add_dependencies_to_packages.rst", "tutorial/creating_packages/build_packages.rst", "tutorial/creating_packages/configure_options_settings.rst", "tutorial/creating_packages/create_your_first_package.rst", "tutorial/creating_packages/define_package_information.rst", "tutorial/creating_packages/handle_sources_in_packages.rst", "tutorial/creating_packages/other_types_of_packages.rst", "tutorial/creating_packages/other_types_of_packages/header_only_packages.rst", "tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.rst", "tutorial/creating_packages/other_types_of_packages/tool_requires_packages.rst", "tutorial/creating_packages/package_method.rst", "tutorial/creating_packages/preparing_the_build.rst", "tutorial/creating_packages/test_conan_packages.rst", "tutorial/developing_packages.rst", "tutorial/developing_packages/editable_packages.rst", "tutorial/developing_packages/local_package_development_flow.rst", "tutorial/developing_packages/package_layout.rst", "tutorial/other_features.rst", "tutorial/versioning.rst", "tutorial/versioning/conflicts.rst", "tutorial/versioning/lockfiles.rst", "tutorial/versioning/revisions.rst", "tutorial/versioning/version_ranges.rst", "tutorial/versioning/versions.rst", "whatsnew.rst"], "titles": ["Page Not Found", "Changelog", "Devops guide", "Creating an Artifactory backup repo for your sources", "Backing up third-party sources with Conan", "Creating and hosting your own ConanCenter binaries", "Managing package metadata files", "Save and restore packages from/to the cache", "Using ConanCenter packages in production environments", "Versioning", "Handling version ranges and pre-releases", "Examples", "Conan commands examples", "Using packages-lists", "ConanFile methods examples", "ConanFile layout() examples", "Declaring the layout when the Conanfile is inside a subfolder", "Using components and editable packages", "Declaring the layout when we have multiple subprojects", "Declaring the layout when creating packages for third-party libraries", "ConanFile package_info() examples", "Define components for Conan packages that provide multiple libraries", "Propagating environment or configuration information to consumers", "Configuration files examples", "Customize your settings: create your settings_user.yml", "Cross-building examples", "Integrating Conan in Android Studio", "Cross building to Android with the NDK", "Developer tools and flows", "Debugging and stepping into dependencies", "Conan extensions examples", "Custom command: Clean old recipe and package revisions", "Custom commands", "Builtin deployers", "Custom deployers", "Creating a Conan-agnostic deploy of dependencies for developer use", "Copy sources from all your dependencies", "Graph examples", "Use a CMake macro packaged in a dependency", "Depending on same version of a tool-require with different options", "Depending on different versions of the same tool-require", "Use cmake modules inside a tool_requires transparently", "Using the same requirement as a requires and as a tool_requires", "Conan recipe tools examples", "tools.autotools", "Build a simple Autotools project using Conan", "tools.cmake", "CMakeToolchain: Building your project using CMakePresets", "CMakeToolchain: Extending your CMakePresets with Conan generated ones", "CMakeToolchain: Inject arbitrary CMake variables into dependencies", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "Capturing Git scm information", "Conan 2.0 - C and C++ Package Manager Documentation", "Install", "Integrations", " Android", " Autotools", " Bazel", " CLion", " CMake", " JFrog", " Makefile", " Meson", " Visual Studio", " Xcode", "Introduction", "Knowledge", "Cheat sheet", "FAQ", "Core guidelines", "Videos", "Reference", "The binary model", "Customizing the binary compatibility", "The effect of dependencies on package_id", "Extending the binary model", "How the package_id is computed", "Commands", "conan build", "conan cache", "conan config", "conan create", "conan download", "conan editable", "conan export", "conan export-pkg", "Formatter: Graph-info JSON", "conan graph", "conan graph build-order", "conan graph build-order-merge", "conan graph explain", "conan graph info", "conan inspect", "conan install", "conan list", "conan lock", "conan lock add", "conan lock create", "conan lock merge", "conan lock remove", "conan new", "conan profile", "conan remote", "conan remove", "conan search", "conan source", "conan test", "conan upload", "conan version", "Conan Server", "conanfile.py", "Attributes", "Methods", "build()", "build_id()", "build_requirements()", "compatibility()", "config_options()", "configure()", "deploy()", "export()", "export_sources()", "generate()", "init()", "layout()", "package()", "package_id()", "package_info()", "requirements()", "set_name()", "set_version()", "source()", "system_requirements()", "test()", "validate()", "validate_build()", "Running and output", "conanfile.txt", "Configuration files", ".conanrc", "credentials.json", "global.conf", "profiles", "remotes.json", "settings.yml", "source_credentials.json", "Environment variables", "Extensions", "Binary compatibility", "Command wrapper", "Custom commands", "Custom Conan generators", "Deployers", "Hooks", "Package signing", "Profile plugin", "Python API", "Conan API Reference", "Config API", "Download API", "Export API", "Graph API", "Install API", "List API", "New API", "Profiles API", "Remotes API", "Remove API", "Search API", "Upload API", "Python requires", "Recipe tools", "conan.tools.android", "conan.tools.apple", "conan.tools.apple.fix_apple_shared_install_name()", "XcodeBuild", "XcodeDeps", "XcodeToolchain", "conan.tools.build", "conan.tools.cmake", "CMake", "cmake_layout", "CMakeDeps", "CMakeToolchain", "conan.tools.CppInfo", "conan.tools.env", "Environment", "EnvVars", "VirtualBuildEnv", "VirtualRunEnv", "conan.tools.files", "conan.tools.files basic operations", "conan.tools.files checksums", "conan.tools.files downloads", "conan.tools.files AutoPackager", "conan.tools.files patches", "conan.tools.files.symlinks", "conan.tools.gnu", "Autotools", "AutotoolsDeps", "AutotoolsToolchain", "MakeDeps", "PkgConfig", "PkgConfigDeps", "conan.tools.google", "Bazel", "BazelDeps", "BazelToolchain", "conan.tools.intel", "conan.tools.layout", "conan.tools.meson", "Meson", "MesonToolchain", "conan.tools.microsoft", "conan.tools.microsoft.visual", "MSBuild", "MSBuildDeps", "MSBuildToolchain", "NMakeDeps", "VCVars", "vs_layout", "conan.tools.scm", "Git", "Version", "conan.tools.scons", "conan.tools.system", "conan.tools.system.package_manager", "Tutorial", "Working with Conan repositories", "Contributing to Conan Center", "Setting up a Conan remote", "Artifactory Community Edition for C/C++", "Setting-up a Conan Server", "Uploading Packages", "Consuming packages", "Build a simple CMake project using Conan", "How to cross-compile your applications using Conan: host and build contexts", "Building for multiple configurations: Release, Debug, Static and Shared", "Introduction to versioning", "Understanding the flexibility of using conanfile.py vs conanfile.txt", "Using build tools as Conan packages", "Creating packages", "Add dependencies to packages", "Build packages: the build() method", "Configure settings and options in recipes", "Create your first Conan package", "Define information for consumers: the package_info() method", "Handle sources in packages", "Other types of packages", "Header-only packages", "Package prebuilt binaries", "Tool requires packages", "Package files: the package() method", "Preparing the build", "Testing Conan packages", "Developing packages locally", "Packages in editable mode", "Package Development Flow", "Understanding the Conan Package layout", "Other important Conan features", "Versioning", "Dependencies conflicts", "Lockfiles", "Revisions", "Version ranges", "Versions", "What\u2019s new in Conan 2.0"], "terms": {"unfortun": 0, "you": [0, 1, 2, 4, 5, 6, 8, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 64, 70, 73, 74, 80, 81, 84, 85, 86, 87, 96, 99, 105, 106, 108, 112, 114, 116, 117, 118, 119, 120, 122, 123, 127, 128, 129, 131, 132, 136, 141, 142, 144, 146, 147, 149, 151, 152, 155, 156, 157, 158, 160, 175, 180, 181, 182, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 208, 211, 213, 214, 216, 217, 220, 221, 222, 223, 227, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 270, 271], "ar": [0, 1, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 51, 53, 55, 56, 58, 61, 62, 63, 65, 66, 67, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 90, 95, 96, 97, 98, 99, 101, 102, 103, 105, 108, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 155, 157, 158, 159, 166, 167, 174, 175, 176, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 196, 200, 201, 203, 205, 208, 210, 211, 213, 214, 217, 221, 227, 230, 235, 236, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 51, 53, 55, 63, 81, 83, 86, 88, 89, 90, 93, 95, 96, 98, 99, 101, 102, 103, 111, 116, 145, 146, 147, 148, 149, 154, 155, 157, 166, 188, 211, 212, 231, 240, 241, 244, 245, 250, 251, 252, 259, 262], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 53, 56, 58, 64, 65, 74, 78, 79, 80, 83, 84, 85, 86, 93, 95, 96, 97, 98, 101, 102, 103, 105, 111, 114, 116, 119, 120, 126, 127, 136, 137, 145, 146, 147, 160, 175, 187, 192, 196, 203, 205, 227, 231, 243, 244, 245, 247, 249, 264, 269, 271], "exist": [0, 1, 6, 7, 8, 21, 56, 58, 70, 73, 78, 80, 83, 84, 85, 86, 90, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 116, 118, 120, 121, 122, 123, 125, 127, 131, 133, 136, 144, 145, 146, 147, 149, 155, 166, 170, 179, 183, 187, 188, 191, 192, 196, 203, 205, 207, 217, 227, 238, 243, 249, 250, 255, 259, 266, 267, 268, 270, 271], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 51, 56, 65, 78, 79, 84, 86, 95, 98, 103, 119, 130, 131, 134, 135, 141, 149, 153, 160, 181, 182, 188, 196, 199, 203, 242, 245, 247, 248, 250, 251, 254, 259, 262, 266, 267, 268, 269, 270], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 58, 70, 78, 80, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 98, 100, 102, 103, 106, 111, 112, 116, 122, 123, 131, 132, 146, 149, 152, 153, 155, 158, 160, 161, 179, 188, 191, 196, 198, 199, 201, 204, 205, 217, 232, 238, 244, 249, 250, 253, 254, 255, 257, 258, 261, 263, 267, 268, 269, 270, 271], "can": [0, 1, 4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 171, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 227, 229, 231, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 53, 55, 56, 63, 70, 79, 84, 103, 136, 149, 175, 181, 186, 213, 214, 221, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 262, 263, 267, 270], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 57, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 75, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 108, 109, 111, 112, 115, 120, 121, 127, 130, 131, 132, 137, 142, 146, 147, 149, 152, 153, 155, 159, 161, 166, 168, 174, 175, 176, 178, 184, 190, 196, 202, 209, 214, 215, 218, 237, 238, 241, 242, 245, 247, 249, 250, 251, 252, 257, 258, 261, 262, 269, 271], "tree": [0, 65, 147, 157, 187], "us": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 18, 19, 21, 23, 26, 27, 29, 30, 31, 33, 36, 37, 39, 40, 43, 44, 46, 48, 49, 52, 54, 56, 57, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 157, 158, 159, 160, 166, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 189, 191, 192, 193, 194, 196, 197, 198, 199, 201, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 225, 227, 228, 229, 231, 232, 233, 237, 238, 239, 243, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271], "search": [0, 1, 31, 35, 51, 63, 74, 82, 99, 106, 114, 116, 144, 148, 152, 161, 179, 196, 203, 236, 238, 240, 242, 249, 251, 263, 271], "bar": [0, 114, 196, 205, 223], "desir": [0, 1, 4, 40, 49, 80, 87, 98, 105, 114, 116, 117, 131, 149, 157, 192, 193, 194, 229], "topic": [0, 1, 9, 70, 91, 96, 97, 155, 250], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 99, 101, 102, 103, 105, 107, 108, 109, 112, 114, 116, 119, 121, 122, 123, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 139, 144, 145, 146, 147, 148, 149, 150, 151, 155, 174, 179, 180, 181, 182, 183, 186, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 203, 204, 205, 207, 208, 213, 214, 217, 219, 221, 223, 227, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 261, 262, 263, 264, 266, 267, 268, 270, 271], "think": [0, 42, 73, 93], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 37, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 232, 233, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 59, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 56, 57, 63, 70, 73, 74, 78, 79, 82, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 111, 112, 114, 116, 119, 122, 127, 128, 129, 130, 131, 133, 134, 135, 139, 141, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 158, 159, 160, 166, 170, 179, 182, 183, 185, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 211, 213, 217, 220, 223, 227, 228, 231, 239, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 271], "error": [0, 1, 6, 21, 31, 39, 40, 56, 58, 79, 83, 84, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 114, 116, 118, 127, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 149, 151, 158, 160, 166, 187, 196, 198, 203, 217, 231, 239, 242, 247, 249, 261, 262, 265, 266, 267, 271], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 51, 53, 55, 56, 58, 63, 66, 70, 74, 78, 80, 81, 86, 98, 99, 105, 114, 116, 118, 119, 120, 121, 122, 123, 124, 125, 127, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 145, 150, 151, 157, 158, 159, 160, 166, 174, 175, 180, 182, 185, 187, 188, 193, 196, 200, 206, 211, 216, 217, 223, 227, 236, 240, 241, 242, 244, 247, 248, 249, 250, 251, 254, 262, 263, 266, 267, 268, 269, 270, 271], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 60, 61, 64, 66, 68, 69, 70, 73, 74, 75, 87, 101, 106, 107, 112, 114, 116, 127, 146, 147, 153, 158, 159, 188, 214, 217, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "open": [0, 4, 5, 8, 26, 29, 48, 55, 56, 57, 63, 73, 116, 118, 141, 146, 150, 159, 196, 222, 227, 233, 235, 237, 240, 242, 261], "issu": [0, 1, 6, 8, 39, 40, 57, 70, 73, 80, 114, 127, 128, 129, 146, 149, 187, 250, 252, 267, 268], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 56, 58, 61, 63, 65, 66, 68, 69, 74, 78, 79, 80, 84, 85, 87, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 112, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 142, 144, 145, 146, 147, 149, 150, 151, 154, 155, 157, 158, 160, 166, 175, 179, 180, 181, 182, 183, 186, 188, 189, 192, 196, 200, 205, 206, 208, 211, 213, 214, 217, 220, 221, 224, 231, 235, 236, 238, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 257, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "more": [1, 4, 6, 7, 8, 13, 16, 18, 19, 31, 36, 42, 45, 47, 51, 56, 58, 60, 63, 65, 70, 73, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 113, 116, 118, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 152, 153, 154, 157, 159, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 182, 183, 187, 188, 189, 193, 194, 196, 203, 206, 208, 210, 211, 212, 214, 215, 216, 221, 223, 233, 234, 235, 239, 246, 253, 255, 261, 262, 263, 264, 265, 268, 269, 271], "detail": [1, 8, 42, 51, 58, 63, 65, 70, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 149, 182, 196, 217, 220, 245, 249, 250, 252, 255, 257, 259, 263], "descript": [1, 91, 96, 97, 105, 127, 128, 158, 208, 250], "major": [1, 5, 35, 39, 40, 56, 70, 98, 106, 116, 147, 175, 188, 235, 240, 266, 269, 271], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 51, 56, 70, 72, 73, 74, 78, 79, 80, 81, 84, 86, 91, 97, 101, 102, 103, 105, 106, 113, 114, 116, 119, 120, 122, 123, 124, 131, 132, 136, 145, 146, 147, 149, 150, 151, 153, 154, 155, 157, 159, 160, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 179, 186, 187, 188, 189, 192, 196, 203, 205, 206, 208, 210, 211, 212, 213, 217, 220, 223, 227, 231, 240, 242, 243, 244, 247, 249, 250, 252, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 271], "conan": [1, 2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 18, 19, 20, 24, 25, 27, 29, 33, 36, 38, 39, 40, 41, 42, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 91, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 204, 205, 206, 208, 210, 211, 212, 216, 220, 221, 222, 223, 224, 227, 232, 238, 239, 242, 243, 244, 246, 247, 248, 252, 254, 255, 256, 258, 260, 261, 265, 266, 267, 268, 269, 270], "bring": [1, 59, 147, 252], "compar": [1, 149, 183, 228, 268, 269], "x": [1, 58, 70, 72, 85, 90, 116, 146, 149, 158, 187, 196, 199, 219, 250, 254, 267, 269, 271], "read": [1, 3, 4, 6, 8, 16, 18, 19, 24, 31, 36, 42, 45, 47, 53, 55, 58, 63, 70, 74, 78, 80, 83, 84, 85, 86, 88, 90, 98, 99, 102, 106, 110, 111, 114, 116, 120, 121, 123, 126, 127, 129, 131, 132, 134, 135, 137, 141, 146, 147, 152, 153, 159, 161, 175, 183, 185, 196, 200, 203, 205, 207, 213, 215, 233, 234, 236, 239, 246, 253, 261, 262, 265, 270, 271], "what": [1, 4, 5, 13, 24, 56, 57, 70, 78, 92, 95, 98, 99, 112, 116, 117, 151, 188, 191, 192, 199, 241, 243, 244, 245, 249, 250, 251, 254, 255, 258, 263, 266, 267, 268], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 58, 60, 62, 63, 65, 70, 73, 79, 80, 81, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 107, 111, 112, 114, 116, 120, 121, 131, 132, 133, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 160, 179, 181, 182, 183, 188, 198, 203, 205, 210, 211, 212, 213, 217, 221, 222, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 57, 58, 63, 70, 73, 74, 78, 79, 80, 81, 82, 84, 98, 100, 101, 102, 103, 104, 106, 107, 116, 130, 131, 147, 152, 154, 155, 157, 159, 161, 163, 175, 179, 181, 182, 186, 187, 188, 189, 191, 193, 194, 205, 213, 221, 222, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 258, 262, 263, 265, 266, 267, 268, 269], "fix": [1, 5, 8, 35, 70, 116, 136, 150, 175, 179, 200, 242, 243, 266], "automat": [1, 3, 6, 31, 41, 47, 58, 63, 70, 80, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 105, 111, 114, 116, 125, 132, 133, 136, 145, 146, 147, 149, 158, 170, 175, 179, 185, 186, 187, 188, 191, 192, 194, 199, 200, 203, 206, 207, 208, 210, 212, 213, 216, 222, 231, 234, 240, 242, 243, 245, 248, 249, 251, 252, 256, 259, 264, 265, 266, 267, 268, 269], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 57, 63, 65, 69, 70, 73, 74, 78, 79, 80, 82, 84, 89, 90, 91, 96, 98, 99, 100, 101, 103, 104, 105, 106, 116, 117, 118, 119, 120, 125, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 148, 149, 152, 155, 156, 157, 158, 162, 166, 175, 181, 182, 185, 187, 188, 189, 190, 193, 194, 196, 198, 207, 208, 210, 211, 212, 213, 217, 222, 223, 224, 227, 229, 232, 233, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 53, 55, 56, 58, 63, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 115, 117, 119, 124, 125, 126, 127, 130, 136, 144, 146, 147, 151, 152, 154, 155, 156, 157, 158, 159, 160, 169, 179, 185, 186, 187, 188, 191, 196, 198, 200, 201, 203, 205, 211, 214, 216, 217, 224, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 266, 267, 271], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 51, 56, 57, 58, 63, 70, 74, 79, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 108, 111, 116, 119, 124, 125, 126, 127, 129, 130, 134, 135, 145, 146, 147, 150, 151, 152, 153, 154, 157, 158, 159, 160, 166, 168, 170, 174, 182, 185, 188, 192, 196, 203, 210, 217, 222, 227, 232, 233, 238, 240, 242, 243, 245, 246, 249, 251, 254, 255, 257, 259, 260, 261, 262, 263, 266, 267, 268, 270], "save": [1, 2, 6, 31, 39, 40, 53, 56, 57, 70, 90, 100, 106, 114, 116, 119, 126, 146, 147, 156, 187, 188, 192, 195, 198, 208, 217], "file": [1, 2, 3, 4, 7, 8, 10, 11, 13, 16, 17, 18, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58, 61, 62, 63, 64, 65, 67, 68, 69, 70, 73, 74, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 108, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 141, 142, 144, 145, 147, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 170, 174, 176, 179, 180, 181, 182, 184, 185, 186, 189, 190, 191, 202, 203, 207, 209, 210, 213, 214, 215, 216, 218, 220, 222, 224, 227, 229, 232, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 258, 259, 261, 262, 263, 264, 267, 268, 269, 270, 271], "subfold": [1, 7, 14, 15, 17, 19, 85, 129, 157, 158, 179, 186, 196, 200, 203, 236, 252, 255, 263], "tgz": [1, 7, 84, 136, 159, 196, 198, 240, 245, 255], "doesn": [1, 6, 7, 35, 49, 56, 73, 74, 80, 90, 96, 102, 103, 114, 116, 120, 122, 123, 127, 131, 133, 139, 140, 145, 149, 158, 174, 175, 183, 186, 188, 192, 196, 197, 198, 214, 221, 227, 242, 243, 249, 250, 252, 254, 256, 259, 266, 267, 268, 271], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 56, 58, 63, 70, 73, 74, 78, 79, 80, 84, 85, 90, 95, 96, 98, 99, 101, 102, 103, 107, 108, 114, 115, 116, 120, 122, 123, 127, 130, 131, 132, 133, 136, 139, 140, 145, 147, 149, 155, 158, 174, 175, 176, 183, 185, 186, 187, 188, 189, 192, 196, 197, 198, 205, 212, 214, 217, 221, 227, 240, 241, 242, 243, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 266, 267, 268, 271], "15409": 1, "bugfix": [1, 8, 70], "libcxx": [1, 24, 26, 27, 31, 73, 91, 96, 106, 116, 123, 131, 143, 147, 182, 188, 205, 213, 217, 240, 241, 242, 249, 250], "detect": [1, 6, 56, 70, 74, 85, 146, 147, 170, 183, 188, 207, 217, 240, 241, 242, 251], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 88, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 107, 111, 114, 116, 117, 120, 122, 123, 124, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 145, 146, 147, 149, 150, 151, 155, 157, 159, 160, 175, 177, 179, 181, 182, 183, 185, 187, 188, 192, 193, 194, 196, 198, 205, 208, 210, 211, 213, 216, 217, 219, 221, 222, 228, 231, 233, 236, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "cc": [1, 42, 53, 179, 205, 211, 213, 217, 223, 241, 248, 254], "cxx": [1, 19, 21, 27, 42, 85, 146, 149, 179, 205, 213, 217, 223, 241, 248, 249, 250, 251, 254, 257, 258, 259, 262, 263], "env": [1, 24, 26, 39, 40, 53, 74, 76, 85, 107, 132, 133, 138, 141, 146, 147, 151, 176, 185, 191, 192, 193, 194, 205, 222, 223, 229, 240, 242, 245, 256, 259, 262], "var": [1, 39, 40, 74, 85, 107, 114, 133, 146, 147, 151, 187, 188, 191, 192, 193, 194, 204, 213, 223], "15418": 1, "doc": [1, 8, 57, 58, 70, 73, 114, 203, 236, 244, 245, 271], "here": [1, 4, 19, 27, 41, 42, 57, 82, 99, 116, 123, 127, 128, 129, 133, 149, 158, 175, 187, 188, 192, 196, 208, 211, 231, 242, 247, 249, 250, 252, 255, 262, 263], "solv": [1, 29, 56, 58, 74, 133, 147, 152, 155, 187, 208, 266, 268], "winsdk_vers": [1, 85, 146, 188, 222, 224], "bug": [1, 8, 57, 70], "cmaketoolchain": [1, 16, 17, 18, 26, 35, 38, 41, 42, 43, 46, 51, 56, 64, 69, 73, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 132, 142, 146, 147, 149, 176, 184, 185, 186, 187, 240, 241, 242, 243, 244, 245, 248, 250, 252, 254, 256, 258, 259, 262, 263, 271], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 53, 55, 56, 61, 62, 64, 66, 67, 68, 69, 70, 74, 76, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 103, 105, 106, 111, 112, 114, 117, 118, 119, 121, 123, 128, 129, 131, 132, 133, 136, 137, 146, 147, 149, 150, 151, 152, 153, 154, 157, 158, 159, 160, 167, 175, 176, 177, 181, 182, 184, 185, 186, 190, 191, 192, 196, 202, 203, 209, 213, 214, 215, 216, 218, 222, 223, 224, 227, 229, 235, 236, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 269, 271], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 63, 187, 240, 245, 248, 251, 257, 258, 259], "15373": 1, "visibl": [1, 39, 40, 79, 85, 91, 114, 120, 146, 188, 211], "trait": [1, 37, 39, 74, 78, 116, 120, 266, 271], "propag": [1, 8, 14, 20, 116, 120, 132, 133, 142, 191, 208, 246, 254, 266], "build": [1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 16, 17, 18, 19, 21, 24, 28, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 52, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 73, 74, 76, 78, 79, 81, 82, 84, 85, 88, 89, 90, 91, 92, 95, 96, 98, 99, 100, 101, 102, 103, 104, 106, 111, 115, 117, 119, 120, 123, 124, 125, 127, 129, 130, 131, 135, 136, 138, 139, 140, 141, 142, 146, 147, 149, 152, 154, 155, 156, 157, 158, 166, 170, 175, 176, 177, 179, 180, 181, 182, 184, 185, 186, 187, 189, 191, 192, 193, 194, 196, 200, 202, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 215, 216, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 234, 239, 243, 244, 246, 247, 249, 250, 251, 252, 253, 254, 256, 257, 259, 260, 264, 266, 267, 268, 269, 270], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 51, 56, 73, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 97, 98, 99, 102, 106, 111, 114, 116, 118, 120, 122, 123, 127, 128, 131, 132, 133, 136, 137, 141, 142, 145, 146, 147, 148, 170, 171, 179, 181, 183, 185, 186, 187, 188, 192, 193, 194, 196, 198, 200, 205, 207, 210, 212, 216, 217, 219, 221, 222, 227, 231, 242, 244, 245, 248, 249, 250, 252, 254, 258, 262, 266, 267, 269], "15357": 1, "package_id": [1, 6, 7, 13, 31, 74, 76, 77, 80, 84, 85, 87, 91, 93, 95, 96, 99, 108, 112, 116, 117, 119, 123, 127, 133, 139, 140, 146, 152, 166, 242, 249, 253, 254, 266, 268], "calcul": [1, 132, 193, 194, 200, 205, 223, 249, 254], "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 53, 55, 58, 59, 63, 65, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 91, 96, 98, 99, 100, 101, 108, 116, 120, 127, 129, 130, 131, 132, 133, 143, 149, 157, 175, 181, 182, 186, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 213, 217, 221, 222, 240, 241, 242, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 68, 74, 76, 78, 83, 84, 85, 86, 90, 93, 95, 96, 102, 106, 111, 114, 118, 123, 127, 128, 131, 132, 141, 143, 149, 151, 157, 163, 170, 178, 186, 192, 193, 194, 203, 215, 218, 231, 237, 245, 248, 254, 271], "valu": [1, 21, 26, 27, 39, 49, 73, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 116, 118, 119, 120, 121, 122, 123, 127, 128, 129, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 144, 145, 146, 147, 148, 151, 155, 160, 163, 171, 177, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 196, 198, 203, 204, 205, 212, 214, 216, 217, 219, 220, 221, 222, 223, 228, 231, 242, 244, 248, 249, 250, 251, 254, 256, 258, 259, 262, 263, 266, 268], "thru": 1, "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 53, 55, 56, 57, 58, 61, 62, 63, 64, 66, 67, 68, 69, 70, 76, 78, 80, 83, 85, 86, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 106, 111, 116, 118, 120, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 142, 143, 147, 149, 152, 154, 156, 157, 158, 175, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 227, 232, 236, 239, 240, 241, 242, 244, 246, 247, 248, 250, 252, 253, 254, 255, 258, 259, 262, 263, 270, 271], "info": [1, 6, 13, 24, 31, 36, 53, 56, 59, 73, 78, 79, 80, 81, 82, 85, 86, 92, 95, 97, 99, 102, 127, 131, 132, 133, 136, 137, 139, 140, 141, 146, 155, 158, 166, 175, 198, 217, 229, 231, 241, 249, 254, 256, 267, 268], "15356": 1, "order": [1, 4, 8, 13, 31, 36, 92, 98, 100, 101, 104, 114, 115, 116, 118, 131, 132, 146, 149, 150, 157, 170, 175, 188, 189, 192, 196, 205, 241, 243, 261, 267, 268, 269], "item": [1, 4, 36, 70, 80, 85, 100, 104, 108, 127, 131, 146, 149, 151, 156, 188, 192, 269], "dump": [1, 155, 191], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 69, 70, 73, 74, 75, 79, 80, 81, 84, 85, 87, 90, 103, 105, 106, 107, 114, 116, 118, 120, 122, 123, 124, 127, 128, 131, 132, 137, 142, 147, 149, 154, 155, 156, 158, 170, 174, 175, 180, 181, 182, 186, 187, 188, 192, 196, 198, 203, 205, 214, 217, 220, 221, 222, 231, 232, 233, 234, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 267, 269, 270], "allow": [1, 3, 4, 6, 13, 49, 55, 63, 68, 70, 74, 80, 82, 83, 85, 86, 88, 93, 95, 96, 98, 99, 101, 102, 106, 107, 111, 114, 116, 117, 118, 119, 120, 125, 126, 129, 131, 132, 145, 146, 147, 149, 150, 151, 152, 153, 154, 160, 167, 186, 187, 188, 189, 191, 196, 203, 217, 219, 221, 222, 231, 240, 243, 244, 250, 252, 262, 264, 267, 269, 270, 271], "reproduc": [1, 4, 6, 56, 70, 106, 119, 175, 196, 227, 239, 243, 255, 265, 267, 268, 270], "independ": [1, 21, 80, 114, 125, 126, 131, 136, 157, 189, 263, 271], "were": [1, 6, 24, 29, 56, 90, 123, 145, 157, 211, 240, 242, 248, 251, 257, 266, 269, 271], "declar": [1, 14, 15, 21, 47, 51, 70, 78, 84, 116, 121, 122, 123, 127, 129, 131, 132, 133, 147, 149, 151, 152, 155, 156, 175, 181, 182, 183, 185, 186, 187, 188, 190, 192, 208, 211, 217, 221, 223, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 263, 266, 271], "revert": [1, 70, 151], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 53, 63, 70, 73, 77, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 101, 102, 105, 106, 108, 109, 111, 112, 114, 116, 124, 128, 129, 131, 132, 136, 137, 142, 145, 146, 147, 148, 149, 151, 153, 160, 166, 170, 174, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 191, 192, 196, 198, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 220, 221, 222, 223, 227, 231, 236, 240, 241, 242, 243, 244, 245, 247, 248, 250, 251, 252, 254, 256, 257, 258, 261, 263, 264, 266, 267, 268, 269, 271], "source_buildenv": 1, "make": [1, 6, 8, 26, 29, 38, 39, 40, 45, 56, 58, 59, 61, 66, 70, 85, 90, 98, 99, 101, 116, 123, 125, 127, 130, 131, 134, 137, 141, 146, 147, 149, 152, 154, 159, 175, 182, 187, 191, 203, 205, 206, 217, 227, 242, 244, 247, 248, 249, 257, 260, 261, 263, 270, 271], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 51, 56, 73, 80, 81, 85, 91, 95, 96, 97, 99, 106, 108, 114, 116, 120, 122, 123, 127, 128, 130, 132, 133, 141, 146, 147, 148, 157, 166, 167, 174, 179, 181, 183, 185, 187, 188, 193, 194, 196, 198, 200, 205, 207, 216, 217, 219, 221, 227, 228, 231, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 266, 269], "15319": 1, "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 57, 58, 63, 64, 65, 70, 86, 97, 113, 116, 120, 121, 122, 123, 124, 131, 132, 144, 145, 146, 147, 149, 150, 153, 158, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 183, 185, 189, 199, 206, 210, 211, 212, 232, 236, 241, 244, 251, 254, 259, 260, 261, 262, 263, 271], "lock": [1, 8, 70, 82, 83, 86, 90, 93, 95, 96, 97, 98, 106, 111, 166, 175, 243, 267], "command": [1, 4, 7, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 53, 57, 58, 61, 62, 67, 68, 69, 70, 72, 73, 74, 76, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 124, 125, 126, 127, 129, 130, 134, 135, 136, 139, 145, 147, 148, 149, 151, 152, 156, 158, 160, 162, 166, 169, 180, 181, 182, 185, 187, 188, 192, 203, 210, 211, 212, 213, 216, 220, 221, 222, 224, 227, 229, 231, 238, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 264, 267, 268, 269, 270], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 51, 53, 55, 56, 58, 61, 63, 64, 65, 70, 74, 76, 77, 78, 79, 80, 81, 83, 84, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 104, 105, 106, 114, 115, 117, 120, 121, 127, 128, 129, 131, 132, 139, 140, 146, 147, 148, 149, 150, 152, 155, 156, 157, 158, 166, 181, 183, 185, 187, 188, 193, 194, 196, 204, 206, 207, 208, 211, 213, 217, 222, 223, 224, 229, 231, 236, 238, 239, 240, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 271], "from": [1, 2, 3, 4, 6, 8, 12, 16, 18, 21, 24, 26, 27, 28, 30, 31, 34, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 61, 62, 63, 65, 66, 67, 68, 69, 70, 72, 73, 74, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 142, 144, 145, 146, 147, 148, 149, 150, 152, 155, 156, 157, 159, 166, 168, 169, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 232, 233, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 268, 269, 270, 271], "lockfil": [1, 8, 82, 83, 86, 89, 90, 93, 95, 96, 97, 100, 101, 102, 103, 104, 106, 111, 166, 175, 232, 239, 265], "15284": 1, "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 29, 35, 37, 42, 43, 47, 48, 51, 53, 55, 56, 57, 59, 63, 68, 69, 70, 73, 74, 76, 80, 83, 85, 86, 90, 93, 95, 96, 98, 102, 104, 105, 106, 111, 116, 118, 120, 127, 129, 130, 131, 132, 133, 142, 146, 147, 149, 154, 176, 186, 188, 193, 200, 214, 232, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262, 263, 271], "ctest": [1, 185, 248], "helper": [1, 18, 45, 53, 55, 61, 62, 64, 67, 68, 69, 70, 73, 85, 116, 118, 126, 127, 136, 137, 141, 146, 149, 150, 155, 180, 183, 185, 187, 188, 191, 192, 196, 202, 205, 207, 210, 212, 216, 219, 220, 227, 228, 254], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 56, 57, 61, 68, 70, 74, 76, 80, 82, 83, 84, 90, 97, 98, 105, 106, 110, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 152, 156, 157, 158, 159, 175, 179, 180, 181, 182, 185, 187, 188, 191, 192, 193, 194, 196, 199, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 230, 232, 239, 246, 247, 249, 250, 252, 254, 255, 256, 258, 259, 261, 262, 263, 266, 270], "launch": [1, 21, 114, 141, 145, 180, 213, 236, 237, 246, 248], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 58, 63, 68, 74, 82, 88, 90, 93, 95, 96, 98, 101, 102, 106, 118, 127, 133, 147, 149, 156, 180, 185, 196, 200, 210, 217, 222, 240, 243, 244, 255, 256, 261, 262, 266, 270], "instead": [1, 4, 5, 8, 19, 35, 56, 58, 63, 68, 70, 74, 80, 84, 85, 88, 93, 95, 96, 98, 102, 105, 108, 114, 116, 127, 131, 132, 141, 146, 149, 175, 180, 185, 187, 188, 192, 221, 227, 242, 243, 244, 245, 247, 248, 250, 251, 252, 258, 261, 262, 263, 266, 267, 269, 270], "via": [1, 4, 7, 10, 13, 31, 38, 49, 58, 64, 65, 70, 74, 78, 80, 85, 90, 116, 127, 129, 133, 146, 155, 157, 160, 175, 185, 187, 188, 189, 191, 234, 240, 241, 269, 271], "target": [1, 8, 17, 18, 19, 21, 27, 42, 53, 56, 63, 70, 74, 85, 98, 105, 116, 118, 131, 149, 157, 177, 180, 183, 185, 203, 210, 211, 212, 213, 216, 217, 220, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 262, 263, 268, 271], "run_test": [1, 118, 185], "15282": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 51, 56, 63, 73, 80, 82, 84, 85, 100, 102, 103, 104, 105, 108, 114, 116, 131, 132, 146, 150, 155, 158, 159, 180, 181, 185, 187, 188, 191, 196, 198, 203, 205, 206, 208, 210, 211, 212, 216, 217, 221, 223, 231, 232, 236, 241, 243, 244, 245, 246, 248, 249, 251, 256, 258, 259, 261, 263, 266, 267, 270], "track": [1, 6, 65, 70, 120, 243, 268], "syntax": [1, 31, 68, 69, 73, 98, 105, 116, 120, 127, 133, 145, 163, 175, 182, 187, 188, 192, 206, 208, 222, 240, 243, 250, 266, 270], "host_vers": [1, 42], "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 51, 56, 58, 61, 62, 64, 65, 66, 67, 69, 70, 74, 77, 78, 79, 80, 81, 82, 84, 85, 90, 95, 96, 98, 99, 102, 103, 104, 106, 112, 114, 116, 117, 118, 119, 120, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 142, 146, 147, 149, 151, 152, 155, 156, 157, 158, 175, 181, 182, 186, 187, 188, 192, 193, 194, 196, 200, 208, 213, 214, 219, 221, 222, 227, 231, 236, 239, 240, 241, 244, 245, 246, 249, 250, 251, 254, 255, 256, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271], "15274": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 63, 66, 68, 69, 70, 73, 86, 98, 101, 102, 105, 116, 122, 123, 128, 130, 133, 146, 147, 154, 155, 157, 159, 170, 175, 179, 181, 182, 188, 191, 200, 203, 205, 212, 221, 222, 227, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 267, 271], "microsoft": [1, 68, 76, 85, 116, 127, 132, 146, 147, 149, 176, 185, 188, 203, 213, 220, 221, 222, 223, 224], "vcvar": [1, 85, 127, 146, 149, 176, 218, 220, 222], "given": [1, 6, 8, 31, 36, 42, 78, 79, 80, 84, 85, 88, 96, 101, 102, 103, 104, 122, 131, 132, 139, 141, 147, 150, 151, 166, 170, 188, 189, 192, 196, 198, 200, 205, 211, 217, 219, 227, 243, 264, 267, 268, 270, 271], "15272": 1, "pkglist": [1, 6, 13, 87, 89, 108, 112, 264], "formatt": [1, 45, 87, 96, 112, 152], "export": [1, 5, 6, 7, 10, 16, 38, 56, 74, 82, 84, 86, 91, 101, 106, 117, 126, 127, 128, 129, 130, 134, 135, 136, 152, 158, 159, 161, 175, 196, 200, 227, 247, 250, 251, 252, 255, 258, 260, 261, 263, 268, 270], "15266": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 53, 56, 70, 74, 77, 78, 80, 84, 85, 88, 90, 91, 96, 98, 99, 101, 103, 105, 106, 107, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 142, 144, 145, 146, 147, 149, 150, 151, 152, 153, 155, 157, 160, 163, 170, 175, 178, 180, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 200, 203, 204, 205, 206, 207, 208, 211, 213, 214, 217, 221, 222, 223, 224, 232, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 252, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271], "conan_log_level": [1, 151], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 56, 58, 74, 78, 101, 102, 104, 126, 132, 133, 136, 141, 145, 147, 187, 189, 191, 196, 213, 217, 227, 250, 259, 261, 265, 271], "verbos": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 132, 141, 146, 147, 151, 180, 185, 205, 216, 220, 263], "global": [1, 3, 4, 7, 10, 42, 58, 73, 76, 80, 85, 116, 121, 127, 131, 143, 147, 151, 152, 158, 163, 175, 188, 189, 207, 208, 211, 221, 248, 254, 271], "level": [1, 13, 16, 18, 21, 27, 29, 63, 70, 73, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 117, 121, 126, 131, 137, 141, 146, 149, 150, 151, 175, 180, 187, 198, 208, 211, 263, 271], "15263": 1, "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 51, 53, 56, 58, 74, 81, 82, 83, 85, 86, 88, 89, 90, 93, 95, 96, 97, 99, 102, 103, 105, 110, 111, 114, 116, 126, 127, 128, 129, 130, 132, 133, 134, 135, 138, 144, 146, 147, 155, 157, 158, 159, 166, 170, 175, 176, 179, 180, 185, 187, 188, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 207, 210, 211, 212, 213, 214, 217, 219, 223, 224, 240, 242, 244, 245, 248, 250, 251, 254, 255, 256, 257, 259, 261, 262, 263, 271], "xxx": [1, 6, 13, 87, 132, 134, 135, 146, 147, 185, 187, 188, 191, 217], "xxxx": [1, 7, 68, 80, 82, 85, 91, 127, 134, 135, 188, 210, 212, 221, 271], "rais": [1, 6, 21, 36, 56, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 102, 111, 114, 116, 118, 127, 136, 137, 139, 140, 141, 146, 149, 158, 160, 183, 187, 196, 197, 198, 219, 227, 231, 239, 247, 249, 266], "request": [1, 31, 57, 70, 73, 85, 95, 98, 107, 108, 114, 116, 121, 145, 146, 151, 158, 234], "15257": 1, "oper": [1, 6, 8, 49, 58, 59, 64, 65, 70, 80, 84, 98, 106, 108, 115, 118, 124, 143, 147, 150, 158, 176, 182, 188, 191, 195, 227, 231, 233, 240, 241, 242, 249, 250, 252, 255, 260, 264, 267, 269, 271], "support": [1, 8, 17, 26, 27, 47, 48, 49, 51, 57, 59, 60, 63, 64, 65, 66, 70, 73, 80, 96, 99, 105, 114, 120, 129, 132, 134, 135, 139, 142, 146, 147, 149, 151, 152, 156, 157, 160, 178, 183, 187, 205, 208, 213, 217, 219, 231, 239, 247, 252, 258, 261, 262, 263, 271], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 63, 70, 74, 76, 78, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 100, 101, 102, 105, 106, 110, 111, 116, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 146, 147, 149, 150, 153, 154, 156, 157, 158, 159, 163, 166, 167, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 51, 56, 74, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 150, 152, 154, 155, 156, 157, 158, 175, 177, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 266, 267, 268, 270, 271], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 51, 53, 55, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75, 76, 77, 80, 81, 82, 83, 84, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 117, 120, 123, 125, 128, 131, 132, 133, 136, 137, 139, 142, 146, 147, 154, 156, 157, 158, 166, 167, 170, 175, 179, 181, 182, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 206, 208, 211, 212, 213, 216, 217, 218, 223, 229, 231, 232, 236, 239, 240, 241, 243, 244, 245, 246, 248, 249, 250, 255, 256, 258, 259, 262, 263, 264, 265, 267, 268, 269, 270, 271], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 56, 64, 69, 98, 116, 127, 132, 142, 157, 176, 184, 185, 188, 240, 241, 243, 244, 245, 247, 248, 250, 251, 254, 259, 262, 271], "conandep": [1, 181, 206, 221, 229], "aggreg": [1, 24, 53, 103, 106, 132, 170, 176, 181, 182, 192, 204, 221, 240, 245, 262], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 67, 69, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 106, 107, 108, 109, 111, 112, 114, 116, 119, 123, 125, 126, 127, 129, 131, 132, 134, 135, 136, 142, 144, 145, 146, 147, 149, 151, 154, 155, 156, 157, 158, 163, 166, 170, 171, 174, 175, 176, 179, 180, 181, 182, 187, 188, 189, 192, 193, 194, 196, 198, 200, 204, 205, 206, 207, 208, 210, 211, 212, 213, 217, 221, 222, 224, 229, 231, 232, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 258, 259, 261, 262, 263, 264, 266, 268, 271], "direct": [1, 36, 91, 98, 114, 116, 120, 127, 132, 157, 181, 187, 193, 221, 266], "like": [1, 4, 6, 7, 8, 10, 13, 16, 18, 19, 21, 26, 27, 29, 31, 35, 39, 40, 41, 42, 45, 47, 48, 49, 56, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 145, 146, 147, 148, 149, 150, 151, 152, 154, 155, 156, 158, 160, 166, 167, 168, 175, 176, 177, 179, 180, 181, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 207, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 229, 231, 239, 240, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "style": [1, 83, 86, 93, 95, 96, 98, 102, 107, 111, 179, 196], "15207": 1, "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 57, 58, 61, 76, 80, 85, 96, 105, 106, 114, 116, 127, 132, 141, 144, 145, 146, 147, 150, 176, 185, 187, 188, 190, 193, 194, 204, 207, 213, 217, 218, 222, 224, 240, 241, 242, 244, 245, 246, 248, 254, 256, 258, 259, 262], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 53, 55, 58, 60, 63, 64, 68, 69, 73, 74, 75, 76, 81, 82, 83, 86, 87, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 101, 102, 105, 106, 107, 111, 112, 113, 115, 117, 118, 119, 120, 122, 123, 124, 127, 128, 129, 130, 136, 137, 138, 139, 142, 143, 144, 145, 147, 149, 150, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 179, 181, 185, 188, 191, 194, 196, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 221, 229, 232, 235, 238, 240, 241, 242, 244, 245, 246, 249, 250, 252, 254, 258, 259, 262, 263, 264, 268, 269, 271], "configur": [1, 3, 6, 7, 8, 11, 14, 16, 17, 18, 19, 20, 21, 26, 29, 31, 35, 38, 41, 42, 45, 47, 48, 49, 51, 53, 56, 57, 58, 59, 61, 62, 68, 69, 70, 73, 74, 76, 77, 78, 79, 82, 85, 86, 93, 95, 96, 98, 99, 102, 103, 106, 116, 117, 118, 119, 120, 121, 122, 125, 126, 127, 130, 131, 132, 136, 139, 140, 147, 149, 150, 151, 158, 163, 166, 170, 175, 178, 180, 182, 183, 185, 186, 188, 193, 194, 198, 203, 205, 207, 210, 212, 216, 217, 218, 219, 220, 222, 224, 230, 232, 233, 236, 239, 240, 241, 245, 246, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 265, 266, 268, 269, 270], "preset": [1, 29, 47, 48, 64, 85, 118, 129, 146, 186, 188, 261, 262, 263], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 51, 53, 55, 56, 58, 63, 64, 70, 74, 76, 80, 85, 86, 91, 95, 96, 102, 108, 112, 115, 116, 117, 118, 119, 120, 127, 129, 131, 132, 135, 138, 144, 146, 147, 149, 152, 154, 155, 157, 158, 182, 183, 185, 187, 188, 190, 191, 194, 203, 208, 210, 211, 212, 213, 216, 220, 221, 223, 224, 227, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 267, 268, 270, 271], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 51, 58, 70, 74, 82, 85, 86, 87, 90, 91, 96, 99, 103, 106, 114, 116, 117, 118, 119, 120, 127, 131, 142, 146, 152, 166, 185, 188, 200, 210, 216, 221, 227, 232, 237, 241, 246, 247, 250, 251, 252, 253, 255, 256, 258, 261, 262, 267, 271], "15192": 1, "warn": [1, 24, 53, 56, 63, 73, 79, 85, 106, 108, 116, 134, 135, 141, 147, 158, 196, 217, 227, 249, 271], "about": [1, 4, 6, 16, 18, 19, 21, 24, 31, 37, 42, 45, 47, 51, 53, 55, 56, 63, 64, 65, 69, 70, 74, 76, 78, 80, 82, 83, 86, 88, 90, 92, 96, 98, 102, 105, 106, 110, 111, 113, 116, 117, 118, 120, 122, 123, 127, 128, 129, 131, 132, 136, 137, 139, 142, 143, 147, 149, 151, 155, 160, 188, 202, 208, 214, 217, 229, 234, 236, 239, 240, 242, 246, 248, 249, 251, 252, 254, 258, 259, 261, 262, 265, 268, 269, 271], "potenti": [1, 5, 40, 58, 87, 119, 133, 134, 135, 188, 192, 268], "migrat": [1, 70, 219, 244], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 56, 58, 73, 74, 80, 90, 98, 101, 103, 108, 114, 116, 118, 120, 125, 127, 131, 132, 133, 134, 135, 136, 146, 147, 149, 150, 154, 157, 159, 175, 186, 188, 189, 192, 203, 211, 227, 240, 241, 242, 243, 248, 251, 254, 256, 257, 266, 267, 268, 269, 270], "print": [1, 4, 26, 39, 40, 45, 49, 53, 72, 79, 96, 99, 105, 108, 116, 141, 151, 155, 159, 160, 207, 217, 247, 256, 258], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 63, 70, 74, 80, 81, 84, 85, 98, 116, 127, 130, 131, 145, 146, 147, 150, 157, 159, 181, 182, 188, 192, 210, 211, 221, 222, 240, 244, 245, 255, 256, 260, 261, 264, 267, 268, 270, 271], "time": [1, 6, 8, 10, 24, 26, 42, 53, 56, 63, 70, 74, 81, 90, 99, 106, 108, 114, 116, 119, 120, 124, 125, 126, 127, 128, 129, 132, 133, 147, 152, 159, 175, 185, 187, 188, 193, 194, 198, 203, 208, 240, 243, 244, 245, 249, 252, 255, 256, 257, 260, 261, 263, 264, 265, 266, 268, 269, 271], "fail": [1, 4, 6, 21, 56, 58, 73, 79, 83, 86, 93, 95, 96, 98, 102, 106, 111, 116, 118, 137, 139, 151, 154, 157, 166, 185, 219, 231, 249, 254, 255, 261, 266, 267], "15174": 1, "deploi": [1, 30, 33, 53, 56, 83, 96, 98, 117, 131, 157, 167, 240, 245, 256, 262], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 51, 56, 57, 64, 69, 70, 73, 74, 76, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 101, 102, 103, 105, 106, 108, 109, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 139, 142, 146, 147, 148, 149, 150, 152, 154, 155, 156, 157, 158, 159, 166, 168, 174, 175, 179, 183, 185, 186, 187, 188, 191, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 208, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 232, 233, 238, 240, 242, 243, 244, 245, 246, 247, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "explicit": [1, 41, 84, 98, 130, 145, 199, 223, 264, 265, 267, 270, 271], "per": [1, 6, 68, 70, 80, 105, 118, 127, 130, 132, 136, 147, 175, 181, 210, 211, 221], "deploy": [1, 6, 11, 30, 35, 74, 76, 83, 84, 85, 87, 96, 124, 136, 146, 152, 192, 217], "15172": 1, "sourc": [1, 2, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 28, 30, 31, 34, 35, 38, 39, 40, 42, 43, 45, 48, 49, 50, 53, 55, 56, 57, 73, 74, 75, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 106, 111, 114, 115, 117, 118, 125, 126, 127, 129, 132, 139, 146, 147, 150, 158, 159, 166, 167, 174, 175, 185, 186, 187, 188, 192, 193, 196, 198, 200, 204, 205, 208, 214, 227, 232, 233, 234, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 249, 250, 254, 255, 256, 257, 258, 259, 260, 261, 265, 268, 270], "inject": [1, 39, 40, 43, 46, 62, 63, 85, 116, 131, 132, 141, 145, 146, 147, 150, 152, 154, 212, 223, 245, 248, 258], "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 56, 84, 114, 115, 116, 120, 123, 127, 136, 149, 157, 175, 196, 198, 204, 207, 219, 221, 258], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 53, 55, 56, 57, 58, 74, 84, 85, 105, 114, 115, 126, 129, 147, 152, 158, 159, 175, 176, 196, 200, 208, 211, 217, 222, 240, 242, 243, 244, 250, 252, 259, 260, 262, 263, 268], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 51, 56, 63, 64, 67, 68, 69, 74, 76, 77, 79, 81, 82, 83, 85, 86, 87, 90, 91, 93, 95, 96, 97, 99, 102, 106, 108, 111, 114, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 136, 137, 139, 140, 141, 143, 144, 145, 146, 150, 152, 153, 155, 157, 160, 163, 170, 177, 179, 180, 181, 182, 183, 184, 185, 187, 188, 191, 192, 193, 194, 198, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 229, 231, 232, 233, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 257, 258, 259, 262, 263, 267, 268], "yml": [1, 4, 7, 11, 23, 51, 56, 63, 73, 74, 76, 80, 85, 116, 125, 126, 127, 128, 136, 143, 147, 159, 196, 200, 246], "settings_us": [1, 11, 23, 73, 80, 143], "configapi": [1, 161, 163], "15151": 1, "builtin": [1, 11, 30, 70, 149], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 57, 58, 60, 63, 64, 65, 68, 69, 70, 73, 80, 105, 112, 118, 127, 132, 138, 149, 156, 159, 177, 234, 249, 250, 259, 267], "15150": 1, "core": [1, 3, 4, 10, 31, 45, 53, 57, 71, 78, 80, 84, 85, 114, 116, 131, 141, 145, 146, 147, 151, 175, 269], "warnings_as_error": [1, 85, 141, 146], "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 51, 56, 63, 67, 68, 69, 73, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 117, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 131, 132, 139, 140, 146, 148, 152, 153, 155, 157, 158, 170, 181, 182, 183, 184, 185, 187, 188, 196, 198, 203, 205, 212, 213, 215, 220, 221, 222, 232, 235, 239, 244, 246, 248, 250, 252, 254, 256, 258, 265, 268, 269, 271], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 51, 107, 146, 150, 198, 256, 271], "argument": [1, 6, 7, 26, 29, 31, 35, 36, 47, 49, 64, 73, 74, 80, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 124, 134, 135, 141, 145, 146, 151, 152, 154, 156, 157, 159, 166, 170, 174, 180, 181, 185, 186, 187, 188, 189, 191, 192, 196, 203, 205, 210, 213, 214, 220, 227, 231, 241, 242, 244, 248, 249, 250, 252, 255, 261, 262, 264, 267, 269, 270], "ftp_download": [1, 195], "commun": [1, 3, 8, 73, 85, 114, 132, 146, 149, 224, 235, 237], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 53, 56, 58, 63, 70, 74, 76, 78, 80, 82, 83, 85, 86, 90, 93, 95, 96, 102, 111, 116, 120, 123, 132, 143, 146, 149, 151, 152, 157, 161, 163, 166, 188, 191, 205, 212, 213, 216, 217, 219, 223, 239, 240, 242, 244, 245, 249, 254, 266, 267, 268, 269], "redefin": [1, 98, 147], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 58, 61, 63, 64, 65, 67, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 95, 96, 98, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 146, 147, 149, 151, 152, 153, 154, 155, 156, 157, 158, 166, 167, 168, 174, 175, 179, 181, 182, 185, 187, 188, 189, 191, 192, 194, 196, 199, 203, 205, 207, 208, 210, 211, 214, 216, 217, 221, 222, 227, 230, 232, 233, 234, 235, 236, 237, 240, 241, 243, 244, 258, 265, 266, 267, 269, 270], "replac": [1, 19, 35, 49, 51, 73, 85, 116, 147, 151, 163, 188, 192, 196, 257], "zlibng": [1, 147], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 70, 73, 79, 81, 84, 85, 87, 91, 93, 95, 96, 98, 99, 102, 108, 109, 112, 116, 127, 132, 133, 142, 146, 147, 148, 156, 181, 187, 193, 194, 206, 208, 211, 221, 224, 229, 239, 240, 241, 242, 243, 244, 245, 250], "conflict": [1, 39, 40, 58, 74, 98, 115, 116, 120, 133, 147, 166, 187, 191, 208, 217, 232, 254, 265], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 58, 59, 64, 65, 70, 73, 74, 75, 78, 79, 80, 81, 82, 83, 85, 86, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 105, 111, 116, 117, 118, 119, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 144, 145, 146, 147, 149, 150, 151, 153, 154, 155, 156, 158, 175, 181, 187, 188, 189, 191, 196, 198, 203, 204, 205, 207, 208, 212, 213, 214, 217, 223, 227, 231, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "system": [1, 5, 7, 8, 35, 39, 40, 42, 45, 51, 53, 55, 56, 57, 59, 61, 63, 64, 68, 73, 76, 80, 85, 98, 106, 113, 114, 116, 117, 118, 120, 127, 130, 132, 133, 136, 141, 143, 144, 146, 147, 150, 152, 156, 157, 158, 170, 176, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 196, 204, 205, 207, 221, 240, 241, 242, 244, 245, 246, 249, 250, 251, 255, 257, 258, 261, 262, 267, 268], "altern": [1, 56, 70, 86, 90, 92, 95, 116, 134, 135, 147, 175, 192, 227, 255], "wrap": [1, 118, 141, 147, 192, 213, 217, 224, 271], "anoth": [1, 7, 13, 35, 41, 51, 79, 116, 119, 120, 127, 137, 147, 149, 155, 187, 191, 203, 211, 231, 233, 238, 240, 241, 248, 249, 251, 255, 257, 258, 261, 268], "15136": 1, "stderr": [1, 70, 141, 185, 271], "captur": [1, 6, 11, 43, 86, 102, 136, 193, 194, 196, 227, 231, 241, 243, 244, 245, 248, 252, 267], "15121": 1, "platform_requir": 1, "definit": [1, 17, 61, 63, 64, 66, 67, 70, 80, 85, 90, 98, 105, 106, 107, 116, 123, 132, 136, 146, 147, 149, 152, 182, 188, 190, 192, 193, 194, 204, 205, 217, 221, 222, 223, 227, 244, 258, 261, 263, 270], "platform": [1, 8, 17, 39, 40, 55, 57, 58, 59, 67, 68, 73, 74, 80, 84, 95, 106, 122, 125, 126, 127, 130, 132, 136, 145, 146, 147, 149, 179, 188, 217, 219, 220, 221, 222, 231, 239, 240, 241, 244, 248, 259, 261, 268], "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 78, 80, 83, 84, 86, 88, 89, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 105, 108, 109, 110, 111, 114, 117, 118, 124, 127, 130, 132, 133, 134, 135, 142, 145, 146, 147, 149, 150, 154, 157, 166, 185, 187, 188, 189, 191, 192, 196, 198, 200, 205, 207, 208, 217, 229, 242, 243, 244, 246, 255, 257, 258, 265, 267, 270, 271], "14871": 1, "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 57, 73, 74, 78, 80, 82, 85, 86, 97, 98, 100, 101, 102, 103, 106, 116, 117, 123, 127, 132, 133, 136, 137, 139, 142, 146, 147, 152, 155, 157, 161, 167, 181, 192, 221, 231, 239, 240, 241, 243, 245, 249, 264, 265, 266, 267, 268, 270], "explain": [1, 5, 56, 63, 70, 73, 78, 81, 92, 136, 146, 147, 149, 182, 189, 199, 231, 233, 239, 241, 242, 244, 246, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 260, 263, 265, 267, 270], "miss": [1, 5, 26, 35, 36, 42, 45, 53, 55, 78, 79, 80, 81, 83, 84, 86, 91, 92, 93, 95, 96, 98, 102, 111, 116, 137, 147, 158, 231, 240, 241, 242, 244, 245, 247, 248, 249, 251, 254, 255, 257, 258, 266, 268, 271], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 51, 53, 56, 57, 58, 60, 73, 74, 76, 79, 81, 82, 83, 84, 85, 86, 87, 90, 91, 92, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 115, 117, 118, 119, 120, 121, 124, 127, 130, 131, 132, 133, 136, 137, 138, 139, 140, 146, 147, 148, 149, 152, 157, 167, 175, 179, 182, 187, 196, 203, 208, 217, 232, 233, 234, 235, 236, 238, 240, 241, 242, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 86, 91, 96, 129, 181, 187, 188, 189, 194, 196, 205, 206, 207, 208, 211, 250, 251, 252, 254, 255, 256, 263], "initi": [1, 6, 56, 63, 117, 128, 132, 134, 135, 166, 217, 225, 270], "compon": [1, 14, 15, 20, 127, 129, 178, 185, 187, 189, 206, 207, 208, 211, 221, 246], "13994": 1, "accept": [1, 5, 7, 89, 97, 98, 99, 102, 107, 109, 116, 141, 144, 147, 149, 180, 185, 188, 196, 200, 208, 213, 216, 220, 231], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 53, 57, 61, 63, 66, 68, 69, 73, 79, 80, 81, 82, 84, 87, 97, 101, 103, 105, 108, 109, 112, 114, 116, 117, 121, 127, 128, 131, 132, 141, 142, 145, 146, 147, 148, 152, 155, 161, 166, 170, 171, 174, 182, 183, 185, 186, 187, 188, 192, 196, 198, 203, 205, 206, 208, 210, 212, 217, 220, 221, 222, 223, 227, 229, 231, 232, 238, 243, 250, 251, 254, 255, 261, 262, 267, 268, 270, 271], "15297": 1, "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 53, 56, 57, 58, 70, 72, 73, 74, 77, 78, 80, 82, 83, 85, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 104, 105, 106, 110, 114, 117, 120, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 143, 144, 145, 147, 148, 149, 150, 151, 152, 157, 158, 160, 169, 170, 187, 188, 191, 196, 198, 200, 205, 208, 217, 221, 227, 228, 236, 237, 240, 242, 243, 245, 248, 249, 250, 251, 252, 254, 256, 257, 261, 262, 266, 269], "scope": [1, 116, 129, 141, 142, 146, 147, 191, 192, 193, 194, 213, 219, 224], "separ": [1, 21, 56, 82, 86, 108, 114, 116, 119, 129, 147, 151, 186, 187, 191, 192, 217, 237, 245, 251, 263, 269], "15296": 1, "rang": [1, 8, 9, 70, 74, 78, 80, 83, 85, 86, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 111, 116, 131, 133, 142, 146, 147, 149, 175, 232, 239, 250, 265, 267, 270], "escap": [1, 107, 151], "report": [1, 6, 13, 57, 58, 70, 85, 95, 98, 114, 137, 146, 149, 167, 231], "involv": [1, 261, 262], "15222": 1, "hard": [1, 149], "set_nam": [1, 97, 117, 127], "set_vers": [1, 97, 116, 117, 127, 175, 227, 270], "mutat": 1, "name": [1, 3, 4, 6, 7, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 56, 58, 65, 74, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95, 96, 97, 99, 101, 102, 105, 106, 107, 109, 110, 114, 117, 120, 127, 128, 129, 131, 132, 134, 135, 136, 137, 139, 140, 142, 145, 146, 147, 148, 149, 151, 152, 154, 156, 157, 158, 170, 175, 177, 179, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 206, 207, 212, 213, 217, 220, 221, 222, 224, 227, 229, 231, 236, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 266, 267, 268, 269, 270, 271], "version": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 35, 37, 38, 41, 42, 45, 47, 48, 49, 51, 55, 56, 57, 58, 59, 63, 65, 70, 73, 74, 77, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 95, 96, 99, 100, 101, 102, 103, 104, 105, 106, 108, 110, 111, 112, 114, 117, 120, 121, 127, 128, 131, 133, 135, 136, 137, 139, 140, 142, 146, 147, 149, 150, 152, 154, 156, 157, 160, 166, 175, 176, 179, 182, 183, 186, 187, 188, 191, 196, 199, 200, 203, 207, 208, 213, 217, 219, 222, 223, 224, 226, 227, 231, 232, 239, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 271], "line": [1, 8, 10, 21, 26, 29, 31, 49, 56, 61, 62, 67, 68, 69, 70, 73, 74, 80, 83, 86, 93, 95, 96, 98, 102, 105, 106, 111, 114, 116, 118, 134, 135, 145, 146, 151, 154, 155, 156, 160, 180, 181, 185, 187, 188, 196, 203, 210, 211, 216, 220, 222, 224, 240, 242, 245, 247, 248, 250, 252, 257, 268, 269, 270, 271], "15211": 1, "format": [1, 6, 7, 13, 51, 65, 72, 82, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 106, 107, 108, 109, 111, 112, 113, 116, 121, 127, 132, 136, 137, 145, 149, 150, 154, 175, 189, 192, 196, 198, 206, 208, 214, 217, 222, 235, 248, 255, 256, 264, 271], "text": [1, 99, 114, 115, 116, 135, 146, 147, 155, 175, 196, 270], "stdout": [1, 70, 97, 99, 105, 113, 116, 141, 185, 271], "15170": 1, "avoid": [1, 5, 6, 10, 56, 58, 70, 74, 83, 85, 86, 90, 93, 95, 96, 97, 98, 102, 105, 108, 111, 114, 115, 116, 119, 120, 123, 127, 128, 133, 136, 146, 150, 151, 153, 159, 175, 187, 188, 192, 196, 203, 205, 214, 245, 248, 249, 254, 259, 261, 266, 267, 268], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 51, 55, 56, 63, 65, 70, 74, 76, 82, 83, 84, 85, 87, 88, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 115, 124, 127, 131, 136, 146, 147, 151, 155, 157, 158, 175, 196, 198, 200, 207, 214, 217, 227, 240, 242, 244, 245, 247, 248, 251, 258, 259, 263, 268, 271], "due": [1, 81, 116, 263], "cmake_policy_default_cmp0091": 1, "unus": [1, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 232, 267], "variabl": [1, 26, 35, 36, 43, 45, 46, 57, 61, 76, 78, 80, 85, 105, 114, 116, 127, 131, 132, 144, 145, 146, 147, 150, 178, 182, 185, 187, 189, 190, 193, 194, 204, 205, 206, 207, 208, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224, 231, 241, 242, 244, 245, 248, 256, 257, 258, 259, 268, 269, 271], "15127": 1, "deprec": [1, 70, 85, 91, 141, 146, 149, 199, 205, 217], "system_tool": [1, 245], "favor": [1, 116], "platform_tool_requir": 1, "align": [1, 7, 149], "regular": [1, 41, 116, 127, 129, 132, 147, 151, 158, 175, 187, 198, 208, 221, 237, 239, 241, 254], "ensur": [1, 4, 8, 36, 42, 58, 63, 78, 86, 120, 149, 188, 196, 210, 213, 242], "have": [1, 4, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 45, 49, 51, 53, 55, 56, 58, 63, 65, 70, 73, 74, 78, 79, 80, 81, 82, 83, 84, 86, 93, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 120, 123, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 151, 155, 156, 158, 166, 175, 179, 181, 182, 187, 188, 196, 198, 203, 205, 208, 211, 213, 214, 217, 221, 222, 231, 233, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270, 271], "least": [1, 3, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 133, 243, 247, 254, 258, 264], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 51, 53, 55, 58, 65, 70, 73, 74, 85, 98, 105, 106, 116, 135, 136, 150, 176, 196, 226, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 270], "is_dirti": [1, 227], "statu": [1, 38, 49, 141, 227], "sure": [1, 8, 24, 29, 38, 42, 58, 99, 127, 130, 137, 141, 159, 175, 196, 217, 270], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 51, 53, 56, 63, 70, 73, 74, 78, 79, 80, 82, 83, 84, 85, 86, 87, 93, 95, 96, 97, 98, 99, 102, 105, 107, 108, 111, 112, 115, 116, 119, 120, 121, 123, 124, 125, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 166, 167, 175, 176, 181, 182, 183, 185, 186, 187, 188, 189, 193, 194, 196, 198, 203, 204, 205, 207, 208, 211, 212, 217, 221, 229, 231, 239, 241, 242, 243, 245, 246, 248, 250, 251, 252, 253, 255, 256, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "process": [1, 5, 7, 26, 53, 56, 58, 63, 70, 74, 80, 91, 101, 103, 105, 114, 116, 117, 118, 123, 132, 147, 151, 155, 157, 158, 188, 193, 217, 238, 242, 243, 246, 250, 255, 257, 267, 270, 271], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 58, 64, 66, 67, 68, 69, 70, 73, 74, 78, 80, 84, 85, 90, 98, 101, 105, 107, 114, 116, 117, 124, 125, 126, 127, 129, 131, 133, 134, 135, 136, 139, 140, 144, 146, 147, 153, 160, 174, 175, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 231, 238, 240, 241, 242, 244, 245, 247, 248, 250, 256, 261, 263, 267], "whole": [1, 6, 10, 17, 70, 78, 80, 84, 98, 116, 139, 175, 187, 188, 192, 207], "repo": [1, 4, 5, 6, 16, 56, 58, 65, 70, 105, 106, 158, 227, 263, 270], "similarli": [1, 147, 236, 269], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 56, 57, 58, 66, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 103, 105, 106, 108, 111, 112, 114, 115, 118, 119, 120, 121, 123, 124, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 140, 146, 147, 149, 150, 151, 152, 155, 175, 176, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 203, 204, 205, 210, 217, 222, 223, 227, 231, 232, 236, 238, 240, 241, 243, 244, 245, 246, 247, 249, 250, 252, 256, 258, 260, 261, 262, 263, 267, 268, 270], "15289": 1, "clear": [1, 107, 116, 131, 132, 139, 191, 244, 249, 254, 267], "header": [1, 6, 17, 35, 39, 40, 42, 74, 79, 80, 81, 91, 116, 120, 129, 130, 131, 132, 138, 139, 150, 179, 187, 189, 198, 221, 246, 250, 251, 253, 255, 256, 257, 261, 263, 271], "python_requir": [1, 74, 97, 101, 102, 103, 104, 117, 127, 128, 152, 166, 188, 214, 232, 243, 267, 269], "tool_requir": [1, 11, 35, 37, 39, 40, 74, 79, 80, 86, 90, 93, 95, 96, 98, 102, 105, 106, 117, 127, 131, 132, 133, 136, 175, 187, 188, 193, 204, 208, 211, 221, 241, 242, 243, 244, 245, 256, 259, 269], "15285": 1, "restor": [1, 2, 57, 192, 193, 194, 242, 243, 245], "portabl": [1, 70, 116], "across": [1, 8, 55, 146, 152, 153, 240], "window": [1, 8, 13, 17, 26, 29, 35, 39, 40, 42, 48, 55, 58, 59, 70, 74, 80, 81, 84, 85, 87, 99, 102, 103, 108, 112, 116, 119, 122, 127, 130, 132, 136, 139, 146, 147, 149, 160, 168, 192, 196, 204, 205, 213, 217, 231, 236, 237, 240, 242, 244, 245, 248, 249, 250, 251, 252, 255, 256, 261, 263, 268, 271], "oss": [1, 103, 132, 149, 268], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 83, 84, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 101, 102, 104, 108, 111, 112, 116, 118, 119, 123, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 141, 145, 146, 147, 149, 150, 151, 155, 157, 175, 183, 187, 188, 191, 196, 203, 217, 227, 231, 238, 240, 241, 242, 243, 245, 246, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 261, 263, 264, 266, 267, 268, 270, 271], "relativ": 1, "absolut": [1, 35, 36, 49, 85, 105, 127, 144, 146, 147, 157, 169, 187, 188, 196, 198, 200, 201, 257], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 51, 64, 70, 80, 81, 85, 119, 122, 131, 143, 146, 147, 179, 180, 182, 183, 188, 205, 213, 217, 220, 231, 240, 241, 242, 244, 255, 259, 267], "cmakepreset": [1, 43, 46, 64, 85, 127, 146, 185, 186, 188, 244, 261, 262, 263, 271], "ignor": [1, 6, 29, 53, 74, 124, 134, 135, 151, 185, 200, 201, 227, 231, 267], "toolchain": [1, 26, 27, 45, 46, 61, 62, 64, 68, 69, 80, 85, 118, 127, 129, 146, 147, 149, 182, 185, 203, 205, 212, 217, 222, 240, 241, 242, 244, 245, 246, 249, 250, 256, 258, 262], "15215": 1, "html": [1, 45, 58, 73, 96, 155, 271], "mislead": 1, "node": [1, 13, 91, 137, 166], "15196": 1, "serial": [1, 7, 116], "show": [1, 21, 31, 39, 40, 42, 47, 48, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 113, 120, 146, 147, 214, 227, 239, 242, 246, 250, 252, 258, 260, 261, 262, 263], "json": [1, 3, 4, 6, 13, 21, 47, 48, 56, 65, 76, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 101, 103, 106, 107, 108, 109, 111, 112, 113, 127, 128, 136, 137, 143, 155, 185, 186, 188, 255, 261, 262, 263, 264, 271], "15185": 1, "nmakedep": [1, 176, 189, 218], "quot": [1, 99, 107], "15140": 1, "lru": [1, 99, 108, 264], "data": [1, 6, 8, 80, 114, 116, 119, 126, 127, 128, 129, 132, 143, 183, 187, 196, 208, 215, 237, 252], "storage_path": [1, 85, 146], "15135": 1, "package_metadata_fold": [1, 6], "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 55, 61, 78, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 111, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 139, 140, 146, 147, 149, 156, 174, 175, 177, 181, 182, 187, 188, 193, 194, 196, 204, 205, 206, 207, 208, 211, 212, 213, 221, 222, 223, 224, 229, 230, 251, 255, 261, 269, 270], "15126": 1, "pyinstal": [1, 58], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 56, 57, 58, 63, 70, 74, 76, 80, 82, 83, 84, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 105, 106, 110, 111, 114, 116, 121, 125, 127, 128, 129, 134, 135, 136, 137, 138, 139, 142, 147, 150, 152, 153, 154, 155, 156, 157, 158, 159, 160, 166, 167, 175, 181, 182, 187, 193, 194, 200, 204, 205, 206, 208, 210, 211, 212, 213, 221, 222, 224, 229, 231, 232, 239, 240, 241, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 268, 269, 270], "broken": [1, 5, 65, 70, 129, 136, 201, 257, 268], "python": [1, 8, 31, 51, 56, 58, 61, 68, 70, 74, 76, 83, 85, 100, 101, 104, 113, 114, 116, 128, 141, 146, 147, 152, 154, 155, 156, 158, 160, 166, 185, 188, 192, 203, 205, 208, 210, 217, 220, 223, 244], "useless": [1, 128, 187], "distutil": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 49, 51, 56, 57, 58, 59, 61, 62, 66, 67, 68, 69, 70, 73, 78, 80, 82, 96, 98, 102, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 143, 145, 147, 149, 152, 153, 155, 156, 159, 175, 176, 177, 179, 180, 181, 182, 185, 186, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 216, 217, 220, 221, 222, 223, 224, 229, 231, 232, 241, 243, 244, 247, 248, 250, 252, 254, 255, 256, 257, 258, 259, 263, 267, 269, 270, 271], "15116": 1, "backup": [1, 7, 85, 114, 146, 174], "download_cach": [1, 4, 85, 146], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 53, 55, 58, 61, 62, 63, 65, 66, 67, 68, 74, 75, 78, 80, 82, 85, 98, 100, 105, 106, 107, 112, 116, 117, 122, 123, 131, 132, 136, 137, 146, 147, 148, 149, 157, 175, 177, 181, 188, 189, 191, 192, 196, 204, 213, 217, 219, 227, 230, 235, 239, 240, 241, 244, 246, 250, 256, 264, 265, 267, 268, 269, 270], "meson": [1, 11, 43, 57, 59, 70, 74, 76, 85, 105, 146, 147, 176, 240, 248, 250], "autotool": [1, 11, 43, 57, 59, 70, 85, 105, 127, 146, 176, 179, 189, 191, 192, 202, 204, 205, 240, 248, 250], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 53, 55, 63, 68, 70, 73, 74, 78, 79, 80, 81, 83, 84, 85, 86, 87, 91, 92, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 108, 111, 112, 114, 116, 118, 119, 120, 123, 127, 129, 130, 131, 132, 133, 136, 139, 142, 146, 147, 150, 152, 154, 155, 157, 160, 175, 179, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 196, 198, 203, 204, 205, 207, 211, 213, 216, 220, 221, 222, 223, 229, 231, 240, 241, 242, 243, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 266, 267, 268, 269, 270, 271], "simultan": [1, 187, 261, 266], "databas": [1, 85, 146, 231], "connect": [1, 53, 73, 85, 96, 107, 114, 146, 236], "15029": 1, "upload": [1, 3, 5, 7, 12, 29, 56, 65, 70, 73, 74, 80, 82, 85, 87, 89, 106, 107, 108, 114, 116, 125, 126, 146, 148, 152, 159, 161, 203, 232, 233, 234, 236, 243, 254, 255, 261, 264, 265, 271], "regardless": [1, 84, 249], "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 53, 55, 56, 58, 61, 62, 63, 66, 72, 73, 74, 79, 80, 82, 83, 84, 85, 86, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 113, 114, 116, 118, 120, 123, 125, 126, 129, 130, 132, 133, 136, 140, 141, 144, 145, 146, 147, 149, 150, 152, 154, 157, 158, 159, 163, 175, 179, 180, 185, 187, 188, 191, 196, 198, 203, 205, 207, 210, 211, 212, 213, 214, 216, 217, 220, 221, 223, 231, 240, 242, 243, 244, 246, 249, 250, 251, 255, 261, 262, 264, 266, 269, 271], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 61, 62, 65, 66, 67, 69, 70, 73, 74, 75, 78, 79, 80, 84, 86, 87, 90, 92, 96, 97, 98, 100, 101, 103, 114, 116, 118, 120, 121, 123, 127, 129, 132, 133, 136, 137, 142, 145, 146, 147, 149, 150, 151, 155, 157, 158, 166, 175, 177, 179, 182, 185, 188, 196, 201, 210, 214, 217, 222, 227, 231, 238, 242, 243, 246, 249, 250, 251, 252, 254, 255, 256, 263, 264, 266, 267, 268, 269, 271], "15013": 1, "compact": [1, 84], "better": [1, 5, 6, 24, 27, 31, 36, 56, 64, 82, 98, 103, 116, 118, 131, 134, 135, 150, 192, 237, 255, 256, 266, 267, 271], "ux": [1, 109, 143], "15011": 1, "metadata": [1, 2, 7, 57, 65, 84, 112, 115, 131, 174, 250, 268], "pass": [1, 4, 13, 26, 36, 39, 45, 49, 53, 55, 64, 80, 84, 85, 86, 98, 105, 106, 114, 116, 123, 128, 129, 136, 141, 145, 146, 154, 155, 157, 163, 179, 180, 181, 182, 185, 186, 189, 198, 200, 203, 205, 206, 210, 213, 217, 220, 227, 231, 240, 248, 249, 250, 251, 252, 254, 258, 259, 261, 267, 271], "15007": 1, "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 51, 73, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 141, 146, 158, 245, 247, 248, 249, 252, 256, 258, 261, 268, 271], "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 85, 86, 105, 116, 131, 134, 135, 141, 146, 185, 200, 205, 210, 212, 217, 222, 223, 227, 247, 254, 258], "flag": [1, 49, 84, 85, 96, 122, 131, 132, 146, 149, 179, 180, 182, 187, 203, 204, 205, 208, 212, 216, 217, 219, 222, 223, 229, 249], "14966": 1, "implement": [1, 2, 7, 8, 41, 70, 74, 79, 84, 90, 105, 114, 121, 127, 130, 136, 149, 153, 157, 160, 175, 176, 180, 188, 214, 220, 228, 235, 237, 250, 252, 254, 255, 264, 266, 271], "load": [1, 16, 41, 45, 53, 56, 62, 98, 116, 125, 126, 128, 134, 135, 146, 147, 158, 169, 170, 175, 188, 195, 198, 203, 211, 213, 229, 242, 244, 270], "ci": [1, 2, 4, 5, 6, 7, 8, 56, 65, 74, 95, 106, 116, 118, 149, 150, 151, 267, 271], "workflow": [1, 56, 158, 262], "move": [1, 7, 35, 70, 74, 136, 175, 196, 250, 252, 257, 262, 263, 266, 267, 268, 270], "over": [1, 6, 8, 10, 72, 74, 80, 84, 85, 87, 98, 128, 131, 136, 144, 146, 147, 151, 154, 157, 170, 175, 180, 188, 198, 205, 207, 208, 227, 248, 251, 252, 257, 264, 266, 269, 271], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 56, 70, 73, 76, 77, 78, 92, 93, 96, 98, 99, 100, 102, 106, 116, 117, 123, 127, 131, 133, 136, 139, 147, 149, 160, 166, 170, 175, 193, 194, 204, 205, 238, 240, 242, 243, 245, 249, 250, 259, 268], "intersect": [1, 10], "compat": [1, 8, 24, 27, 45, 63, 70, 76, 77, 79, 80, 83, 86, 87, 93, 95, 96, 98, 102, 111, 112, 116, 117, 131, 147, 149, 152, 158, 187, 188, 203, 208, 217, 242, 244, 246, 256], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 68, 69, 70, 74, 83, 86, 87, 93, 95, 96, 98, 102, 111, 114, 116, 127, 129, 131, 147, 150, 157, 175, 181, 185, 187, 188, 189, 193, 203, 205, 214, 217, 221, 231, 232, 233, 236, 239, 246, 261, 263, 267, 269, 271], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 58, 59, 73, 81, 91, 96, 99, 106, 147, 149, 179, 202, 213, 217, 231, 240, 242, 244, 245, 248, 250, 251, 255, 261, 263], "14858": 1, "pkgconfigdep": [1, 45, 55, 61, 67, 132, 176, 202, 217, 248], "listen": [1, 114, 207, 210, 237], "system_package_vers": [1, 187, 208], "properti": [1, 21, 42, 67, 68, 91, 96, 116, 127, 129, 133, 163, 179, 188, 204, 213, 217, 221, 222, 230, 246, 257, 258, 262], "14808": 1, "shorthand": 1, "cli": [1, 10, 13, 31, 70, 91, 96, 146, 148, 151, 155, 185, 210, 236, 270], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 51, 73, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 99, 102, 104, 106, 107, 108, 109, 110, 111, 112, 114, 116, 120, 122, 123, 127, 129, 131, 132, 133, 141, 142, 146, 147, 148, 149, 157, 174, 183, 185, 186, 187, 188, 192, 196, 197, 198, 203, 205, 206, 208, 211, 213, 216, 217, 223, 227, 238, 240, 241, 242, 243, 244, 252, 254, 269, 270], "host": [1, 8, 13, 24, 30, 35, 42, 70, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 146, 147, 157, 166, 170, 177, 183, 187, 188, 189, 194, 198, 205, 208, 213, 217, 219, 221, 223, 231, 232, 235, 236, 239, 242, 256], "14727": 1, "control": [1, 4, 5, 49, 56, 70, 73, 78, 86, 116, 129, 135, 149, 151, 181, 188, 221, 255, 267, 269, 271], "clean": [1, 6, 7, 30, 32, 56, 58, 83, 86, 90, 93, 95, 96, 98, 102, 103, 111, 196, 210, 255, 261, 267, 268], "artifact": [1, 6, 7, 13, 29, 65, 70, 74, 79, 84, 85, 87, 98, 108, 112, 116, 117, 119, 124, 129, 130, 131, 133, 146, 157, 159, 174, 188, 235, 236, 250, 255, 257, 261, 262, 263, 268, 271], "14054": 1, "overwrit": [1, 7, 24, 78, 83, 86, 90, 93, 95, 96, 98, 102, 105, 106, 111, 136, 175, 191, 208], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 53, 76, 115, 117, 127, 130, 132, 136, 176, 185, 186, 188, 200, 205, 211, 217, 225, 232, 239, 241, 250, 252, 254, 255, 256, 259, 260, 261, 262], "nor": [1, 36, 70, 124, 128, 136, 137, 174, 231], "15058": 1, "astra": 1, "elbru": [1, 149], "altlinux": 1, "distribut": [1, 7, 35, 45, 56, 58, 70, 106, 136, 149, 160, 231, 237], "apt": [1, 58, 85, 117, 137, 146, 230], "systempackagemanag": 1, "15051": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 51, 53, 55, 56, 58, 70, 73, 74, 80, 84, 85, 96, 106, 108, 114, 116, 131, 136, 137, 145, 146, 147, 150, 158, 168, 174, 177, 179, 183, 185, 186, 187, 189, 192, 195, 200, 203, 208, 211, 213, 217, 219, 220, 223, 227, 229, 231, 240, 242, 243, 248, 252, 254, 255, 256, 261, 262, 263, 266, 268, 271], "linux": [1, 8, 26, 27, 35, 44, 48, 55, 58, 59, 70, 80, 81, 85, 87, 95, 99, 102, 103, 137, 139, 146, 147, 149, 183, 198, 213, 231, 240, 241, 242, 244, 245, 248, 251, 255, 261, 263, 268], "mint": [1, 58], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 51, 56, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 73, 74, 78, 83, 85, 86, 90, 93, 95, 96, 97, 98, 101, 102, 106, 107, 111, 112, 114, 116, 118, 129, 131, 132, 136, 137, 139, 140, 146, 147, 149, 151, 152, 155, 158, 160, 166, 167, 174, 182, 183, 187, 192, 196, 197, 198, 203, 211, 213, 214, 217, 219, 227, 231, 235, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 264, 267, 268, 271], "commit": [1, 19, 56, 65, 70, 74, 116, 129, 136, 196, 227, 247, 248, 251, 252, 258, 262, 263, 268, 270], "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 53, 56, 70, 73, 76, 82, 83, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 106, 108, 109, 111, 112, 114, 143, 145, 146, 147, 152, 161, 166, 167, 168, 174, 196, 227, 232, 233, 236, 237, 238, 240, 242, 245, 246, 249, 255, 262, 271], "server": [1, 4, 5, 6, 7, 8, 13, 29, 53, 56, 57, 65, 70, 74, 76, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 98, 102, 105, 106, 107, 108, 111, 112, 116, 125, 126, 131, 145, 146, 150, 151, 159, 166, 198, 203, 232, 235, 236, 238, 240, 243, 252, 254, 264, 268, 271], "even": [1, 4, 6, 35, 36, 47, 51, 58, 59, 70, 73, 74, 79, 81, 87, 98, 103, 107, 112, 116, 118, 120, 123, 127, 133, 134, 135, 136, 137, 146, 147, 148, 149, 154, 157, 158, 175, 196, 214, 221, 238, 241, 243, 248, 249, 250, 254, 265, 266, 267, 268, 269, 270], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 85, 98, 136, 150, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268], "15023": 1, "appl": [1, 24, 42, 69, 70, 73, 76, 81, 85, 91, 96, 99, 106, 146, 147, 149, 176, 180, 181, 182, 186, 188, 203, 205, 215, 240, 242, 250], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 51, 56, 73, 74, 80, 81, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 103, 106, 108, 111, 112, 116, 119, 122, 123, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 145, 146, 147, 149, 150, 158, 159, 160, 168, 175, 179, 180, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 236, 240, 241, 242, 243, 244, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266], "15015": 1, "autotoolstoolchain": [1, 45, 61, 85, 146, 176, 191, 202, 203, 248], "extraflag": 1, "prioriti": [1, 98, 104, 116, 123, 132, 133, 134, 135, 145, 146, 147, 151, 170, 191, 266], "15005": 1, "color": [1, 31, 116, 247, 248, 251, 258, 259], "15002": 1, "sqlite3": [1, 127], "unsupport": [1, 252], "less": [1, 6, 35, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 146, 270], "than": [1, 8, 56, 63, 70, 73, 78, 80, 85, 86, 87, 94, 101, 108, 116, 119, 121, 122, 128, 131, 132, 134, 135, 140, 141, 146, 149, 150, 157, 175, 182, 183, 187, 188, 205, 208, 222, 223, 231, 240, 243, 249, 253, 259, 268, 269, 271], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 70, 74, 75, 80, 98, 104, 105, 116, 119, 120, 125, 127, 131, 133, 134, 135, 136, 142, 147, 149, 150, 158, 176, 183, 185, 186, 188, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 223, 224, 225, 231, 240, 242, 243, 244, 254, 255, 264, 266, 268, 269, 271], "forward": [1, 6, 45, 53, 55, 70, 175, 198, 266, 270], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 56, 63, 74, 78, 79, 119, 120, 146, 147, 175, 188, 205, 211, 217, 251, 261, 262, 271], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 74, 78, 79, 81, 82, 83, 84, 86, 87, 90, 93, 95, 96, 98, 100, 101, 102, 103, 104, 106, 108, 111, 112, 116, 127, 131, 142, 149, 155, 166, 175, 196, 232, 239, 240, 245, 249, 251, 254, 256, 257, 262, 264, 265, 267], "forc": [1, 6, 31, 36, 41, 74, 83, 85, 86, 91, 93, 95, 96, 98, 102, 104, 105, 106, 107, 111, 112, 114, 116, 120, 145, 146, 147, 149, 151, 174, 188, 205, 213, 240, 243, 266, 267, 268], "rebuild": [1, 5, 79, 116, 255, 271], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 58, 70, 74, 75, 77, 78, 80, 85, 98, 104, 116, 117, 123, 132, 133, 141, 146, 147, 149, 157, 200, 208, 214, 239, 242, 258, 260, 261, 262, 264, 269, 270, 271], "previou": [1, 2, 6, 7, 13, 70, 78, 95, 98, 99, 101, 103, 149, 155, 181, 186, 187, 188, 191, 217, 222, 231, 238, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 269, 270], "still": [1, 5, 29, 39, 40, 56, 58, 101, 108, 116, 119, 120, 123, 131, 132, 149, 166, 174, 227, 254, 261, 268, 269, 271], "project": [1, 2, 4, 5, 16, 17, 18, 19, 21, 24, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 43, 44, 46, 48, 49, 51, 52, 54, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 78, 80, 85, 86, 105, 114, 116, 117, 129, 132, 146, 157, 175, 180, 181, 182, 186, 203, 206, 210, 211, 212, 213, 214, 217, 221, 222, 225, 232, 233, 235, 236, 238, 239, 241, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 269, 271], "14938": 1, "affect": [1, 5, 6, 10, 58, 78, 80, 81, 98, 116, 122, 123, 131, 133, 147, 149, 175, 182, 185, 187, 188, 196, 208, 210, 211, 212, 216, 217, 220, 221, 222, 223, 224, 230, 241, 244, 246, 248, 249, 251, 254, 261, 263], "14932": 1, "The": [1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 26, 27, 29, 31, 35, 36, 39, 40, 41, 42, 45, 47, 49, 51, 53, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 73, 74, 76, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 111, 112, 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 160, 161, 166, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 199, 200, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 225, 227, 229, 231, 232, 234, 236, 237, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271], "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 53, 55, 56, 57, 59, 70, 73, 74, 78, 79, 80, 81, 82, 83, 86, 87, 90, 91, 93, 95, 96, 99, 100, 101, 102, 105, 106, 111, 114, 116, 117, 118, 124, 127, 129, 130, 133, 134, 135, 136, 137, 139, 140, 142, 146, 147, 149, 152, 154, 156, 157, 158, 159, 160, 161, 166, 179, 180, 181, 182, 185, 186, 188, 193, 194, 203, 204, 205, 207, 210, 211, 212, 213, 216, 217, 221, 222, 224, 229, 231, 237, 238, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 252, 254, 255, 256, 258, 261, 263, 266, 267, 269, 270, 271], "pkgconfig": [1, 85, 146, 176, 202, 217], "fill_cpp_info": [1, 207], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 53, 55, 56, 70, 75, 78, 80, 96, 102, 116, 127, 132, 147, 149, 151, 175, 186, 214, 235, 236, 237, 240, 247, 248, 262, 268, 269, 270], "noisi": 1, "quiet": [1, 85, 141, 146, 180, 185, 216, 220], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 29, 35, 36, 39, 40, 49, 51, 56, 58, 63, 69, 70, 73, 74, 78, 80, 85, 86, 90, 96, 98, 99, 101, 103, 105, 108, 112, 116, 117, 118, 120, 125, 126, 127, 128, 130, 131, 132, 136, 137, 139, 140, 142, 145, 146, 147, 149, 150, 167, 177, 187, 188, 189, 193, 194, 196, 217, 223, 227, 229, 240, 242, 244, 245, 249, 251, 252, 254, 255, 259, 262, 264, 266, 267, 268, 269, 270, 271], "buildinfo": 1, "14886": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 63, 78, 80, 83, 84, 85, 86, 87, 90, 93, 95, 96, 97, 98, 99, 101, 102, 103, 108, 111, 114, 116, 118, 119, 120, 121, 122, 127, 129, 130, 131, 132, 133, 134, 135, 136, 144, 146, 147, 149, 150, 152, 154, 156, 157, 158, 160, 166, 174, 175, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 193, 196, 198, 203, 217, 219, 220, 221, 222, 231, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 51, 58, 59, 65, 70, 74, 80, 84, 86, 87, 95, 98, 102, 105, 108, 112, 114, 116, 120, 127, 131, 132, 133, 136, 138, 139, 140, 141, 145, 146, 147, 149, 150, 151, 153, 156, 158, 160, 167, 170, 175, 179, 181, 187, 191, 192, 193, 205, 207, 217, 221, 231, 235, 236, 242, 243, 244, 248, 249, 250, 252, 255, 256, 259, 262, 264, 267, 268, 271], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 51, 55, 56, 58, 63, 64, 68, 70, 74, 77, 78, 79, 82, 85, 90, 92, 96, 97, 101, 102, 105, 108, 112, 114, 116, 120, 122, 123, 128, 129, 131, 132, 133, 134, 135, 137, 141, 142, 146, 149, 150, 151, 152, 155, 156, 175, 179, 186, 187, 188, 189, 191, 200, 204, 205, 206, 213, 217, 220, 223, 227, 231, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 258, 261, 262, 263, 266, 268, 269, 270, 271], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 56, 57, 58, 63, 70, 74, 82, 84, 85, 89, 90, 92, 96, 98, 99, 106, 108, 114, 116, 125, 126, 136, 146, 147, 148, 150, 152, 159, 161, 166, 176, 195, 227, 233, 236, 238, 240, 243, 244, 245, 249, 252, 253, 256, 260, 262, 264, 266, 268, 271], "14852": 1, "min": [1, 96, 182, 217], "xro": [1, 149], "simul": 1, "14776": 1, "unnecessari": [1, 56, 119], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 56, 78, 80, 82, 84, 90, 93, 96, 98, 101, 103, 105, 116, 118, 119, 120, 121, 126, 127, 128, 129, 131, 132, 133, 135, 136, 137, 139, 145, 146, 147, 149, 154, 156, 157, 170, 175, 187, 188, 189, 192, 196, 205, 214, 216, 221, 238, 241, 242, 244, 248, 250, 252, 254, 255, 257, 258, 263, 266, 267, 268, 269, 270], "skip": [1, 4, 36, 85, 86, 87, 90, 91, 96, 116, 118, 141, 174, 179, 187, 188, 233, 241, 248, 249, 254, 259], "transit": [1, 13, 36, 74, 86, 87, 98, 120, 127, 133, 147, 175, 181, 187, 193, 204, 221, 239, 261], "15082": 1, "15042": 1, "download_sourc": [1, 36, 85, 136, 146], "edit": [1, 3, 14, 15, 21, 26, 29, 51, 58, 70, 73, 74, 82, 106, 107, 114, 116, 127, 129, 132, 136, 147, 149, 160, 175, 232, 235, 237, 240, 243, 260, 263, 268], "15004": 1, "incorrectli": 1, "xcconfig": [1, 69, 181, 182], "14898": 1, "export_sourc": [1, 7, 16, 18, 56, 84, 116, 117, 125, 127, 129, 200], "been": [1, 4, 6, 8, 13, 26, 58, 59, 65, 70, 74, 78, 84, 86, 90, 98, 99, 108, 123, 127, 132, 133, 136, 138, 139, 140, 147, 149, 167, 175, 181, 187, 193, 242, 243, 249, 250, 251, 261, 262, 264, 268, 271], "14850": 1, "properli": [1, 97, 146, 250, 259], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 51, 57, 58, 59, 65, 70, 73, 79, 81, 85, 91, 95, 96, 98, 99, 102, 105, 106, 116, 119, 129, 131, 132, 136, 146, 147, 149, 153, 157, 160, 175, 180, 181, 182, 185, 186, 187, 188, 193, 194, 198, 204, 205, 213, 217, 220, 221, 222, 227, 232, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269], "candid": 1, "14846": 1, "end": [1, 4, 70, 73, 74, 120, 133, 146, 147, 157, 158, 188, 192, 216, 242, 251, 259, 268, 269], "activ": [1, 8, 29, 35, 41, 49, 56, 58, 63, 70, 80, 85, 116, 127, 132, 141, 146, 149, 151, 152, 181, 185, 187, 188, 191, 193, 194, 208, 211, 221, 223, 224, 241, 242, 245, 256], "pre": [1, 9, 45, 53, 56, 58, 70, 73, 82, 85, 90, 106, 116, 136, 145, 146, 152, 158, 192, 214, 244, 246, 253, 262, 263, 269], "resolut": [1, 125, 152], "full": [1, 5, 6, 24, 36, 39, 40, 51, 61, 65, 66, 68, 69, 70, 79, 80, 84, 86, 90, 98, 99, 101, 105, 116, 121, 127, 131, 137, 142, 149, 153, 157, 159, 161, 166, 175, 187, 188, 191, 207, 213, 227, 249, 257, 261, 270], "14814": 1, "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 51, 53, 55, 56, 58, 70, 73, 77, 78, 79, 80, 84, 87, 88, 90, 97, 98, 101, 103, 104, 105, 108, 112, 114, 116, 118, 122, 123, 125, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 141, 142, 145, 146, 147, 149, 150, 154, 155, 157, 158, 175, 180, 181, 182, 186, 187, 188, 189, 192, 193, 194, 196, 203, 205, 207, 208, 211, 221, 227, 231, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 263, 264, 266, 267, 268, 269, 270, 271], "correctli": [1, 17, 18, 24, 29, 42, 63, 74, 86, 103, 138, 187, 188, 189, 196, 203, 242, 246, 250, 254, 255, 259], "lower": [1, 214, 243, 255, 269], "bound": [1, 269], "exclud": [1, 39, 40, 83, 84, 85, 86, 93, 95, 96, 98, 102, 111, 116, 196, 221, 227, 243, 269], "upper": [1, 269], "wrong": [1, 92, 95, 130, 136], "cppstd": [1, 24, 26, 27, 73, 78, 91, 96, 106, 116, 123, 131, 147, 149, 160, 176, 182, 188, 205, 212, 223, 240, 241, 242, 249, 250, 254, 271], "newer": [1, 8, 70, 83, 86, 93, 95, 96, 98, 100, 101, 102, 104, 111, 116, 149, 166, 256, 269, 270], "clang": [1, 24, 26, 27, 42, 45, 70, 73, 80, 81, 85, 91, 96, 99, 106, 108, 113, 140, 146, 147, 149, 160, 179, 186, 188, 200, 217, 240, 242, 250], "introduc": [1, 29, 51, 77, 114, 136, 239, 249, 254, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14837": 1, "14781": 1, "dry": [1, 108, 112], "14760": 1, "host_tool": 1, "package_manag": [1, 85, 116, 132, 137, 146, 176, 230], "indic": [1, 4, 26, 63, 73, 85, 86, 90, 133, 146, 148, 185, 191, 196, 210, 211, 224, 242, 244, 256, 266], "whether": [1, 83, 85, 86, 89, 90, 95, 96, 98, 102, 114, 127, 137, 146, 181, 183, 219, 248, 251, 258, 263, 271], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 51, 53, 55, 56, 58, 63, 70, 73, 74, 78, 79, 80, 81, 85, 91, 96, 97, 98, 105, 116, 117, 119, 120, 123, 127, 128, 129, 130, 131, 133, 136, 137, 138, 139, 142, 143, 146, 147, 150, 155, 179, 181, 182, 187, 188, 189, 192, 196, 202, 207, 208, 211, 213, 221, 232, 239, 240, 241, 244, 245, 246, 247, 250, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 53, 55, 58, 70, 73, 79, 95, 96, 98, 102, 107, 116, 124, 125, 126, 128, 136, 139, 147, 151, 160, 166, 175, 179, 186, 188, 213, 231, 238, 240, 242, 245, 248, 249, 251, 255, 258, 259, 262, 266, 267, 270], "being": [1, 6, 8, 10, 13, 31, 70, 74, 78, 79, 80, 81, 83, 86, 93, 95, 96, 98, 101, 102, 111, 116, 120, 125, 126, 127, 129, 132, 133, 134, 135, 136, 151, 153, 158, 159, 166, 175, 179, 185, 186, 196, 210, 211, 216, 242, 250, 255, 259, 266, 270, 271], "14819": 1, "set_properti": [1, 17, 21, 41, 132, 208, 211, 251], "14813": 1, "minor": [1, 70, 78, 79, 116, 147, 149, 175, 266, 269, 271], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 80, 131, 179, 256], "none": [1, 31, 36, 38, 49, 78, 85, 91, 96, 97, 98, 116, 127, 129, 139, 141, 146, 147, 158, 162, 166, 167, 170, 171, 174, 179, 180, 183, 185, 186, 187, 188, 191, 192, 196, 198, 200, 201, 203, 205, 206, 207, 210, 216, 217, 219, 220, 227, 231], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 45, 48, 51, 53, 55, 56, 58, 63, 77, 79, 85, 86, 93, 98, 100, 101, 103, 104, 116, 119, 130, 131, 134, 135, 146, 147, 150, 151, 153, 158, 159, 160, 170, 181, 182, 188, 193, 194, 198, 200, 205, 213, 216, 222, 227, 231, 232, 233, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270], "found": [1, 4, 21, 26, 27, 39, 40, 49, 53, 58, 83, 86, 89, 90, 93, 95, 96, 97, 98, 102, 106, 111, 129, 132, 137, 138, 144, 147, 150, 157, 185, 187, 188, 196, 203, 214, 217, 240, 242, 245, 254, 263, 267], "offlin": [1, 70], "14800": 1, "reus": [1, 29, 41, 70, 116, 117, 127, 128, 130, 132, 136, 152, 233, 240, 250, 251, 259, 264], "session": [1, 58], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 53, 57, 63, 78, 85, 114, 120, 144, 146, 157, 232, 233, 238, 242, 248, 251, 254], "14795": 1, "rel": [1, 5, 18, 35, 36, 63, 81, 105, 114, 116, 117, 118, 129, 132, 134, 135, 144, 147, 157, 158, 179, 187, 188, 191, 196, 200, 201, 257, 262, 263, 266, 268], "partial": [1, 79, 83, 86, 89, 90, 93, 95, 96, 97, 98, 101, 102, 103, 104, 111, 267, 271], "directori": [1, 26, 27, 35, 36, 38, 47, 58, 98, 105, 114, 116, 125, 126, 127, 129, 132, 134, 135, 136, 144, 146, 147, 148, 155, 187, 196, 200, 201, 211, 214, 227, 242, 248, 254, 255, 260, 261, 262], "14782": 1, "14743": 1, "arg": [1, 31, 85, 118, 151, 155, 203, 210, 213, 224, 227, 231, 270], "cmd": [1, 26, 116, 132, 138, 147, 154, 192, 203, 220, 227, 237, 259], "14737": 1, "block": [1, 51, 271], "interfac": [1, 6, 56, 63, 70, 79, 114, 152, 189], "select": [1, 21, 26, 63, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 106, 107, 108, 109, 111, 112, 113, 177, 186, 188, 196, 213, 220, 236, 246, 257, 264], "kei": [1, 56, 85, 105, 114, 116, 127, 132, 146, 150, 155, 188, 200, 205, 217, 222, 223, 236, 252, 260, 261], "14731": 1, "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 58, 70, 74, 79, 84, 85, 98, 99, 105, 114, 116, 117, 124, 125, 126, 127, 129, 130, 136, 146, 152, 157, 175, 195, 199, 200, 238, 246, 250, 251, 252, 254, 255, 256, 258, 260, 271], "larg": [1, 6, 10, 114, 116, 131, 147, 192, 260, 270], "14716": 1, "mesontoolchain": [1, 55, 67, 85, 146, 176, 215, 216], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 56, 70, 73, 74, 78, 79, 80, 84, 85, 86, 87, 91, 97, 98, 99, 101, 103, 105, 106, 108, 109, 114, 116, 118, 119, 120, 124, 125, 126, 127, 128, 132, 134, 135, 136, 137, 141, 144, 146, 147, 149, 151, 152, 155, 158, 175, 176, 182, 185, 186, 187, 188, 193, 196, 198, 201, 203, 206, 208, 210, 211, 213, 217, 221, 222, 228, 231, 236, 238, 240, 242, 243, 247, 249, 250, 254, 255, 256, 260, 261, 264, 266, 267, 268, 269, 270, 271], "14692": 1, "cl": [1, 70, 223], "plugin": [1, 26, 59, 70, 74, 76, 82, 85, 114, 121, 131, 141, 152, 153, 154, 159, 256], "14682": 1, "mechan": [1, 7, 13, 56, 70, 73, 74, 80, 114, 116, 121, 127, 135, 136, 147, 150, 152, 157, 175, 189, 192, 227, 242, 243, 249, 265, 267, 268, 270, 271], "transform": [1, 151, 196, 217], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 53, 55, 65, 70, 75, 78, 81, 83, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 114, 116, 123, 131, 132, 136, 137, 143, 146, 147, 179, 182, 186, 187, 188, 189, 192, 200, 205, 212, 213, 216, 221, 222, 223, 224, 235, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 250, 252, 253, 254, 255, 258, 262, 264, 268, 269, 271], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 51, 53, 63, 70, 79, 85, 132, 138, 146, 147, 149, 186, 188, 205, 214, 217, 223, 236, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 262, 268], "ld": [1, 53, 96, 205, 217, 241], "blank": [1, 114, 191, 217], "string": [1, 6, 26, 42, 45, 51, 55, 80, 85, 99, 105, 114, 116, 131, 134, 135, 141, 146, 147, 148, 174, 185, 186, 188, 191, 192, 196, 200, 205, 208, 212, 217, 240, 241, 248, 250, 270, 271], "14676": 1, "nobara": 1, "distro": [1, 58, 146, 149, 231], "dnf": [1, 85, 146, 230], "map": [1, 79, 127, 132, 175, 180, 185, 188, 205, 217, 220, 223, 231, 255, 263], "14668": 1, "b_vscrt": [1, 217], "14664": 1, "regex": [1, 80, 116, 131, 187], "pattern": [1, 6, 7, 13, 31, 80, 83, 84, 85, 86, 87, 88, 93, 95, 96, 98, 99, 102, 104, 107, 108, 111, 112, 114, 116, 130, 131, 136, 141, 142, 143, 171, 174, 187, 196, 198, 221, 227, 228, 242, 249, 257, 264], "14621": 1, "makedep": [1, 66, 176, 202], "tweak": [1, 188], "14605": 1, "detect_api": [1, 146, 147], "jinja": [1, 49, 145, 146, 147, 150, 192], "templat": [1, 26, 47, 49, 70, 81, 82, 96, 106, 116, 143, 147, 150, 169, 186, 188, 192], "14578": 1, "14532": 1, "14740": 1, "improv": [1, 6, 70, 118, 271], "conanapi": [1, 31, 155, 161, 162], "init": [1, 56, 117, 127, 175, 270], "failur": [1, 70, 85, 146, 198], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 53, 70, 74, 85, 87, 90, 98, 103, 105, 106, 107, 112, 116, 122, 123, 128, 146, 147, 166, 174, 177, 181, 187, 188, 196, 205, 208, 231, 232, 233, 238, 242, 244, 245, 247, 248, 249, 250, 253, 256, 257, 259, 263, 266, 268, 270, 271], "duplic": [1, 39, 40, 53, 107, 132], "alias": [1, 116, 175, 187, 208], "14644": 1, "regress": [1, 70], "win_bash": [1, 85, 91, 146], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 51, 56, 70, 73, 74, 78, 79, 80, 81, 85, 91, 95, 96, 97, 99, 102, 105, 106, 108, 116, 120, 123, 127, 130, 132, 133, 134, 142, 147, 149, 152, 156, 175, 181, 182, 185, 186, 187, 188, 192, 202, 205, 208, 212, 217, 221, 231, 232, 233, 238, 239, 240, 241, 248, 249, 250, 251, 252, 258, 264, 266, 271], "test_requir": [1, 74, 117, 127, 133, 241, 244, 248, 254, 256, 269], "diamond": [1, 266], "14721": 1, "crash": [1, 6, 74, 266], "test_packag": [1, 21, 27, 42, 56, 74, 86, 90, 105, 106, 111, 117, 138, 166, 175, 246, 247, 249, 250, 251, 252, 254, 255, 256, 258, 259, 261, 262], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 51, 53, 56, 61, 63, 68, 69, 74, 79, 82, 83, 87, 90, 98, 105, 106, 110, 114, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 130, 131, 132, 134, 135, 136, 137, 138, 141, 150, 154, 155, 157, 158, 159, 175, 180, 185, 187, 188, 189, 192, 193, 194, 199, 203, 205, 210, 212, 213, 216, 220, 222, 223, 224, 231, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 259, 261, 262, 263, 265, 266, 268, 271], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 106, 114, 123, 124, 136, 147, 149, 154, 159, 183, 187, 188, 192, 196, 198, 217, 219, 220, 227, 238, 242, 259, 266], "chain": [1, 5, 141, 271], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 55, 56, 58, 62, 70, 74, 78, 83, 84, 85, 86, 90, 93, 95, 96, 97, 98, 99, 101, 102, 107, 108, 111, 114, 116, 118, 123, 125, 126, 127, 129, 130, 131, 132, 133, 136, 137, 139, 146, 149, 151, 152, 155, 156, 157, 174, 175, 179, 181, 182, 187, 188, 189, 193, 194, 196, 205, 206, 208, 217, 221, 223, 231, 234, 240, 241, 242, 243, 244, 245, 246, 249, 250, 251, 254, 256, 257, 261, 262, 264, 265, 266, 267, 268], "14673": 1, "cpu": [1, 8, 85, 146, 149, 183, 212, 220], "nativ": [1, 26, 27, 55, 68, 74, 85, 146, 175, 183, 211, 216, 217, 224], "arm64": [1, 26, 42, 149, 177, 180, 220], "14667": 1, "updat": [1, 4, 6, 8, 26, 39, 40, 59, 63, 70, 74, 83, 85, 86, 89, 90, 93, 95, 96, 98, 101, 102, 111, 114, 116, 128, 132, 133, 137, 146, 149, 153, 166, 179, 189, 196, 205, 231, 243, 251, 265, 270, 271], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 53, 55, 56, 58, 59, 65, 79, 81, 84, 95, 96, 116, 157, 159, 175, 181, 187, 211, 213, 236, 238, 240, 241, 242, 243, 245, 247, 248, 249, 250, 251, 252, 254, 255, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "ones": [1, 6, 10, 30, 31, 42, 43, 46, 62, 70, 74, 78, 82, 84, 85, 95, 108, 121, 133, 137, 146, 147, 149, 157, 158, 163, 177, 187, 188, 191, 192, 196, 201, 208, 213, 219, 220, 221, 238, 243, 257, 262, 263, 267, 268, 270], "14643": 1, "unnecessarili": [1, 80], "decor": [1, 152], "sequenc": [1, 45, 92, 114], "14642": 1, "shouldn": [1, 6, 35, 39, 40, 56, 58, 74, 80, 108, 116, 120, 123, 130, 132, 176, 221, 227, 243, 254, 268], "14622": 1, "patch_us": [1, 200], "conandata": [1, 4, 51, 56, 63, 74, 116, 125, 126, 127, 128, 136, 159, 196, 200, 246], "patch": [1, 6, 19, 43, 50, 70, 74, 78, 79, 84, 116, 118, 126, 136, 147, 149, 175, 176, 179, 195, 203, 246, 252, 269, 271], "handl": [1, 6, 9, 56, 73, 114, 116, 132, 149, 191, 200, 232, 246, 248, 263], "apply_conandata_patch": [1, 126, 136, 195], "14576": 1, "xcode": [1, 57, 59, 83, 85, 86, 90, 93, 95, 96, 98, 102, 106, 111, 146, 180, 181, 182, 185, 186, 213, 217], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 59, 65, 70, 73, 85, 91, 96, 97, 116, 148, 149, 179, 180, 217, 234, 235, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "tvo": [1, 149, 179], "watcho": [1, 149, 179, 217], "14538": 1, "incorrect": [1, 70], "conancent": [1, 2, 13, 29, 56, 57, 70, 73, 79, 81, 91, 95, 96, 99, 109, 116, 132, 146, 148, 234, 240, 243, 245], "web": [1, 4, 6, 58, 116, 149, 235, 236], "url": [1, 3, 4, 56, 84, 85, 91, 96, 97, 105, 107, 114, 127, 136, 146, 148, 150, 158, 196, 198, 227, 236, 237, 247, 248, 250, 251, 252, 255, 258], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 70, 74, 80, 105, 114, 116, 124, 132, 142, 147, 158, 175, 181, 191, 192, 221, 243, 267], "14529": 1, "rrev": [1, 31, 99], "rrev_timestamp": 1, "prev_timestamp": 1, "14526": 1, "resolv": [1, 8, 10, 83, 84, 85, 86, 88, 89, 90, 93, 95, 96, 97, 98, 101, 102, 104, 111, 114, 120, 146, 147, 170, 192, 196, 243, 265, 267, 268, 269], "14510": 1, "verifi": [1, 5, 51, 74, 84, 85, 140, 146, 148, 152, 159, 198, 252, 255, 259, 271], "14508": 1, "visiono": [1, 149, 179], "14504": 1, "unknown": [1, 78, 91, 96, 141], "14493": 1, "skip_binari": [1, 36, 85, 146], "14466": 1, "symlink": [1, 85, 146, 157, 176, 195, 196, 246], "disabl": [1, 85, 86, 114, 146, 148, 151, 157, 188, 198, 205, 254], "14461": 1, "14413": 1, "cli_arg": [1, 185], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 73, 76, 107, 114, 143, 150, 227, 236], "store": [1, 4, 6, 13, 56, 63, 65, 70, 78, 84, 85, 98, 105, 106, 114, 116, 132, 145, 146, 156, 158, 188, 196, 200, 203, 232, 233, 238, 240, 242, 246, 249, 250, 251, 255, 261, 263, 267, 270, 271], "14392": 1, "apk": [1, 85, 146, 230], "alpin": [1, 231], "14382": 1, "msvc": [1, 81, 85, 99, 116, 132, 146, 147, 160, 205, 219, 222, 244], "invok": [1, 42, 45, 85, 98, 146, 147, 157, 167, 179, 221, 230, 241, 242, 245, 247, 248, 252, 257, 259, 262], "within": [1, 85, 114, 116, 147, 179, 189, 196, 244, 269], "visual": [1, 28, 35, 57, 59, 70, 72, 80, 85, 127, 132, 146, 149, 176, 185, 186, 187, 188, 205, 213, 214, 217, 218, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "studio": [1, 11, 25, 27, 28, 35, 57, 59, 60, 70, 80, 85, 127, 132, 146, 149, 185, 186, 187, 188, 205, 213, 214, 217, 219, 220, 221, 222, 224, 225, 240, 242, 244, 245, 250, 263], "prompt": [1, 31, 151, 188, 220, 223, 224], "where": [1, 4, 8, 19, 21, 31, 42, 45, 51, 55, 58, 70, 80, 84, 85, 97, 98, 114, 116, 118, 127, 129, 132, 144, 146, 148, 149, 155, 175, 180, 187, 188, 189, 191, 192, 196, 198, 203, 205, 210, 211, 213, 214, 216, 217, 220, 227, 236, 240, 241, 242, 244, 249, 250, 251, 252, 263, 268], "point": [1, 4, 8, 29, 35, 39, 40, 56, 57, 63, 70, 80, 85, 96, 98, 103, 105, 116, 127, 147, 157, 158, 166, 179, 188, 196, 201, 203, 241, 243, 255, 257, 263, 266, 271], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 51, 55, 56, 57, 64, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 97, 98, 99, 102, 105, 106, 108, 111, 112, 116, 119, 121, 123, 127, 130, 131, 132, 133, 136, 140, 143, 146, 147, 160, 168, 179, 180, 181, 182, 183, 185, 186, 187, 191, 193, 194, 200, 203, 204, 205, 206, 208, 210, 211, 212, 213, 216, 217, 219, 220, 221, 222, 223, 224, 229, 232, 239, 240, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 263, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 55, 56, 63, 74, 78, 79, 80, 84, 85, 90, 97, 98, 105, 112, 116, 119, 120, 122, 123, 124, 128, 130, 131, 132, 133, 134, 135, 136, 138, 141, 142, 146, 147, 151, 154, 155, 158, 159, 179, 182, 185, 188, 192, 193, 194, 203, 205, 207, 210, 216, 217, 221, 223, 227, 229, 231, 242, 244, 245, 248, 249, 250, 251, 254, 256, 259, 261, 262, 263, 271], "14364": 1, "document": [1, 3, 4, 26, 27, 58, 65, 74, 75, 80, 87, 108, 116, 124, 127, 132, 137, 149, 152, 160, 175, 176, 188, 189, 196, 199, 213, 217, 235, 236, 244, 245, 249, 263, 271], "mode": [1, 17, 21, 70, 73, 85, 88, 99, 116, 127, 129, 136, 137, 146, 149, 213, 231, 232, 242, 260, 263, 271], "14358": 1, "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 53, 56, 58, 65, 70, 73, 74, 76, 78, 80, 82, 83, 84, 85, 86, 90, 92, 93, 95, 96, 98, 99, 102, 105, 108, 111, 116, 118, 121, 125, 126, 127, 129, 132, 136, 137, 140, 142, 143, 152, 153, 159, 166, 175, 177, 181, 185, 187, 189, 196, 202, 210, 216, 221, 240, 241, 242, 244, 245, 246, 248, 249, 250, 251, 253, 254, 256, 257, 259, 261, 262, 263, 264, 266, 268, 271], "14347": 1, "default_build_opt": 1, "attribut": [1, 19, 21, 48, 74, 76, 78, 80, 97, 115, 118, 120, 122, 123, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 141, 142, 158, 175, 181, 186, 187, 188, 200, 211, 214, 218, 242, 244, 247, 250, 251, 252, 254, 257, 259, 262, 263, 270], "14340": 1, "match": [1, 4, 10, 17, 26, 31, 35, 45, 53, 58, 78, 80, 82, 83, 84, 85, 86, 87, 92, 93, 95, 96, 98, 99, 102, 107, 108, 111, 112, 114, 116, 120, 131, 132, 136, 141, 145, 146, 147, 149, 150, 160, 183, 187, 196, 197, 198, 200, 220, 223, 240, 242, 243, 244, 245, 249, 250, 256, 263, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 56, 68, 70, 74, 80, 82, 85, 87, 90, 92, 96, 98, 99, 100, 101, 104, 106, 107, 108, 112, 114, 116, 119, 120, 125, 127, 131, 133, 134, 135, 137, 139, 141, 146, 147, 149, 151, 158, 163, 175, 187, 188, 191, 196, 200, 219, 231, 243, 244, 250, 252, 257, 258, 260, 261, 262, 267, 268, 269, 270], "channel": [1, 5, 57, 70, 73, 83, 86, 88, 89, 90, 91, 93, 95, 96, 99, 102, 110, 114, 127, 147, 243], "14338": 1, "makefil": [1, 45, 57, 59, 70, 185, 186, 203, 205, 206, 223, 244], "14133": 1, "14594": 1, "v2": [1, 149, 158, 183, 237], "readi": [1, 30, 53, 55, 73, 147, 205, 214, 240, 250], "center": [1, 5, 8, 56, 63, 70, 73, 91, 96, 97, 148, 149, 152, 232, 233, 240, 245], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 53, 57, 74, 79, 80, 96, 116, 120, 129, 132, 133, 138, 181, 187, 188, 189, 196, 208, 217, 222, 223, 236, 239, 241, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "14593": 1, "inspect": [1, 6, 7, 36, 63, 82, 84, 106, 166, 223], "14572": 1, "hyphen": [1, 208, 211], "14561": 1, "user_toolchain": [1, 49, 85, 146, 188], "14556": 1, "boolean": [1, 85, 116, 127, 146, 187, 188, 210, 212, 217, 271], "14530": 1, "14511": 1, "14491": 1, "non": [1, 70, 74, 78, 84, 85, 103, 116, 130, 146, 183, 239, 247, 271], "stacktrac": 1, "14444": 1, "conf_info": [1, 127, 129, 146, 188, 251, 258], "14442": 1, "msbuildtoolchain": [1, 68, 85, 116, 132, 146, 176, 218], "msbuilddep": [1, 68, 85, 127, 146, 176, 218], "resourcecompil": [1, 222], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 58, 70, 73, 74, 78, 79, 80, 86, 87, 98, 99, 100, 101, 103, 104, 105, 106, 112, 116, 118, 127, 129, 131, 136, 137, 141, 146, 147, 149, 153, 155, 166, 170, 175, 188, 189, 205, 217, 227, 242, 244, 245, 249, 251, 252, 257, 262, 268, 271], "14376": 1, "processor": [1, 149, 183, 217], "armv8": [1, 26, 27, 42, 45, 80, 96, 106, 116, 132, 147, 149, 177, 183, 217, 231, 244, 255, 259], "aarch64": [1, 96, 149, 231], "14362": 1, "mandat": [1, 191], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 53, 56, 63, 70, 77, 98, 99, 103, 116, 118, 119, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 136, 147, 149, 170, 187, 189, 196, 205, 208, 216, 233, 240, 245, 247, 250, 256, 259, 260, 262, 265, 266, 269, 271], "14342": 1, "default_opt": [1, 42, 51, 56, 80, 91, 97, 123, 128, 181, 185, 188, 217, 221, 248, 249, 250, 252, 258, 266], "xcrun": [1, 176, 178], "14326": 1, "abspath": 1, "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 45, 48, 53, 55, 61, 62, 64, 65, 69, 73, 74, 78, 82, 105, 106, 114, 127, 132, 142, 146, 147, 149, 152, 154, 155, 156, 157, 160, 161, 180, 182, 185, 186, 187, 188, 207, 208, 210, 212, 213, 221, 222, 237, 240, 242, 244, 245, 247, 248, 251, 255, 259, 261, 263, 271], "14183": 1, "build_id": [1, 13, 91, 96, 117], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 51, 56, 58, 70, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 95, 96, 98, 102, 108, 116, 117, 119, 120, 121, 127, 129, 131, 133, 134, 135, 136, 141, 142, 146, 147, 149, 151, 154, 155, 157, 158, 159, 175, 179, 181, 182, 183, 185, 187, 189, 196, 203, 205, 208, 211, 214, 217, 221, 222, 227, 231, 238, 240, 241, 242, 243, 244, 245, 249, 250, 251, 252, 254, 255, 256, 257, 259, 262, 263, 265, 266, 267, 268, 269, 270, 271], "14555": 1, "timestamp": [1, 13, 95, 99, 101, 103], "except": [1, 26, 31, 39, 40, 49, 78, 80, 85, 114, 116, 120, 121, 123, 129, 136, 141, 142, 146, 147, 149, 151, 175, 183, 185, 196, 227, 231, 240, 244, 249, 266], "vtrace": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "14522": 1, "confirm": [1, 31, 108, 112], "interact": [1, 85, 107, 145, 146, 151], "14512": 1, "entri": [1, 57, 63, 83, 85, 86, 90, 93, 95, 96, 98, 102, 111, 116, 127, 145, 150, 179, 186, 187, 188, 198, 200, 213, 269], "filter": [1, 6, 85, 96, 108, 116, 127, 139, 155, 174, 196, 267], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 58, 68, 70, 73, 74, 79, 80, 85, 87, 98, 103, 104, 105, 108, 114, 116, 118, 119, 120, 131, 133, 136, 142, 149, 151, 154, 158, 160, 175, 181, 187, 198, 203, 221, 228, 231, 236, 238, 240, 241, 242, 245, 248, 249, 252, 256, 257, 258, 259, 261, 267, 270, 271], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 51, 56, 63, 74, 80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 118, 119, 125, 126, 130, 133, 136, 140, 158, 167, 175, 196, 198, 234, 236, 254, 261, 262, 268], "14478": 1, "14443": 1, "context": [1, 6, 13, 42, 74, 80, 83, 86, 90, 91, 93, 95, 96, 98, 102, 106, 111, 116, 120, 127, 132, 133, 136, 142, 146, 147, 157, 177, 187, 188, 191, 192, 193, 194, 196, 208, 211, 217, 219, 221, 232, 239, 242, 256], "14441": 1, "parallel": [1, 63, 74, 80, 85, 146, 151, 152, 154, 183, 188, 271], "14410": 1, "powershel": [1, 85, 146, 192, 193, 194, 245], "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 51, 61, 74, 85, 116, 118, 119, 127, 130, 132, 133, 135, 146, 154, 158, 160, 187, 188, 191, 192, 193, 194, 203, 204, 205, 212, 213, 217, 222, 223, 224, 236, 241, 242, 250, 258, 259, 267], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 73, 74, 85, 87, 98, 107, 112, 116, 136, 150, 152, 158, 211, 227, 231, 232, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "dirti": [1, 6, 56, 227], "outsid": [1, 8, 56, 70, 78, 114, 116, 131, 144, 201], "revision_mod": [1, 91, 96, 97, 268], "scm_folder": [1, 116], "14330": 1, "trace": [1, 141, 255], "14322": 1, "flush": 1, "stream": [1, 70, 185], "after": [1, 6, 10, 24, 26, 36, 42, 45, 58, 59, 63, 70, 98, 120, 122, 127, 132, 138, 139, 146, 155, 158, 182, 185, 187, 188, 192, 193, 194, 203, 212, 217, 222, 229, 239, 240, 242, 245, 246, 248, 250, 254, 257, 259, 261, 262, 263, 271], "write": [1, 4, 27, 45, 53, 70, 74, 98, 105, 114, 119, 129, 152, 159, 175, 187, 188, 196, 205, 244, 250, 252, 258, 262], "14310": 1, "sign": [1, 76, 114, 152], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 56, 84, 188, 255, 261, 262, 263], "inherit": [1, 48, 74, 128, 175, 244], "typo": 1, "14325": 1, "conanpreset": [1, 48, 188], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 53, 55, 56, 61, 62, 66, 70, 78, 79, 80, 81, 83, 85, 86, 88, 89, 90, 92, 93, 95, 96, 97, 98, 100, 101, 102, 103, 105, 109, 110, 111, 114, 116, 117, 119, 123, 127, 128, 129, 132, 133, 144, 146, 149, 151, 152, 157, 159, 160, 163, 175, 179, 181, 187, 188, 189, 193, 194, 200, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 227, 229, 240, 241, 243, 247, 250, 254, 255, 256, 258, 259, 261, 262, 263, 267, 269, 270, 271], "14296": 1, "prefix": [1, 96, 108, 116, 147, 155, 188, 205, 206, 207, 208, 211, 212, 217, 249, 257], "param": [1, 31, 155, 167, 174, 185, 191, 216], "unix": [1, 147, 185, 186, 196, 244], "14295": 1, "invalid": [1, 6, 96, 114, 117, 139, 140, 183, 187, 266], "loglevel": 1, "14289": 1, "gcc": [1, 24, 39, 40, 45, 70, 74, 78, 80, 81, 83, 84, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 111, 112, 116, 121, 131, 136, 140, 147, 149, 160, 168, 183, 198, 205, 241], "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 51, 53, 55, 56, 63, 79, 80, 81, 84, 93, 96, 98, 99, 103, 120, 131, 146, 147, 154, 155, 160, 181, 187, 211, 221, 236, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270], "pkg_config_custom_cont": [1, 208], "pc": [1, 45, 55, 206, 207, 208], "14233": 1, "dict": [1, 85, 116, 127, 132, 146, 155, 168, 188, 205, 208, 217, 222, 223], "object": [1, 6, 19, 21, 27, 42, 45, 91, 96, 114, 116, 127, 128, 129, 130, 131, 132, 141, 154, 155, 157, 158, 166, 174, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 197, 198, 201, 203, 204, 205, 206, 207, 208, 210, 211, 212, 216, 219, 220, 221, 222, 223, 224, 225, 231, 241, 242, 248, 249, 250, 251, 254, 259, 262, 263], "fix_apple_shared_install_nam": [1, 176, 178, 203], "otool": [1, 179, 203], "install_name_tool": [1, 179, 203], "program": [1, 29, 45, 53, 55, 85, 128, 146, 203, 224, 240, 242], "14195": 1, "fpic": [1, 42, 51, 56, 73, 80, 81, 91, 96, 97, 99, 116, 122, 123, 185, 188, 205, 212, 217, 248, 249, 250, 252, 258], "header_onli": [1, 80, 116, 123, 131, 254], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 59, 63, 64, 69, 73, 78, 79, 80, 81, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 116, 118, 119, 131, 132, 137, 146, 147, 149, 175, 179, 181, 187, 188, 221, 222, 239, 244, 246, 254, 255, 256, 261, 271], "type": [1, 6, 37, 64, 70, 79, 85, 89, 106, 116, 131, 132, 143, 157, 175, 185, 187, 188, 193, 194, 208, 215, 232, 235, 236, 242, 243, 244, 245, 246, 248, 249, 271], "cmake_package_version_compat": 1, "anynewervers": [1, 187], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 70, 73, 157, 243, 271], "won": [1, 4, 29, 39, 40, 70, 101, 108, 114, 116, 149, 155, 187, 196, 217, 241, 249, 257, 261], "14261": 1, "permit": [1, 269], "empti": [1, 4, 6, 85, 86, 107, 108, 116, 132, 146, 147, 155, 166, 174, 205, 208, 211, 221, 254, 255, 266, 267, 270], "14254": 1, "guarante": [1, 4, 7, 56, 80, 103, 106, 131, 147, 175, 252, 265, 268], "rm_safe": [1, 42, 80, 116, 122, 123, 131, 249], "never": [1, 70, 74, 78, 79, 83, 86, 90, 93, 95, 96, 98, 99, 102, 111, 116, 142, 167, 231, 243, 249, 255], "14238": 1, "gnu": [1, 45, 61, 66, 76, 80, 85, 96, 146, 149, 176, 183, 191, 192, 198, 203, 204, 205, 206, 207, 208, 212, 241], "make_program": [1, 85, 146], "14223": 1, "package_typ": [1, 38, 42, 91, 96, 97, 128, 131, 139, 156, 175, 256, 271], "lib": [1, 17, 21, 26, 35, 42, 84, 91, 95, 96, 114, 116, 120, 127, 129, 130, 132, 149, 179, 187, 188, 189, 196, 204, 205, 206, 207, 208, 211, 223, 229, 241, 249, 250, 251, 252, 254, 255, 257, 263, 271], "14215": 1, "clarif": [1, 70], "shown": [1, 4, 36, 96, 97, 121, 217], "queri": [1, 84, 85, 87, 96, 99, 108, 109, 112, 168], "14199": 1, "enabl": [1, 8, 10, 63, 73, 85, 116, 146, 148, 183, 188, 196, 205, 231, 254, 269], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 51, 55, 56, 58, 63, 70, 73, 74, 79, 84, 85, 105, 116, 117, 127, 132, 136, 137, 139, 146, 149, 150, 152, 175, 180, 186, 187, 188, 189, 198, 208, 213, 221, 227, 231, 240, 242, 243, 244, 246, 247, 249, 250, 252, 254, 258, 259, 261, 262, 263, 264, 265, 267, 268, 270], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 62, 70, 74, 79, 86, 105, 114, 116, 120, 126, 130, 134, 135, 138, 141, 142, 146, 147, 150, 152, 155, 157, 158, 159, 160, 175, 177, 183, 186, 187, 192, 196, 200, 203, 211, 217, 244, 248, 250, 251, 252, 254, 257, 266, 267, 271], "14177": 1, "xcodedep": [1, 69, 176, 178, 182], "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 51, 56, 65, 73, 78, 80, 81, 91, 95, 96, 97, 98, 99, 106, 116, 119, 123, 131, 132, 140, 147, 149, 153, 160, 180, 181, 182, 185, 186, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 214, 217, 220, 221, 222, 223, 224, 229, 240, 241, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 263, 268], "14168": 1, "respect": [1, 31, 36, 73, 103, 116, 147, 151, 152, 191, 217, 241, 266, 268], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 63, 88, 98, 105, 106, 114, 116, 127, 129, 130, 132, 134, 135, 146, 147, 148, 149, 151, 152, 153, 154, 157, 159, 160, 170, 179, 180, 181, 185, 187, 188, 196, 203, 205, 214, 223, 240, 241, 242, 245, 250, 251, 252, 255, 256, 257, 263, 268], "14164": 1, "intern": [1, 53, 74, 85, 114, 136, 147, 149, 150, 179, 180, 217, 220, 231, 241, 243, 254, 268], "runner": [1, 26], "13985": 1, "leak": [1, 56, 150], "cmake_find_library_suffix": 1, "14253": 1, "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 73, 79, 80, 95, 98, 116, 130, 132, 149, 152, 179, 187, 189, 203, 207, 213, 217, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267], "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 63, 65, 70, 73, 74, 76, 77, 82, 85, 98, 106, 108, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 131, 143, 146, 147, 151, 152, 153, 154, 158, 160, 162, 175, 176, 178, 184, 186, 191, 200, 202, 209, 215, 218, 246, 249, 251, 257, 258, 263], "14227": 1, "displai": [1, 13, 63, 81, 82, 85, 92, 99, 116, 137, 154, 160, 250, 267], "14190": 1, "cross": [1, 11, 26, 42, 55, 57, 58, 60, 70, 85, 118, 131, 132, 136, 146, 147, 183, 184, 187, 205, 208, 212, 215, 216, 231, 232, 239, 242, 259], "osx": [1, 35, 58, 70, 127, 132, 188, 242], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 149], "cmake_generator_platform": [1, 149, 188], "14114": 1, "cppinfo": [1, 21, 76, 116, 127, 132, 176, 187, 251], "public": [1, 3, 4, 42, 53, 56, 70, 74, 82, 97, 106, 114, 115, 152, 155, 176, 187, 189, 211, 217, 237, 257, 258], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 72, 79, 80, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 100, 102, 103, 105, 106, 108, 111, 116, 119, 127, 128, 129, 130, 132, 134, 135, 141, 146, 147, 149, 151, 157, 175, 179, 181, 182, 183, 187, 191, 211, 227, 235, 238, 240, 242, 244, 245, 251, 255, 256, 257, 259, 261, 263, 266, 267, 270, 271], "summari": [1, 4, 8, 78, 213, 251], "delet": [1, 31, 42, 58, 74, 108, 114, 116, 123, 249], "thing": [1, 13, 18, 21, 29, 63, 64, 70, 73, 74, 98, 103, 116, 131, 167, 175, 176, 188, 192, 203, 240, 242, 244, 246, 248, 250, 251, 256, 257, 258, 263, 271], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 64, 70, 73, 116, 214, 233, 238, 239, 241, 242, 248, 250, 254, 256, 259, 260, 261, 267, 271], "14011": 1, "express": [1, 42, 49, 80, 104, 116, 129, 141, 142, 147, 188, 243, 265, 271], "14004": 1, "equival": [1, 56, 84, 85, 98, 99, 102, 109, 116, 118, 120, 125, 126, 132, 133, 142, 149, 175, 185, 189, 191, 227, 241, 242, 243, 244, 250, 251, 262, 263, 267], "14002": 1, "13999": 1, "small": [1, 56, 70, 114, 125, 196, 237, 250, 255, 259, 266, 267], "13989": 1, "packageslist": 1, "input": [1, 8, 74, 78, 80, 85, 87, 89, 96, 98, 99, 100, 101, 102, 104, 105, 108, 112, 131, 136, 145, 146, 151, 196, 217, 222, 242, 244, 254, 264, 268], "13928": 1, "associ": [1, 3, 6, 105, 107, 108, 147, 149, 188, 243], "13918": 1, "13757": 1, "split": [1, 147], "two": [1, 6, 18, 45, 51, 70, 79, 80, 84, 89, 114, 116, 119, 120, 147, 156, 157, 175, 183, 188, 191, 200, 205, 221, 222, 231, 239, 240, 242, 248, 249, 254, 261, 263, 267], "13729": 1, "bindir": [1, 18, 39, 40, 91, 96, 132, 138, 186, 188, 205, 208, 214, 217, 251, 254, 256, 259], "13623": 1, "autopackag": [1, 176, 195], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 58, 70, 98, 107, 114, 116, 130, 149, 191, 269], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 58, 70, 73, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 157, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 189, 206, 210, 211, 212, 213, 219], "subsystem": [1, 85, 116, 132, 146, 149, 176, 192, 218], "msys2": [1, 85, 146, 149, 231, 239], "14061": 1, "intermedi": [1, 98], "aggregated_compon": [1, 189], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 56, 58, 70, 79, 81, 83, 84, 86, 87, 93, 95, 96, 98, 99, 102, 104, 105, 106, 108, 111, 112, 116, 149, 155, 193, 194, 227, 236, 240, 243, 250, 257, 265, 267, 268, 269, 270, 271], "14110": 1, "doubl": [1, 29, 107, 187, 236, 249], "base": [1, 4, 8, 35, 36, 39, 42, 47, 53, 55, 58, 70, 79, 80, 83, 87, 96, 97, 98, 99, 102, 108, 112, 116, 127, 128, 130, 133, 147, 152, 155, 157, 177, 180, 182, 186, 188, 213, 217, 219, 220, 222, 240, 242, 248, 258, 271], "setup": [1, 7, 41, 55, 56, 216, 233], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 196, 250], "14106": 1, "overlap": [1, 217], "14095": 1, "freebsd": [1, 8, 58, 70, 147, 149, 231], "14065": 1, "through": [1, 24, 90, 105, 116, 148, 158, 216, 232, 238, 248, 250, 259], "root": [1, 10, 16, 18, 19, 27, 36, 38, 83, 85, 88, 90, 91, 96, 98, 129, 132, 146, 147, 149, 155, 157, 166, 167, 187, 205, 211, 213, 214, 240, 241, 243, 245, 249, 250, 255], "14051": 1, "return": [1, 6, 26, 29, 31, 42, 45, 53, 55, 78, 81, 82, 84, 85, 92, 97, 99, 106, 113, 114, 116, 121, 127, 141, 147, 153, 154, 155, 163, 166, 168, 170, 171, 175, 177, 179, 180, 183, 187, 188, 189, 191, 192, 193, 194, 196, 204, 205, 213, 219, 220, 223, 227, 231, 240, 242, 244, 254, 256, 259, 268], "irrespect": [1, 116, 131, 134, 135, 137, 221, 227, 244, 250], "problem": [1, 4, 6, 8, 70, 120, 237, 242, 259], "parent": [1, 116, 129, 144, 196, 252], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 56, 58, 70, 73, 91, 96, 97, 107, 152, 179, 234], "libdir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 196, 205, 207, 208, 214, 217, 251, 254, 255, 256, 263], "includedir": [1, 17, 21, 91, 96, 127, 129, 132, 186, 188, 189, 205, 207, 208, 217, 221, 251, 255, 263], "cmake_program": [1, 85, 146, 185], "13940": 1, "str": [1, 17, 31, 36, 116, 131, 157, 168, 181, 192, 196, 213, 214, 216, 217, 219, 220, 221, 224, 244, 248, 255, 263], "int": [1, 29, 42, 45, 53, 55, 183, 200, 240, 242, 254, 259], "13964": 1, "layer": [1, 149, 155, 250, 271], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 53, 56, 57, 70, 73, 74, 79, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 99, 102, 106, 108, 110, 111, 114, 116, 118, 127, 129, 132, 134, 135, 136, 147, 157, 158, 166, 170, 182, 196, 198, 203, 207, 213, 214, 222, 227, 232, 233, 236, 238, 240, 241, 242, 245, 248, 249, 250, 251, 253, 254, 257, 261, 262, 263, 268, 270, 271], "13944": 1, "unzip": [1, 6, 19, 27, 58, 116, 136, 195, 198, 236, 252, 262], "13937": 1, "13929": 1, "13967": 1, "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 56, 57, 64, 68, 69, 79, 82, 86, 106, 115, 117, 120, 127, 129, 132, 133, 140, 142, 147, 166, 167, 175, 181, 189, 191, 203, 206, 208, 211, 221, 229, 232, 242, 243, 244, 245, 246, 247, 250, 254, 255, 256, 259, 260, 261, 263, 266, 268, 270, 271], "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 51, 85, 91, 96, 97, 129, 130, 136, 167, 188, 196, 200, 203, 216, 248, 254, 255, 257], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 53, 56, 70, 86, 96, 98, 99, 101, 103, 108, 116, 124, 127, 131, 132, 134, 135, 136, 139, 147, 149, 157, 158, 174, 188, 231, 235, 236, 251, 255, 258, 261, 263, 271], "publicli": [1, 4], "13934": 1, "premakedep": 1, "13926": 1, "http": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 73, 85, 91, 96, 97, 105, 114, 116, 136, 146, 148, 150, 158, 198, 200, 222, 234, 236, 237, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 57, 58, 65, 70, 85, 91, 96, 97, 114, 116, 127, 136, 149, 152, 158, 200, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 58, 65, 70, 85, 91, 96, 97, 114, 116, 136, 147, 158, 200, 222, 234, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271], "pull": [1, 70, 73, 200, 234, 267], "13898": 1, "overrid": [1, 39, 40, 74, 83, 85, 86, 90, 91, 93, 95, 96, 98, 102, 111, 114, 120, 146, 147, 185, 188, 231, 242, 265], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 63, 70, 80, 84, 85, 87, 96, 99, 104, 107, 112, 114, 116, 127, 129, 131, 132, 142, 146, 147, 149, 154, 157, 185, 188, 192, 193, 194, 196, 214, 217, 221, 224, 231, 238, 242, 245, 246, 250, 252, 255, 256, 263, 269], "13923": 1, "v": [1, 26, 48, 78, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 121, 131, 142, 146, 149, 151, 175, 216, 217, 221, 222, 223, 227, 232, 239, 240, 242, 245, 250, 271], "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 53, 56, 63, 114, 116, 122, 123, 147, 185, 203, 213, 246, 249, 255, 258, 261, 262], "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 51, 63, 73, 74, 98, 102, 105, 106, 116, 119, 132, 141, 147, 149, 153, 160, 180, 181, 182, 186, 187, 188, 193, 194, 196, 205, 217, 220, 221, 222, 232, 239, 244, 247, 249, 250, 254, 255, 256, 258, 261, 262, 263], "13833": 1, "relocat": [1, 29, 35, 202, 257], "upload_polici": [1, 91], "build_polici": [1, 90, 91, 255], "debugg": 1, "13810": 1, "possible_valu": [1, 116], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 56, 58, 70, 73, 74, 78, 80, 82, 83, 84, 85, 86, 87, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 108, 111, 112, 116, 118, 119, 120, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 142, 146, 147, 149, 150, 152, 154, 155, 159, 163, 166, 175, 177, 181, 183, 185, 187, 189, 191, 192, 213, 217, 221, 228, 231, 242, 243, 248, 249, 252, 260, 261, 263, 264, 266, 267, 268, 269, 270], "13796": 1, "optim": [1, 70, 90, 116, 119, 254], "hit": [1, 192, 237], "13771": 1, "sh": [1, 35, 39, 40, 45, 53, 85, 127, 146, 149, 191, 192, 193, 194, 204, 205, 213, 223, 236, 241, 242, 244, 245, 248, 256, 262, 263], "shell": [1, 35, 39, 40, 42, 58, 61, 85, 116, 141, 146, 191, 192, 196, 204, 205, 213], "13764": 1, "13748": 1, "auto": [1, 42, 73, 74, 85, 106, 146, 147, 149, 240], "home": [1, 4, 26, 27, 31, 56, 57, 73, 105, 106, 114, 116, 132, 144, 146, 148, 149, 151, 155, 169, 206, 240, 241, 242, 250], "13746": 1, "render": [1, 21, 99, 105, 143, 145, 146, 150], "profile_nam": [1, 147], "13721": 1, "extens": [1, 4, 11, 31, 35, 36, 38, 57, 58, 70, 74, 76, 77, 78, 85, 98, 153, 154, 155, 156, 157, 158, 159, 160, 183, 192, 196, 241, 249, 256, 262], "13718": 1, "understand": [1, 24, 31, 36, 47, 61, 66, 73, 77, 95, 103, 116, 142, 146, 157, 204, 205, 223, 232, 239, 250, 260], "13716": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 51, 55, 56, 58, 64, 70, 73, 78, 79, 84, 85, 96, 97, 98, 99, 101, 104, 105, 113, 114, 115, 116, 117, 118, 119, 120, 122, 123, 127, 131, 132, 136, 137, 139, 141, 145, 146, 150, 151, 155, 157, 181, 182, 186, 187, 188, 191, 193, 194, 198, 205, 206, 208, 210, 211, 213, 217, 220, 221, 222, 223, 229, 231, 236, 240, 244, 250, 251, 252, 255, 256, 259, 264, 266, 269, 270], "13712": 1, "skip_warn": [1, 85, 141, 146], "silenc": 1, "13706": 1, "info_invalid": [1, 91, 96], "13688": 1, "13680": 1, "mono": [1, 116], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 51, 58, 63, 73, 78, 80, 86, 87, 93, 95, 99, 102, 103, 114, 116, 118, 119, 120, 121, 131, 132, 133, 134, 135, 136, 137, 146, 147, 149, 166, 175, 181, 186, 187, 188, 189, 196, 205, 213, 221, 223, 227, 229, 231, 235, 238, 240, 241, 242, 243, 244, 245, 248, 249, 250, 251, 255, 256, 257, 261, 262, 263, 264, 266, 267, 268, 269, 270], "scm": [1, 11, 43, 76, 98, 116, 135, 176, 196, 227, 247, 252, 268, 270], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 74], "field": [1, 82, 86, 96, 97, 99, 106, 109, 115, 116, 127, 129, 132, 145, 148, 149, 150, 158, 179, 200, 203, 208, 271], "13870": 1, "compiler_execut": [1, 85, 146, 147, 188, 205, 217, 223, 240], "13867": 1, "13857": 1, "suffix": [1, 155, 187, 208], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 187, 195, 208], "d": [1, 7, 13, 27, 47, 79, 83, 84, 96, 98, 105, 114, 116, 128, 147, 175, 186, 188, 206, 236, 250, 255, 268], "13740": 1, "omit": [1, 21, 116, 146, 263], "l": [1, 83, 84, 86, 87, 89, 90, 93, 95, 96, 97, 98, 102, 108, 111, 112, 203, 204, 206, 208, 227], "libpath": [1, 229], "13704": 1, "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 64, 66, 69, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 87, 91, 93, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 116, 118, 119, 120, 122, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 141, 142, 144, 146, 147, 149, 150, 151, 152, 156, 158, 159, 175, 177, 179, 181, 182, 185, 186, 187, 188, 191, 192, 193, 194, 196, 203, 204, 205, 206, 208, 211, 212, 213, 217, 221, 222, 223, 224, 229, 231, 233, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271], "13855": 1, "out": [1, 26, 29, 31, 36, 53, 55, 56, 70, 72, 80, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111, 114, 124, 127, 213, 217, 248, 252, 263, 267], "13853": 1, "13846": 1, "intel": [1, 42, 70, 76, 85, 146, 176, 219], "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 92, 100, 189, 234, 263, 267, 271], "alia": [1, 105, 187, 203], "13763": 1, "dep": [1, 21, 36, 41, 53, 79, 95, 127, 139, 147, 156, 157, 181, 185, 187, 189, 211, 221, 223, 248], "13762": 1, "cmake_system_nam": [1, 85, 146, 188], "baremet": [1, 149], "13739": 1, "deactiv": [1, 49, 158, 188, 193, 194, 242, 269], "13707": 1, "13597": 1, "extend": [1, 43, 46, 73, 76, 77, 86, 102, 117, 128, 152, 158, 184, 267, 269, 271], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 85, 127, 146, 188, 191, 192, 193, 194, 204, 205, 213, 217, 222, 223, 224, 236, 242, 244, 245], "13607": 1, "preliminari": 1, "dev": [1, 137, 149, 231], "premake5": 1, "13390": 1, "old": [1, 30, 32, 116, 149, 163, 264, 267], "login": [1, 82, 114, 145, 198, 236], "13671": 1, "msg": [1, 141, 155], "13668": 1, "correct": [1, 40, 42, 73, 74, 78, 116, 129, 130, 132, 134, 135, 159, 179, 181, 187, 188, 192, 196, 216, 223, 241, 242, 251, 252, 255, 257, 261], "origin": [1, 4, 6, 8, 13, 24, 56, 58, 85, 98, 116, 120, 130, 145, 149, 191, 192, 217, 227, 243, 252, 255], "13667": 1, "13661": 1, "respond": [1, 70], "forbidden": [1, 71, 101, 103, 120], "13626": 1, "13622": 1, "direct_deploi": [1, 98, 271], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 51, 68, 84, 87, 91, 96, 99, 107, 108, 112, 206, 220, 236, 248, 249, 251, 252, 254, 255, 257, 263], "had": [1, 13, 56, 90, 116, 120, 244, 249, 252, 261, 263, 266], "13662": 1, "13657": 1, "close": [1, 90, 196], "13631": 1, "13618": 1, "full_deploi": [1, 35, 98, 271], "collis": [1, 115, 187, 203, 205], "log": [1, 6, 26, 56, 87, 107, 114, 141, 150, 152, 263], "13610": 1, "13601": 1, "temp": [1, 84], "everyth": [1, 5, 13, 19, 42, 56, 58, 65, 70, 73, 84, 103, 108, 120, 129, 176, 227, 244, 261], "temporari": [1, 6, 7, 24, 74, 84, 130, 133, 196, 198, 249, 257, 262, 266], "13581": 1, "dictionari": [1, 85, 116, 127, 132, 146, 155, 185, 188, 196, 198], "semant": [1, 116, 149, 250, 265], "13571": 1, "sdk": [1, 26, 35, 85, 146, 149, 179, 180, 182, 205, 217], "avail": [1, 3, 4, 8, 24, 26, 36, 51, 63, 70, 72, 73, 85, 90, 95, 97, 99, 104, 105, 108, 114, 116, 121, 129, 133, 142, 146, 147, 158, 175, 179, 183, 188, 230, 240, 243, 244, 249, 250, 254, 255, 256, 261, 262, 271], "13531": 1, "togeth": [1, 56, 67, 70, 84, 106, 116, 125, 126, 136, 174, 175, 185, 188, 216, 223, 243, 250, 264, 271], "13526": 1, "13505": 1, "legaci": [1, 119, 146, 188, 219], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 114, 116, 132, 146, 240, 241, 248, 258, 268], "third": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 198, 227, 255, 262, 263], "parti": [1, 2, 14, 15, 51, 56, 57, 96, 116, 136, 150, 227, 255, 262, 263], "13461": 1, "android": [1, 8, 11, 25, 57, 59, 70, 76, 85, 116, 132, 146, 149, 176, 188, 215, 241], "cmake_legacy_toolchain": [1, 85, 146, 188], "android_use_legacy_toolchain_fil": [1, 85, 146, 188], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 51, 56, 58, 62, 63, 64, 68, 69, 70, 72, 73, 74, 78, 79, 80, 81, 82, 84, 85, 86, 87, 95, 96, 98, 101, 103, 104, 105, 106, 108, 109, 112, 116, 118, 119, 120, 122, 123, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 146, 147, 149, 151, 152, 153, 155, 158, 174, 175, 180, 181, 182, 183, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 199, 200, 203, 204, 205, 206, 207, 210, 211, 212, 217, 219, 220, 221, 222, 223, 227, 228, 229, 231, 235, 236, 237, 240, 242, 243, 244, 248, 249, 250, 252, 254, 255, 256, 259, 261, 264, 266, 267, 268, 269, 270, 271], "cflag": [1, 45, 85, 91, 96, 132, 146, 147, 182, 188, 204, 205, 208, 212, 217, 222, 223], "cxxflag": [1, 49, 80, 85, 91, 96, 132, 146, 182, 188, 189, 204, 205, 212, 217, 222, 223, 229], "prevent": [1, 114, 116, 188], "13459": 1, "13458": 1, "authent": [1, 3, 56, 73, 106, 107, 145, 148, 150, 151, 198, 235, 236], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 51, 56, 58, 64, 73, 78, 82, 84, 85, 86, 95, 99, 114, 116, 118, 127, 129, 130, 147, 149, 150, 151, 152, 156, 175, 188, 207, 214, 221, 227, 236, 238, 240, 242, 244, 247, 248, 249, 252, 254, 260, 261, 266, 268, 269, 271], "python_requires_extend": [1, 74, 128, 175], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 51, 84, 86, 114, 139, 141, 159, 211, 213, 227, 238, 242, 254, 255, 257, 261, 266, 268], "mydep": [1, 78, 127, 223], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 85, 146, 213, 217], "vs2022": 1, "rather": [1, 8, 78, 85, 131, 146, 149, 205, 223, 253, 263], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 152, 154, 271], "paramet": [1, 31, 53, 62, 82, 132, 152, 157, 166, 168, 171, 177, 179, 180, 183, 185, 186, 187, 189, 191, 192, 193, 194, 196, 197, 198, 200, 201, 203, 205, 206, 207, 210, 211, 212, 216, 217, 219, 220, 221, 222, 224, 225, 227, 231, 250], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 56, 58, 59, 63, 70, 78, 81, 84, 99, 101, 102, 116, 123, 130, 131, 132, 133, 137, 146, 147, 149, 159, 175, 183, 187, 188, 208, 213, 242, 243, 245, 249, 254, 255, 256, 257, 261, 262, 263, 266, 267, 268, 269], "13544": 1, "subcommand": [1, 92, 100, 155, 271], "underscor": [1, 250], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 85, 129, 146, 186, 188], "13488": 1, "composit": [1, 128, 149, 190], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 185, 203, 254], "autoreconf": [1, 203, 205, 248], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 51, 56, 70, 74, 78, 80, 98, 105, 114, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 139, 140, 147, 149, 152, 155, 156, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 177, 179, 180, 181, 182, 185, 187, 188, 189, 191, 192, 193, 194, 196, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 223, 224, 227, 228, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 258, 259, 262, 263, 266, 267, 268, 269, 270], "mirror": [1, 4, 198], "behavior": [1, 8, 47, 70, 74, 78, 80, 101, 102, 103, 116, 119, 122, 123, 127, 131, 132, 142, 146, 151, 154, 158, 183, 187, 208, 211, 217, 227, 231, 252, 271], "That": [1, 8, 13, 17, 24, 38, 62, 74, 93, 98, 136, 151, 160, 181, 187, 192, 208, 213, 222, 241, 242, 243, 254, 258, 267, 270, 271], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 105, 106, 146, 147], "inclus": [1, 221], "13336": 1, "13324": 1, "version_rang": [1, 10, 85, 116, 146, 269], "resolve_prereleas": [1, 10, 85, 116, 146, 269], "prereleas": [1, 10, 269], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "help": [1, 8, 31, 36, 45, 48, 58, 61, 62, 66, 67, 68, 70, 73, 74, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 155, 182, 191, 205, 213, 222, 244, 245, 256, 264, 265], "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 73, 91, 96, 106, 147, 149, 188, 217, 240, 242, 250], "13359": 1, "vswhere": [1, 85, 146], "13355": 1, "convers": [1, 82], "13323": 1, "13230": 1, "msbuild": [1, 59, 68, 70, 85, 105, 132, 146, 147, 149, 176, 185, 218, 221, 222, 224], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 70, 120, 127, 131, 145, 170, 262, 269], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 91, 96, 132, 189, 206, 207], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 116, 132, 147, 176, 188, 190, 191, 192, 241, 242, 245, 251, 256], "instanti": [1, 116, 127, 181, 182, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 149], "13326": 1, "insecur": [1, 85, 107], "ssl": [1, 85, 107, 132, 146, 148, 198, 211], "13270": 1, "conanignor": [1, 85], "13269": 1, "traceback": 1, "vv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vvv": [1, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 70, 114], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 70, 150, 151, 198], "13285": 1, "unexpect": [1, 73, 74, 141, 217, 267], "13282": 1, "runtime_typ": [1, 149, 160, 205], "reli": [1, 4, 70, 74, 99, 134, 135, 208, 240, 255, 257], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 53, 55, 57, 63, 64, 74, 76, 81, 83, 84, 88, 93, 95, 96, 98, 102, 105, 106, 116, 126, 130, 134, 135, 147, 156, 159, 167, 175, 181, 182, 185, 186, 187, 188, 193, 194, 196, 204, 205, 206, 208, 211, 212, 213, 214, 221, 222, 224, 229, 232, 239, 240, 241, 245, 247, 248, 249, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 269, 270, 271], "pars": [1, 31, 70, 99, 146, 147, 152, 207, 227, 228, 252], "13266": 1, "unifi": [1, 6, 149], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 70, 74, 80, 84, 85, 87, 98, 99, 101, 108, 116, 118, 122, 123, 125, 127, 131, 132, 133, 136, 137, 146, 175, 187, 189, 240, 243, 251, 266, 268, 269, 270], "state": [1, 7, 133, 175, 217, 243], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 51, 56, 57, 58, 59, 67, 70, 73, 74, 82, 87, 88, 98, 103, 105, 106, 107, 108, 112, 114, 116, 117, 125, 126, 127, 129, 136, 139, 140, 145, 147, 149, 155, 158, 175, 183, 185, 187, 188, 192, 211, 214, 217, 227, 232, 237, 240, 241, 242, 244, 249, 250, 252, 255, 257, 260, 262, 263, 266, 271], "13211": 1, "13207": 1, "readm": [1, 158, 198, 262], "13186": 1, "13298": 1, "certain": [1, 58, 98, 104, 108, 127, 132, 146, 147, 149, 158, 221, 243, 249, 251, 258], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 58, 103, 255], "drive": 1, "13248": 1, "13191": 1, "gnu17": [1, 42, 91, 96, 106, 147, 149, 183, 240], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 57, 64, 67, 70, 74, 82, 85, 98, 102, 103, 106, 114, 116, 117, 119, 123, 127, 129, 130, 131, 132, 138, 146, 147, 149, 151, 152, 159, 179, 180, 187, 188, 189, 191, 193, 194, 204, 205, 208, 217, 221, 224, 235, 236, 239, 240, 249, 252, 254, 255, 258, 263, 268, 270, 271], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 63, 70, 72, 74, 96, 101, 103, 105, 114, 116, 150, 158, 176, 188, 189, 195, 198, 214, 239, 240, 246, 248, 254, 267, 268], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 51, 53, 55, 56, 57, 63, 65, 86, 87, 96, 98, 103, 113, 116, 128, 130, 149, 155, 176, 181, 182, 187, 200, 210, 222, 240, 242, 244, 245, 248, 250, 252, 254, 259, 262, 263, 268, 269, 271], "13117": 1, "13112": 1, "valid": [1, 6, 8, 10, 73, 74, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 127, 140, 146, 149, 150, 160, 166, 183, 188, 198, 205, 206, 208, 217, 219, 222, 239, 247, 250, 254, 255, 258, 259, 262, 266, 267, 269], "13110": 1, "13109": 1, "assign": [1, 74, 78, 116, 122, 131, 134, 135, 186, 187, 188, 207, 217, 227, 249, 256], "13099": 1, "ui": [1, 31, 235, 236], "13093": 1, "abil": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 149, 271], "presets_prefix": 1, "prepend": [1, 132, 146, 147, 191, 192, 207], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 61, 64, 66, 68, 69, 70, 75, 77, 78, 80, 81, 82, 85, 86, 87, 91, 97, 99, 102, 106, 107, 112, 113, 114, 116, 120, 122, 123, 124, 127, 131, 133, 142, 143, 144, 145, 146, 149, 150, 151, 153, 155, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 182, 188, 189, 191, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 232, 233, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 264, 265, 267, 268, 269, 270], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 51, 53, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 80, 84, 86, 96, 105, 106, 115, 116, 117, 118, 122, 123, 125, 126, 127, 128, 131, 132, 136, 141, 146, 147, 149, 152, 155, 156, 157, 158, 159, 160, 175, 177, 180, 181, 182, 183, 186, 188, 196, 203, 205, 211, 212, 213, 214, 216, 217, 221, 223, 227, 229, 231, 232, 233, 238, 239, 240, 242, 244, 245, 246, 249, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 271], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 56, 58, 70, 73, 74, 77, 80, 81, 96, 105, 106, 115, 116, 118, 119, 127, 136, 146, 147, 149, 152, 155, 156, 157, 158, 175, 177, 187, 188, 214, 227, 233, 235, 246, 250, 255, 259, 261, 263], "10166": 1, "13084": 1, "hash": [1, 77, 81, 91, 96, 97, 116, 136, 175, 198, 242, 243, 249, 251, 252, 268, 271], "13011": 1, "13003": 1, "12980": 1, "12937": 1, "pkgconfidep": 1, "get_transitive_requir": 1, "13013": 1, "13010": 1, "12992": 1, "12962": 1, "concurr": [1, 7, 63, 74, 85, 146, 151, 267, 271], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 74, 107, 116, 124, 132, 141, 145, 148, 149, 154, 229, 242, 250, 251, 259, 266, 267], "12913": 1, "system_requir": [1, 91, 96, 117, 127, 231], "12912": 1, "tar": [1, 4, 8, 116, 196, 198], "pax": 1, "python3": [1, 58, 114], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 74, 90, 116, 117, 129, 158, 175, 181, 187, 188, 189, 191, 196, 205, 207, 208, 211, 232, 246, 250, 252, 254, 255, 256, 263], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 78, 80, 81, 84, 86, 90, 95, 98, 100, 102, 104, 114, 115, 116, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 142, 147, 149, 156, 157, 158, 166, 175, 180, 181, 183, 186, 187, 188, 191, 192, 203, 205, 213, 217, 219, 222, 231, 233, 238, 240, 241, 242, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 269, 270, 271], "perform": [1, 4, 65, 84, 85, 98, 101, 103, 106, 107, 108, 112, 114, 116, 146, 151, 158, 174, 179, 196, 212, 227, 231, 235, 236, 244, 260, 262, 271], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 70, 116, 188, 240, 242, 244, 245, 256, 261], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 99], "12801": 1, "prev": [1, 13, 31, 91, 93, 96, 99], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 85, 146, 205], "12881": 1, "ref": [1, 13, 19, 40, 45, 51, 73, 88, 91, 93, 96, 114, 116, 127, 130, 137, 139, 142, 154, 156, 159, 167, 252, 261, 262, 263], "12722": 1, "12699": 1, "required_conan_vers": [1, 85, 146], "between": [1, 7, 13, 27, 51, 78, 85, 95, 98, 116, 121, 127, 131, 132, 146, 175, 198, 235, 239, 241, 261, 266, 271], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 78, 150, 188, 235, 244], "12666": 1, "12636": 1, "simplifi": [1, 13, 103, 142, 249, 250, 271], "conaninfo": [1, 24, 81, 84, 240, 245, 249, 257], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 187], "12578": 1, "12525": 1, "api": [1, 6, 27, 65, 70, 74, 76, 116, 147, 152, 155, 158, 235, 236], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 256], "12351": 1, "12379": 1, "reciperefer": [1, 166], "equal": [1, 84, 105, 116, 136, 191, 269], "12506": 1, "compress": [1, 6, 55, 58, 85, 91, 96, 146, 174, 196, 198, 240, 241, 242, 244, 245], "uncompress": [1, 55, 58, 240, 242, 244, 245], "12378": 1, "12475": 1, "proper": [1, 7, 132, 203, 205, 215, 241], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 56, 58, 59, 63, 68, 73, 80, 81, 82, 87, 92, 98, 100, 103, 116, 119, 146, 147, 155, 175, 181, 187, 188, 211, 227, 231, 235, 236, 240, 242, 248, 250, 252, 257, 259, 262, 264, 265, 266, 269, 271], "loos": 1, "12502": 1, "produc": [1, 73, 74, 80, 84, 85, 98, 100, 101, 103, 116, 119, 127, 129, 132, 146, 149, 175, 187, 188, 193, 194, 196, 252, 266], "drop": [1, 98, 147], "compat_app": 1, "12484": 1, "transitive_head": [1, 91, 271], "12508": 1, "transitive_lib": [1, 91, 271], "static": [1, 8, 19, 21, 27, 38, 51, 78, 79, 80, 81, 91, 96, 102, 116, 123, 130, 132, 133, 149, 168, 170, 181, 186, 205, 221, 232, 239, 240, 248, 249, 250, 251, 263, 266, 271], "uncommit": 1, "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 227], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 122, 123, 136, 146, 149], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 51, 78, 80, 105, 116, 117, 120, 141, 146, 147, 175, 187, 191, 203, 208, 242, 244, 269], "char": [1, 29, 42, 55, 200, 240], "12053": 1, "12032": 1, "clicolor_forc": [1, 151], "12028": 1, "12050": 1, "output_fold": [1, 36, 83, 88, 90, 98, 157, 167], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 76, 143], "11675": 1, "11672": 1, "max": [1, 85, 146, 149], "11610": 1, "post_build_fail": 1, "hook": [1, 70, 74, 76, 85, 152], "11593": 1, "pre_gener": [1, 158], "post_gener": [1, 158], "cover": [1, 65, 129, 149, 233, 239, 256, 260], "around": [1, 8, 61, 62, 67, 68, 69, 70, 180, 185, 203, 210, 220, 231, 246], "brought": 1, "back": [1, 2, 10, 18, 57, 70, 78, 85, 104, 146, 270], "11575": 1, "11522": 1, "model": [1, 17, 21, 57, 70, 73, 75, 76, 81, 114, 115, 121, 127, 131, 132, 133, 137, 149, 153, 239, 246, 249, 250], "relationship": [1, 116, 271], "linkag": [1, 242], "autom": [1, 5, 13, 26, 70, 99, 116, 136, 137, 151, 222, 265, 267, 271], "flexibl": [1, 116, 142, 232, 239, 269, 271], "power": [1, 13, 70, 98, 152, 155, 188, 239, 271], "transpar": [1, 4, 11, 37, 64, 240, 261, 271], "pythonapi": 1, "cleaner": [1, 271], "structur": [1, 6, 18, 42, 45, 51, 53, 55, 74, 97, 98, 99, 113, 132, 144, 147, 152, 166, 186, 211, 240, 244, 245, 250, 251, 252, 254, 255, 263, 266, 271], "take": [1, 6, 21, 29, 30, 56, 81, 85, 86, 103, 108, 114, 116, 127, 134, 135, 138, 144, 145, 146, 149, 180, 181, 186, 187, 188, 191, 205, 208, 221, 228, 231, 241, 242, 244, 249, 250, 256, 258, 259, 264, 271], "account": [1, 6, 29, 78, 114, 116, 127, 130, 149, 175, 180, 186, 188, 191, 228, 241, 249, 256, 258, 264, 271], "simpler": [1, 5, 6, 41, 109, 127, 133], "immut": [1, 6, 19, 74, 78, 136, 150, 243, 247, 248, 251, 252, 258, 262, 268], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 56, 57, 70, 83, 90, 98, 110, 127, 132, 182, 187, 222, 232, 236, 248, 260, 267, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 51, 53, 55, 57, 64, 70, 83, 86, 88, 90, 98, 101, 102, 103, 107, 110, 111, 112, 116, 118, 120, 122, 123, 127, 129, 130, 131, 132, 136, 138, 139, 214, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "aim": [2, 70, 91, 120, 142, 146, 149, 211, 258], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 53, 55, 56, 57, 65, 70, 74, 83, 84, 90, 98, 99, 110, 114, 116, 118, 124, 129, 132, 134, 135, 136, 146, 149, 151, 157, 160, 177, 182, 187, 213, 214, 222, 224, 232, 235, 236, 237, 240, 241, 245, 248, 255, 261, 267], "intend": [2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 59, 70, 74, 80, 84, 85, 98, 99, 120, 124, 125, 126, 127, 138, 147, 158, 175, 185, 187, 188, 192, 210, 216, 227, 231, 242, 245, 248, 256, 267], "engin": [2, 21, 104, 146, 266, 267], "administr": [2, 3, 236], "architect": 2, "adopt": 2, "design": [2, 18, 70, 128, 149, 263, 271], "product": [2, 5, 6, 35, 57, 70, 74, 86, 103, 106, 120, 124, 131, 263], "team": [2, 5, 8, 55, 70, 73, 78, 104, 105, 106, 114, 116, 149, 235, 236, 237, 240, 255], "plan": [2, 127, 132], "we": [3, 4, 5, 6, 7, 8, 10, 13, 14, 15, 16, 17, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 65, 74, 78, 79, 80, 81, 84, 93, 95, 98, 99, 102, 103, 104, 105, 114, 116, 119, 121, 123, 128, 129, 131, 132, 133, 134, 135, 136, 137, 139, 140, 146, 147, 149, 166, 175, 181, 183, 186, 187, 188, 189, 192, 208, 211, 213, 214, 221, 227, 231, 233, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 266, 267, 268, 269, 270], "ll": [3, 4, 31, 45, 53, 55, 63, 96, 147, 155, 188, 213, 222, 224, 240, 262], "free": [3, 4, 70, 91, 96, 114, 235, 236, 237], "tab": [3, 63], "exampl": [3, 4, 5, 6, 7, 8, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 57, 60, 63, 64, 65, 67, 70, 73, 74, 78, 80, 81, 82, 83, 84, 85, 86, 87, 90, 91, 93, 95, 96, 98, 99, 101, 102, 103, 104, 106, 111, 112, 114, 116, 119, 120, 121, 122, 123, 128, 129, 130, 131, 132, 133, 136, 137, 138, 139, 142, 144, 145, 146, 147, 149, 154, 155, 157, 158, 159, 160, 167, 179, 180, 181, 182, 186, 187, 188, 189, 192, 193, 196, 200, 206, 207, 208, 211, 214, 217, 219, 220, 221, 227, 231, 232, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 269, 270, 271], "imagin": [3, 10, 95, 187, 211, 244, 249, 257], "give": [3, 4, 8, 70, 82, 95, 106, 113, 193, 194], "upload_url": [3, 4, 85, 146], "myteam": [3, 4, 146], "myorg": [3, 4], "next": [3, 26, 29, 45, 70, 81, 103, 116, 205, 221, 227, 241, 247, 248, 249, 256, 270], "anonym": [3, 114, 145, 150, 151], "see": [3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 36, 38, 39, 40, 41, 42, 47, 48, 49, 51, 53, 56, 58, 63, 65, 73, 79, 80, 81, 82, 85, 86, 87, 93, 97, 98, 99, 102, 106, 108, 112, 113, 114, 116, 120, 122, 123, 124, 130, 131, 132, 136, 138, 144, 145, 146, 147, 149, 150, 153, 155, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 187, 188, 189, 196, 203, 205, 206, 208, 210, 211, 212, 216, 217, 222, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 264, 266, 267, 268, 269, 270], "offici": [3, 31, 97, 152, 155, 213, 233, 271], "guid": [3, 4, 57, 232], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 51, 53, 56, 60, 63, 64, 70, 73, 76, 77, 78, 80, 86, 90, 99, 102, 103, 107, 112, 115, 116, 129, 133, 144, 146, 147, 148, 149, 152, 157, 175, 187, 211, 214, 230, 232, 233, 234, 238, 239, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270], "token": [3, 56, 114, 145, 150, 227], "live": [3, 13, 19, 116, 136, 142, 221, 271], "source_credenti": [3, 4, 76, 143], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 51, 58, 65, 84, 87, 105, 116, 127, 139, 142, 146, 147, 149, 156, 158, 160, 175, 181, 182, 191, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 224, 241, 243, 250, 251, 261, 266, 267], "last": [3, 7, 99, 133, 149, 170, 212, 222, 264, 269, 271], "permiss": [3, 4, 58, 70, 74, 196, 235, 236], "feel": [3, 132], "modifi": [3, 4, 6, 10, 17, 26, 27, 29, 48, 51, 63, 73, 74, 80, 84, 114, 116, 119, 120, 127, 132, 149, 151, 154, 158, 160, 181, 188, 189, 196, 204, 239, 243, 244, 248, 249, 250, 252, 257, 258, 266, 268, 269, 270], "accord": [3, 45, 63, 64, 80, 136, 147, 180, 187, 188, 224, 251, 269], "With": [3, 4, 7, 17, 21, 35, 36, 58, 63, 70, 145, 147, 149, 200, 213, 242, 248, 256, 261], "common": [4, 6, 8, 13, 17, 18, 27, 35, 51, 73, 74, 80, 84, 85, 99, 116, 125, 126, 127, 131, 132, 135, 149, 152, 154, 155, 175, 180, 214, 220, 227, 231, 242, 243, 250, 257, 264, 265], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 56, 70, 71, 78, 80, 84, 86, 99, 101, 103, 105, 106, 114, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 132, 133, 136, 139, 142, 147, 150, 175, 217, 232, 241, 243, 245, 247, 248, 251, 252, 256, 258, 262, 266, 267, 268, 269, 270], "canon": [4, 187], "page": [4, 27, 57, 116, 236], "keep": [4, 6, 18, 26, 56, 65, 74, 103, 104, 128, 149, 158, 175, 186, 187, 188, 196, 240, 243, 244, 255, 256, 264, 270, 271], "record": 4, "traceabl": [4, 6, 70, 256, 265, 270, 271], "purpos": [4, 7, 58, 74, 116, 123, 125, 127, 128, 146, 150, 152, 227, 231, 232, 233, 238, 256, 263, 267, 270], "howev": [4, 5, 21, 35, 39, 40, 58, 59, 65, 96, 114, 119, 142, 146, 149, 158, 187, 243, 244, 245, 249, 252, 266, 267, 268, 270], "often": [4, 29, 129, 269], "long": [4, 7, 70, 73, 116, 129, 149, 175, 267, 269, 271], "term": [4, 7, 250], "futur": [4, 7, 36, 56, 66, 73, 74, 105, 106, 116, 147, 153, 154, 157, 159, 199, 244, 252], "mai": [4, 8, 19, 21, 26, 58, 70, 73, 87, 113, 116, 118, 122, 123, 132, 149, 181, 187, 188, 228, 237, 239, 242, 244, 245, 251, 252, 258], "encount": [4, 116], "thu": [4, 8, 74, 114, 116, 119, 125, 126, 203, 206, 271], "retriev": [4, 6, 7, 8, 56, 74, 84, 87, 96, 114, 116, 121, 198, 227, 240, 242, 245, 246, 247, 250, 252, 255, 268], "addition": [4, 8, 96, 120, 133, 141, 146, 187, 208], "alongsid": [4, 211, 232], "infrastructur": [4, 6], "trigger": [4, 141, 271], "sha256": [4, 116, 197, 198, 252], "signatur": [4, 157, 159, 160, 197], "few": [4, 36, 80, 151, 152, 154, 175, 256], "download_url": [4, 85, 146], "repres": [4, 6, 74, 78, 80, 81, 116, 187, 189, 192, 217, 231, 242, 268, 271], "fetch": [4, 6, 58, 70, 82, 84, 97, 136, 227, 242], "either": [4, 8, 36, 105, 114, 116, 118, 127, 131, 132, 133, 141, 151, 159, 170, 174, 177, 191, 243, 269], "present": [4, 13, 36, 45, 73, 75, 84, 85, 97, 98, 116, 133, 149, 151, 174, 183, 245], "prefer": [4, 47, 48, 58, 63, 78, 150, 180, 188, 205, 227, 255, 261, 262, 263], "ahead": [4, 10], "Being": [4, 175], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 51, 56, 58, 70, 73, 74, 75, 78, 80, 84, 86, 95, 98, 99, 101, 102, 103, 105, 114, 116, 119, 123, 126, 127, 129, 130, 131, 132, 135, 136, 137, 146, 147, 149, 166, 177, 191, 205, 217, 221, 222, 237, 242, 250, 255, 256, 261, 262, 266, 270], "exclude_url": [4, 84, 85, 146], "start": [4, 5, 6, 17, 29, 45, 53, 55, 56, 58, 74, 105, 115, 116, 131, 132, 149, 150, 155, 158, 166, 196, 198, 208, 213, 217, 236, 237, 240, 250, 261, 262, 263, 266, 267, 268, 270, 271], "begin": [4, 70, 85, 146, 147, 239, 246], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 63, 70, 74, 80, 81, 103, 114, 116, 123, 126, 127, 129, 131, 132, 136, 142, 145, 146, 147, 149, 155, 160, 177, 179, 188, 207, 213, 227, 240, 242, 243, 261, 262, 263, 267, 268, 270], "A": [4, 6, 13, 47, 51, 65, 70, 80, 84, 85, 87, 91, 95, 96, 99, 102, 103, 108, 112, 114, 116, 120, 122, 131, 133, 135, 136, 137, 141, 146, 147, 154, 158, 166, 174, 175, 185, 188, 191, 196, 198, 202, 219, 222, 231, 236, 240, 243, 246, 248, 249, 251, 253, 254, 255, 259, 261, 264, 267, 269, 271], "put": [4, 6, 17, 29, 36, 58, 84, 85, 90, 105, 116, 127, 129, 132, 136, 145, 146, 147, 152, 159, 192, 211, 212, 214, 250, 256, 259, 263, 264, 268], "its": [4, 13, 24, 29, 31, 36, 39, 40, 56, 58, 59, 70, 73, 77, 79, 80, 81, 82, 83, 84, 86, 87, 97, 98, 106, 108, 116, 119, 127, 131, 132, 133, 136, 138, 145, 146, 147, 155, 157, 158, 175, 187, 188, 191, 203, 222, 239, 241, 243, 244, 250, 259, 261, 263, 264, 267], "strongli": [4, 8, 58, 78, 116, 119, 150, 217, 252], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 53, 55, 56, 59, 70, 74, 78, 80, 85, 98, 99, 103, 106, 114, 116, 119, 124, 125, 130, 131, 133, 134, 136, 146, 147, 151, 158, 175, 187, 199, 231, 235, 236, 237, 245, 248, 250, 255, 267, 269], "below": [4, 5, 6, 8, 63, 70, 78, 80, 81, 84, 121, 133, 136, 144, 179, 181, 182, 188, 196, 205, 208, 211, 249], "relev": [4, 21, 57, 61, 62, 66, 67, 68, 69, 80, 146, 247, 248, 249, 251, 252, 256, 258, 259, 267], "suppli": [4, 5, 84, 100, 101, 104, 157, 271], "els": [4, 6, 17, 26, 31, 39, 40, 51, 70, 114, 116, 130, 131, 132, 136, 147, 174, 183, 231, 242, 244, 247, 248, 251, 256, 258], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 51, 53, 58, 62, 70, 73, 85, 91, 98, 105, 114, 116, 119, 121, 127, 129, 131, 132, 142, 147, 148, 149, 155, 157, 181, 182, 187, 188, 200, 205, 212, 217, 229, 231, 241, 244, 249, 250, 251, 252, 255, 256, 261, 267, 268, 269], "blob": [4, 65, 271], "belong": [4, 84, 87, 99, 103, 174, 176, 187, 196, 208, 241, 250, 256, 259], "artifactori": [4, 13, 59, 70, 114, 152, 235, 237], "describ": [4, 5, 6, 8, 10, 45, 55, 77, 79, 82, 116, 127, 129, 135, 145, 183, 188, 189, 217, 263, 270], "approach": [4, 6, 8, 13, 29, 41, 56, 70, 73, 74, 78, 80, 98, 116, 129, 130, 131, 132, 133, 134, 136, 147, 149, 155, 175, 185, 187, 199, 227, 241, 248, 255, 256, 267, 270], "deal": [4, 9, 119, 131], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 51, 53, 56, 70, 79, 80, 81, 84, 87, 96, 102, 105, 108, 114, 116, 127, 128, 131, 133, 142, 146, 149, 159, 175, 181, 182, 185, 187, 188, 192, 193, 196, 211, 221, 231, 242, 251, 252, 257, 258, 261, 263, 266, 267, 268, 270, 271], "travers": [4, 144], "until": [4, 8, 63, 74, 144, 145, 150], "client": [4, 7, 13, 31, 63, 70, 73, 82, 85, 106, 113, 114, 116, 145, 158, 236, 237, 242, 250], "regard": [4, 70, 75, 102, 149, 158, 196, 257], "capabl": [4, 7, 97, 98, 147, 188, 244, 271], "1": [4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 65, 70, 72, 73, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 108, 109, 112, 113, 114, 116, 120, 127, 128, 131, 132, 133, 135, 136, 139, 140, 142, 146, 147, 148, 149, 156, 157, 158, 175, 181, 183, 185, 186, 187, 188, 191, 193, 194, 196, 198, 200, 203, 206, 208, 211, 217, 219, 221, 222, 223, 224, 227, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270, 271], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 51, 56, 58, 63, 70, 73, 79, 80, 81, 86, 93, 98, 99, 101, 102, 103, 105, 113, 114, 116, 120, 127, 137, 142, 147, 149, 175, 180, 181, 187, 188, 193, 198, 208, 211, 213, 240, 241, 243, 244, 245, 248, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 267, 269, 270, 271], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 58, 73, 85, 91, 96, 106, 151, 206, 240, 242, 248, 249, 250, 251, 252, 254, 257], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 51, 53, 55, 79, 84, 116, 124, 129, 130, 187, 196, 211, 240, 244, 245, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 268], "net": [4, 85, 91, 96, 114, 146], "fossil": 4, "gz": [4, 116, 196, 198], "madler": 4, "v1": [4, 183], "newli": 4, "therefor": [4, 8, 63, 119, 196, 231, 254], "dure": [4, 8, 26, 56, 63, 116, 123, 133, 185, 217, 250, 262, 269], "address": [4, 8, 131, 149, 265], "scenario": [4, 7, 40, 41, 42, 56, 58, 80, 116, 118, 119, 132, 133, 147, 255, 271], "ce": [4, 70, 235], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 52, 54, 56, 62, 67, 70, 73, 74, 86, 105, 114, 116, 117, 118, 120, 128, 133, 142, 155, 158, 175, 210, 211, 212, 214, 232, 235, 237, 239, 242, 244, 246, 250, 252, 253, 254, 258, 261, 262, 269, 270], "suffici": [4, 114], "instruct": [4, 58, 63, 73, 117, 130, 149, 242], "author": [4, 6, 8, 56, 91, 128, 150, 250], "agent": [4, 56], "done": [5, 6, 36, 38, 51, 70, 73, 74, 77, 101, 103, 108, 114, 118, 119, 120, 127, 132, 133, 135, 136, 145, 147, 149, 151, 156, 157, 158, 167, 175, 179, 187, 188, 192, 193, 194, 203, 234, 241, 243, 244, 248, 250, 251, 259, 261, 262, 263, 264, 269, 270, 271], "much": [5, 6, 74, 118, 125, 136, 175, 250, 262, 271], "fulli": [5, 35, 56, 70, 101, 103, 116, 133, 134, 135, 157, 181, 182, 188, 193, 194, 204, 205, 206, 208, 211, 212, 213, 221, 222, 223, 224, 229, 261, 271], "fork": [5, 8, 116], "maintain": [5, 8, 18, 70, 101, 116, 131, 142, 147, 158, 208, 243, 264], "pr": [5, 42, 49, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 147, 211, 213, 241], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 53, 55, 56, 58, 59, 63, 70, 72, 73, 75, 79, 81, 84, 85, 87, 91, 92, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 108, 109, 112, 113, 114, 116, 120, 125, 127, 128, 130, 132, 133, 135, 139, 142, 146, 147, 148, 149, 156, 159, 175, 181, 187, 193, 194, 198, 199, 203, 206, 208, 211, 219, 221, 224, 240, 241, 242, 243, 244, 245, 247, 250, 254, 255, 261, 266, 267, 268, 269, 270], "13": [5, 6, 13, 24, 35, 42, 79, 81, 84, 87, 95, 96, 98, 99, 102, 106, 108, 109, 112, 113, 120, 142, 147, 149, 156, 206, 240, 243, 247], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 70, 80, 85, 86, 87, 99, 108, 116, 117, 120, 123, 125, 126, 129, 130, 131, 133, 146, 147, 149, 175, 233, 235, 247, 248, 249, 250, 251, 252, 258, 259, 262, 263, 268, 270], "mostli": [5, 31, 45, 116, 133, 149, 158, 231], "proprietari": [5, 70, 150, 207], "idea": [5, 127, 146, 267, 271], "further": [5, 78, 116, 120, 149, 188, 271], "soon": [5, 59, 70, 271], "straightforward": [5, 77, 86, 98, 127, 260, 266], "mani": [5, 6, 45, 49, 56, 58, 65, 70, 73, 74, 80, 101, 105, 127, 147, 175, 192, 238, 261, 264, 267, 271], "advantag": [5, 58, 156, 182, 222, 244], "mitig": [5, 192], "risk": [5, 56, 73, 146], "befor": [5, 6, 7, 10, 26, 45, 53, 55, 56, 112, 116, 118, 122, 127, 129, 136, 139, 147, 157, 158, 175, 192, 196, 205, 210, 213, 217, 223, 227, 231, 241, 242, 244, 245, 248, 249, 252, 256, 263, 267, 271], "No": [5, 24, 116, 123, 242, 254, 270], "central": [5, 70, 233], "outag": 5, "adapt": [5, 77, 105, 106, 116], "perfectli": [5, 73, 142], "minut": [5, 99, 108], "week": [5, 99, 108, 264], "appli": [5, 8, 49, 51, 74, 80, 82, 83, 84, 86, 90, 93, 95, 96, 98, 101, 102, 103, 106, 111, 114, 116, 118, 119, 123, 126, 127, 132, 136, 146, 147, 149, 181, 188, 190, 200, 213, 241, 242, 243, 245, 246, 248, 249, 254, 255, 258, 266, 269, 271], "wouldn": [5, 58, 63, 185], "elimin": [5, 261], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 53, 152], "diff": [5, 51, 95, 99, 200], "trim": [5, 102], "don": [5, 10, 13, 24, 31, 39, 40, 45, 63, 73, 79, 95, 98, 99, 107, 115, 116, 136, 145, 147, 155, 175, 187, 189, 240, 241, 242, 243, 254, 255, 257, 261, 264], "fire": [5, 136, 175, 263], "effici": [5, 35, 55, 70, 78, 116, 131, 221, 240, 271], "thank": [5, 26, 39, 40, 45, 55, 80, 152, 155, 255], "secondari": [5, 70], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 56, 63, 65, 74, 105, 120, 122, 123, 128, 131, 132, 145, 147, 156, 157, 187, 189, 196, 203, 213, 222, 233, 236, 237, 239, 240, 241, 243, 246, 249, 250, 251, 257, 259, 265, 266, 269, 270], "good": [5, 19, 56, 70, 71, 78, 103, 105, 114, 116, 118, 120, 121, 127, 128, 132, 133, 146, 166, 222, 224, 235, 247, 248, 251, 258, 262, 266, 267, 270], "experiment": [6, 7, 13, 31, 70, 91, 97, 105, 112, 113, 116, 120, 122, 123, 124, 131, 132, 142, 145, 147, 149, 150, 153, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213, 227, 271], "subject": [6, 7, 13, 31, 70, 91, 97, 113, 120, 122, 123, 124, 131, 145, 147, 149, 150, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 187, 189, 206, 210, 211, 212, 213], "stabil": [6, 7, 13, 31, 65, 70, 97, 99, 106, 113, 120, 122, 123, 124, 131, 144, 145, 147, 149, 150, 153, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 189, 196, 206, 210, 211, 212, 264], "typic": [6, 8, 13, 27, 39, 40, 56, 58, 63, 73, 80, 116, 122, 125, 126, 127, 129, 132, 133, 147, 150, 159, 179, 180, 186, 187, 189, 192, 208, 214, 220, 225, 231, 241, 242, 244, 248, 249, 251, 254, 255, 256, 261, 262, 264, 271], "compos": [6, 98, 132, 146, 147, 163, 170, 180, 191, 254], "But": [6, 7, 13, 29, 39, 40, 56, 70, 80, 90, 99, 104, 116, 119, 127, 138, 140, 141, 147, 155, 159, 187, 208, 211, 241, 243, 244, 250, 254, 256, 266, 267, 268], "normal": [6, 35, 42, 67, 73, 108, 116, 124, 155, 158, 191, 261, 269], "consumpt": [6, 21, 70, 117, 142], "complianc": [6, 119], "technic": [6, 116], "busi": 6, "reason": [6, 8, 41, 56, 73, 74, 86, 90, 103, 136, 150, 256, 263, 266, 268], "suit": [6, 142, 147, 214, 248, 254], "heavi": [6, 29, 70, 116, 118, 154], "pdb": [6, 29], "coverag": [6, 187], "sanit": 6, "analysi": [6, 85, 146], "exact": [6, 47, 48, 74, 78, 84, 101, 103, 108, 116, 119, 147, 182, 196, 222, 243, 250, 261, 262, 263, 268, 270], "machin": [6, 29, 58, 80, 90, 106, 114, 116, 124, 149, 151, 183, 187, 203, 208, 216, 217, 221, 231, 233, 238, 241, 242, 259, 268], "relat": [6, 45, 58, 67, 116, 127, 146, 182, 188, 196, 208, 217, 244, 249, 250, 262, 271], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 56, 58, 63, 70, 72, 73, 80, 85, 98, 105, 108, 114, 116, 118, 125, 129, 130, 131, 139, 140, 146, 151, 158, 175, 187, 188, 191, 214, 231, 235, 236, 244, 248, 249, 251, 255, 256, 261, 265, 266, 268, 271], "regul": 6, "insid": [6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 74, 79, 81, 85, 99, 105, 116, 120, 129, 132, 144, 146, 149, 155, 156, 158, 179, 188, 192, 196, 201, 214, 231, 237, 244, 246, 249, 250, 257, 261, 263, 267, 271], "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 56, 73, 81, 86, 108, 118, 125, 126, 127, 130, 131, 132, 145, 150, 151, 155, 192, 240, 243, 245, 249, 250, 254, 261, 263, 266, 267, 269, 271], "lot": [6, 8, 258, 269, 271], "impact": [6, 8], "experi": [6, 116, 118, 237, 269, 271], "cost": [6, 74], "furthermor": [6, 53, 74, 271], "append": [6, 26, 49, 58, 85, 114, 116, 132, 134, 135, 146, 147, 153, 159, 185, 187, 188, 191, 192, 196, 204, 205, 206, 222, 223, 256], "highlight": [6, 26, 141, 191, 211, 252], "probabl": [6, 31, 188, 214, 221, 243], "scan": [6, 201], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 51, 53, 55, 56, 58, 59, 63, 70, 72, 75, 78, 79, 84, 87, 91, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 113, 114, 116, 120, 127, 128, 131, 133, 136, 137, 139, 140, 142, 147, 149, 156, 157, 175, 185, 186, 187, 188, 191, 193, 194, 196, 198, 199, 200, 203, 208, 211, 217, 219, 221, 222, 223, 224, 231, 237, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 269, 270], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 51, 53, 56, 78, 80, 98, 114, 115, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 147, 149, 150, 153, 154, 155, 156, 157, 158, 159, 160, 175, 177, 179, 180, 181, 182, 185, 186, 187, 188, 189, 191, 192, 193, 194, 196, 198, 200, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 222, 223, 224, 227, 229, 231, 241, 243, 244, 247, 248, 249, 250, 251, 252, 254, 255, 256, 257, 258, 259, 262, 263, 266, 267, 268, 270], "Or": [6, 85, 118, 127, 147, 188, 207, 223, 229], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 51, 56, 85, 142, 146, 176, 184, 188, 214, 241, 244, 250, 252, 254, 256, 259, 261, 262, 263], "mybuild": [6, 116], "recipe_fold": [6, 16, 18, 56, 91, 96, 125, 126, 127, 128, 134, 135], "dst": [6, 17, 38, 116, 124, 196, 257], "join": [6, 16, 17, 18, 19, 36, 39, 40, 51, 73, 116, 126, 128, 129, 130, 132, 134, 135, 138, 147, 158, 159, 175, 187, 188, 191, 196, 214, 244, 248, 254, 255, 256, 257, 259, 263], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 53, 55, 59, 61, 62, 66, 67, 68, 69, 70, 74, 80, 82, 86, 99, 100, 102, 116, 121, 130, 131, 133, 134, 143, 146, 175, 186, 188, 189, 196, 214, 223, 231, 232, 240, 247, 256, 259, 260, 262, 266, 267], "mylog": 6, "build_fold": [6, 17, 74, 91, 96, 97, 127, 129, 130, 158, 186, 196, 211, 216, 254, 255, 256, 257], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 58, 63, 75, 78, 80, 84, 96, 98, 101, 103, 105, 108, 114, 116, 118, 128, 131, 132, 136, 138, 141, 142, 147, 149, 157, 159, 175, 181, 187, 188, 202, 217, 231, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 257, 259, 261, 262, 263, 264, 266, 267, 268, 269, 271], "clutter": [6, 214], "accross": [6, 78], "sai": [6, 13, 16, 18, 38, 41, 51, 80, 84, 95, 98, 103, 116, 146, 147, 181, 221, 249, 263], "no_copy_sourc": [6, 118, 254], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 53, 70, 73, 79, 80, 81, 84, 99, 104, 105, 116, 136, 147, 149, 150, 157, 175, 177, 182, 187, 192, 211, 231, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 263, 266, 267, 268, 270, 271], "post_export": [6, 158], "post_sourc": [6, 158], "post_build": [6, 152, 158], "usag": [6, 27, 31, 35, 37, 39, 40, 41, 63, 70, 74, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 116, 119, 129, 132, 133, 145, 146, 147, 149, 151, 157, 189, 196, 198, 200, 203, 207, 214, 223, 243, 256, 261], "similar": [6, 8, 18, 58, 65, 70, 87, 90, 103, 112, 114, 116, 129, 137, 147, 155, 187, 189, 191, 227, 240, 247, 249, 252, 254, 263, 269], "effect": [6, 8, 49, 73, 76, 77, 78, 98, 116, 127, 131, 136, 146, 152, 221, 231, 249, 267], "To": [6, 24, 26, 29, 31, 36, 55, 56, 58, 63, 64, 73, 99, 103, 106, 108, 116, 120, 128, 129, 136, 141, 146, 147, 150, 153, 158, 181, 186, 187, 188, 193, 194, 196, 203, 204, 205, 214, 240, 242, 244, 245, 251, 252, 261, 263, 267, 270], "achiev": [6, 8, 39, 56, 74, 118, 131, 157, 182, 187, 196, 222, 239, 244, 250, 254, 267, 270, 271], "didn": [6, 47, 56, 73, 79, 250, 254], "far": [6, 242, 243, 244, 247, 249, 261, 271], "r": [6, 13, 31, 35, 56, 65, 73, 79, 81, 83, 86, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 102, 108, 109, 111, 112, 227, 236, 238, 243, 264, 268], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 254], "By": [6, 21, 41, 48, 70, 73, 78, 83, 84, 85, 86, 90, 93, 95, 96, 98, 99, 102, 106, 111, 112, 114, 116, 132, 145, 146, 151, 175, 187, 188, 191, 203, 205, 206, 208, 210, 217, 231, 267, 268], "situat": [6, 13, 35, 39, 40, 80, 101, 108, 116, 118, 130, 131, 135, 147, 175, 187, 208, 265, 266], "sometim": [6, 7, 29, 51, 73, 86, 116, 137, 243, 248, 252, 254, 260], "mix": [6, 80, 175], "recov": [6, 56, 196], "previous": [6, 13, 24, 31, 36, 58, 98, 103, 145, 147, 149, 188, 191, 213, 245, 252, 255, 266], "under": [6, 8, 36, 61, 66, 68, 69, 70, 81, 114, 116, 129, 131, 147, 155, 158, 200, 217, 231, 237, 240, 250, 255, 260, 269], "collect": [6, 36, 96, 98, 127, 132, 136, 196, 206, 249, 258], "recal": [6, 101, 103, 108, 120, 123, 147, 151, 181, 185, 188], "At": [6, 10, 21, 26, 63, 70, 74, 93, 103, 116, 127, 149, 196, 204, 212, 213], "moment": [6, 7, 35, 74, 114, 127, 132, 149, 204, 212], "addit": [6, 8, 58, 59, 85, 86, 100, 116, 133, 146, 147, 149, 178, 188, 196, 198, 205, 217, 222, 223, 244, 245, 251], "quit": [6, 146, 175, 237], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 74, 98, 103, 116, 120, 125, 126, 128, 130, 136, 142, 181, 182, 239, 248, 249, 267, 269], "metatada": 6, "best": [6, 7, 13, 35, 56, 78, 80, 84, 86, 99, 101, 106, 118, 119, 120, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 136, 139, 147, 150, 170, 175, 245, 256, 266, 268, 270], "mandatori": [6, 36, 80, 101, 105, 116, 154, 157, 175, 250], "frequent": [6, 8, 196], "excepcion": 6, "decompress": [6, 196, 198, 240, 245, 260], "consid": [6, 7, 8, 21, 45, 70, 78, 79, 80, 84, 116, 119, 121, 181, 183, 188, 217, 244, 268], "zip": [6, 8, 19, 51, 85, 106, 112, 116, 136, 150, 196, 198, 235, 236, 246, 262], "yourself": 6, "categori": [6, 241], "illustr": [6, 79, 270], "later": [6, 7, 13, 26, 63, 65, 86, 96, 119, 123, 126, 132, 141, 147, 196, 227, 233, 238, 243, 244, 248, 249, 255, 265, 267], "necessarili": [6, 116, 267], "ton": 6, "assum": [6, 29, 35, 63, 70, 74, 78, 79, 84, 87, 95, 99, 108, 112, 116, 128, 132, 137, 147, 149, 151, 181, 187, 211, 221, 240, 242, 244, 245, 270], "stage": [6, 26, 58, 86, 90, 149, 158], "applic": [6, 8, 27, 38, 45, 48, 53, 55, 58, 70, 73, 79, 80, 96, 116, 120, 131, 133, 139, 187, 194, 196, 208, 221, 232, 237, 239, 240, 245, 246, 250, 253, 254, 256, 259, 261, 266, 271], "cp": [6, 35, 56], "todo": [6, 166], "hear": 6, "feedback": [6, 70, 269], "continu": [7, 70, 74, 101, 114, 234, 263, 267], "conveni": [7, 13, 65, 99, 105, 116, 136, 137, 147, 157, 160, 175, 187, 191, 193, 194, 243, 256, 259], "recent": [7, 21, 99, 108, 264], "transfer": [7, 8, 114, 271], "job": [7, 56, 74, 85, 146, 147, 183, 185, 216, 271], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 99], "b": [7, 21, 24, 29, 42, 51, 58, 83, 84, 86, 90, 93, 95, 96, 98, 102, 106, 111, 136, 146, 200, 206, 211, 241, 248, 249, 251, 252, 254, 257, 263], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "consider": 7, "well": [7, 56, 70, 72, 90, 99, 113, 116, 129, 149, 185, 187, 188, 208, 217, 250, 271], "pkg773791b8c97aa": 7, "substitut": [7, 151, 231], "storag": [7, 70, 84, 114, 152, 198, 237, 268], "transitori": 7, "strategi": [7, 8, 56, 131, 136, 262, 271], "proof": 7, "stabl": [7, 58, 99, 105, 106, 116, 146, 147], "expect": [7, 10, 42, 45, 56, 74, 90, 95, 98, 116, 118, 136, 146, 149, 197, 214, 250, 252, 262, 268], "fantast": 8, "resourc": [8, 57, 96, 132, 244, 268], "1500": 8, "contribut": [8, 70, 192, 200, 232, 233], "great": [8, 58, 70, 73, 236, 271], "knowledg": [8, 57, 70, 73], "wide": [8, 58, 80, 242, 244, 245, 250], "variant": [8, 66], "On": [8, 45, 80, 114, 137, 149, 213, 237, 240, 241, 242, 250], "top": [8, 133, 147, 227], "contributor": [8, 70], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 87, 116, 188, 242], "snapshot": [8, 243, 267], "contrari": 8, "e": [8, 42, 58, 70, 73, 84, 87, 88, 91, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 120, 146, 147, 148, 149, 179, 183, 185, 188, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 251, 252, 271], "g": [8, 35, 42, 47, 48, 73, 83, 84, 87, 88, 93, 95, 96, 98, 99, 102, 105, 108, 112, 114, 116, 146, 147, 148, 149, 156, 167, 179, 183, 185, 188, 193, 196, 203, 205, 206, 208, 211, 217, 221, 222, 231, 240, 241, 242, 244, 245, 252, 261, 262, 263], "opencv": [8, 114, 137, 154], "greater": 8, "remain": [8, 114, 116, 151, 181, 191, 217], "older": [8, 70, 101, 104, 268, 269, 270], "push": [8, 56, 70, 227], "ecosystem": [8, 80, 213], "themselv": [8, 105, 175, 249], "hand": [8, 70, 80, 102, 118, 137], "combin": [8, 83, 86, 93, 95, 96, 98, 102, 104, 106, 111, 130, 136, 270], "mean": [8, 13, 29, 31, 35, 39, 40, 58, 63, 70, 73, 74, 78, 79, 80, 84, 87, 95, 96, 97, 98, 99, 108, 112, 116, 118, 120, 123, 127, 131, 132, 136, 139, 142, 147, 149, 151, 154, 166, 174, 175, 181, 187, 191, 192, 196, 203, 205, 214, 231, 242, 243, 254, 258, 260, 263, 266, 267, 268, 269], "languag": [8, 38, 42, 45, 49, 53, 55, 70, 182, 240], "pip": [8, 56, 114, 237], "pypi": [8, 58], "npm": 8, "cargo": 8, "discourag": [8, 84, 116, 150, 175, 217, 252], "unconstrain": 8, "manner": [8, 261], "guidelin": [8, 57, 58, 70, 71, 176], "seri": [8, 116, 260], "highli": [8, 24, 31, 36, 45, 53, 55], "mention": [8, 91, 96, 131, 133, 147, 181, 187, 205, 212, 217, 223, 248, 258, 263, 271], "earlier": [8, 70, 269], "caus": [8, 74, 116, 120, 133, 139, 187, 208, 250, 252, 266, 267, 268], "solver": 8, "actual": [8, 13, 19, 39, 40, 70, 73, 80, 90, 108, 112, 118, 127, 133, 137, 147, 149, 192, 193, 194, 196, 231, 238, 243, 263, 266, 267, 270], "4": [8, 10, 21, 26, 48, 53, 73, 78, 79, 96, 99, 103, 113, 114, 116, 121, 127, 131, 137, 142, 146, 147, 149, 175, 188, 211, 241, 244, 247, 254, 264, 270], "5": [8, 10, 63, 73, 78, 85, 93, 98, 101, 102, 103, 104, 116, 120, 127, 131, 147, 149, 160, 198, 221, 243, 267, 269, 270], "greatli": [8, 271], "encourag": [8, 70, 116, 250, 262], "consist": [8, 18, 78, 80, 85, 86, 266, 267, 270, 271], "rust": 8, "technologi": [8, 149], "upstream": [8, 56, 120, 127, 133, 174, 187, 261, 266], "period": [8, 264], "downtim": 8, "schedul": 8, "effort": [8, 127, 271], "made": [8, 84, 271], "unschedul": 8, "rare": [8, 118, 132, 134], "treat": [8, 85, 133, 146, 149, 196], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 114, 149, 235, 237], "strong": [8, 70, 80, 147], "uptim": 8, "protect": [8, 58, 115, 149], "transient": 8, "network": [8, 21, 85, 114, 143], "extern": [8, 19, 26, 49, 58, 246, 250, 252, 255, 257, 268], "These": [8, 21, 31, 45, 68, 70, 78, 85, 86, 98, 114, 125, 126, 127, 129, 141, 143, 146, 147, 150, 151, 155, 186, 188, 189, 203, 204, 208, 217, 241, 242, 249, 250, 254, 255, 259, 263, 267, 271], "industri": 8, "financ": 8, "robot": 8, "embed": [8, 70, 78, 79, 116, 133, 149], "stronger": 8, "licens": [8, 36, 55, 70, 91, 96, 97, 98, 105, 125, 126, 127, 128, 130, 158, 235, 240, 246, 250, 258, 262, 268], "medic": 8, "automot": 8, "advis": [8, 134, 135, 147], "instanc": [8, 31, 42, 63, 91, 96, 114, 116, 120, 129, 130, 131, 146, 147, 155, 177, 179, 183, 187, 188, 191, 192, 193, 194, 205, 213, 217, 219, 220, 221, 224, 227, 251, 259], "backport": [8, 200, 271], "suitabl": [8, 149], "review": [8, 63, 253, 254, 256, 263], "tight": 8, "subsect": 8, "come": [10, 58, 127, 147, 155, 183, 188, 208, 217, 236, 242, 255, 271], "glanc": 10, "becom": [10, 58, 80, 125, 126, 175, 268, 271], "unfeas": 10, "benefit": 10, "interest": [10, 13, 70, 84, 86], "pick": [10, 243], "action": [10, 31, 53, 56, 63, 114, 243, 251], "summar": [10, 271], "libpng": [10, 93, 97, 181], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 60, 64, 65, 70, 74, 81, 136, 243, 250, 262, 266], "8": [10, 73, 78, 98, 109, 116, 121, 127, 149, 180, 193, 194, 196, 200, 217, 221, 222, 224, 243, 247, 248, 249, 258, 259, 269], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 53, 58, 70, 73, 78, 99, 113, 114, 121, 136, 139, 149, 181, 200, 207, 241, 243, 244, 245], "40": [10, 99, 268], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 51, 73, 78, 85, 102, 120, 121, 127, 142, 146, 147, 149, 198, 241, 269], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 70, 79, 81, 87, 116, 127, 142, 208, 211], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 99, 255], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 79, 81, 96, 99, 120], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 51, 53, 55, 63, 90, 104, 125, 133, 142, 147, 188, 214, 221, 238, 240, 253, 254, 256, 259, 261, 263, 266, 269], "usual": [10, 58, 116, 133, 138, 147, 152, 157, 181, 191, 261, 263, 267], "behaviour": [10, 114, 187, 231, 249, 250, 251], "googl": [11, 42, 43, 53, 62, 76, 85, 146, 176, 200, 210, 211, 212], "ndk": [11, 25, 26, 60, 116, 132, 177, 188, 217, 241], "macro": [11, 37, 45], "modul": [11, 37, 45, 58, 65, 114, 116, 127, 128, 147, 152, 156, 175, 187, 211], "concaten": [13, 87, 112], "11": [13, 24, 55, 73, 81, 84, 85, 91, 95, 98, 99, 108, 109, 116, 127, 133, 142, 146, 147, 148, 149, 156, 181, 187, 193, 194, 200, 203, 208, 211, 221, 224, 240, 241, 242, 243, 244, 245, 247, 248, 254, 258, 259, 262, 269], "sent": 13, "12": [13, 21, 24, 26, 27, 91, 99, 108, 109, 142, 147, 149, 183, 200, 208, 217, 237, 243, 250, 254, 255, 268], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 102], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 99], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 51, 56, 58, 69, 73, 80, 81, 84, 87, 91, 95, 96, 97, 99, 106, 108, 112, 116, 119, 122, 123, 128, 131, 132, 137, 140, 147, 149, 157, 160, 168, 177, 179, 180, 181, 182, 185, 187, 188, 191, 193, 194, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 221, 222, 223, 224, 229, 231, 240, 241, 242, 243, 244, 248, 250, 252, 254, 255, 256, 259, 267, 268], "x86_64": [13, 24, 26, 27, 35, 42, 73, 80, 81, 91, 95, 99, 106, 122, 129, 137, 147, 149, 157, 160, 180, 181, 183, 188, 193, 194, 231, 240, 241, 242, 244, 245, 248, 250, 255, 256, 259, 262, 267, 268], "singl": [13, 26, 47, 48, 70, 78, 82, 87, 103, 106, 116, 158, 171, 181, 185, 186, 187, 188, 189, 193, 194, 196, 217, 221, 244, 252, 255, 263, 271], "invoc": [13, 36, 61, 62, 67, 68, 69, 74, 118, 141, 152, 154, 179, 180, 181, 182, 185, 188, 193, 203, 210, 211, 220, 222], "almost": [13, 78, 82], "myremot": [13, 87, 108, 112, 114, 145, 264, 268], "slow": 13, "promot": 13, "magnitud": 13, "faster": [13, 80, 227, 243, 270], "dedupl": 13, "One": [13, 70, 73, 116, 156, 182, 188, 196, 217, 222, 241, 248], "mypkg": [13, 80, 84, 98, 105, 116, 134, 136, 137, 147, 156, 187, 191, 211], "cmake_lib": [13, 27, 79, 84, 105, 186, 250, 255, 268], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 84, 268], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 80, 91, 93, 97, 149], "known": [13, 149, 198, 243, 254, 271], "destruct": 13, "natur": [13, 80, 266, 268], "cannot": [13, 27, 42, 56, 74, 80, 83, 86, 93, 95, 96, 98, 100, 101, 102, 111, 116, 117, 118, 119, 128, 136, 140, 142, 146, 151, 155, 175, 183, 187, 188, 189, 242, 250, 254, 255, 260, 266, 267], "OR": [13, 26, 84, 87, 99, 108, 112, 168, 223, 269], "leav": [13, 26, 80, 108, 114, 127, 146, 149, 264], "subproject": [14, 15, 129, 263], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 51, 53, 55, 56, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 51, 53, 55, 56, 58, 79, 187, 227, 240, 241, 242, 243, 244, 245, 247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259, 261, 262, 263, 266, 267, 268, 271], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 63, 64, 74, 84, 105, 116, 130, 185, 186, 187, 188, 214, 240, 244, 245, 247, 248, 250, 251, 252, 255, 256, 257, 258, 259, 261, 262, 263, 268, 271], "h": [16, 17, 18, 21, 26, 31, 42, 45, 53, 55, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 130, 155, 196, 240, 241, 242, 247, 248, 249, 250, 251, 254, 255, 257, 258, 259, 261, 262, 263], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 51, 126, 200], "cmake_fil": 16, "real": [17, 26, 56, 70, 112, 132, 139, 196, 266, 270, 271], "editable_compon": 17, "greet": [17, 155, 217], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 51, 53, 56, 79, 96, 99, 105, 116, 127, 155, 175, 185, 186, 187, 188, 210, 217, 238, 247, 248, 249, 250, 251, 252, 255, 257, 258, 259, 261, 262, 263, 268], "bye": [17, 18, 155, 261, 268], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 51, 56, 74, 125, 126, 175, 188, 250, 252, 254, 256, 263, 268, 270], "src_folder": [17, 19, 186, 214, 262], "dir": [17, 19, 21, 27, 85, 105, 116, 132, 147, 189, 206, 213, 227, 248, 249, 250, 251, 254, 259, 262, 263], "bt": [17, 86], "package_fold": [17, 38, 39, 40, 41, 91, 96, 97, 115, 124, 127, 129, 130, 132, 158, 179, 181, 188, 191, 196, 203, 206, 208, 216, 254, 255, 256, 257], "keep_path": [17, 130, 196, 255, 256, 257], "cmake_file_nam": [17, 132, 187], "myg": 17, "cmake_target_nam": [17, 21, 132, 187, 251], "mygreet": 17, "myhello": [17, 251], "myby": 17, "beyond": 17, "filenam": [17, 48, 83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 105, 111, 147, 157, 159, 192, 196, 198, 216], "besid": [17, 31, 48, 56, 66, 98, 146, 147, 149, 152, 181, 187, 189, 240, 249, 251, 252, 258, 262], "app": [17, 26, 38, 55, 69, 79, 80, 85, 103, 114, 127, 133, 146, 180, 182, 183, 185, 187, 188, 191, 203, 204, 205, 206, 208, 210, 211, 212, 213, 217, 220, 222, 229, 236, 240, 269, 270], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 63, 105, 187, 240, 245, 248, 251, 258, 259], "add_execut": [17, 21, 63, 187, 240, 245, 248, 251, 259], "target_link_librari": [17, 21, 26, 42, 63, 187, 240, 245, 248, 251, 258, 259], "adio": 17, "multiple_subproject": 18, "sibl": 18, "myhead": [18, 198], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 85, 114, 116, 240, 241, 242, 244, 245, 248, 249, 250, 251, 252, 254, 259, 262, 263], "world": [18, 27, 47, 48, 51, 53, 56, 70, 79, 116, 155, 188, 210, 247, 248, 250, 251, 252, 255, 258, 259, 261, 262, 268], "fine": [18, 19, 42, 103, 114, 116, 237, 250], "principl": [18, 266, 267], "must": [18, 56, 58, 62, 74, 84, 100, 101, 103, 114, 116, 122, 123, 125, 126, 131, 136, 146, 147, 154, 155, 159, 185, 187, 196, 200, 203, 205, 207, 240, 243, 244, 245, 250, 251, 267], "third_party_librari": 19, "whose": [19, 82, 83, 86, 93, 95, 96, 98, 102, 111, 136, 147], "mypatch": 19, "sour": 19, "libhello": [19, 27, 51, 247, 248, 249, 251, 252, 255, 257, 258, 259, 262], "archiv": [19, 51, 84, 85, 136, 179, 196, 207, 252, 262], "head": [19, 51, 136, 227, 247, 248, 251, 252, 258, 262, 268], "strip_root": [19, 51, 196, 198, 252, 262], "awar": [19, 39, 40, 58, 64, 87, 106, 122, 123, 144, 227, 247, 248, 249, 251, 252, 255, 258, 262, 271], "branch": [19, 58, 74, 135, 136, 227, 246, 247, 248, 251, 258, 262, 265, 268, 270], "tag": [19, 58, 74, 85, 116, 135, 136, 141, 146, 227, 247, 248, 250, 251, 252, 258, 262, 268, 270], "patch_fil": [19, 51, 200], "7kb": [19, 252, 262], "50": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "cmakefil": [19, 21, 27, 248, 249, 250, 251, 254, 259, 262, 263], "libcrypto": [21, 132], "libssl": [21, 132], "abstract": [21, 49, 61, 68, 69, 74, 80, 180, 185, 203, 210, 220, 251], "rest": [21, 70, 80, 104, 146, 147, 196, 199, 208, 235, 236], "game": [21, 105, 266, 267], "algorithm": [21, 198], "ai": [21, 105], "coupl": [21, 29, 119, 240, 248, 251, 259], "package_nam": [21, 105, 142, 181, 231, 236], "component_nam": [21, 187, 189, 211], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 63, 85, 106, 146, 149, 187, 231, 240, 242, 243, 244, 245, 248, 251, 257, 258, 259], "packagetest": [21, 248, 251, 259], "barbarian": [21, 96, 106], "d6e361d329116": 21, "j16": [21, 251], "25": [21, 35, 79, 80, 147, 149, 248, 251, 256, 268], "37": [21, 181], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 248, 251], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 266], "NOT": [21, 26, 116, 136, 175, 187, 228, 248], "stack": 21, "incomplet": [21, 101, 104, 149], "occur": [21, 141, 198], "22": [21, 79, 81, 99, 147, 149, 241, 243, 244, 245, 250, 254, 255], "conanexcept": [21, 36, 56, 197, 198], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 149, 179, 180], "7": [24, 53, 56, 73, 78, 85, 121, 149, 269], "cortexa15t2hf": 24, "rc": [24, 53, 62, 85, 146, 188, 210, 212, 223], "rewrit": [24, 102], "sub": [24, 100, 107, 116, 147, 155, 196, 262], "conan_hom": [24, 36, 74, 96, 106, 144, 146, 147, 148, 149, 156, 157, 158], "myuser": [24, 29, 42, 56, 116, 145, 147, 150], "pkgconan": [24, 147, 216], "gnu98": [24, 149], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 85, 146, 147, 149, 205, 213, 241], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 211], "right": [24, 26, 59, 74, 98, 118, 175, 187, 261, 262, 267, 269], "2023": [24, 79, 81, 99, 268], "02": [24, 81, 99, 203, 268], "16": [24, 85, 99, 142, 146, 147, 149], "06": [24, 243], "42": [24, 80, 85, 99, 116, 175], "10": [24, 45, 53, 56, 85, 99, 113, 146, 147, 149, 217, 243], "utc": [24, 79, 81, 99, 243, 250, 254, 255, 268], "wizard": 26, "myconanappl": 26, "minimum": [26, 116, 137, 217, 250, 258], "suggest": [26, 70, 116, 123], "21": [26, 27, 99, 113, 120, 149, 188, 217], "rememb": [26, 36, 114, 213, 244], "api_level": [26, 27, 149, 217], "standard": [26, 27, 35, 70, 116, 119, 129, 143, 146, 147, 177, 182, 187, 188, 217, 221, 222, 227, 240, 241, 247, 249, 254, 258, 262, 269], "choic": [26, 149, 257], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 51, 205, 212, 248, 258, 268], "zlibvers": [26, 55, 240], "newstringutf": 26, "c_str": 26, "prepar": [26, 74, 112, 118, 127, 139, 174, 232, 241, 246, 250, 262, 271], "my_conan_app": 26, "view": [26, 29, 63, 99, 116, 121, 131, 153, 249], "past": [26, 84, 99], "task": [26, 56, 74, 136, 151, 152, 255, 267, 271], "conaninstal": 26, "element": [26, 31, 74, 108, 221, 222], "conanexecut": 26, "builddir": [26, 38, 41, 91, 96, 132, 187], "mkdir": [26, 56, 79, 195, 255, 268], "armv7": [26, 27, 149, 177, 180, 231], "x86": [26, 27, 84, 85, 87, 99, 108, 112, 146, 149, 168, 183, 196, 220, 224, 231, 267], "n": [26, 36, 42, 45, 51, 53, 55, 149, 159, 186, 220, 227, 240, 242, 247, 248, 258, 268], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 84, 141, 151], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 79, 122, 149, 183, 213, 224, 241, 250, 255, 267], "defaultconfig": 26, "adjust": [26, 27, 129, 179, 187, 188, 205, 206, 208, 249], "focu": [26, 258], "proil": 26, "_static": [26, 27, 149], "14": [26, 27, 73, 96, 99, 105, 106, 116, 147, 149, 160, 208, 224, 240, 241, 242, 250, 254, 258], "ndk_path": [26, 27, 85, 116, 132, 146, 188, 217], "luism": [26, 254, 256], "7075529": 26, "bin": [26, 27, 35, 39, 40, 53, 91, 96, 132, 147, 179, 188, 205, 206, 208, 211, 236, 241, 254, 256, 257], "android31": [26, 27], "llvm": [26, 27, 149], "prebuilt": [26, 27, 79, 95, 246, 253, 262], "darwin": [26, 27, 53, 96, 106, 147], "_share": [26, 27, 149], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 204, 205], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "respons": [26, 39, 40, 58, 64, 73, 85, 90, 98, 115, 116, 118, 123, 132, 134, 135, 146, 158, 196, 200, 217, 227, 250], "android_abi": [26, 176, 188], "exit": [26, 31, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 139], "prematur": 26, "essenti": [26, 45, 70, 147, 148], "absent": 26, "cmake_build_typ": [26, 187, 188], "endif": [26, 51, 242, 247, 248, 251, 258], "strequal": [26, 248], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 85, 127, 146, 185, 187, 188, 240, 241, 242, 244, 245, 250, 255, 261, 262, 263], "elseif": 26, "v8a": [26, 177], "armeabi": [26, 177], "v7a": [26, 177], "Not": [26, 74, 91, 96, 116, 123, 127, 154, 240, 245, 252, 266], "add_librari": [26, 42, 251, 257, 258], "virtual": [26, 58, 70, 114, 147, 242, 245, 249], "devic": [26, 27], "pair": [26, 114], "qr": 26, "click": [26, 29, 63, 208, 236], "brew": [27, 58, 85, 146, 230], "usr": [27, 114, 147, 207, 241], "choos": [27, 116, 187, 203, 231, 240, 258], "fit": [27, 82, 183, 267], "balanc": [27, 78], "unless": [27, 70, 84, 98, 108, 112, 114, 116, 125, 126, 146, 151, 200, 221, 240, 264], "know": [27, 31, 78, 86, 90, 116, 140, 149, 155, 187, 203, 242, 249, 251, 256, 263, 270], "bare": [29, 70, 250], "symbol": [29, 63, 144, 179, 188], "box": [29, 263], "consuming_packag": [29, 240, 241, 242, 243, 244, 245], "simple_cmake_project": [29, 240], "finish": [29, 53], "successfulli": [29, 53, 64, 241, 251, 259, 261], "23": [29, 47, 48, 86, 98, 102, 120, 142, 149, 188, 254, 255, 256, 261, 262, 263, 268], "compressor": [29, 35, 55, 187, 240, 241, 242, 244, 245], "sln": [29, 68, 220], "solut": [29, 68, 70, 74, 114, 129, 133, 221, 222, 235, 237, 266], "startup": 29, "breakpoint": 29, "void": [29, 42, 51, 55, 240, 242, 247, 258, 268], "deflateinit": [29, 55, 240], "defstream": [29, 55, 240], "z_best_compress": [29, 55, 240], "deflat": [29, 55, 240], "z_finish": [29, 55, 240], "f5": 29, "stop": [29, 98, 188], "Into": 29, "navig": [29, 63, 236], "zlib4f7275ba0a71f": 29, "zexport": 29, "deflateinit_": 29, "strm": 29, "stream_siz": 29, "z_streamp": 29, "const": 29, "deflateinit2_": 29, "z_deflat": 29, "max_wbit": 29, "def_mem_level": 29, "z_default_strategi": 29, "next_in": [29, 55, 240], "inspir": 30, "agnost": [30, 33, 98, 157], "enough": [31, 56, 58, 74, 90, 120, 127, 131, 146, 147, 151, 189, 244, 257, 266], "cmd_clean": 31, "your_conan_hom": [31, 155, 263], "Will": [31, 39, 40, 83, 86, 87, 93, 95, 96, 98, 102, 104, 108, 111, 116, 127, 136, 160, 179, 182, 187, 188, 192, 217, 231], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "conanoutput": [31, 155], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "group": [31, 85, 116, 271], "add_argu": [31, 155], "store_tru": 31, "parse_arg": [31, 155], "request_boolean": 31, "non_interact": [31, 85, 145, 146, 151], "output_remot": 31, "writeln": 31, "f": [31, 36, 39, 40, 56, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 105, 106, 107, 108, 109, 111, 112, 113, 116, 132, 136, 150, 156, 158, 159, 175, 188, 208, 223], "fg": [31, 247, 258], "all_rrev": 31, "recipe_revis": [31, 78, 116, 243], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 78], "latest_prev": 31, "argpars": [31, 155], "argumentpars": [31, 155], "visit": [31, 80, 82, 103, 114, 118, 236], "websit": [31, 155], "proce": [31, 42, 242], "translat": [31, 63, 68, 69, 73, 132, 182, 188, 205, 217, 221, 222, 244, 250, 251], "bg": 31, "font": 31, "foreground": 31, "background": [31, 151], "apart": [31, 53, 211], "predefin": [31, 47, 82, 105, 120, 142, 176, 188, 261, 263], "success": [31, 116, 141], "remotesapi": [31, 161, 171], "remoteregistri": 31, "searchapi": [31, 161, 173], "listapi": [31, 161, 168], "removeapi": [31, 161, 172], "deserv": [31, 146], "especi": [31, 58, 116, 255, 260, 271], "attent": [31, 146, 257], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 58], "elsewher": [35, 116, 135], "place": [35, 36, 42, 73, 80, 93, 96, 116, 118, 120, 132, 144, 156, 158, 175, 191, 196, 244, 250, 255, 256, 257, 269], "conanbuild": [35, 45, 53, 127, 132, 147, 185, 191, 192, 193, 203, 205, 224, 241, 244, 245, 256, 262], "17": [35, 63, 79, 85, 99, 113, 146, 147, 149, 212, 250, 254, 255], "2022": [35, 63, 75, 99, 113, 149, 243, 250, 254, 255], "big": [35, 114, 125, 149], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 185, 187, 240, 241, 242, 244, 245, 255, 261, 262, 263], "fact": [35, 114, 249], "limit": [35, 99, 108, 132, 183, 192, 196, 217, 240, 271], "ticket": 35, "manual": [35, 45, 63, 84, 100, 101, 103, 114, 127, 133, 267, 270], "exclus": [35, 83, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 102, 103, 108, 111, 112, 116, 117, 120, 132, 133, 136, 221], "cwd": [36, 98, 105, 134, 135, 141, 157, 170], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 105, 118, 221], "dependencies_sourc": 36, "preprocess": 36, "accomplish": 36, "source_deploi": 36, "kwarg": [36, 154, 157, 159, 200, 231], "robust": [36, 154], "dependency_sourc": 36, "iter": [36, 98, 103, 157, 159, 188, 190], "said": [36, 249, 267], "advanc": [37, 39, 40, 63, 70, 75, 116, 133, 147, 184, 189, 227, 235, 236, 267, 271], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 86, 101, 102, 103, 104, 117, 127, 133, 147, 187, 208, 211, 241, 243, 244, 256, 267], "different_opt": 39, "myoption": [39, 119, 139], "echo": [39, 40, 154, 175, 256], "off": [39, 40, 59, 64, 156, 188, 212, 248, 262], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 56, 74, 114, 116, 131, 132, 136, 244, 250, 259, 264], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 159, 188, 192], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 53, 116, 148, 175, 187, 203, 211, 213, 240, 248, 251, 259], "anyth": [39, 40, 70, 74, 194, 231, 241, 255, 256, 259, 268, 271], "identifi": [39, 40, 65, 77, 79, 81, 108, 116, 117, 242, 249, 256, 263], "construct": [39, 40], "Of": [39, 40, 70, 266], "cours": [39, 40, 266], "invis": [39, 40], "exactli": [39, 40, 70, 78, 127, 129, 131, 231, 256], "obtain": [39, 40, 56, 81, 82, 84, 117, 131, 137, 147, 179, 180, 185, 190, 192, 193, 194, 217, 220, 222, 227, 242, 270], "disambigu": [39, 40, 187, 208], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 116, 175], "cmake_build_modul": [41, 187], "tc": [41, 48, 116, 127, 149, 182, 185, 188, 204, 205, 212, 217, 222, 223, 229, 248, 250, 252, 256, 258, 262], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 132, 187], "build_context": [41, 187, 219], "behav": [42, 203, 242], "protobuf": [42, 116, 120, 132, 187, 208], "perhap": 42, "pb": 42, "nonetheless": [42, 254], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 116, 117, 123, 127, 246, 249, 250, 252], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 257, 258], "build_interfac": 42, "cmake_current_source_dir": 42, "cmake_current_binary_dir": 42, "install_interfac": 42, "set_target_properti": [42, 251, 257, 258], "public_head": [42, 257, 258], "iostream": [42, 116, 258], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 146], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 51, 258, 268], "alloc": [42, 211], "shutdownprotobuflibrari": 42, "simpli": [42, 62, 147, 213, 214, 261], "argc": [42, 200], "argv": [42, 200], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 96, 102], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 91, 99], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 63, 84, 248, 254], "notic": [42, 63, 85, 116, 148, 155, 205, 208, 210, 211, 216, 217, 242, 247, 248, 249, 258], "arm": [42, 80, 149, 220, 241, 244], "mach": 42, "64": [42, 149, 183, 213, 224, 241, 267], "bit": [42, 51, 56, 122, 132, 147, 149, 155, 183, 196, 224, 241, 250, 255, 259, 270], "arbitrari": [43, 46, 63, 70, 101, 103, 131, 152, 269], "bazel": [43, 52, 57, 59, 85, 105, 146, 176, 209, 211, 212, 240], "popular": [45, 53, 55, 59, 66, 70, 149, 231, 240], "fmt": [45, 53, 102, 247, 248, 249, 258, 259], "mac": [45, 183, 259], "string_formatt": [45, 53], "ac": 45, "www": [45, 96, 97, 114, 116, 271], "org": [45, 58, 96, 97, 116, 146, 198], "softwar": [45, 96, 213, 231, 271], "autoconf": 45, "60": [45, 53], "html_node": 45, "configure_002eac": 45, "_": [45, 74, 116, 147, 151, 156, 176, 182, 208, 221, 255], "cstdlib": [45, 53], "exit_success": [45, 53, 55, 240, 242], "ac_prog_cxx": 45, "pkg_check_modul": 45, "ac_init": 45, "stringformatt": 45, "am_init_automak": 45, "wall": 45, "foreign": 45, "ac_config_srcdir": 45, "ac_config_fil": 45, "ac_output": 45, "automake_opt": 45, "subdir": [45, 114, 196], "aclocal_amflag": 45, "aclocal_flag": 45, "bin_program": 45, "string_formatter_sourc": 45, "string_formatter_cppflag": 45, "fmt_cflag": 45, "string_formatter_ldadd": 45, "fmt_lib": 45, "automak": 45, "pkgconf": 45, "vari": [45, 58, 74, 80], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 205], "conanbuildenv": [45, 193, 256, 262], "conanrun": [45, 53, 132, 138, 147, 185, 192, 194, 242, 259, 262], "conanrunenv": [45, 194, 262], "deactivate_conanbuild": [45, 193, 241, 244, 245, 262], "deactivate_conanrun": [45, 242, 262, 263], "_fmt": 45, "run_exampl": 45, "u": [45, 70, 73, 83, 86, 93, 95, 96, 98, 102, 111, 120, 244, 252], "ldflag": [45, 116, 132, 146, 147, 204, 205, 217, 223], "pkg_config_path": [45, 205, 207, 217], "m4": 45, "second": [45, 56, 79, 85, 114, 130, 146, 181, 198, 249, 256], "cmake_ex": [47, 79, 105], "foo": [47, 48, 49, 87, 114, 116, 129, 187, 188, 192, 196, 205, 207, 223], "correspond": [47, 63, 116, 188, 193, 194, 205, 208, 219, 242, 249, 251], "binarydir": 47, "sinc": [47, 48, 63, 96, 203, 231, 238, 261, 262, 263, 268], "everytim": [47, 48, 241, 261, 262, 263], "multi": [47, 48, 103, 132, 157, 181, 184, 185, 187, 221, 242, 244, 255, 261, 263, 265], "did": [47, 84, 175, 241, 242, 245, 247, 250, 252, 263, 270], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 188], "displaynam": 48, "buildpreset": [48, 188], "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 77, 120], "appconan": 49, "myvar1": [49, 147, 191], "my_user_var1": 49, "myvar": [49, 116, 132, 147, 175, 188, 191, 217, 256], "myprofil": [49, 98, 106, 147], "profile_dir": [49, 147], "evalu": [49, 78, 97, 98, 100, 102, 106, 114, 116, 125, 127, 133, 139, 146, 150, 166, 244, 267], "myvalue1": [49, 191], "system_nam": [49, 85, 146, 188], "simplest": [51, 118, 252, 257, 270], "hellorecip": [51, 56, 247, 248, 249, 250, 251, 252, 255, 258, 262, 268], "friend": [51, 248], "rule": [51, 78, 84, 114, 115, 116, 131, 150, 152, 153, 205, 208, 211, 264, 266, 269], "ifdef": [51, 242, 247, 258, 268], "ndebug": [51, 205, 242, 247, 258, 268], "hello_patch": 51, "conan_data": [51, 56, 125, 127, 200, 252], "complex": [51, 116, 128, 147, 175, 196, 219, 269], "bazeltoolchain": [53, 62, 105, 176, 209, 210], "workspac": [53, 62, 88, 211, 256], "demo": [53, 56, 114], "charg": [53, 130], "bzl": [53, 62, 211], "load_conan_depend": [53, 211], "rules_cc": [53, 211], "cc_binari": 53, "bazeldep": [53, 62, 105, 176, 209], "bazel_layout": [53, 142, 211], "conan_bzl": [53, 62, 210, 212], "franchuti": [53, 91], "bazelrc": [53, 85, 146, 210, 212], "38": [53, 96, 255], "272": 53, "lc": 53, "date": 53, "elaps": 53, "180": [53, 149], "critic": [53, 84, 250, 268], "68": [53, 95, 99], "sandbox": 53, "total": [53, 98, 142, 146, 149, 192, 248, 254], "simple_meson_project": 55, "stdlib": [55, 149, 188, 205, 240, 242], "stdio": [55, 240], "buffer_in": [55, 240], "256": [55, 198, 240], "mit": [55, 70, 105, 116, 128, 235, 240, 268], "easili": [55, 56, 73, 80, 114, 118, 119, 132, 136, 150, 157, 188, 189, 240, 248, 270, 271], "buffer_out": [55, 240], "z_stream": [55, 240], "zalloc": [55, 240], "z_null": [55, 240], "zfree": [55, 240], "opaqu": [55, 240], "avail_in": [55, 240], "uint": [55, 240], "strlen": [55, 240], "bytef": [55, 240], "avail_out": [55, 240], "sizeof": [55, 240], "next_out": [55, 240], "deflateend": [55, 240], "printf": [55, 240, 242], "size": [55, 192, 240, 242, 244, 245, 264], "lu": [55, 240], "conan_meson_": 55, "ini": [55, 67, 216, 240], "conan_meson_n": [55, 216], "233": [55, 240, 242, 244, 245], "147": [55, 240, 242, 244, 245], "pragmat": 56, "someon": [56, 267], "coordin": [56, 136, 196, 227], "who": [56, 269], "tri": [56, 95, 160, 240, 243], "capture_scm": 56, "update_conandata": [56, 195], "scm_url": 56, "scm_commit": 56, "get_url_and_commit": [56, 227], "checkout": [56, 58, 73, 74, 227, 247, 248, 251, 252, 258, 268], "myfold": [56, 98, 196], "m": [56, 58, 85, 87, 99, 108, 112, 146, 185, 193, 194, 207, 220, 221, 224, 248, 254, 270], "wip": 56, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 56, "buildabl": 56, "techniqu": 56, "imposs": [56, 79, 80, 147, 266, 267], "squash": 56, "19": [56, 73, 99, 149, 250, 255], "xdf": [56, 261], "gitignor": [56, 227], "anywai": [56, 116], "encod": [56, 150, 196, 222, 268], "password": [56, 107, 114, 145, 150, 151, 198, 236], "repeat": [56, 70, 116, 186, 193, 194, 255, 264], "consequ": 56, "orthogon": [56, 152, 158, 271], "ssh": [56, 150], "actor": 56, "ubuntu": [56, 70, 149, 231, 241], "v3": [56, 149, 245], "secret": [56, 114, 150, 151], "ssh_private_kei": 56, "v4": [56, 149], "webfactori": 56, "v0": [56, 237], "privat": [56, 70, 73, 74, 114, 128, 132, 146, 150, 175, 176, 235, 236, 237, 250, 258], "care": [56, 80], "receiv": [56, 73, 80, 100, 120, 154, 155, 158, 159, 160, 189, 217, 227, 250, 256, 264, 269], "riski": 56, "disclos": 56, "welcom": 57, "decentr": 57, "blog": [57, 63, 72], "social": 57, "mail": 57, "tracker": [57, 70], "question": [57, 70], "tabl": 57, "introduct": [57, 59, 103, 133, 143, 152, 232, 236, 239, 247, 255, 267, 271], "devop": 57, "clion": [57, 59, 188], "jfrog": [57, 59, 70, 236], "cheat": [57, 71], "sheet": [57, 71], "faq": [57, 70, 71, 116, 268], "video": [57, 70, 71, 266], "changelog": 57, "solari": [58, 70, 231], "suno": [58, 70, 149], "modern": [58, 73, 127, 200, 258, 271], "carefulli": 58, "sudo": [58, 85, 116, 132, 146, 231], "virtualenv": [58, 85, 146, 192, 193, 194, 245], "virtualenvwrapp": 58, "readthedoc": 58, "en": [58, 73, 196, 271], "venv": 58, "restart": [58, 63], "logout": [58, 82], "termin": [58, 70, 85, 99, 146, 154], "upgrad": [58, 187, 266, 271], "inconsist": 58, "somehow": 58, "userhom": 58, "attempt": [58, 63, 74, 85, 127, 136, 146, 149, 198], "yield": 58, "xyz": 58, "mark": [58, 63, 139], "interfer": 58, "pep": 58, "668": 58, "isol": [58, 74, 262, 267, 269], "isn": [58, 63], "debian": [58, 70, 149, 198, 231], "ensurepath": 58, "number": [58, 65, 70, 85, 131, 146, 149, 183, 186, 198, 200, 219, 220, 231, 254, 255, 269, 270, 271], "gatekeep": 58, "quarantin": 58, "browser": 58, "curl": [58, 63], "wget": 58, "util": [58, 63, 73, 81, 89, 116, 136, 179, 192, 196, 203, 231, 241, 257], "interpret": [58, 146, 175, 241], "conan_src": 58, "develop2": 58, "beta": [58, 116], "matter": [58, 98, 140, 146, 151, 201, 255, 266], "seamless": 59, "shelf": [59, 64, 156], "though": [59, 86, 99, 114, 116, 130, 146, 237, 243, 269], "yet": [59, 63, 78, 91, 95, 96, 127, 129, 155, 166, 204, 251], "resum": 59, "enhanc": 59, "autotoolsdep": [61, 176, 202], "wrapper": [61, 62, 67, 68, 69, 76, 141, 152, 179, 180, 185, 187, 198, 203, 210, 220, 227, 231, 250], "jetbrain": 63, "marketplac": 63, "higher": [63, 80, 98, 132, 133, 141, 145, 267, 269], "brows": 63, "conan_provid": 63, "cmake_project_top_level_includ": 63, "bear": [63, 248], "mind": [63, 240, 248, 259], "24": [63, 98, 147, 149, 203, 237, 255], "button": [63, 236], "appear": [63, 155, 157, 236, 262], "bottom": 63, "toolbar": 63, "wheel": 63, "checkbox": 63, "sequenti": [63, 70], "uncheck": 63, "haven": [63, 78, 251, 261, 264], "disappear": 63, "libcurl": 63, "imag": [63, 70, 81, 97, 105, 132, 236], "internet": [63, 96, 150, 255], "along": [63, 64, 84, 116, 187, 249], "ey": 63, "icon": 63, "snippet": 63, "project_nam": [63, 187, 240, 245], "cmake_cxx_standard": [63, 188], "reload": [63, 114], "recollect": [65, 136], "down": [65, 78, 79, 248, 254, 267, 268], "segment": 65, "histori": 65, "servic": [65, 234], "offer": [65, 116, 147], "dedic": [65, 70, 86, 107, 112, 120, 244, 268], "sf": [65, 85], "art": 65, "tf": [65, 79, 85, 86, 90, 248, 249, 257], "create_releas": 65, "mybuildname_releas": 65, "my_artifactori": 65, "mybuildname_aggreg": 65, "readme_build_info": 65, "md": [65, 116, 125, 126, 222, 262, 271], "bsd": 66, "maketoolchain": 66, "prop": [68, 127, 187, 221, 222], "myproject": [68, 220], "xcodebuild": [69, 176, 178, 181], "xcodetoolchain": [69, 176, 178, 181], "xcodeproj": [69, 180], "mobil": 70, "metal": 70, "scon": [70, 76, 176], "acceler": 70, "matur": [70, 116], "polici": [70, 73, 116, 175, 187, 188, 255, 264], "creator": [70, 73, 82, 106, 155, 243], "thousand": 70, "compani": [70, 116, 158, 235, 236], "high": [70, 104, 126, 198], "consol": [70, 141, 217, 227, 242], "logic": [70, 74, 117, 122, 123, 127, 131, 136, 149, 153, 156, 181, 182, 188, 214, 244, 264, 267, 269], "creation": [70, 74, 117, 149, 158, 227, 243], "webui": [70, 236], "protocol": [70, 116], "ldap": [70, 114], "topologi": 70, "conan_serv": [70, 114, 237], "boost": [70, 132, 142, 146, 154, 187], "poco": [70, 127, 136, 142], "signific": 70, "truth": [70, 75], "redhat": 70, "archlinux": 70, "raspbian": [70, 231], "desktop": 70, "likewis": [70, 120, 123, 131, 132, 136, 267, 269, 270], "runtim": [70, 116, 120, 132, 147, 149, 160, 191, 194, 203, 205, 217, 219, 222, 223, 242, 259], "onward": 70, "goal": [70, 119, 131, 138], "evolv": [70, 149, 175, 243, 265], "backward": 70, "incompat": [70, 120, 149, 175, 261], "disrupt": [70, 267], "label": [70, 91, 96, 97, 210, 211, 222], "preview": [70, 99, 121, 144, 153, 157, 159, 187, 196, 264], "year": [70, 271], "life": [70, 270], "eol": 70, "tomtom": 70, "audi": 70, "rti": 70, "continent": 70, "plex": 70, "electrolux": 70, "merced": 70, "benz": 70, "amaz": 70, "5k": 70, "star": 70, "count": 70, "300": 70, "cpplang": [70, 73], "slack": [70, 73], "discuss": [70, 166], "discord": 70, "plai": [70, 116, 183], "exercis": 70, "narr": 70, "explan": [70, 77, 95, 102, 116, 131, 149], "conduct": 70, "thread": [70, 85, 146, 149], "bad": [70, 136, 217, 252, 268], "confer": [70, 75], "talk": [70, 75], "evolut": [70, 267], "troubleshoot": 71, "concept": [72, 79, 239, 249, 263, 265, 267], "handi": [72, 116, 186, 252], "pdf": 72, "png": [72, 97, 105], "post": [72, 152, 158, 257], "goe": [72, 267], "behind": [73, 114], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [73, 99, 250, 262], "gnu11": [73, 149, 242, 250], "precompil": [73, 84, 98, 116, 130, 132, 211, 232, 255], "mayb": [73, 187, 249, 257], "influenc": [73, 242], "overcom": 73, "nest": [73, 196, 261], "agre": 73, "spell": [73, 149], "submit": [73, 127, 234], "Such": [73, 74, 243, 271], "httpconnect": 73, "debuglevel": 73, "netrc": 73, "honor": 73, "crlf": [73, 74, 268], "lf": [73, 268], "gitattribut": 73, "gitconfig": 73, "editor": 73, "notepad": 73, "playground": 74, "colleagu": 74, "kept": 74, "kind": [74, 103, 114, 125, 126, 149, 150, 151, 158, 236, 255, 269], "unit": [74, 118, 131, 138, 248, 250, 259], "among": [74, 78, 116, 130, 132, 149, 196, 222, 243, 244], "convert": [74, 105, 132, 179, 201, 249, 257], "reduc": [74, 137], "flat": [74, 175, 196], "strictli": [74, 90, 116, 120, 132, 205, 244, 250, 266], "extrem": [74, 267, 269], "complic": [74, 133], "workaround": [74, 133, 266], "Its": [74, 105, 116, 133, 231], "whenev": [74, 116, 125, 133, 136, 147, 183, 248], "abus": [74, 128, 256], "ninja": [74, 80, 85, 98, 104, 120, 127, 141, 146, 185, 188, 217, 245, 256], "entrant": 74, "undefin": [74, 80, 101, 103, 160, 196, 250, 252], "indirect": [74, 133], "reserv": [74, 80, 115], "namespac": [74, 187, 203, 205, 248], "_conan": [74, 114, 115], "sens": [74, 90, 101, 123, 134, 147, 149, 227, 242, 249], "rewritten": 74, "checksum": [74, 81, 84, 116, 176, 195, 198, 268], "educ": 75, "outdat": 75, "accu": 75, "diego": 75, "rodriguez": 75, "losada": 75, "fall": [78, 270], "ill": 78, "form": [78, 84, 87, 95, 99, 105, 108, 112, 114, 116, 120, 125, 126, 132, 136, 138, 231, 243, 244, 250, 268, 269], "taken": [78, 130, 149, 175, 188], "eras": [78, 131], "decid": [78, 114, 116, 120, 131, 134, 135, 244, 248, 266, 268, 269], "del": [78, 122, 131, 140, 249, 250, 252, 256], "gcc5": 78, "lost": 78, "default_xxx": 78, "default_build_mod": [78, 85, 146], "default_embed_mod": [78, 85, 146], "full_mod": [78, 79, 85, 116, 146, 271], "default_non_embed_mod": [78, 85, 146], "minor_mod": [78, 79, 85, 116, 133, 146, 175, 271], "default_python_mod": [78, 85, 146, 175], "default_unknown_mod": [78, 85, 146], "semver_mod": [78, 85, 116, 146], "confus": [78, 269], "safeti": 78, "emb": 78, "package_id_xxxx_mod": 78, "package_id_embed_mod": [78, 116], "package_id_non_embed_mod": [78, 116], "package_id_unknown_mod": [78, 116], "patch_mod": [78, 116, 175], "package_id_": 78, "non_emb": 78, "_mode": 78, "package_id_mod": [78, 91, 116, 249, 271], "differenti": [78, 149, 241], "expand": [78, 81, 123, 131, 144], "major_mod": [78, 116], "inlin": [79, 81, 254], "pure": [79, 132, 182, 188, 205, 212, 217, 222, 223, 255], "linker": [79, 85, 96, 132, 146, 182, 188, 203, 205, 212, 217, 222, 223, 241, 242], "8879e931d726a8aad7f372e28470faa1": [79, 81], "09": [79, 81, 99, 243], "52": [79, 81], "54": [79, 81], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [79, 81], "z": [79, 80, 81, 95, 116, 175, 206, 250], "quickli": [79, 90, 255], "632e236936211ac2293ec33339ce582b": 79, "34": [79, 254, 268], "3ca530d20914cf632eb00efbccc564da48190314": 79, "d125304fb1fb088d5b92d4f8135f4dff": 79, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": 79, "bump": [79, 175, 243, 271], "moon": [79, 155], "1c90e8b8306c359b103da31faeee824c": 79, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 79, "rebuilt": [79, 266, 268], "wil": 79, "49": [79, 99], "embed_mod": 79, "subset": [80, 123, 131, 149, 188], "new_subset": 80, "subvalue1": 80, "subvalue2": 80, "new_root_set": 80, "value1": [80, 116, 147], "value2": [80, 116, 147], "implictli": 80, "explicilti": 80, "implicitli": [80, 116, 149, 175], "build_test": [80, 86, 116, 188, 248], "option2": [80, 116], "option1": [80, 116], "wherebi": 80, "therebi": 80, "comment": [80, 99, 105, 144, 149, 153, 160, 187, 259, 266], "tune": [80, 250], "realli": [80, 86, 123, 149, 261, 266, 270], "retri": [80, 85, 145, 146, 196, 198], "spirit": 80, "myconf": [80, 116, 129, 131, 132, 146, 147], "myitem": [80, 131], "x64": [80, 129, 149, 220], "settings_build": [80, 83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 116, 127, 256], "outcom": [80, 212], "irrelev": [80, 142], "reflect": [80, 179, 243], "97d5730b529b4224045fe7090592d4c1": [81, 99], "08": [81, 99, 268], "51": [81, 99, 269], "57": [81, 99], "d62dff20d86436b9c58ddc0162499d197be9de1": [81, 99], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [81, 99], "sha1": [81, 197, 198, 241], "cat": [81, 101, 102, 103, 104, 204, 242, 267], "compilerruntim": 81, "dynam": [81, 99, 116, 117, 134, 135, 147, 149, 158, 160, 217, 241, 242, 244, 270, 271], "compilerruntime_typ": 81, "193": [81, 149], "sha1sum": [81, 197], "386": 81, "seen": [81, 177, 243, 266, 270], "worthi": 82, "deployer_fold": [83, 96, 98], "nr": [83, 86, 88, 89, 90, 93, 95, 96, 97, 98, 102, 111], "profile_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111, 166], "profile_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "options_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "settings_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_build": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_host": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "conf_al": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "lockfile_out": [83, 86, 89, 90, 93, 95, 96, 98, 101, 102, 103, 104, 111], "lockfile_overrid": [83, 86, 90, 93, 95, 96, 98, 102, 111], "posit": [83, 84, 85, 86, 87, 88, 89, 90, 93, 95, 96, 97, 98, 99, 100, 102, 105, 107, 108, 109, 110, 111, 112], "vquiet": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "verror": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vwarn": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vnotic": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 141], "vstatu": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vverbos": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "vdebug": [83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113], "disallow": [83, 86, 93, 95, 96, 98, 102, 111], "cascad": [83, 86, 93, 95, 96, 98, 102, 111], "fnmatch": [83, 85, 86, 93, 95, 96, 98, 102, 107, 111, 116, 196], "wildcard": [83, 86, 87, 93, 95, 96, 97, 98, 99, 102, 107, 109, 111, 196], "satisfi": [83, 86, 93, 95, 96, 98, 102, 111, 147, 243], "with_qt": [83, 86, 90, 93, 95, 96, 98, 102, 106, 111], "cdc0d9d0e8f554d3df2388c535137d77": 84, "5cb229164ec1d245": 84, "conanmanifest": [84, 159, 240, 245], "liter": [84, 105, 147], "ident": [84, 116, 131, 175, 238, 242], "1cae77d6250c23b7": 84, "al": 84, "eventu": [84, 187], "extract": [84, 124, 132, 145, 196, 207, 252, 257], "package_queri": [84, 87, 99, 108, 112], "AND": [84, 87, 99, 108, 112, 168], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 84, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 84, "verify_ssl": [85, 148], "target_fold": 85, "origin2": 85, "target2": 85, "submodul": 85, "conan_config": [85, 181, 182], "recurs": [85, 144, 196], "deduc": [85, 116, 186, 192, 194, 198, 199, 223, 270], "verif": [85, 146, 198], "certif": [85, 114, 148, 198], "my_set": 85, "retry_wait": [85, 146, 198], "wait": [85, 146, 198], "gzip": [85, 146, 196], "compresslevel": [85, 146], "cacert_path": [85, 114, 146], "cacert": [85, 114, 146], "clean_system_proxi": [85, 146], "proxi": [85, 114, 146], "discard": [85, 133, 146], "client_cert": [85, 146], "tupl": [85, 116, 128, 146, 147, 196, 198, 227], "cert": [85, 146], "max_retri": [85, 146], "maximum": [85, 114, 116, 146, 183, 220, 250, 258], "no_proxy_match": [85, 146], "timeout": [85, 146], "allow_uppercase_pkg_nam": [85, 146], "temporarili": [85, 146, 147, 151], "uppercas": [85, 146, 151], "default_build_profil": [85, 146, 151], "default_profil": [85, 146, 151], "cmake_android_ndk": [85, 146], "enable_arc": [85, 146, 188], "arc": [85, 146, 188], "enable_bitcod": [85, 146, 188], "bitcod": [85, 146, 188], "enable_vis": [85, 146, 188], "sdk_path": [85, 146, 179, 180, 217], "cross_build": [85, 146, 217, 241, 259], "can_run": [85, 118, 138, 146, 259], "bool": [85, 146, 148, 183, 210, 216, 217, 219], "cuda": [85, 146, 188, 205], "objc": [85, 146, 188, 217], "objcxx": [85, 146], "fortran": [85, 146, 188, 205], "asm": [85, 146, 149, 188, 223], "hip": [85, 146, 188], "ispc": [85, 146, 188], "exelinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_exe_linker_flags_init": [85, 146, 188], "jx": [85, 146], "mp": [85, 146, 188], "linker_script": [85, 146, 188, 205, 212, 217], "sharedlinkflag": [85, 91, 96, 132, 146, 182, 188, 205, 212, 217, 222, 223], "cmake_shared_linker_flags_init": [85, 146, 188], "skip_test": [85, 118, 146, 188, 210, 248, 254], "sysroot": [85, 91, 96, 146, 179, 188, 205, 217], "find_package_prefer_config": [85, 146], "cmake_find_package_prefer_config": [85, 146, 188], "presets_environ": [85, 146, 188], "wether": [85, 146], "system_processor": [85, 146, 188], "cmake_system_processor": [85, 146, 188], "system_vers": [85, 146, 188], "cmake_system_vers": [85, 146, 188], "toolchain_fil": [85, 146, 147, 188], "toolset_arch": [85, 146, 188], "toolset": [85, 146, 149, 188, 213, 219], "cmake_generator_toolset": [85, 146, 188], "install_strip": [85, 146, 185], "strip": [85, 146, 179, 185, 196, 200, 217, 227, 241], "launcher": [85, 146, 192, 193, 194, 204, 205, 224, 256, 259], "define_libcxx11_abi": [85, 146], "glibcxx_use_cxx11_abi": [85, 146], "host_triplet": [85, 146], "pkg_config": [85, 146, 207, 208, 217], "bazelrc_path": [85, 146, 210], "rcpath1": [85, 146, 210], "config1": [85, 146, 210], "installation_path": [85, 146, 213, 224], "oneapi": [85, 146, 149, 213], "setvars_arg": [85, 146, 213], "onto": [85, 146], "setvar": [85, 146, 213], "backend": [85, 114, 146, 217], "vs2010": [85, 146, 217], "vs2012": [85, 146], "vs2013": [85, 146], "vs2015": [85, 146, 217], "vs2017": [85, 146, 213, 217], "extra_machine_fil": [85, 146, 216], "bash": [85, 116, 146, 224, 237], "msy": [85, 146, 149, 237], "cygwin": [85, 146, 149], "wsl": [85, 146, 149], "sfu": [85, 146], "2019": [85, 146, 149, 213, 224], "max_cpu_count": [85, 132, 146, 147, 185, 220], "vs_version": [85, 146, 147, 149], "exclude_code_analysi": [85, 146, 221], "suppress": [85, 146, 188], "compile_opt": [85, 116, 132, 146, 222], "sudo_askpass": [85, 146, 231], "yum": [85, 146, 230], "pacman": [85, 146, 230], "choco": [85, 146, 231], "zypper": [85, 146, 230], "pkgutil": [85, 146, 230], "30": [85, 93, 99, 255], "test_fold": [86, 90, 248], "serv": [86, 114, 236, 242], "misus": 86, "mutual": [87, 98, 108, 112], "packagelist": [87, 112], "pgkg": 87, "resid": [88, 106], "my_project": [88, 93, 95, 96, 98, 102], "variou": [89, 133, 149, 262], "sb": 90, "vendor": [90, 150], "this_pkg": 90, "slower": [90, 125], "y": [90, 95, 116, 250], "invalid_build": [91, 96], "homepag": [91, 96, 97, 127], "win_bash_run": 91, "options_descript": 91, "options_definit": [91, 97], "generators_fold": [91, 96, 97, 127, 187, 188, 221], "srcdir": [91, 96, 132], "resdir": [91, 96, 132, 188, 205, 217], "frameworkdir": [91, 96, 132], "framework": [91, 96, 120, 132, 133, 208, 221, 229, 241, 248, 256], "ffa77daf83a57094149707928bdce823": [91, 99], "massiv": [91, 96], "spiffi": [91, 96], "delic": [91, 96], "unobtrus": [91, 96], "unencumb": [91, 96], "patent": [91, 96], "zlib774aa77541f8b": 91, "resolved_rang": 91, "closest": [92, 95], "why": [92, 95, 249, 254, 256], "5c0f3a1a222eebb6bff34980bcd3e024": 93, "be7ccd6109b8a8f9da81fd00ee143a1f5bbd5bbf": 93, "build_arg": 93, "ed8593b3f837c6c9aa766f231c917a5b": 93, "235f6d8c648e7c618d86155a8c3c6efb96d61fa1": 93, "pref": [93, 114, 127], "closest_binari": 95, "dc0e384f0551386cd76dc29cc964c95": 95, "1692672717": [95, 99], "b647c43bfefae3f830561ca202b6cfd935b56205": 95, "package_filt": [96, 155], "df": 96, "dot": [96, 155, 269], "myproject_fold": 96, "binutil": 96, "0dc90586530d3e194d01d17cb70d9461": 96, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 96, "cci": 96, "degrad": 96, "gpl": 96, "assembl": 96, "objcopi": 96, "objdump": 96, "multilib": 96, "target_arch": 96, "target_o": 96, "target_triplet": 96, "with_libquadmath": 96, "binut53bd9b3ee9490": 96, "416618fa04d433c6bd94279ed2e93638": 96, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 96, "866f53e31e2d9b04d49d0bb18606e88": 96, "zlibbcf9063fcc882": 96, "digraph": 96, "vi": 96, "j": [96, 116, 149, 216], "css": 96, "cloudfar": 96, "cdnj": 96, "cloudflar": 96, "ajax": 96, "info_graph": 96, "basi": [96, 105], "neon": 97, "msa": 97, "sse": 97, "vsx": 97, "api_prefix": 97, "graphic": 97, "redirect": [97, 99, 113, 114, 141, 151, 185, 261, 271], "deployer_packag": 98, "recomput": 98, "fallback": [98, 180, 271], "myconan": [98, 116], "bzip2": [98, 127, 193, 194, 221, 224], "compound": 98, "left": [98, 114, 250, 263, 269], "highest": 98, "myprofile3": 98, "myprofile1": [98, 147], "myprofile2": [98, 147], "minim": [98, 105, 183, 259], "immedi": [98, 132, 138, 146, 147, 221, 259], "uniqu": [98, 116, 118, 131, 146, 242, 249, 254, 268], "strict": [98, 101, 103, 147, 196, 267, 271], "newpkg": 98, "gb": 99, "graph_binari": 99, "gr": 99, "graph_recip": 99, "5d": [99, 108], "dai": [99, 108], "4w": [99, 108, 264], "hour": [99, 108], "26": 99, "mycompani": 99, "20": [99, 147, 149, 160, 193, 247, 250], "lite": 99, "shortest": 99, "46": 99, "53": [99, 113], "placehold": [99, 112, 191, 192, 250], "8b23adc7acd6f1d6e220338a78e3a19": 99, "ce3665ce19f82598aa0f7ac0b71ee966": 99, "31ee767cb2828e539c42913a471e821a": 99, "05": [99, 243], "39": [99, 243, 255], "d77ee68739fcbe5bf37b8a4690eea6ea": 99, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 99, "implicit": [99, 200, 267], "e4e1703f72ed07c15d73a555ec3a2fa1": 99, "07": [99, 113], "04": 99, "45": [99, 243, 254, 269], "fdb823f07bc228621617c6397210a5c6c4c8807b": 99, "4834a9b0d050d7cf58c3ab391fe32e25": 99, "33": [99, 254, 255], "31": [99, 120, 250, 268], "6a6451bbfcb0e591333827e9784d7dfa": 99, "29": [99, 243, 268], "67bb089d9d968cbc4ef69e657a03de84": 99, "47": [99, 243], "36": [99, 255], "5e196dbea832f1efee1e70e058a7eead": 99, "26475a416fa5b61cb962041623748d73": 99, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [99, 250], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 99, "human": 99, "zli": 99, "b58eeddfe2fd25ac3a105f72836b3360": 99, "01": [99, 203, 268], "d9b1e9044ee265092e81db7028ae10e0": 99, "192": [99, 114, 149, 160, 219], "denomin": 99, "deviat": 99, "mypytool": 101, "sort": [101, 103, 104, 132, 159, 189, 196, 267, 271], "manipul": [101, 103, 136, 196, 257], "moreov": 101, "scratch": [102, 260, 261], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 102, "1675126491": 102, "773": 102, "5f184bc602682bcea668356d75e7563b": 102, "1676913225": 102, "027": [102, 271], "733": 102, "e747928f85b03f48aaf227ff897d9634": 102, "1675126490": 102, "952": 102, "lock1": 103, "lock2": 103, "consolid": 103, "diverg": 103, "simplic": 103, "pkgb": 103, "app1": 103, "pkgawin": 103, "pkganix": 103, "gone": [103, 248, 259], "nix": [103, 196], "math": [104, 105, 133, 196, 266], "85d927a4a067a531b1a9c7619522c015": 104, "1702683583": 104, "3411012": 104, "fd2b006646a54397c16a1478ac4111ac": 104, "3544693": 104, "mytool": [104, 211], "othertool": 104, "downgrad": 104, "unlock": 104, "meson_lib": 105, "meson_ex": 105, "msbuild_lib": 105, "msbuild_ex": 105, "bazel_lib": 105, "bazel_ex": 105, "autotools_lib": 105, "autotools_ex": 105, "aid": 105, "boilerpl": [105, 116], "requires1": 105, "requires2": 105, "tool_requires1": 105, "tool_requires2": 105, "magic": 105, "mygam": 105, "mytempl": 105, "full_path": 105, "conan_vers": [105, 146], "parametr": 105, "brack": 105, "not_templ": 105, "image2": 105, "guess": [106, 147, 170, 240], "Be": [106, 122, 123, 144, 227, 249], "carlosz": 106, "ios_bas": 106, "ios_simul": 106, "clang_15": 106, "package_set": 106, "build_env": 106, "registri": [107, 236], "usernam": [107, 114, 147, 151], "insert": 107, "conan_login_": 107, "expos": [107, 114, 127, 147, 227], "new_nam": 107, "keyword": [108, 154, 200, 203], "intact": 108, "smell": [108, 268], "manifest": [112, 116, 258], "sys_vers": 113, "1316": 113, "mainli": [114, 237], "pro": [114, 235, 237], "conan_server_hom": 114, "server_dir": 114, "server_directori": 114, "prior": [114, 158], "hot": 114, "relaunch": 114, "jwt_secret": 114, "ijkhyoiouinmxcrtytrr": 114, "jwt_expire_minut": 114, "120": 114, "ssl_enabl": 114, "port": [114, 237], "9300": [114, 237], "public_port": 114, "host_nam": 114, "localhost": [114, 198, 236, 237], "authorize_timeout": 114, "1800": 114, "disk_storage_path": 114, "disk_authorize_timeout": 114, "updown_secret": 114, "hjhjujkjkjkjkluyyuuyhj": 114, "write_permiss": 114, "lasot": 114, "default_us": 114, "default_user2": 114, "read_permiss": 114, "jwt": 114, "random": [114, 187], "safe": [114, 116, 136, 183], "anytim": 114, "amount": 114, "ip": [114, 198], "domain": 114, "168": 114, "docker": [114, 236], "9999": 114, "p9300": 114, "traffic": 114, "somedir": [114, 207], "crt": 114, "pem": [114, 146], "reject": 114, "regist": 114, "plain": [114, 116], "premis": 114, "firewal": 114, "trust": 114, "sysadmin": 114, "restrict": [114, 116, 149], "comma": [114, 116], "allowed_user1": 114, "allowed_user2": 114, "packagea": 114, "john": [114, 116], "peter": 114, "custom_authent": 114, "authenticator_nam": 114, "collabor": [114, 163], "htpasswd": 114, "schiffner": 114, "uilianri": 114, "my_authent": 114, "get_class": 114, "myauthent": 114, "valid_us": 114, "plain_password": 114, "factori": 114, "custom_author": 114, "authorizer_nam": 114, "my_author": 114, "authenticationexcept": 114, "forbiddenexcept": 114, "myauthor": 114, "_check_conan": 114, "deni": [114, 196], "_check_packag": 114, "_check": 114, "check_read_conan": 114, "check_write_conan": 114, "check_delete_conan": 114, "check_read_packag": 114, "check_write_packag": 114, "check_delete_packag": 114, "conform": 114, "check_": 114, "conanfilerefer": 114, "meanwhil": 114, "_packag": 114, "packagerefer": 114, "443": 114, "server_nam": 114, "myservernam": 114, "mydomain": 114, "proxy_pass": 114, "ssl_certif": 114, "ssl_certificate_kei": 114, "mod_wsgi": 114, "apache2": 114, "site": [114, 116], "0_conan": 114, "virtualhost": 114, "80": 114, "wsgiscriptalia": 114, "dist": 114, "server_launch": 114, "wsgicallableobject": 114, "wsgipassauthor": 114, "grant": 114, "srv": 114, "helloconan": [115, 116, 179, 203, 255], "varieti": 115, "member": [115, 116, 127, 175], "_my_data": 115, "_my_help": 115, "lowercas": [116, 250], "101": 116, "charact": [116, 151, 191, 192, 250], "shorter": [116, 192], "z0": 116, "9_": 116, "alphanumer": [116, 250], "ing": 116, "pkgname": [116, 221, 243], "pre1": [116, 250, 269], "build2": [116, 250], "pkgversion": 116, "programmat": 116, "mychannel": 116, "short": [116, 250], "incred": 116, "spdx": 116, "peopl": 116, "smith": 116, "protocinstallerconan": 116, "protoc_instal": 116, "buffer": 116, "rpc": 116, "overview": 116, "eigenconan": 116, "eigen": 116, "tuxfamili": 116, "mylibconan": 116, "otherlib": 116, "otherus": 116, "bracket": [116, 269], "alpha": [116, 269], "tool_a": 116, "tool_b": 116, "gtest": [116, 120, 127, 133, 142, 221, 241, 248, 254, 259], "downstream": [116, 120, 132, 133, 175, 187, 266], "other_test_tool": 116, "pyreq": [116, 128, 156, 175], "myconanfilebas": [116, 128], "utilsbas": 116, "tmp": [116, 188, 196, 248, 249, 251, 252, 254, 257], "got": [116, 256, 262, 267], "shutil": [116, 136], "emul": [116, 149, 222, 267], "mistak": 116, "yaml": 116, "mylib": [116, 120, 147, 188, 205, 271], "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 116, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 116, "opt": [116, 192, 212, 213, 269, 271], "7zip": [116, 142, 147], "7z": 116, "determin": [116, 133, 147, 191, 242], "gnu20": [116, 149], "get_saf": [116, 122, 123, 214, 244], "compiler_vers": [116, 147, 183], "feasibl": [116, 132], "is_android": 116, "option3": 116, "option4": 116, "comparison": [116, 235, 269], "encapsul": 116, "zwave": 116, "reference_pattern": 116, "option_nam": 116, "condition": [116, 118, 119, 123, 127, 136, 221, 222, 244, 246, 251, 258], "otherpkg": 116, "some_opt": 116, "overridden": [116, 175, 198], "particularli": [116, 129, 131], "explanatori": 116, "reference_conanfile_methods_package_id": 116, "semver": [116, 228, 269, 271], "modif": [116, 131, 149, 191, 243, 268, 271], "unrelated_mod": 116, "ever": 116, "pocotimerconan": 116, "foorecip": 116, "myrecip": 116, "methodconan": 116, "export_fold": [116, 125], "codebas": 116, "androidndk": [116, 132], "define_path": [116, 129, 132, 191], "fill": [116, 158, 174, 207], "append_path": [116, 132, 191], "runtime_var": 116, "flag3": [116, 132], "flag1": [116, 132, 146, 147, 212], "flag2": [116, 132, 146, 147], "expandattributedsourc": [116, 132], "unset": [116, 132, 146, 147, 149, 191, 204], "flag0": [116, 132], "pop": [116, 217, 242], "friendli": 116, "emit": 116, "taskflow": 116, "odr": [116, 133], "violat": [116, 133], "libressl": 116, "boringssl": 116, "libav": 116, "ffmpeg": [116, 154], "mariadb": 116, "mysql": 116, "libjpeg": 116, "9d": 116, "turbo": 116, "libjpegturbo": 116, "openbla": 116, "cbla": 116, "lapack": 116, "redund": 116, "myconsum": [116, 256], "my_android_ndk": 116, "var1": [116, 147], "green": 116, "neutral": 116, "white": [116, 151], "yellow": 116, "red": 116, "three": [116, 129, 146, 182, 191, 222, 231], "distinct": 116, "tend": 116, "auto_shared_fp": 116, "auto_header_onli": 116, "parenthes": 116, "validate_build": 117, "mybuildsystem": 118, "interrupt": 118, "lift": 118, "info_build": 119, "myvalu": [119, 188, 191, 217], "fullsourc": 119, "theori": [120, 244], "parameter": 120, "ran": [120, 137, 157, 248, 254], "nutshel": [120, 205], "mylibrecip": 120, "myapprecip": 120, "myapp": [120, 271], "gettext": 120, "libgettext": 120, "constrain": [122, 249], "sse2": 122, "with_sse2": 122, "elif": 123, "deploy_fold": [124, 167, 191], "destinaton": 124, "mor": 124, "destin": [125, 126, 196, 198, 221, 250], "intrins": 125, "myfil": [126, 175, 196, 271], "export_conandata_patch": [126, 195], "conanvcvar": [127, 188, 217, 222, 223, 224], "repetit": [127, 132], "mygener": [127, 156], "mygen": [127, 156], "dylib": [127, 132, 179, 196, 203, 242, 249, 257], "dll": [127, 130, 132, 192, 242, 257], "xxxdir": 127, "indirectli": 127, "buildenv_info": [127, 129, 191, 193, 251, 256], "runenv_info": [127, 129, 191, 193, 194, 251], "is_build_context": 127, "fashion": 127, "pcre": 127, "44": 127, "expat": 127, "35": [127, 255, 268], "1k": 127, "criteria": 127, "direct_host": 127, "direct_build": 127, "heavili": 127, "mycomp": 127, "mylicens": 128, "overwritten": [128, 132, 136], "baseconan": 128, "derivedconan": 128, "deriv": [128, 136], "uncondition": 128, "datafil": 128, "my": [128, 129, 132, 147, 149, 158, 175, 198, 205, 217], "awesom": 128, "me": 128, "word": [128, 149, 268], "__init__": [128, 156, 158, 180, 223], "constructor": [128, 189, 200, 203, 205, 218, 227, 231], "subdirectori": 129, "classic": [129, 149, 213, 253], "hopefulli": 129, "release64": 129, "stub": 129, "my_includ": 129, "sayconan": [129, 263], "mydata_path": 129, "obvious": 129, "mydata_path2": 129, "my_conf_fold": 129, "creating_packages_package_method": 130, "relax": [131, 267], "assumpt": [131, 244, 267], "couldn": 131, "disadvantag": [131, 270], "lose": 131, "although": [131, 192, 259], "predict": 131, "obj": 132, "preprocessor": [132, 182, 188, 205, 217, 222, 223], "property_nam": 132, "property_valu": 132, "xml": [132, 222], "pkg_config_nam": [132, 208], "zmq": 132, "zmq_static": 132, "ws2_32": 132, "get_properti": 132, "crypto": [132, 208, 211], "define_crypto": 132, "headers_ssl": 132, "obj_ext": 132, "prepend_path": [132, 191], "mypath": [132, 191, 256], "myarmarch": 132, "otherarch": 132, "my_android_arch": 132, "myrunpath": 132, "settin": 132, "mypkghom": 132, "ti": 132, "former": [132, 267], "virtualrunenv": [132, 147, 176, 188, 190, 191, 192, 242, 251, 256], "transmit": [132, 271], "exceptionhandl": [132, 146], "async": [132, 146, 200], "bundl": [132, 236], "android_ndk": 132, "albeit": 132, "switch": [132, 160, 181, 221, 222], "adequ": 132, "claus": 133, "catch2": [133, 248], "seem": 133, "ambigu": [133, 271], "priorit": [134, 135, 189, 196, 266, 267], "tarbal": [136, 227, 235, 268], "check_sha1": [136, 195], "pococonan": 136, "zip_nam": 136, "pocoproject": 136, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 136, "unlink": 136, "bypass": 136, "appar": 136, "problemat": [136, 267], "destroi": [136, 149, 160], "lead": [136, 244], "frozen": 136, "realiz": [137, 243, 267], "gtk": 137, "undesir": 137, "libgtk": 137, "pkg1": [137, 187, 231], "pkg2": [137, 187, 231], "prove": [138, 259], "conaninvalidconfigur": [139, 140, 183, 244, 266], "succe": [139, 231], "cfc18fcc7a50ead278a7c1820be74e56": 139, "warn_tag": 141, "custom_tag": 141, "ignore_error": 141, "appropri": 141, "unnot": 141, "ninja_stdout": 141, "w": [141, 159], "stringio": 141, "pin": [142, 243, 268, 270], "revision1": 142, "70": 142, "revision2": 142, "00": [142, 203, 268], "inde": 142, "vs_layout": [142, 176, 214, 218], "aka": [143, 179], "preced": [144, 176, 188, 191, 205, 208], "project1": [144, 221], "project2": [144, 221], "unauthor": 145, "ask": [145, 151], "conan_login_usernam": [145, 151], "conan_login_username_": [145, 151], "conan_password": [145, 151], "conan_password_": [145, 151], "admin": [145, 236], "emptiv": 145, "getenv": [145, 147, 150, 192], "mytk": [145, 150], "mytoken": [145, 150], "briefli": [146, 233, 249, 250], "whatev": [146, 147, 155, 213], "confvar": [146, 147], "hint": [146, 147], "yyi": [146, 147], "ins": 146, "zzz": [146, 147], "everywher": 146, "discret": 146, "establish": 146, "packagenam": [146, 187], "orgnam": 146, "cpu_count": 146, "myconf1": 146, "detect_o": [146, 147], "myconf2": 146, "detect_arch": [146, 147], "conan_home_fold": 146, "eval": 146, "integ": [146, 228], "unmodifi": 146, "rid": [146, 147], "f1": 146, "f2": 146, "f0": 146, "pai": [146, 257], "tl": [146, 148, 198], "constitut": 146, "implic": [146, 249], "tool1": 147, "tool4": 147, "environmentvar1": 147, "123": [147, 175], "dlib": 147, "ab": 147, "relpath": 147, "my_pkg_opt": 147, "myvalue12": 147, "mypath1": [147, 191], "path11": 147, "path12": 147, "comp": [147, 208], "chanel": 147, "ration": 147, "kitwar": 147, "3488ec5c2829b44387152a6c4b013767": 147, "20496b332552131b67fb99bf425f95f64d0d0818": 147, "profile_var": 147, "my_build_typ": 147, "referenc": [147, 187, 198], "loop": 147, "meant": [147, 250, 259], "judici": 147, "compiler_ex": 147, "detect_default_compil": 147, "default_msvc_runtim": 147, "default_compiler_vers": 147, "default_cppstd": 147, "detect_libcxx": 147, "v143": [147, 149], "gnu14": [147, 149, 205, 241], "default_msvc_ide_vers": 147, "digit": [147, 149, 269, 271], "zlib_clang_profil": 147, "my_var": [147, 256], "statement": 147, "gcc_49": 147, "my_remote_nam": 148, "windowsstor": 149, "windowsc": 149, "ios_vers": 149, "iphoneo": [149, 217], "iphonesimul": 149, "watchsimul": 149, "appletvo": 149, "appletvsimul": 149, "xrsimul": 149, "catalyst": 149, "aix": 149, "arduino": 149, "board": 149, "emscripten": 149, "neutrino": 149, "vxwork": 149, "ppc32be": 149, "ppc32": [149, 183, 231], "ppc64le": [149, 231], "ppc64": [149, 183], "armv4": 149, "armv4i": 149, "armv5el": [149, 177], "armv5hf": [149, 177], "armv6": [149, 177], "armv7hf": [149, 177, 231, 241], "armv7k": 149, "armv8_32": 149, "sparc": [149, 183, 188], "sparcv9": [149, 183], "mip": 149, "mips64": 149, "avr": 149, "s390": 149, "s390x": [149, 231], "wasm": 149, "sh4le": 149, "e2k": 149, "v5": 149, "v6": [149, 177], "v7": 149, "xtensalx6": 149, "xtensalx106": 149, "xtensalx7": 149, "sun": 149, "posix": 149, "libcstd": 149, "libstdcxx": 149, "libstlport": 149, "win32": 149, "mingw": [149, 239, 245], "dwarf2": 149, "sjlj": 149, "seh": 149, "98": 149, "gnu23": 149, "170": 149, "190": 149, "191": 149, "v110_xp": 149, "v120_xp": 149, "v140_xp": 149, "v141_xp": 149, "runtime_vers": 149, "v140": 149, "v141": 149, "v142": 149, "2021": [149, 213], "icx": [149, 213], "dpcpp": [149, 213], "03": [149, 243, 268], "gnu03": 149, "gpp": 149, "ne": 149, "accp": 149, "acpp": 149, "ecpp": 149, "mcst": 149, "lcc": 149, "relwithdebinfo": 149, "minsizerel": 149, "hardwar": 149, "microprocessor": 149, "microcontrol": 149, "famili": 149, "2015": 149, "2017": [149, 213, 240, 242, 244, 245], "finer": 149, "1913": 149, "dpc": [149, 213], "suppos": 149, "311": 149, "brief": [149, 236, 239], "arch_build": 149, "arch_target": 149, "powerpc": [149, 231], "endian": 149, "littl": [149, 155], "soft": 149, "float": 149, "swift": 149, "a6": 149, "a6x": 149, "chip": 149, "iphon": 149, "5c": 149, "ipad": 149, "k": 149, "aarch32": 149, "ilp32": 149, "a12": 149, "chipset": 149, "xr": [149, 196], "scalabl": [149, 235, 236], "microsystem": 149, "interlock": 149, "pipelin": [149, 151], "formerli": 149, "atmel": 149, "microchip": 149, "390": 149, "ibm": 149, "javascript": 149, "low": 149, "assembli": 149, "byte": [149, 196], "hitachi": 149, "superh": 149, "2000": 149, "512": 149, "vliw": 149, "2cm": 149, "2c": 149, "moscow": 149, "4c": 149, "8c": 149, "8c1": 149, "1c": 149, "1ck": 149, "8c2": 149, "8cb": 149, "2c3": 149, "12c": 149, "16c": 149, "32c": 149, "xtensa": 149, "lx6": 149, "dpu": 149, "esp32": 149, "esp8266": 149, "lx7": 149, "s2": 149, "s3": 149, "_glibcxx_use_cxx11_abi": [149, 188, 205], "abi": [149, 177, 241], "wise": 149, "cento": [149, 231], "rogu": 149, "wave": 149, "stlport": 149, "apach": 149, "dinkum": 149, "abridg": 149, "rhel6": 149, "cache_vari": 149, "some_centos_flag": 149, "usabl": 149, "anymor": 149, "mycompil": 149, "my_custom_compil": 149, "sync": [149, 200], "tarballnam": 150, "bearer": 150, "mypassword": 150, "hardcod": [150, 259, 269], "difficult": [150, 175, 248, 270], "remote_nam": 151, "challeng": 151, "unauthent": 151, "unattend": 151, "stuck": 151, "autodetect": [151, 188], "tty": 151, "no_color": 151, "conan_color_dark": 151, "scheme": [151, 269, 271], "light": 151, "dark": 151, "mypythoncod": [152, 264], "altogeth": [152, 155, 188], "pre_build": [152, 158], "complement": 152, "qualiti": [152, 158], "facilit": [152, 157], "intercept": 154, "commmand": 154, "startswith": 154, "caller": 154, "heavy_pkg": 154, "qt": 154, "abseil": 154, "_commands_": 155, "cmd_": 155, "your_command_nam": 155, "cmd_hello": 155, "cmd_bye": 155, "topic_nam": 155, "topic1": 155, "topic2": 155, "cmd_command": 155, "output_json": 155, "parser": 155, "hello_moon": 155, "subpars": 155, "act": 155, "narg": 155, "add_reference_arg": 155, "mygroup": 155, "mycommand": 155, "mycommand_mysubcommand": 155, "add_my_common_arg": 155, "chose": 155, "format_graph_html": 155, "format_graph_info": 155, "field_filt": 155, "format_graph_json": 155, "format_graph_dot": 155, "graph_info": 155, "deps_graph": [155, 167], "command_subcommand": 155, "child": 155, "arg1": [155, 185, 213], "arg2": [155, 185, 213], "arg3": 155, "_conanfil": 156, "deps_info": 156, "repeatedli": [157, 271], "my_custom_deploy": 157, "hook_exampl": 158, "pre_export": 158, "field_valu": 158, "getattr": 158, "abort": 158, "hook_": 158, "replace_in_fil": [158, 195, 248], "post_packag": 158, "isdir": 158, "custom_modul": 158, "hook_print": 158, "my_print": 158, "hook_ful": 158, "pre_sourc": 158, "pre_packag": 158, "pre_package_info": 158, "post_package_info": 158, "artifacts_fold": 159, "signature_fold": 159, "conan_packag": [159, 240, 245], "written": [159, 251, 271], "twice": 159, "conan_sourc": 159, "signer": 159, "asc": 159, "listdir": 159, "isfil": 159, "profile_plugin": 160, "ordereddict": [160, 189], "profilesapi": [161, 170], "installapi": [161, 167], "graphapi": [161, 166], "exportapi": [161, 165], "newapi": [161, 169], "uploadapi": [161, 174], "downloadapi": [161, 164], "cache_fold": 162, "global_conf": 163, "settings_yml": 163, "load_root_test_conanfil": 166, "tested_refer": 166, "tested_python_requir": 166, "recipe_consum": 166, "load_graph": 166, "root_nod": 166, "check_upd": 166, "load_root_nod": 166, "analyze_binari": 166, "build_mod": 166, "build_modes_test": 166, "tested_graph": 166, "buildmod": 166, "install_binari": 167, "intal": 167, "install_system_requir": 167, "only_info": 167, "install_sourc": 167, "install_consum": 167, "deploy_packag": 167, "filter_packages_configur": 168, "pkg_configur": 168, "pkgrefer": 168, "pkgconfigur": 168, "get_templ": 169, "template_fold": 169, "get_home_templ": 169, "template_nam": 169, "get_default_host": 170, "get_default_build": 170, "get_profil": 170, "get_path": 170, "sin": 170, "alphabet": [170, 269], "only_en": 171, "check_upstream": 174, "package_list": 174, "enabled_remot": 174, "upload_data": 174, "get_backup_sourc": 174, "234": 175, "mybas": 175, "cool": 175, "super": [175, 205], "pyreq_path": 175, "myfile_path": 175, "mynumb": 175, "gradual": 175, "hierarchi": 175, "is_apple_o": [176, 178], "to_apple_arch": [176, 178], "envvar": [176, 190, 191, 193, 194], "intelcc": 176, "basic_layout": 176, "nmaketoolchain": [176, 218], "sconsdep": 176, "armv5": 177, "lc_id_dylib": [179, 203], "lc_load_dylib": [179, 203], "rpath": [179, 188, 203], "lc_rpath": [179, 203], "outlin": 179, "libnam": 179, "my_execut": 179, "add_rpath": 179, "executable_path": 179, "use_settings_target": 179, "ranlib": 179, "lipo": 179, "codesign": 179, "isysroot": [179, 217], "sdk_platform_path": 179, "sdk_platform_vers": 179, "libtool": 179, "alltarget": 180, "i386": [180, 217], "sdkroot": 180, "ios8": 180, "skd": 180, "conan_libpng": 181, "conan_libpng_libpng": 181, "conan_libpng_libpng_debug_x86_64": 181, "conan_libpng_libpng_release_x86_64": 181, "conan_zlib": [181, 221], "conan_zlib_zlib": 181, "conan_zlib_zlib_debug_x86_64": 181, "conan_zlib_zlib_release_x86_64": 181, "system_header_search_path": 181, "gcc_preprocessor_definit": 181, "other_cflag": 181, "other_cplusplusflag": 181, "framework_search_path": 181, "library_search_path": 181, "other_ldflag": 181, "conan_libpng_debug_x86_64": 181, "package_root_": 181, "releaseshar": [181, 187, 221, 258], "mycustomconfig": [181, 221], "conantoolchain_release_x86_64": 182, "conantoolchain_debug_x86_64": 182, "conantoolchain": [182, 222], "conan_global_flag": 182, "conantoolchain_": [182, 222], "_x86_64": 182, "clang_cxx_librari": 182, "clang_cxx_language_standard": 182, "macosx_deployment_target": 182, "mmacosx": 182, "_cpu_count": 183, "cgroup": 183, "skip_x64_x86": 183, "m1": [183, 217, 259], "gnu_extens": 183, "cppstd_default": 183, "dxxx": 185, "dvar": 185, "build_tool_arg": 185, "barg1": 185, "barg2": 185, "underli": 185, "diagnost": 185, "dcmake_verbose_makefil": 185, "maxcpucount": 185, "cmake_gener": 186, "shared_fals": 186, "shared_tru": 186, "chosen": [186, 213], "cmake_prefix_path": [187, 188], "cmake_module_path": [187, 188], "findxxx": 187, "conandeps_legaci": 187, "cmake_binary_dir": 187, "enumer": 187, "overal": 187, "releasedshar": 187, "my_tool": [187, 208, 211], "collid": [187, 208, 271], "capnproto": [187, 208], "_build": [187, 208], "81": 187, "fakecomp": 187, "cmake_module_file_nam": 187, "cmake_module_target_nam": 187, "dep_nam": 187, "get_cmake_package_nam": 187, "module_mod": 187, "get_find_mod": 187, "cmake_target_alias": 187, "rout": 187, "cmake_set_interface_link_directori": 187, "pragma": 187, "nosonam": 187, "sonam": 187, "cmake_config_version_compat": 187, "samemajorvers": 187, "sameminorvers": 187, "exactvers": 187, "configvers": 187, "myfilenam": [187, 198], "myfooalia": 187, "mycompon": [187, 208, 211], "varcompon": 187, "myfilenameconfig": 187, "findmyfilenam": 187, "zlibconan": 187, "alter": 187, "colon": 187, "new_component_target_nam": 187, "buildir": 187, "popul": [187, 241], "cmake_map_imported_config_": 187, "dcmake_map_imported_config_coverag": 187, "myvar_valu": 188, "mydefin": [188, 217], "mydef_valu": [188, 217], "cmake_path": 188, "cmake_position_independent_cod": 188, "nmake": [188, 189, 223], "easier": [188, 271], "schema": [188, 196, 222], "testpreset": 188, "jon": 188, "mydef": [188, 217], "myconfigdef": 188, "mydebugvalu": 188, "myreleasevalu": 188, "add_definit": 188, "cachevari": 188, "foo2": 188, "ON": [188, 241, 262], "myconfigvar": 188, "sentenc": 188, "extra_cxxflag": [188, 205, 223], "extra_cflag": [188, 205, 223], "extra_sharedlinkflag": 188, "extra_exelinkflag": 188, "clash": 188, "filepath": 188, "mytoolchainpackag": 188, "mytoolchain": 188, "mytoolrequir": 188, "toolchain1": 188, "toolchain2": 188, "yyyi": 188, "ninclud": 188, "generic_system": 188, "cmake_c_compil": 188, "cmake_cxx_compil": 188, "android_system": 188, "android_platform": 188, "android_stl": 188, "android_ndk_path": 188, "apple_system": 188, "cmake_osx_architectur": 188, "cmake_osx_sysroot": 188, "arch_flag": [188, 205], "m32": 188, "m64": 188, "vs_runtim": 188, "cmake_msvc_runtime_librari": 188, "cmake_cxx_extens": 188, "cmake_flags_init": 188, "cmake_xxx_flag": 188, "conan_xxx": 188, "cmake_cxx_flags_init": 188, "conan_cxx_flag": 188, "try_compil": 188, "in_try_compil": 188, "find_path": 188, "cmake_skip_rpath": 188, "skip_rpath": 188, "build_shared_lib": [188, 251, 262], "output_dir": 188, "cmake_install_xxx": 188, "cmake_install_prefix": [188, 257], "cmake_install_bindir": 188, "cmake_install_sbindir": 188, "cmake_install_libexecdir": 188, "cmake_install_libdir": 188, "cmake_install_includedir": 188, "cmake_install_oldincludedir": 188, "cmake_install_datarootdir": 188, "mybin": [188, 205], "myinclud": [188, 205], "myre": [188, 205], "block_nam": 188, "new_tmp": 188, "other_toolset": 188, "generic_block": 188, "methodtyp": 188, "mygenericblock": 188, "helloworld": 188, "myblock": 188, "mynewblock": 188, "64bit": [188, 267], "32bit": [188, 267], "ppc": 188, "r23c": 188, "cmake_c_flags_init": 188, "cmake_xcode_attribute_enable_bitcod": 188, "cmake_xcode_attribute_clang_enable_objc_arc": 188, "cmake_xcode_attribute_gcc_symbols_private_extern": 188, "cmake_sysroot": 188, "cmp0149": 188, "cmake_rc_compil": 188, "cmake_objc_compil": 188, "objcpp": [188, 217], "cmake_objcxx_compil": 188, "cmake_cuda_compil": 188, "cmake_fortran_compil": 188, "cmake_asm_compil": 188, "cmake_hip_compil": 188, "cmake_ispc_compil": 188, "collaps": 189, "aggregated_cpp_info": 189, "topological_sort": 189, "revers": 189, "dep_cppinfo": 189, "get_sorted_compon": 189, "fewer": 189, "other_cppinfo": 189, "myvar2": 191, "myvalue2": 191, "myvar3": 191, "myvalue3": 191, "myvar4": 191, "mypath2": 191, "mypath3": 191, "env1": [191, 192], "env2": 191, "compose_env": 191, "prevail": [191, 266], "autootoolsdep": 191, "buildenv": [191, 213, 241], "runenv": 191, "mypkg_data_dir": 191, "datadir": [191, 208, 217], "filesystem": [191, 198], "deploy_base_fold": 191, "save_script": 192, "my_env_fil": 192, "ps1": [192, 193, 194, 245], "var2": 192, "variable_refer": 192, "penv": 192, "32k": 192, "2048": 192, "closer": 192, "varnam": 192, "ld_library_path": [193, 194, 242, 251, 256], "deactivate_conanbuildenv": [193, 241, 244, 245, 248], "accumul": [193, 194, 204, 229], "auto_gener": [193, 194], "dyld_library_path": [194, 242], "dyld_framework_path": [194, 242], "deactivate_conanrunenv": 194, "rm": 195, "rmdir": 195, "chdir": 195, "trim_conandata": 195, "collect_lib": 195, "check_md5": 195, "check_sha256": 195, "absolute_to_relative_symlink": [195, 257], "remove_external_symlink": 195, "remove_broken_symlink": 195, "ignore_cas": 196, "insensit": 196, "utf": [196, 222], "otherfil": 196, "robocopi": 196, "abe2h9f": 196, "file_path": [196, 197], "mydir": 196, "newdir": 196, "do_someth": 196, "tzb2": 196, "bz2": 196, "txz": 196, "xz": 196, "keep_permiss": [196, 198], "bigfil": 196, "danger": 196, "inter": 196, "libmylib": [196, 203], "stare": 196, "libmath": 196, "other_libdir": 196, "rwxr": 196, "lrwxr": 196, "md5sum": 197, "sha256sum": 197, "md5": 198, "ftp": 198, "impli": [198, 268, 271], "overriden": 198, "httpbasic": 198, "sha": 198, "someurl": 198, "somefil": 198, "e5d695597e9fa520209d1b41edad2a27": 198, "ia64": 198, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 198, "base_path": 200, "patch_str": 200, "fuzz": 200, "fuzzi": 200, "0001": 200, "buildflatbuff": 200, "0002": 200, "patch_typ": 200, "patch_sourc": 200, "flatbuff": 200, "5650": 200, "patch_descript": 200, "misc": 200, "1232": 200, "1292": 200, "g_test_add_func": 200, "paus": 200, "cancel": 200, "do_pause_cancel_test": 200, "g_test_add_data_func": 200, "steal": 200, "gint_to_point": 200, "do_stealing_test": 200, "length": 200, "do_response_informational_content_length_test": 200, "ret": 200, "g_test_run": 200, "0003": 200, "base_fold": 201, "configure_arg": 203, "make_arg": 203, "_conanbuild": [203, 205], "destdir": 203, "unix_path": [203, 218], "install_nam": 203, "cmdsize": 203, "48": 203, "offset": 203, "stamp": 203, "jan": 203, "1970": 203, "loader": 203, "wl": [203, 207], "conanautotoolsdep": 204, "undesired_valu": 204, "seamlessli": 205, "precalcul": 205, "my_argu": 205, "sbindir": [205, 217], "oldincludedir": 205, "datarootdir": 205, "he": 205, "extra_defin": [205, 223], "extra_ldflag": [205, 223], "gcc_cxx11_abi": 205, "build_type_flag": 205, "sysroot_flag": 205, "apple_arch_flag": [205, 217], "apple_isysroot_flag": [205, 217], "msvc_runtime_flag": [205, 218], "myflag": 205, "update_configure_arg": 205, "updated_flag": 205, "update_make_arg": 205, "update_autoreconf_arg": 205, "xxxxxx_arg": 205, "prune": [205, 267], "gold": [205, 217], "lld": [205, 217], "nvcc": 205, "fc": 205, "mk": 206, "conan_dep": 206, "conan_name_zlib": 206, "conan_version_zlib": 206, "conan_reference_zlib": 206, "conan_root_zlib": 206, "zlib273508b343e8c": 206, "conan_include_dirs_zlib": 206, "conan_include_dir_flag": 206, "conan_lib_dirs_zlib": 206, "conan_lib_dir_flag": 206, "conan_bin_dirs_zlib": 206, "conan_bin_dir_flag": 206, "conan_libs_zlib": 206, "conan_lib_flag": 206, "conan_include_dir": 206, "conan_lib_dir": 206, "conan_bin_dir": 206, "conan_lib": [206, 263], "conan_define_flag": 206, "conan_system_lib_flag": 206, "lz": [206, 208], "libastr": 207, "_use_libastr": 207, "astral": 207, "linkflag": [207, 229], "tmp_dir": 207, "is_system": 207, "rt": 207, "your_us": 208, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 208, "pkg_config_alias": 208, "xxxxx": [208, 212, 217], "freeform": 208, "component_vers": 208, "custom_cont": 208, "mynam": 208, "componentnam": 208, "alias1": 208, "alias2": 208, "rcpath": 210, "bz": [210, 211], "fresh": 210, "new_local_repositori": 211, "build_fil": 211, "cc_import": 211, "cc_librari": 211, "z_precompil": 211, "static_librari": 211, "libz": [211, 242], "hdr": 211, "glob": 211, "filegroup": 211, "zlib_binari": 211, "bazel_target_nam": 211, "bazel_repository_nam": 211, "my_target": 211, "my_repo": 211, "cxxopt": 212, "dynamic_mod": 212, "compilation_mod": 212, "force_p": 212, "copt": 212, "flagn": 212, "conlyopt": 212, "linkopt": 212, "dbg": 212, "crosstool_top": 212, "icpx": 213, "conanintelsetvar": 213, "intelprofil": 213, "ms_toolset": 213, "batch": 213, "argn": 213, "intel64": 213, "ia32": 213, "ia": 213, "mysrcfold": 214, "reconfigur": 216, "dprefix": 216, "conan_meson_cross": 216, "n_job": 216, "55": [217, 243], "default_librari": 217, "buildtyp": 217, "libexecdir": 217, "localedir": 217, "mandir": 217, "infodir": 217, "wrap_mod": 217, "nofallback": 217, "cpp_arg": 217, "c_arg": 217, "c_link_arg": 217, "cpp_link_arg": 217, "conan_meson_xxxx": 217, "with_msg": 217, "hi": 217, "everyon": 217, "contrast": 217, "packageopt": 217, "upon": 217, "mio": 217, "ios_host_profil": 217, "objc_arg": 217, "objc_link_arg": 217, "objcpp_arg": 217, "objcpp_link_arg": 217, "android_host_profil": 217, "c_ld": 217, "cc_ld": 217, "cpp_ld": 217, "cxx_ld": 217, "as_": 217, "AS": [217, 223], "windr": 217, "macosx": 217, "apple_min_version_flag": 217, "objcflag": 217, "objcxxflag": 217, "check_min_v": 218, "is_msvc": 218, "is_msvc_static_runtim": 218, "msvs_toolset": 218, "raise_invalid": 219, "visualstudio": 219, "worth": 219, "mt": [219, 222], "neither": 219, "myreleas": 220, "myplatform": 220, "conan_zlib_vars_release_x64": 221, "conanzlibxxxx": 221, "conanzlibincludedir": 221, "conanzliblib": 221, "conan_zlib_vars_debug_x64": 221, "conanzlib": 221, "conan_zlib_release_x64": 221, "conan_zlib_debug_x64": 221, "conan_bzip": 221, "bzip": 221, "conan_bzip2": 221, "conan_pkgname_compname_vars_release_x64": 221, "compnam": 221, "conan_pkgname_compname_release_x64": 221, "conan_pkgname_compnam": 221, "conan_pkgnam": 221, "conan_pkgname_vars_release_x64": 221, "gather": [221, 269], "catch": 221, "executablepath": 221, "binarydirectori": 221, "custombuild": 221, "caexcludepath": 221, "uncondit": 221, "conan_": 221, "_var": 221, "conantoolchain_release_x86": 222, "mtd": 222, "mdd": 222, "clcompil": 222, "windowstargetplatformvers": 222, "additionalopt": 222, "preprocessordefinit": 222, "vcvarsal": [222, 224], "includeextern": 222, "xmln": 222, "2003": 222, "itemdefinitiongroup": 222, "propertygroup": 222, "conannmakedep": 223, "_link_": 223, "conannmaketoolchain": 223, "my_flag": 223, "env_var": 223, "cl_env_var": 223, "winsdk": 224, "thin": [227, 250], "repourl": 227, "children": 227, "get_commit": 227, "rev": 227, "get_remote_url": 227, "commit_in_remot": 227, "occurr": 227, "get_repo_root": 227, "toplevel": 227, "fetch_commit": 227, "qualifi": [228, 269], "sconscript_conandep": 229, "cpppath": 229, "binpath": 229, "frameworkpath": 229, "cppdefin": 229, "ccflag": 229, "shlinkflag": 229, "sconscript": 229, "mergeflag": 229, "chocolatei": 230, "libgl": 231, "libglvnd": 231, "devel": 231, "mesa": 231, "linuxmint": 231, "pidora": 231, "scientif": 231, "xenserv": 231, "amazon": 231, "oracl": 231, "amzn": 231, "almalinux": 231, "rocki": 231, "fedora": 231, "rhel": 231, "mageia": 231, "manjaro": 231, "opensus": 231, "sle": 231, "host_packag": 231, "install_substitut": 231, "packages_substitut": 231, "pkg3": 231, "_arch_nam": 231, "multiarch": 231, "arch_nam": 231, "libxcb": 231, "util0": 231, "packages_altern": 231, "amd64": 231, "conan_arch_set": 231, "apt_arch_set": 231, "86": 231, "armv7hl": 231, "lib32": 231, "c3i": 234, "profession": 235, "matrix": [235, 266, 267], "8081": 236, "8082": 236, "bintrai": 236, "jdk": 236, "dialog": 236, "bottl": 237, "wsgirefserv": 237, "ctrl": 237, "my_local_serv": 238, "lan": 238, "easiest": 240, "conan_export": 240, "f1fadf0d3b196dc0332750354ad8ab7b": [240, 245], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 240, "dd7bf2a1ab4eb5d1943598c09b616121": 240, "raspberri": 241, "pi": 241, "someprofil": 241, "gnueabihf": 241, "compressorrecip": [241, 243, 244], "identif": 241, "elf": 241, "lsb": 241, "eabi5": 241, "sysv": 241, "armhf": 241, "buildid": 241, "2a216076864a1b1f30211debf297ac37a9195196": 241, "different_configur": 242, "anywher": 242, "tutorial_us": 242, "zlib1": 242, "reinstal": 242, "wonder": 242, "answer": 242, "li": [242, 269], "factor": 242, "breakdown": 242, "approxim": [243, 269], "87a7211557b6690ef5bf7fc599dd8349": 243, "f305019023c2db74d1001c5afa5cf362": 243, "82202701ea360c0863f1db5008067122": 243, "bd533fb124387a214816ab72c8d1df28": 243, "59": [243, 250], "58": 243, "3b9e037ae1c615d045a06c67d88491a": 243, "chronolog": 243, "tediou": [243, 261, 270], "occas": 243, "4524fcdd41f33e8df88ece6e755a5dcc": 243, "1650538915": 243, "154": 243, "stai": 243, "conanfile_pi": 244, "neater": 244, "auxiliari": 244, "v8": 244, "base64": 244, "cmake_vers": 245, "3e3d8f3a848b2a60afafbe7a0955085a": 245, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 245, "48bc7191ec1ee467f1e951033d7d41b2": 245, "f2f48d9745706caf77ea883a5855538256e7f2d4": 245, "6c519070f013da19afd56b52c465b596": 245, "scaffold": 246, "walkthrough": 246, "peculiar": 246, "fanci": 247, "colour": [247, 258], "creating_packag": [247, 248, 249, 251, 252, 254, 255, 256, 257, 258, 259], "add_requir": 247, "check_max_cppstd": [247, 258], "check_min_cppstd": [247, 254, 258], "require_fmt": 247, "crimson": [247, 258], "emphasi": [247, 258], "bold": [247, 258], "__x86_64__": [247, 250, 252, 255, 262], "__cplusplu": 247, "201103": 247, "__gnuc__": 247, "__gnuc_minor__": 247, "__clang_major__": 247, "__clang_minor__": 247, "__apple_build_version__": 247, "13160021": 247, "build_method": 248, "with_test": 248, "with_fmt": [248, 249, 258], "test_hello": [248, 251], "novelti": 248, "compose_messag": 248, "add_subdirectori": 248, "googletest": [248, 254], "gtest_main": [248, 254], "hellotest": 248, "composemessag": 248, "expect_eq": 248, "c51d80ef47661865": 248, "3ad4c6873a47059c": 248, "tear": [248, 254], "82b6c0c858e739929f74f59c25c187b927d514f3": 248, "particular": 248, "uncommon": 248, "configure_options_set": 249, "met": 249, "ng": 249, "738feca714b7251063cc51448da0cf4811424e7c": 249, "7fe7f5af0ef27552": 249, "3bd9faedc711cbb4fdf10b295268246": 249, "e6b11fb0cb64e3777f8d62f4543cd6b3": 249, "5c497cbb5421cbda": 249, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 249, "19a2e552db727a2b": 249, "67b887a0805c2a535b58be404529c1f": 249, "c7796386fcad5369": 249, "depict": 249, "diagram": 249, "intuit": 249, "2a899fd0da3125064bf9328b8db681cd82899d56": 249, "f0d1385f4f90ae465341c15740552d7": 249, "8a55286c6595f662": 249, "601209640bd378c906638a8de90070f7": 249, "d1b3f3666400710fec06446a697f9eeddd1235aa": 249, "24a2edf207deeed4151bd87bca4af51c": 249, "concret": 250, "email": 250, "constraint": [250, 267, 271], "leverag": 250, "__cplusplus199711": [250, 252, 255], "__gnuc__4": [250, 252, 255, 262], "__gnuc_minor__2": [250, 252, 255, 262], "__clang_major__13": [250, 252, 255], "__clang_minor__1": [250, 252, 255], "__apple_build_version__13160021": [250, 252, 255], "fa5f6b17d0adc4de6030c9ab71cdbed": 250, "pid": [250, 254, 255], "6679492451b5d0750f14f9024fdbf84e19d2941b": 250, "customis": 250, "breakag": [250, 252], "package_inform": 251, "output_nam": 251, "a311fcf8a63f3206": 251, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [251, 257, 259], "44d78a68b16b25c5e6d7e8884b8f58b8": 251, "a8cb81b31dc10d96": 251, "handle_sourc": 252, "mutabl": 252, "0fcb5ffd11025446": 252, "update_sourc": 252, "369786d0fb355069": 252, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 252, "saw": [253, 254, 267], "other_packag": [254, 255, 256], "sumconan": 254, "sum": 254, "8d9f1fb3655adcb348befcd8374c5292": 254, "header_only_gtest": 254, "test_sum": 254, "9bf83ef65d5ff0d6": 254, "sumtest": 254, "basicsum": 254, "lack": 254, "3rd": 255, "circumst": 255, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 255, "deep": 255, "local_include_fold": 255, "local_lib_fold": 255, "prebuilt_binari": 255, "vendor_hello_librari": 255, "_o": 255, "_arch": 255, "9c7634dfe0369907f569c4e583f9bc50": 255, "522dcea5982a3f8a5b624c16477e47195da2f84f": 255, "63fead0844576fc02943e16909f08fcdddd6f44b": 255, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [255, 256], "28": 255, "a0cd51c51fe9010370187244af885b0efcc5b69b": 255, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 255, "dcf68e932572755309a5f69f3cee1bede410e907": 255, "somewher": 255, "prebuilt_remote_binari": 255, "base_url": 255, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 255, "secure_scannerrecip": 256, "secure_scann": 256, "scanner": 256, "secure_scannertestconan": 256, "tested_reference_str": [256, 259], "my_consum": 256, "enviorn": 256, "overwrot": 256, "rundenv_info": 256, "package_method": 257, "predetermin": 257, "b5857f2e70d1b2fd": 257, "bf7f5b9a3bb2c957742be4be216dfcbb": 257, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [257, 259], "47b4c4c61c8616e5": 257, "222db0532bba7cbc": 257, "50f91e204d09b64b24b29df3b87a2f3a": 257, "96ed9fb1f78bc96708b1abf4841523b0": 257, "21ec37b931782de8": 257, "preparing_the_build": 258, "optional_fmt": 258, "target_compile_definit": 258, "using_fmt": 258, "endl": 258, "debugshar": 258, "testing_packag": 259, "hellotestconan": 259, "cd132b054cf999f31bd2fd2424053ddc": 259, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 259, "1d9bb4c015de50bcb4a338c07229b3bc": 259, "4ff3fd65a1d37b52436bf62ea6eaac04": 259, "d136b3379fdb29bdfe31404b916b29e1": 259, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 259, "ee8cbd2bf32d1c89e553bdd9d5606127": 259, "costli": 260, "entir": 260, "depth": 260, "developing_packag": [261, 262, 263], "editable_packag": 261, "fledg": 261, "perspect": 261, "inconveni": 261, "increment": 261, "trial": 262, "phase": 262, "local_package_development_flow": 262, "ve": 262, "cmakedeps_macro": 262, "f09ef573c22f3919ba26ee91ae444eaa": 262, "__cplusplus201103": 262, "__clang_major__14": 262, "__apple_build_version__14000029": 262, "po": 262, "examin": 263, "package_layout": 263, "sayb3ea744527a91": 263, "say830097e941e10": 263, "libsai": 263, "say8938ceae216fc": 263, "say_say_releas": 263, "local_fold": 263, "expir": 264, "increas": [264, 265], "oppos": [264, 271], "intent": 264, "intro": [266, 267], "credit": 266, "videogam": 266, "0fe4e6890766f7b8e21f764f0049aec7": 266, "d639998c2e55cf36d261ab319801c322": 266, "905c3f0babc520684c84127378fefdd0": [266, 267], "converg": 266, "variat": 266, "mathemat": 267, "sound32": 267, "sound": 267, "1675278126": 267, "0552447": 267, "83d4b7bf607b3b60a6546f8b58b5cdd7": 267, "1675278904": 267, "0791488": 267, "1675278900": 267, "0103245": 267, "enforc": 267, "paramount": 267, "1675278901": 267, "7527816": 267, "harm": 267, "1675294635": 267, "6049662": 267, "1675294637": 267, "9775107": 267, "2475ece651f666f42c155623228c75d2": 268, "2b547b7f20f5541c16d0b5cbcf207502": 268, "licenc": 268, "1d674b4349d2b1ea06aa6419f5f99dd9": 268, "chat": 268, "17b45a168519b8e0ed178d822b7ad8c8": 268, "12f87e1b8a881da6b19cc7f229e16c76": 268, "ago": 268, "determinist": 268, "subsequ": 268, "8b8c3deef5ef47a8009d4afaebfe952": 268, "8e8d380347e6d067240c4c00132d42b1": 268, "c347faaedc1e7e3282d3bfed31700019": 268, "wast": 268, "pkgrecip": [269, 270], "apprecip": [269, 270], "newest": 269, "hold": 269, "letter": [269, 271], "becam": 269, "evid": 269, "demand": 269, "entiti": 269, "numer": 269, "tild": 269, "caret": 269, "include_prereleas": 269, "henc": 269, "fast": 270, "blown": 270, "intervent": 270, "excit": 271, "lesson": 271, "youtub": 271, "watch": 271, "kkgglzm5ou": 271, "tribe": 271, "026": 271, "requirements_trait": 271, "modular": 271, "subapi": 271, "redesign": 271, "send": 271, "thorough": 271, "mydeploi": 271, "meaning": 271, "mylib_a": 271, "mylib_b": 271, "034": 271, "new_lockfil": 271, "enviro": 271, "shorten": 271, "short_path": 271, "incredibuild": 271, "grow": 271, "sigstor": 271, "accur": 271}, "objects": {"conan.api.conan_api": [[162, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[163, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[163, 1, 1, "", "global_conf"], [163, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[164, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.export": [[165, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[166, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[166, 2, 1, "", "analyze_binaries"], [166, 2, 1, "", "load_graph"], [166, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[167, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[167, 2, 1, "", "install_binaries"], [167, 2, 1, "", "install_consumer"], [167, 2, 1, "", "install_sources"], [167, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[168, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[168, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[169, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[169, 2, 1, "", "get_home_template"], [169, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[170, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[170, 2, 1, "", "detect"], [170, 2, 1, "", "get_default_build"], [170, 2, 1, "", "get_default_host"], [170, 2, 1, "", "get_path"], [170, 2, 1, "", "get_profile"], [170, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[171, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[171, 2, 1, "", "list"]], "conan.api.subapi.remove": [[172, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[173, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[174, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[174, 2, 1, "", "check_upstream"], [174, 2, 1, "", "get_backup_sources"], [174, 2, 1, "", "prepare"]], "conan.tools.android": [[177, 3, 1, "", "android_abi"]], "conan.tools.apple": [[179, 0, 1, "", "XCRun"], [179, 3, 1, "", "fix_apple_shared_install_name"], [179, 3, 1, "", "is_apple_os"], [179, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[179, 1, 1, "", "ar"], [179, 1, 1, "", "cc"], [179, 1, 1, "", "cxx"], [179, 2, 1, "", "find"], [179, 1, 1, "", "install_name_tool"], [179, 1, 1, "", "libtool"], [179, 1, 1, "", "otool"], [179, 1, 1, "", "ranlib"], [179, 1, 1, "", "sdk_path"], [179, 1, 1, "", "sdk_platform_path"], [179, 1, 1, "", "sdk_platform_version"], [179, 1, 1, "", "sdk_version"], [179, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[180, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[180, 2, 1, "", "__init__"], [180, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[183, 3, 1, "", "check_max_cppstd"], [183, 3, 1, "", "check_min_cppstd"], [183, 3, 1, "", "default_cppstd"], [183, 3, 1, "", "supported_cppstd"], [183, 3, 1, "", "valid_max_cppstd"], [183, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[183, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[183, 3, 1, "", "can_run"], [183, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[185, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[185, 2, 1, "", "build"], [185, 2, 1, "", "configure"], [185, 2, 1, "", "ctest"], [185, 2, 1, "", "install"], [185, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[187, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[187, 2, 1, "", "generate"], [187, 2, 1, "", "get_cmake_package_name"], [187, 2, 1, "", "get_find_mode"], [187, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[186, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[188, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[188, 2, 1, "", "generate"]], "conan.tools.env.environment": [[192, 0, 1, "", "EnvVars"], [191, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[192, 2, 1, "", "apply"], [192, 2, 1, "", "get"], [192, 2, 1, "", "items"], [192, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[191, 2, 1, "", "append"], [191, 2, 1, "", "append_path"], [191, 2, 1, "", "compose_env"], [191, 2, 1, "", "define"], [191, 2, 1, "", "deploy_base_folder"], [191, 2, 1, "", "dumps"], [191, 2, 1, "", "prepend"], [191, 2, 1, "", "prepend_path"], [191, 2, 1, "", "remove"], [191, 2, 1, "", "unset"], [191, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[193, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[193, 2, 1, "", "environment"], [193, 2, 1, "", "generate"], [193, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[194, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[194, 2, 1, "", "environment"], [194, 2, 1, "", "generate"], [194, 2, 1, "", "vars"]], "conan.tools.files": [[196, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[196, 3, 1, "", "trim_conandata"], [196, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[196, 3, 1, "", "copy"]], "conan.tools.files.files": [[196, 3, 1, "", "chdir"], [197, 3, 1, "", "check_md5"], [197, 3, 1, "", "check_sha1"], [197, 3, 1, "", "check_sha256"], [198, 3, 1, "", "download"], [198, 3, 1, "", "ftp_download"], [198, 3, 1, "", "get"], [196, 3, 1, "", "load"], [196, 3, 1, "", "mkdir"], [196, 3, 1, "", "rename"], [196, 3, 1, "", "replace_in_file"], [196, 3, 1, "", "rm"], [196, 3, 1, "", "rmdir"], [196, 3, 1, "", "save"], [196, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[200, 3, 1, "", "apply_conandata_patches"], [200, 3, 1, "", "export_conandata_patches"], [200, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[201, 3, 1, "", "absolute_to_relative_symlinks"], [201, 3, 1, "", "remove_broken_symlinks"], [201, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[206, 0, 1, "", "MakeDeps"], [207, 0, 1, "", "PkgConfig"], [208, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[206, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[207, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[208, 1, 1, "", "content"], [208, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[203, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[203, 2, 1, "", "autoreconf"], [203, 2, 1, "", "configure"], [203, 2, 1, "", "install"], [203, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[204, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[204, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[205, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[205, 2, 1, "", "update_autoreconf_args"], [205, 2, 1, "", "update_configure_args"], [205, 2, 1, "", "update_make_args"]], "conan.tools.google": [[210, 0, 1, "", "Bazel"], [211, 0, 1, "", "BazelDeps"], [212, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[210, 2, 1, "", "build"], [210, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[211, 4, 1, "", "build_context_activated"], [211, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[212, 4, 1, "", "compilation_mode"], [212, 4, 1, "", "compiler"], [212, 4, 1, "", "conlyopt"], [212, 4, 1, "", "copt"], [212, 4, 1, "", "cppstd"], [212, 4, 1, "", "cpu"], [212, 4, 1, "", "crosstool_top"], [212, 4, 1, "", "cxxopt"], [212, 4, 1, "", "dynamic_mode"], [212, 4, 1, "", "force_pic"], [212, 2, 1, "", "generate"], [212, 4, 1, "", "linkopt"]], "conan.tools.intel": [[213, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[213, 4, 1, "", "arch"], [213, 1, 1, "", "command"], [213, 2, 1, "", "generate"], [213, 1, 1, "", "installation_path"], [213, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[216, 0, 1, "", "Meson"], [217, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[216, 2, 1, "", "build"], [216, 2, 1, "", "configure"], [216, 2, 1, "", "install"], [216, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[217, 4, 1, "", "apple_arch_flag"], [217, 4, 1, "", "apple_isysroot_flag"], [217, 4, 1, "", "apple_min_version_flag"], [217, 4, 1, "", "ar"], [217, 4, 1, "", "as_"], [217, 4, 1, "", "c"], [217, 4, 1, "", "c_args"], [217, 4, 1, "", "c_ld"], [217, 4, 1, "", "c_link_args"], [217, 4, 1, "", "cpp"], [217, 4, 1, "", "cpp_args"], [217, 4, 1, "", "cpp_ld"], [217, 4, 1, "", "cpp_link_args"], [217, 4, 1, "", "cross_build"], [217, 2, 1, "", "generate"], [217, 4, 1, "", "ld"], [217, 4, 1, "", "objc"], [217, 4, 1, "", "objc_args"], [217, 4, 1, "", "objc_link_args"], [217, 4, 1, "", "objcpp"], [217, 4, 1, "", "objcpp_args"], [217, 4, 1, "", "objcpp_link_args"], [217, 4, 1, "", "pkg_config_path"], [217, 4, 1, "", "pkgconfig"], [217, 4, 1, "", "preprocessor_definitions"], [217, 4, 1, "", "project_options"], [217, 4, 1, "", "properties"], [217, 4, 1, "", "strip"], [217, 4, 1, "", "windres"]], "conan.tools.microsoft": [[220, 0, 1, "", "MSBuild"], [221, 0, 1, "", "MSBuildDeps"], [222, 0, 1, "", "MSBuildToolchain"], [224, 0, 1, "", "VCVars"], [219, 3, 1, "", "unix_path"], [225, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[220, 2, 1, "", "build"], [220, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[221, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[222, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[219, 3, 1, "", "check_min_vs"], [219, 3, 1, "", "is_msvc"], [219, 3, 1, "", "is_msvc_static_runtime"], [219, 3, 1, "", "msvc_runtime_flag"], [219, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[228, 0, 1, "", "Version"]], "conan.tools.scm.git": [[227, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[227, 2, 1, "", "checkout"], [227, 2, 1, "", "clone"], [227, 2, 1, "", "commit_in_remote"], [227, 2, 1, "", "fetch_commit"], [227, 2, 1, "", "get_commit"], [227, 2, 1, "", "get_remote_url"], [227, 2, 1, "", "get_repo_root"], [227, 2, 1, "", "get_url_and_commit"], [227, 2, 1, "", "included_files"], [227, 2, 1, "", "is_dirty"], [227, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[231, 0, 1, "", "Apk"], [231, 0, 1, "", "Apt"], [231, 0, 1, "", "Brew"], [231, 0, 1, "", "Chocolatey"], [231, 0, 1, "", "PacMan"], [231, 0, 1, "", "Pkg"], [231, 0, 1, "", "PkgUtil"], [231, 0, 1, "", "Yum"], [231, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[231, 2, 1, "", "check"], [231, 2, 1, "", "install"], [231, 2, 1, "", "install_substitutes"], [231, 2, 1, "", "update"]], "conans.model.conf.Conf": [[132, 2, 1, "", "append"], [132, 2, 1, "", "define"], [132, 2, 1, "", "prepend"], [132, 2, 1, "", "remove"], [132, 2, 1, "", "unset"], [132, 2, 1, "", "update"]]}, "objtypes": {"0": "py:class", "1": "py:property", "2": "py:method", "3": "py:function", "4": "py:attribute"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "property", "Python property"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "attribute", "Python attribute"]}, "titleterms": {"page": 0, "Not": 0, "found": 0, "changelog": 1, "2": [1, 57, 271], "0": [1, 57, 261, 271], "17": 1, "10": 1, "jan": 1, "2024": 1, "16": 1, "21": 1, "dec": 1, "2023": 1, "15": 1, "20": 1, "14": 1, "nov": 1, "13": 1, "28": 1, "sept": 1, "12": 1, "26": 1, "11": 1, "18": 1, "29": 1, "aug": 1, "9": 1, "19": 1, "jul": 1, "8": 1, "7": 1, "jun": 1, "6": 1, "mai": 1, "5": 1, "4": 1, "apr": 1, "3": 1, "03": 1, "mar": 1, "1": [1, 261], "22": 1, "feb": 1, "beta10": 1, "beta9": 1, "31": 1, "beta8": 1, "beta7": 1, "2022": 1, "beta6": 1, "02": 1, "beta5": 1, "beta4": 1, "oct": 1, "beta3": 1, "beta2": 1, "27": 1, "beta1": 1, "devop": 2, "guid": [2, 271], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 86, 102, 114, 192, 236, 246, 250, 268], "an": [3, 244], "artifactori": [3, 65, 236], "backup": [3, 4, 84], "repo": [3, 236], "your": [3, 5, 24, 36, 47, 48, 114, 241, 248, 250], "sourc": [3, 4, 29, 36, 51, 58, 70, 110, 116, 136, 248, 251, 252, 262, 263], "back": 4, "up": [4, 235, 237], "third": [4, 19], "parti": [4, 19], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 53, 55, 57, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 156, 162, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 203, 209, 213, 214, 215, 217, 218, 219, 226, 229, 230, 231, 233, 234, 235, 236, 237, 240, 241, 245, 249, 250, 251, 257, 259, 262, 263, 264, 271], "configur": [4, 22, 23, 63, 80, 114, 123, 129, 143, 146, 157, 181, 187, 213, 221, 231, 242, 244, 249, 251, 267, 271], "overview": 4, "usag": 4, "set": [4, 24, 73, 78, 80, 98, 107, 116, 147, 149, 186, 235, 237, 242, 249, 251, 256], "necessari": 4, "config": [4, 85, 163], "run": [4, 31, 36, 114, 133, 141, 192, 236, 248], "normal": 4, "upload": [4, 6, 13, 84, 112, 174, 238, 268], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 57, 70, 73, 99, 116, 130, 159, 231, 238, 239, 242, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 268, 271], "repositori": [4, 233, 252], "host": [5, 241], "own": [5, 114], "conancent": [5, 8], "binari": [5, 70, 77, 78, 80, 116, 153, 249, 255], "updat": [5, 58, 107], "from": [5, 7, 13, 29, 36, 58, 78, 141, 158, 187, 252, 264], "upstream": 5, "manag": [6, 56, 57, 70, 205, 231, 257, 271], "metadata": [6, 87, 116], "file": [6, 23, 50, 143, 146, 175, 187, 188, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 204, 205, 206, 208, 211, 212, 217, 221, 252, 257], "recip": [6, 31, 43, 78, 99, 141, 176, 248, 249, 251, 256], "hook": [6, 158], "ad": [6, 131, 149], "command": [6, 12, 31, 32, 65, 82, 141, 154, 155, 271], "download": [6, 13, 87, 164, 198, 255], "remov": [6, 13, 88, 104, 107, 108, 172, 256, 264], "test_packag": 6, "save": [7, 84, 196], "restor": [7, 84], "cach": [7, 84, 136, 250, 264, 271], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 51, 53, 55, 58, 63, 86, 114, 156, 187, 188, 203, 217, 236, 240, 241, 242, 244, 245, 252, 257, 261, 268], "product": 8, "environ": [8, 22, 129, 151, 191, 192, 205, 223, 251, 271], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 78, 80, 105, 114, 149, 155, 156, 157, 181, 187, 188, 189, 204, 205, 206, 208, 211, 213, 217, 220, 221, 222, 223, 224, 271], "version": [9, 10, 39, 40, 78, 98, 113, 116, 228, 243, 265, 269, 270], "handl": [10, 252], "rang": [10, 243, 269], "pre": [10, 255], "releas": [10, 242], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 105], "list": [13, 85, 88, 99, 106, 107, 168, 264], "them": 13, "one": 13, "remot": [13, 107, 148, 151, 171, 235, 252], "differ": [13, 39, 40, 73, 242, 268], "build": [13, 25, 26, 27, 29, 45, 47, 51, 53, 55, 65, 70, 80, 83, 86, 93, 94, 116, 118, 132, 133, 183, 188, 203, 217, 240, 241, 242, 245, 248, 255, 258, 261, 262, 263, 271], "conanfil": [14, 15, 16, 20, 26, 98, 115, 142, 244], "method": [14, 51, 78, 117, 231, 244, 248, 251, 257], "layout": [15, 16, 18, 19, 116, 129, 142, 214, 244, 263], "declar": [16, 18, 19, 191], "when": [16, 18, 19, 203], "i": [16, 81, 203], "insid": [16, 41], "subfold": 16, "compon": [17, 21, 132, 181, 251], "edit": [17, 88, 236, 261], "we": 18, "have": 18, "multipl": [18, 21, 242, 251], "subproject": 18, "librari": [19, 21, 132, 149, 203, 242, 248, 249, 251, 254], "package_info": [20, 132, 251], "defin": [21, 181, 251], "provid": [21, 116, 251], "propag": [22, 251], "inform": [22, 56, 78, 116, 131, 132, 146, 189, 251], "consum": [22, 78, 116, 187, 239, 251], "settings_us": [24, 149], "yml": [24, 149, 252], "locat": [24, 31, 36, 155], "new": [24, 26, 105, 149, 169, 270, 271], "cross": [25, 27, 80, 188, 217, 241], "integr": [26, 59, 84, 271], "android": [26, 27, 60, 177, 217], "studio": [26, 29, 68], "project": [26, 45, 47, 53, 55, 187, 240, 248], "introduc": [26, 242, 248, 251], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 78, 79, 116, 127, 221, 242, 247, 251, 261, 266], "txt": [26, 142, 244], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 64, 184, 185, 187, 240, 257], "cmakelist": 26, "applic": [26, 241, 242], "ndk": 27, "read": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "more": [27, 107, 112, 142, 155, 162, 217, 238, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 256, 257, 258, 259, 267], "develop": [28, 35, 260, 262], "tool": [28, 39, 40, 43, 44, 46, 50, 51, 52, 54, 146, 176, 177, 178, 179, 183, 184, 189, 190, 195, 196, 197, 198, 199, 200, 201, 202, 209, 213, 214, 215, 218, 219, 226, 229, 230, 231, 245, 256, 257], "flow": [28, 262], "debug": [29, 242], "step": [29, 257], "visual": [29, 68, 219], "extens": [30, 65, 152, 271], "clean": [31, 84], "old": 31, "revis": [31, 73, 99, 243, 268, 271], "code": [31, 36, 248], "tour": [31, 36], "parser": 31, "user": [31, 98, 107, 116, 146, 271], "input": 31, "output": [31, 86, 89, 99, 116, 141], "public": [31, 271], "api": [31, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 271], "builtin": 33, "deploy": [33, 34, 36, 98, 157, 271], "agnost": 35, "deploi": [35, 36, 124], "copi": [36, 196, 257], "all": [36, 70], "graph": [37, 91, 92, 93, 94, 95, 96, 99, 166, 271], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 86, 98, 116, 133, 137, 142, 175, 221, 244, 256, 270], "option": [39, 78, 80, 98, 116, 142, 147, 186, 217, 242, 249, 251, 266], "modul": [41, 158], "tool_requir": [41, 42, 116, 120, 142, 147], "transpar": 41, "autotool": [44, 45, 61, 203], "simpl": [45, 53, 55, 240, 256], "linux": [45, 73], "maco": [45, 203], "cmaketoolchain": [47, 48, 49, 188], "cmakepreset": [47, 48], "gener": [47, 48, 65, 98, 116, 127, 142, 156, 187, 188, 189, 193, 194, 204, 205, 206, 208, 211, 212, 217, 221, 251], "toolchain": [47, 188], "extend": [48, 80, 175, 188], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 129, 151, 181, 188, 191, 192], "patch": [51, 200, 248], "replace_in_fil": [51, 196], "apply_conandata_patch": [51, 200], "googl": [52, 209], "bazel": [53, 62, 210], "meson": [54, 55, 67, 215, 216, 217], "captur": 56, "git": [56, 227, 252], "scm": [56, 226], "credenti": [56, 145], "c": [57, 149, 217, 236, 249], "document": [57, 70], "instal": [58, 63, 65, 85, 98, 167, 187, 257, 262], "pip": 58, "recommend": 58, "known": 58, "issu": 58, "pipx": 58, "system": [58, 70, 137, 149, 230, 231, 248, 271], "self": [58, 127, 129, 263], "contain": 58, "execut": 58, "android_logo": 60, "autotools_logo": 61, "bazel_logo": 62, "clion_logo": 63, "clion": 63, "introduct": [63, 70, 146, 147, 175, 243], "plugin": [63, 78, 160, 271], "cmake_logo": 64, "jfrog_logo": 65, "jfrog": 65, "info": [65, 91, 96, 116], "how": [65, 81, 203, 231, 241], "gnu_make_logo": 66, "makefil": 66, "meson_logo": 67, "visual_studio_logo": 68, "xcode_logo": 69, "xcode": 69, "open": 70, "decentr": 70, "platform": 70, "compil": [70, 149, 188, 241], "stabl": 70, "commun": [70, 236], "navig": 70, "knowledg": 71, "cheat": 72, "sheet": 72, "faq": 73, "troubleshoot": 73, "error": [73, 244], "miss": 73, "prebuilt": [73, 255], "invalid": 73, "authenticationexcept": 73, "obtain": [73, 191], "window": 73, "core": 74, "guidelin": 74, "good": 74, "practic": 74, "forbidden": 74, "video": 75, "refer": [76, 99, 116, 162, 180, 185, 186, 187, 188, 191, 192, 193, 194, 203, 204, 205, 206, 207, 208, 210, 211, 212, 213, 216, 217, 220, 221, 222, 224, 231], "The": [77, 78, 79], "model": [77, 80, 116, 241, 251, 271], "compat": [78, 121, 153, 249, 271], "erasur": [78, 131], "package_id": [78, 79, 81, 131, 175, 256, 271], "py": [78, 115, 244, 271], "global": [78, 146, 156], "default": [78, 133, 217], "mode": [78, 79, 261], "effect": [79, 175], "non": [79, 244], "emb": [79, 116], "v": [80, 244], "conf": [80, 98, 116, 146, 147, 180, 182, 185, 188, 198, 205, 207, 210, 212, 213, 216, 217, 220, 221, 222, 223, 224], "target": [80, 187], "comput": 81, "formatt": [82, 91, 155], "path": [84, 98, 106], "check": 84, "home": 85, "show": [85, 106], "add": [88, 101, 107, 149, 247], "export": [89, 90, 116, 125, 165, 262], "format": [89, 99], "pkg": [90, 231, 262], "json": [91, 99, 145, 148, 150], "order": [93, 94], "merg": [94, 103], "explain": 95, "inspect": 97, "profil": [98, 106, 147, 160, 170, 241, 271], "name": [98, 116, 155, 208, 211], "channel": [98, 116], "lockfil": [98, 243, 267, 271], "id": [99, 242, 249], "artifact": 99, "html": 99, "compact": 99, "lock": [100, 101, 102, 103, 104], "templat": [105, 146], "detect": 106, "auth": 107, "disabl": [107, 187], "enabl": 107, "login": [107, 151], "logout": 107, "renam": [107, 196], "search": [109, 173], "test": [111, 133, 138, 175, 248, 254, 259], "server": [114, 237], "paramet": [114, 155], "permiss": 114, "authent": 114, "author": [114, 116], "ssl": 114, "nginx": 114, "subdirectori": 114, "apach": 114, "attribut": [116, 205, 208, 217, 220, 222, 223], "descript": 116, "licens": [116, 257], "topic": 116, "homepag": 116, "url": 116, "build_requir": [116, 120], "test_requir": [116, 120, 142], "python_requir": [116, 156, 175, 264], "python_requires_extend": 116, "exports_sourc": 116, "conan_data": 116, "source_buildenv": 116, "package_typ": [116, 133], "default_opt": 116, "default_build_opt": 116, "options_descript": 116, "package_id_": 116, "non_emb": 116, "unknown": 116, "_mode": 116, "build_polici": 116, "win_bash": 116, "win_bash_run": 116, "folder": [116, 129, 263], "source_fold": 116, "export_sources_fold": 116, "build_fold": 116, "package_fold": 116, "recipe_fold": 116, "recipe_metadata_fold": 116, "package_metadata_fold": 116, "no_copy_sourc": 116, "cpp": [116, 129, 263], "cpp_info": [116, 127, 132], "buildenv_info": [116, 132], "runenv_info": [116, 132], "conf_info": [116, 132], "deprec": [116, 147], "other": [116, 253, 264], "content": [116, 188, 233, 239, 246, 253, 265], "revision_mod": 116, "upload_polici": 116, "required_conan_vers": 116, "implement": [116, 122, 123, 131], "alia": 116, "build_id": 119, "host_vers": 120, "config_opt": 122, "avail": [122, 123, 131, 231], "automat": [122, 123, 131], "auto_shared_fp": [122, 123], "export_sourc": 126, "interfac": [127, 158], "iter": [127, 192], "init": 128, "auto_header_onli": 131, "partial": 131, "properti": [132, 187, 208, 210, 211, 231, 251], "trait": [133, 221], "header": [133, 249, 254], "lib": 133, "visibl": 133, "transitive_head": 133, "transitive_lib": 133, "package_id_mod": 133, "forc": [133, 136], "overrid": [133, 266], "direct": 133, "infer": 133, "each": 133, "kind": 133, "set_nam": 134, "set_vers": 135, "retriev": 136, "system_requir": 137, "collect": 137, "valid": [139, 244], "validate_build": 140, "text": 141, "conanrc": 144, "data": [146, 217], "type": [146, 217, 253], "oper": [146, 149, 196], "pattern": [146, 147], "about": [146, 203, 250], "built": [146, 157, 203, 255], "network": 146, "client": 146, "certif": 146, "ux": 146, "skip": 146, "warn": 146, "section": 147, "system_tool": 147, "buildenv": 147, "runenv": 147, "replace_requir": 147, "replace_tool_requir": 147, "platform_requir": 147, "platform_tool_requir": 147, "render": 147, "includ": 147, "msvc": 149, "intel": [149, 213], "cc": 149, "architectur": 149, "standard": 149, "aka": 149, "libcxx": 149, "sub": 149, "valu": 149, "source_credenti": 150, "conan_hom": 151, "conan_default_profil": 151, "termin": 151, "color": 151, "log": 151, "wrapper": [154, 271], "scope": 155, "decor": 155, "conan_command": 155, "group": 155, "none": 155, "conan_subcommand": 155, "argument": [155, 217], "definit": [155, 191], "pars": 155, "full_deploi": 157, "direct_deploi": 157, "structur": 158, "import": [158, 187, 264], "storag": 158, "activ": 158, "share": [158, 203, 242], "offici": 158, "sign": [159, 271], "python": [161, 175, 271], "base": 175, "class": 175, "reus": 175, "resolut": 175, "android_abi": 177, "appl": [178, 179, 217], "fix_apple_shared_install_nam": 179, "is_apple_o": 179, "to_apple_arch": 179, "xcrun": 179, "xcodebuild": 180, "xcodedep": 181, "addit": 181, "support": [181, 221, 244], "xcodetoolchain": 182, "build_job": 183, "cross_build": 183, "can_run": 183, "cppstd": 183, "check_min_cppstd": 183, "check_max_cppstd": 183, "valid_min_cppstd": 183, "valid_max_cppstd": 183, "default_cppstd": 183, "supported_cppstd": 183, "cmake_layout": 186, "multi": [186, 267, 271], "cmakedep": 187, "build_context_activ": [187, 208, 211], "build_context_suffix": [187, 208], "build_context_build_modul": 187, "check_components_exist": 187, "overwrit": 187, "side": 187, "set_properti": 187, "For": 187, "map": 187, "": [187, 271], "preprocessor_definit": [188, 217], "cache_vari": 188, "user_presets_path": 188, "extra": 188, "flag": [188, 206], "presets_prefix": 188, "advanc": 188, "block": 188, "cppinfo": 189, "aggreg": 189, "env": 190, "composit": 191, "envvar": 192, "appli": 192, "virtualbuildenv": 193, "virtualrunenv": 194, "basic": 196, "load": 196, "rm": 196, "mkdir": 196, "rmdir": 196, "chdir": 196, "unzip": 196, "update_conandata": 196, "trim_conandata": 196, "collect_lib": 196, "checksum": 197, "check_md5": 197, "check_sha1": 197, "check_sha256": 197, "get": 198, "ftp_download": 198, "autopackag": 199, "export_conandata_patch": 200, "symlink": [201, 257], "absolute_to_relative_symlink": 201, "remove_external_symlink": 201, "remove_broken_symlink": 201, "gnu": 202, "A": [203, 250, 256], "note": [203, 250], "relocat": 203, "helper": 203, "why": 203, "thi": 203, "problem": 203, "address": 203, "autotoolsdep": 204, "autotoolstoolchain": 205, "configure_arg": 205, "make_arg": 205, "autoreconf_arg": 205, "makedep": 206, "pkgconfig": 207, "pkgconfigdep": 208, "bazeldep": 211, "bazeltoolchain": 212, "intelcc": 213, "predefin": 214, "basic_layout": 214, "mesontoolchain": 217, "conan_meson_n": 217, "ini": 217, "conan_meson_cross": 217, "directori": 217, "project_opt": 217, "proper": 217, "object": 217, "microsoft": [218, 219], "check_min_v": 219, "msvc_runtime_flag": 219, "is_msvc": 219, "is_msvc_static_runtim": 219, "msvs_toolset": 219, "subsystem": 219, "unix_path": 219, "msbuild": 220, "msbuilddep": 221, "msbuildtoolchain": 222, "nmakedep": 223, "nmaketoolchain": 223, "constructor": 223, "vcvar": 224, "vs_layout": 225, "scon": 229, "sconsdep": 229, "package_manag": 231, "affect": 231, "ar": 231, "invok": 231, "apk": 231, "apt": 231, "yum": 231, "dnf": 231, "pacman": 231, "zypper": 231, "brew": 231, "pkgutil": 231, "chocolatei": 231, "tutori": 232, "work": [233, 261], "tabl": [233, 239, 246, 253, 265], "contribut": 234, "center": 234, "ce": 236, "context": 241, "two": 241, "static": 242, "modifi": 242, "its": 242, "link": 242, "between": 242, "concept": 242, "understand": [244, 263], "flexibl": 244, "rais": 244, "condit": 244, "chang": [248, 251], "condition": 248, "select": 248, "onli": [249, 254], "first": 250, "specif": 251, "zip": 252, "store": 252, "branch": 252, "conandata": 252, "local": [255, 260], "alreadi": 255, "prepar": 258, "put": 261, "sai": 261, "revert": 261, "featur": 264, "unus": 264, "conflict": 266, "resolv": 266, "evolv": 267, "semant": 269, "express": 269, "autom": 270, "what": 271, "migrat": 271, "cli": 271, "checker": 271, "immut": 271, "optim": 271}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 60}, "alltitles": {"Page Not Found": [[0, "page-not-found"]], "Changelog": [[1, "changelog"]], "2.0.17 (10-Jan-2024)": [[1, "jan-2024"]], "2.0.16 (21-Dec-2023)": [[1, "dec-2023"]], "2.0.15 (20-Dec-2023)": [[1, "id8"]], "2.0.14 (14-Nov-2023)": [[1, "nov-2023"]], "2.0.13 (28-Sept-2023)": [[1, "sept-2023"]], "2.0.12 (26-Sept-2023)": [[1, "id90"]], "2.0.11 (18-Sept-2023)": [[1, "id102"]], "2.0.10 (29-Aug-2023)": [[1, "aug-2023"]], "2.0.9 (19-Jul-2023)": [[1, "jul-2023"]], "2.0.8 (13-Jul-2023)": [[1, "id188"]], "2.0.7 (21-Jun-2023)": [[1, "jun-2023"]], "2.0.6 (26-May-2023)": [[1, "may-2023"]], "2.0.5 (18-May-2023)": [[1, "id257"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id317"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id366"]], "2.0.0 (22-Feb-2023)": [[1, "feb-2023"]], "2.0.0-beta10 (16-Feb-2023)": [[1, "beta10-16-feb-2023"]], "2.0.0-beta9 (31-Jan-2023)": [[1, "beta9-31-jan-2023"]], "2.0.0-beta8 (12-Jan-2023)": [[1, "beta8-12-jan-2023"]], "2.0.0-beta7 (22-Dec-2022)": [[1, "beta7-22-dec-2022"]], "2.0.0-beta6 (02-Dec-2022)": [[1, "beta6-02-dec-2022"]], "2.0.0-beta5 (11-Nov-2022)": [[1, "beta5-11-nov-2022"]], "2.0.0-beta4 (11-Oct-2022)": [[1, "beta4-11-oct-2022"]], "2.0.0-beta3 (12-Sept-2022)": [[1, "beta3-12-sept-2022"]], "2.0.0-beta2 (27-Jul-2022)": [[1, "beta2-27-jul-2022"]], "2.0.0-beta1 (20-Jun-2022)": [[1, "beta1-20-jun-2022"]], "Devops guide": [[2, "devops-guide"]], "Creating an Artifactory backup repo for your sources": [[3, "creating-an-artifactory-backup-repo-for-your-sources"]], "Backing up third-party sources with Conan": [[4, "backing-up-third-party-sources-with-conan"]], "Configuration overview": [[4, "configuration-overview"]], "Usage": [[4, "usage"]], "Setting up the necessary configs": [[4, "setting-up-the-necessary-configs"]], "Run Conan as normal": [[4, "run-conan-as-normal"]], "Upload the packages": [[4, "upload-the-packages"]], "Creating the backup repository": [[4, "creating-the-backup-repository"]], "Creating and hosting your own ConanCenter binaries": [[5, "creating-and-hosting-your-own-conancenter-binaries"]], "Updating from upstream": [[5, "updating-from-upstream"]], "Managing package metadata files": [[6, "managing-package-metadata-files"]], "Creating metadata in recipes": [[6, "creating-metadata-in-recipes"]], "Creating metadata with hooks": [[6, "creating-metadata-with-hooks"]], "Adding metadata with commands": [[6, "adding-metadata-with-commands"]], "Uploading metadata": [[6, "uploading-metadata"]], "Downloading metadata": [[6, "downloading-metadata"], [87, "downloading-metadata"]], "Removing metadata": [[6, "removing-metadata"]], "test_package as metadata": [[6, "test-package-as-metadata"]], "Save and restore packages from/to the cache": [[7, "save-and-restore-packages-from-to-the-cache"]], "Using ConanCenter packages in production environments": [[8, "using-conancenter-packages-in-production-environments"]], "Repeatability and reproducibility": [[8, "repeatability-and-reproducibility"]], "Service reliability": [[8, "service-reliability"]], "Compliance and security": [[8, "compliance-and-security"]], "Control and customization": [[8, "control-and-customization"]], "Versioning": [[9, "versioning"], [265, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [105, "examples"]], "Conan commands examples": [[12, "conan-commands-examples"]], "Using packages-lists": [[13, "using-packages-lists"]], "Listing packages and downloading them": [[13, "listing-packages-and-downloading-them"]], "Downloading from one remote and uploading to a different remote": [[13, "downloading-from-one-remote-and-uploading-to-a-different-remote"]], "Building and uploading packages": [[13, "building-and-uploading-packages"]], "Removing packages lists": [[13, "removing-packages-lists"]], "ConanFile methods examples": [[14, "conanfile-methods-examples"]], "ConanFile layout() examples": [[15, "conanfile-layout-examples"]], "Declaring the layout when the Conanfile is inside a subfolder": [[16, "declaring-the-layout-when-the-conanfile-is-inside-a-subfolder"]], "Using components and editable packages": [[17, "using-components-and-editable-packages"]], "Declaring the layout when we have multiple subprojects": [[18, "declaring-the-layout-when-we-have-multiple-subprojects"]], "Declaring the layout when creating packages for third-party libraries": [[19, "declaring-the-layout-when-creating-packages-for-third-party-libraries"]], "ConanFile package_info() examples": [[20, "conanfile-package-info-examples"]], "Define components for Conan packages that provide multiple libraries": [[21, "define-components-for-conan-packages-that-provide-multiple-libraries"], [251, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [251, "propagating-environment-or-configuration-information-to-consumers"]], "Configuration files examples": [[23, "configuration-files-examples"]], "Customize your settings: create your settings_user.yml": [[24, "customize-your-settings-create-your-settings-user-yml"]], "Locate the settings_user.yml": [[24, "locate-the-settings-user-yml"]], "Use your new settings": [[24, "use-your-new-settings"]], "Cross-building examples": [[25, "cross-building-examples"]], "Integrating Conan in Android Studio": [[26, "integrating-conan-in-android-studio"]], "Creating a new project": [[26, "creating-a-new-project"]], "Introducing dependencies with Conan": [[26, "introducing-dependencies-with-conan"]], "conanfile.txt": [[26, "conanfile-txt"], [142, "conanfile-txt"]], "build.gradle": [[26, "build-gradle"]], "conan_android_toolchain.cmake": [[26, "conan-android-toolchain-cmake"]], "CMakeLists.txt": [[26, "cmakelists-txt"]], "Building the application": [[26, "building-the-application"]], "Cross building to Android with the NDK": [[27, "cross-building-to-android-with-the-ndk"]], "Read more": [[27, "read-more"], [107, "read-more"], [112, "read-more"], [142, "read-more"], [155, "read-more"], [162, "read-more"], [217, "read-more"], [238, "read-more"], [240, "read-more"], [241, "read-more"], [242, "read-more"], [243, "read-more"], [244, "read-more"], [245, "read-more"], [247, "read-more"], [248, "read-more"], [249, "read-more"], [250, "read-more"], [251, "read-more"], [252, "read-more"], [256, "read-more"], [257, "read-more"], [258, "read-more"], [259, "read-more"], [267, "read-more"]], "Developer tools and flows": [[28, "developer-tools-and-flows"]], "Debugging and stepping into dependencies": [[29, "debugging-and-stepping-into-dependencies"]], "Building from source": [[29, "building-from-source"]], "Step into a dependency with Visual Studio": [[29, "step-into-a-dependency-with-visual-studio"]], "Conan extensions examples": [[30, "conan-extensions-examples"]], "Custom command: Clean old recipe and package revisions": [[31, "custom-command-clean-old-recipe-and-package-revisions"]], "Locate the command": [[31, "locate-the-command"]], "Run it": [[31, "run-it"], [36, "run-it"]], "Code tour": [[31, "code-tour"], [36, "code-tour"]], "parser": [[31, "parser"]], "User input and user output": [[31, "user-input-and-user-output"]], "Conan public API": [[31, "conan-public-api"]], "Custom commands": [[32, "custom-commands"], [155, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [157, "custom-deployers"]], "Creating a Conan-agnostic deploy of dependencies for developer use": [[35, "creating-a-conan-agnostic-deploy-of-dependencies-for-developer-use"]], "Copy sources from all your dependencies": [[36, "copy-sources-from-all-your-dependencies"]], "Locate the deployer": [[36, "locate-the-deployer"]], "deploy()": [[36, "deploy"], [124, "deploy"]], "Graph examples": [[37, "graph-examples"]], "Use a CMake macro packaged in a dependency": [[38, "use-a-cmake-macro-packaged-in-a-dependency"]], "Depending on same version of a tool-require with different options": [[39, "depending-on-same-version-of-a-tool-require-with-different-options"]], "Depending on different versions of the same tool-require": [[40, "depending-on-different-versions-of-the-same-tool-require"]], "Use cmake modules inside a tool_requires transparently": [[41, "use-cmake-modules-inside-a-tool-requires-transparently"]], "Using the same requirement as a requires and as a tool_requires": [[42, "using-the-same-requirement-as-a-requires-and-as-a-tool-requires"]], "Conan recipe tools examples": [[43, "conan-recipe-tools-examples"]], "tools.autotools": [[44, "tools-autotools"]], "Build a simple Autotools project using Conan": [[45, "build-a-simple-autotools-project-using-conan"]], "Building on Linux and macOS": [[45, "building-on-linux-and-macos"]], "tools.cmake": [[46, "tools-cmake"]], "CMakeToolchain: Building your project using CMakePresets": [[47, "cmaketoolchain-building-your-project-using-cmakepresets"]], "Generating the toolchain": [[47, "generating-the-toolchain"]], "Building the project using CMakePresets": [[47, "building-the-project-using-cmakepresets"]], "CMakeToolchain: Extending your CMakePresets with Conan generated ones": [[48, "cmaketoolchain-extending-your-cmakepresets-with-conan-generated-ones"]], "CMakeToolchain: Inject arbitrary CMake variables into dependencies": [[49, "cmaketoolchain-inject-arbitrary-cmake-variables-into-dependencies"]], "tools.files": [[50, "tools-files"]], "Patching sources": [[51, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[51, "patching-using-replace-in-file"]], "in source() method": [[51, "in-source-method"]], "in build() method": [[51, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[51, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[51, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[52, "tools-google"]], "Build a simple Bazel project using Conan": [[53, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[54, "tools-meson"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Capturing Git scm information": [[56, "capturing-git-scm-information"]], "Credentials management": [[56, "credentials-management"]], "Conan 2.0 - C and C++ Package Manager Documentation": [[57, "conan-2-0-c-and-c-package-manager-documentation"]], "Install": [[58, "install"]], "Install with pip (recommended)": [[58, "install-with-pip-recommended"]], "Known installation issues with pip": [[58, "known-installation-issues-with-pip"]], "Update": [[58, "update"]], "Install with pipx": [[58, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[58, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[58, "install-from-source"]], "Integrations": [[59, "integrations"]], "android_logo Android": [[60, "android-logo-android"]], "autotools_logo Autotools": [[61, "autotools-logo-autotools"]], "bazel_logo Bazel": [[62, "bazel-logo-bazel"]], "clion_logo CLion": [[63, "clion-logo-clion"]], "Introduction": [[63, "introduction"], [70, "introduction"], [175, "introduction"]], "Installing the plugin": [[63, "installing-the-plugin"]], "Configuring the plugin": [[63, "configuring-the-plugin"]], "Using the plugin": [[63, "using-the-plugin"]], "cmake_logo CMake": [[64, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[65, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[65, "artifactory-build-info"]], "How to install the build info extension commands": [[65, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[65, "generating-a-build-info"]], "gnu_make_logo Makefile": [[66, "gnu-make-logo-makefile"]], "meson_logo Meson": [[67, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[68, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[69, "xcode-logo-xcode"]], "Open Source": [[70, "open-source"]], "Decentralized package manager": [[70, "decentralized-package-manager"]], "Binary management": [[70, "binary-management"]], "All platforms, all build systems and compilers": [[70, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[70, "stable"]], "Community": [[70, "community"]], "Navigating the documentation": [[70, "navigating-the-documentation"]], "Knowledge": [[71, "knowledge"]], "Cheat sheet": [[72, "cheat-sheet"]], "FAQ": [[73, "faq"]], "Troubleshooting": [[73, "troubleshooting"]], "ERROR: Missing prebuilt package": [[73, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[73, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[73, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[73, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[74, "core-guidelines"]], "Good practices": [[74, "good-practices"]], "Forbidden practices": [[74, "forbidden-practices"]], "Videos": [[75, "videos"]], "Reference": [[76, "reference"], [180, "reference"], [185, "reference"], [186, "reference"], [187, "reference"], [188, "reference"], [191, "reference"], [192, "reference"], [193, "reference"], [194, "reference"], [203, "reference"], [204, "reference"], [205, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [213, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [222, "reference"], [224, "reference"], [231, "reference"], [231, "id4"], [231, "id6"], [231, "id7"], [231, "id8"], [231, "id9"], [231, "id10"], [231, "id11"], [231, "id12"]], "The binary model": [[77, "the-binary-model"]], "Customizing the binary compatibility": [[78, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[78, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[78, "information-erasure-in-package-id-method"]], "The compatibility() method": [[78, "the-compatibility-method"]], "The compatibility.py plugin": [[78, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[78, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[78, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[78, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[78, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[79, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[79, "non-embed-mode"]], "Embed mode": [[79, "embed-mode"]], "Extending the binary model": [[80, "extending-the-binary-model"]], "Custom settings": [[80, "custom-settings"]], "Custom options": [[80, "custom-options"]], "Settings vs options vs conf": [[80, "settings-vs-options-vs-conf"]], "Custom configuration": [[80, "custom-configuration"]], "Cross build target settings": [[80, "cross-build-target-settings"]], "How the package_id is computed": [[81, "how-the-package-id-is-computed"]], "Commands": [[82, "commands"]], "Command formatters": [[82, "command-formatters"]], "conan build": [[83, "conan-build"], [262, "conan-build"]], "conan cache": [[84, "conan-cache"]], "conan cache path": [[84, "conan-cache-path"]], "conan cache clean": [[84, "conan-cache-clean"]], "conan cache check-integrity": [[84, "conan-cache-check-integrity"]], "conan cache backup-upload": [[84, "conan-cache-backup-upload"]], "conan cache save": [[84, "conan-cache-save"]], "conan cache restore": [[84, "conan-cache-restore"]], "conan config": [[85, "conan-config"]], "conan config home": [[85, "conan-config-home"]], "conan config install": [[85, "conan-config-install"]], "conan config list": [[85, "conan-config-list"]], "conan config show": [[85, "conan-config-show"]], "conan create": [[86, "conan-create"]], "Using conan create with build requirements": [[86, "using-conan-create-with-build-requirements"]], "Conan create output": [[86, "conan-create-output"]], "conan download": [[87, "conan-download"]], "conan editable": [[88, "conan-editable"]], "conan editable add": [[88, "conan-editable-add"]], "conan editable remove": [[88, "conan-editable-remove"]], "conan editable list": [[88, "conan-editable-list"]], "conan export": [[89, "conan-export"]], "Output Formats": [[89, "output-formats"]], "conan export-pkg": [[90, "conan-export-pkg"], [262, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[91, "formatter-graph-info-json"]], "conan graph": [[92, "conan-graph"]], "conan graph build-order": [[93, "conan-graph-build-order"]], "conan graph build-order-merge": [[94, "conan-graph-build-order-merge"]], "conan graph explain": [[95, "conan-graph-explain"]], "conan graph info": [[96, "conan-graph-info"]], "conan inspect": [[97, "conan-inspect"]], "conan install": [[98, "conan-install"], [262, "conan-install"]], "Conanfile path or \u2013requires": [[98, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[98, "profiles-settings-options-conf"]], "Generators and deployers": [[98, "generators-and-deployers"]], "Name, version, user, channel": [[98, "name-version-user-channel"]], "Lockfiles": [[98, "lockfiles"], [243, "lockfiles"], [267, "lockfiles"]], "conan list": [[99, "conan-list"]], "Listing recipe references": [[99, "listing-recipe-references"]], "Listing recipe revisions": [[99, "listing-recipe-revisions"]], "Listing package IDs": [[99, "listing-package-ids"]], "Listing package revisions": [[99, "listing-package-revisions"]], "Listing graph artifacts": [[99, "listing-graph-artifacts"]], "List json output format": [[99, "list-json-output-format"]], "List html output format": [[99, "list-html-output-format"]], "List compact output format": [[99, "list-compact-output-format"]], "conan lock": [[100, "conan-lock"]], "conan lock add": [[101, "conan-lock-add"]], "conan lock create": [[102, "conan-lock-create"]], "conan lock merge": [[103, "conan-lock-merge"]], "conan lock remove": [[104, "conan-lock-remove"]], "conan new": [[105, "conan-new"], [105, "id1"]], "Custom templates": [[105, "custom-templates"]], "conan profile": [[106, "conan-profile"]], "conan profile detect": [[106, "conan-profile-detect"]], "conan profile list": [[106, "conan-profile-list"]], "conan profile path": [[106, "conan-profile-path"]], "conan profile show": [[106, "conan-profile-show"]], "conan remote": [[107, "conan-remote"]], "conan remote add": [[107, "conan-remote-add"]], "conan remote auth": [[107, "conan-remote-auth"]], "conan remote disable": [[107, "conan-remote-disable"]], "conan remote enable": [[107, "conan-remote-enable"]], "conan remote list": [[107, "conan-remote-list"]], "conan remote list-users": [[107, "conan-remote-list-users"]], "conan remote login": [[107, "conan-remote-login"]], "conan remote logout": [[107, "conan-remote-logout"]], "conan remote remove": [[107, "conan-remote-remove"]], "conan remote rename": [[107, "conan-remote-rename"]], "conan remote set-user": [[107, "conan-remote-set-user"]], "conan remote update": [[107, "conan-remote-update"]], "conan remove": [[108, "conan-remove"]], "conan search": [[109, "conan-search"]], "conan source": [[110, "conan-source"], [262, "conan-source"]], "conan test": [[111, "conan-test"]], "conan upload": [[112, "conan-upload"]], "conan version": [[113, "conan-version"]], "Conan Server": [[114, "conan-server"]], "Configuration": [[114, "configuration"]], "Server Parameters": [[114, "server-parameters"]], "Permissions Parameters": [[114, "permissions-parameters"]], "Authentication": [[114, "authentication"]], "Create Your Own Custom Authenticator": [[114, "create-your-own-custom-authenticator"]], "Authorizations": [[114, "authorizations"]], "Create Your Own Custom Authorizer": [[114, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[114, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[114, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[114, "running-conan-server-using-apache"]], "conanfile.py": [[115, "conanfile-py"]], "Attributes": [[116, "attributes"], [208, "attributes"], [217, "attributes"], [222, "attributes"], [223, "attributes"]], "Package reference": [[116, "package-reference"]], "name": [[116, "name"]], "version": [[116, "version"]], "user": [[116, "user"]], "channel": [[116, "channel"]], "Metadata": [[116, "metadata"]], "description": [[116, "description"]], "license": [[116, "license"]], "author": [[116, "author"]], "topics": [[116, "topics"]], "homepage": [[116, "homepage"]], "url": [[116, "url"]], "Requirements": [[116, "requirements"]], "requires": [[116, "requires"]], "tool_requires": [[116, "tool-requires"]], "build_requires": [[116, "build-requires"]], "test_requires": [[116, "test-requires"], [120, "test-requires"]], "python_requires": [[116, "python-requires"], [264, "python-requires"]], "python_requires_extend": [[116, "python-requires-extend"]], "Sources": [[116, "sources"]], "exports": [[116, "exports"]], "exports_sources": [[116, "exports-sources"]], "conan_data": [[116, "conan-data"]], "source_buildenv": [[116, "source-buildenv"]], "Binary model": [[116, "binary-model"]], "package_type": [[116, "package-type"]], "settings": [[116, "settings"]], "options": [[116, "options"]], "default_options": [[116, "default-options"]], "default_build_options": [[116, "default-build-options"]], "options_description": [[116, "options-description"]], "info": [[116, "info"]], "package_id_{embed,non_embed,unknown}_mode": [[116, "package-id-embed-non-embed-unknown-mode"]], "Build": [[116, "build"]], "generators": [[116, "generators"]], "build_policy": [[116, "build-policy"]], "win_bash": [[116, "win-bash"]], "win_bash_run": [[116, "win-bash-run"]], "Folders and layout": [[116, "folders-and-layout"]], "source_folder": [[116, "source-folder"]], "export_sources_folder": [[116, "export-sources-folder"]], "build_folder": [[116, "build-folder"]], "package_folder": [[116, "package-folder"]], "recipe_folder": [[116, "recipe-folder"]], "recipe_metadata_folder": [[116, "recipe-metadata-folder"]], "package_metadata_folder": [[116, "package-metadata-folder"]], "no_copy_source": [[116, "no-copy-source"]], "Layout": [[116, "layout"]], "folders": [[116, "folders"]], "cpp": [[116, "cpp"]], "layouts": [[116, "layouts"]], "Package information for consumers": [[116, "package-information-for-consumers"]], "cpp_info": [[116, "cpp-info"]], "buildenv_info": [[116, "buildenv-info"]], "runenv_info": [[116, "runenv-info"]], "conf_info": [[116, "conf-info"], [132, "conf-info"]], "deprecated": [[116, "deprecated"]], "provides": [[116, "provides"]], "Other": [[116, "other"]], "dependencies": [[116, "dependencies"]], "conf": [[116, "conf"], [180, "conf"], [182, "conf"], [185, "conf"], [188, "conf"], [198, "conf"], [205, "conf"], [207, "conf"], [210, "conf"], [212, "conf"], [213, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [222, "conf"], [223, "conf"], [224, "conf"]], "Output": [[116, "output"]], "Output contents": [[116, "output-contents"]], "revision_mode": [[116, "revision-mode"]], "upload_policy": [[116, "upload-policy"]], "required_conan_version": [[116, "required-conan-version"]], "implements": [[116, "implements"]], "alias": [[116, "alias"]], "Methods": [[117, "methods"]], "build()": [[118, "build"]], "build_id()": [[119, "build-id"]], "build_requirements()": [[120, "build-requirements"]], "tool_requires()": [[120, "tool-requires"]], "": [[120, "host-version"]], "compatibility()": [[121, "compatibility"]], "config_options()": [[122, "config-options"]], "Available automatic implementations": [[122, "available-automatic-implementations"], [123, "available-automatic-implementations"], [131, "available-automatic-implementations"]], "auto_shared_fpic": [[122, "auto-shared-fpic"], [123, "auto-shared-fpic"]], "configure()": [[123, "configure"]], "export()": [[125, "export"]], "export_sources()": [[126, "export-sources"]], "generate()": [[127, "generate"]], "self.dependencies": [[127, "self-dependencies"]], "Dependencies interface": [[127, "dependencies-interface"]], "Iterating dependencies": [[127, "iterating-dependencies"]], "Dependencies cpp_info interface": [[127, "dependencies-cpp-info-interface"]], "init()": [[128, "init"]], "layout()": [[129, "layout"]], "self.folders": [[129, "self-folders"], [263, "self-folders"]], "self.cpp": [[129, "self-cpp"], [263, "self-cpp"]], "Environment variables and configuration": [[129, "environment-variables-and-configuration"]], "package()": [[130, "package"]], "package_id()": [[131, "package-id"]], "auto_header_only": [[131, "auto-header-only"]], "Information erasure": [[131, "information-erasure"]], "Partial information erasure": [[131, "partial-information-erasure"]], "Adding information": [[131, "adding-information"]], "package_info()": [[132, "package-info"]], "cpp_info: Library and build information": [[132, "cpp-info-library-and-build-information"]], "Properties": [[132, "properties"], [187, "properties"], [208, "properties"], [210, "properties"], [211, "properties"]], "Components": [[132, "components"]], "buildenv_info, runenv_info": [[132, "buildenv-info-runenv-info"]], "requirements()": [[133, "requirements"]], "Requirement traits": [[133, "requirement-traits"]], "headers": [[133, "headers"]], "libs": [[133, "libs"]], "build": [[133, "build"]], "run": [[133, "run"]], "visible": [[133, "visible"]], "transitive_headers": [[133, "transitive-headers"]], "transitive_libs": [[133, "transitive-libs"]], "test": [[133, "test"]], "package_id_mode": [[133, "package-id-mode"]], "force": [[133, "force"]], "override": [[133, "override"]], "direct": [[133, "direct"]], "package_type trait inferring": [[133, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[133, "default-traits-for-each-kind-of-requires"]], "set_name()": [[134, "set-name"]], "set_version()": [[135, "set-version"]], "source()": [[136, "source"]], "Source caching": [[136, "source-caching"]], "Forced retrieval of sources": [[136, "forced-retrieval-of-sources"]], "system_requirements()": [[137, "system-requirements"]], "Collecting system requirements": [[137, "collecting-system-requirements"]], "test()": [[138, "test"]], "validate()": [[139, "validate"]], "validate_build()": [[140, "validate-build"]], "Running and output": [[141, "running-and-output"]], "Output text from recipes": [[141, "output-text-from-recipes"]], "Running commands": [[141, "running-commands"]], "[requires]": [[142, "requires"]], "[tool_requires]": [[142, "tool-requires"], [147, "tool-requires"]], "[test_requires]": [[142, "test-requires"]], "[generators]": [[142, "generators"]], "[options]": [[142, "options"], [147, "options"]], "[layout]": [[142, "layout"]], "Configuration files": [[143, "configuration-files"]], ".conanrc": [[144, "conanrc"]], "credentials.json": [[145, "credentials-json"]], "global.conf": [[146, "global-conf"]], "Introduction to configuration": [[146, "introduction-to-configuration"]], "User/Tools configurations": [[146, "user-tools-configurations"]], "Configuration file template": [[146, "configuration-file-template"]], "Configuration data types": [[146, "configuration-data-types"]], "Configuration data operators": [[146, "configuration-data-operators"]], "Configuration patterns": [[146, "configuration-patterns"]], "Information about built-in confs": [[146, "information-about-built-in-confs"]], "Networking confs": [[146, "networking-confs"]], "Configuration of client certificates": [[146, "configuration-of-client-certificates"]], "UX confs": [[146, "ux-confs"]], "Skip warnings": [[146, "skip-warnings"]], "profiles": [[147, "profiles"]], "Introduction to profiles": [[147, "introduction-to-profiles"]], "Profile sections": [[147, "profile-sections"]], "[settings]": [[147, "settings"]], "[system_tools] (DEPRECATED)": [[147, "system-tools-deprecated"]], "[buildenv]": [[147, "buildenv"]], "[runenv]": [[147, "runenv"]], "[conf]": [[147, "conf"]], "[replace_requires]": [[147, "replace-requires"]], "[replace_tool_requires]": [[147, "replace-tool-requires"]], "[platform_requires]": [[147, "platform-requires"]], "[platform_tool_requires]": [[147, "platform-tool-requires"]], "Profile rendering": [[147, "profile-rendering"]], "Profile patterns": [[147, "profile-patterns"]], "Profile includes": [[147, "profile-includes"]], "remotes.json": [[148, "remotes-json"]], "settings.yml": [[149, "settings-yml"]], "Operating systems": [[149, "operating-systems"]], "Compilers": [[149, "compilers"]], "msvc": [[149, "msvc"]], "intel-cc": [[149, "intel-cc"]], "Architectures": [[149, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[149, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[149, "customizing-settings"]], "Adding new settings": [[149, "adding-new-settings"]], "Adding new sub-settings": [[149, "adding-new-sub-settings"]], "Add new values": [[149, "add-new-values"]], "settings_user.yml": [[149, "settings-user-yml"]], "source_credentials.json": [[150, "source-credentials-json"]], "Environment variables": [[151, "environment-variables"]], "CONAN_HOME": [[151, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[151, "conan-default-profile"]], "Remote login variables": [[151, "remote-login-variables"]], "Terminal color variables": [[151, "terminal-color-variables"]], "Logging": [[151, "logging"]], "Extensions": [[152, "extensions"]], "Binary compatibility": [[153, "binary-compatibility"]], "Command wrapper": [[154, "command-wrapper"], [271, "command-wrapper"]], "Location and naming": [[155, "location-and-naming"]], "Scoping": [[155, "scoping"]], "Decorators": [[155, "decorators"]], "conan_command(group=None, formatters=None)": [[155, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[155, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[155, "argument-definition-and-parsing"]], "Formatters": [[155, "formatters"]], "Commands parameters": [[155, "commands-parameters"]], "Custom Conan generators": [[156, "custom-conan-generators"]], "Custom generators as python_requires": [[156, "custom-generators-as-python-requires"]], "Using global custom generators": [[156, "using-global-custom-generators"]], "Deployers": [[157, "deployers"]], "Built-in deployers": [[157, "built-in-deployers"]], "full_deploy": [[157, "full-deploy"]], "direct_deploy": [[157, "direct-deploy"]], "configuration": [[157, "configuration"], [187, "configuration"]], "Hooks": [[158, "hooks"]], "Hook structure": [[158, "hook-structure"]], "Importing from a module": [[158, "importing-from-a-module"]], "Hook interface": [[158, "hook-interface"]], "Storage, activation and sharing": [[158, "storage-activation-and-sharing"]], "Official Hooks": [[158, "official-hooks"]], "Package signing": [[159, "package-signing"], [271, "package-signing"]], "Profile plugin": [[160, "profile-plugin"]], "Python API": [[161, "python-api"]], "Conan API Reference": [[162, "conan-api-reference"]], "Config API": [[163, "config-api"]], "Download API": [[164, "download-api"]], "Export API": [[165, "export-api"]], "Graph API": [[166, "graph-api"]], "Install API": [[167, "install-api"]], "List API": [[168, "list-api"]], "New API": [[169, "new-api"]], "Profiles API": [[170, "profiles-api"]], "Remotes API": [[171, "remotes-api"]], "Remove API": [[172, "remove-api"]], "Search API": [[173, "search-api"]], "Upload API": [[174, "upload-api"]], "Python requires": [[175, "python-requires"]], "Extending base classes": [[175, "extending-base-classes"]], "Reusing files": [[175, "reusing-files"]], "Testing python-requires": [[175, "testing-python-requires"]], "Effect in package_id": [[175, "effect-in-package-id"]], "Resolution of python_requires": [[175, "resolution-of-python-requires"]], "Recipe tools": [[176, "recipe-tools"]], "conan.tools.android": [[177, "conan-tools-android"]], "android_abi()": [[177, "android-abi"]], "conan.tools.apple": [[178, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[179, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[179, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[179, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[179, "conan-tools-apple-xcrun"]], "XcodeBuild": [[180, "xcodebuild"]], "XcodeDeps": [[181, "xcodedeps"]], "Additional variables defined": [[181, "additional-variables-defined"]], "Components support": [[181, "components-support"]], "Custom configurations": [[181, "custom-configurations"], [213, "custom-configurations"]], "XcodeToolchain": [[182, "xcodetoolchain"]], "conan.tools.build": [[183, "conan-tools-build"]], "Building": [[183, "building"]], "conan.tools.build.build_jobs()": [[183, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[183, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[183, "conan-tools-build-can-run"]], "Cppstd": [[183, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[183, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[183, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[183, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[183, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[183, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[183, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[184, "conan-tools-cmake"]], "CMake": [[185, "cmake"]], "cmake_layout": [[186, "cmake-layout"]], "Multi-setting/option cmake_layout": [[186, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[187, "cmakedeps"]], "Generated files": [[187, "generated-files"], [188, "generated-files"], [193, "generated-files"], [194, "generated-files"], [204, "generated-files"], [205, "generated-files"], [206, "generated-files"], [208, "generated-files"], [211, "generated-files"], [212, "generated-files"], [217, "generated-files"], [221, "generated-files"]], "Customization": [[187, "customization"], [188, "customization"], [204, "customization"], [205, "customization"], [206, "customization"], [208, "customization"], [211, "customization"], [217, "customization"], [220, "customization"], [221, "customization"], [222, "customization"], [224, "customization"]], "build_context_activated": [[187, "build-context-activated"], [208, "build-context-activated"], [211, "build-context-activated"]], "build_context_suffix": [[187, "build-context-suffix"], [208, "build-context-suffix"]], "build_context_build_modules": [[187, "build-context-build-modules"]], "check_components_exist": [[187, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[187, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[187, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[187, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[188, "cmaketoolchain"]], "preprocessor_definitions": [[188, "preprocessor-definitions"], [217, "preprocessor-definitions"]], "cache_variables": [[188, "cache-variables"]], "variables": [[188, "variables"]], "user_presets_path": [[188, "user-presets-path"]], "Extra compilation flags": [[188, "extra-compilation-flags"]], "presets_prefix": [[188, "presets-prefix"]], "Using a custom toolchain file": [[188, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[188, "extending-and-advanced-customization"]], "Customizing the content blocks": [[188, "customizing-the-content-blocks"]], "Cross building": [[188, "cross-building"]], "conan.tools.CppInfo": [[189, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[189, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[190, "conan-tools-env"]], "Environment": [[191, "environment"]], "Variable declaration": [[191, "variable-declaration"]], "Composition": [[191, "composition"]], "Obtaining environment variables": [[191, "obtaining-environment-variables"]], "Environment definition": [[191, "environment-definition"]], "EnvVars": [[192, "envvars"]], "Creating environment files": [[192, "creating-environment-files"]], "Running with environment files": [[192, "running-with-environment-files"]], "Applying the environment variables": [[192, "applying-the-environment-variables"]], "Iterating the variables": [[192, "iterating-the-variables"]], "VirtualBuildEnv": [[193, "virtualbuildenv"]], "VirtualRunEnv": [[194, "virtualrunenv"]], "conan.tools.files": [[195, "conan-tools-files"]], "conan.tools.files basic operations": [[196, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[196, "conan-tools-files-copy"]], "conan.tools.files.load()": [[196, "conan-tools-files-load"]], "conan.tools.files.save()": [[196, "conan-tools-files-save"]], "conan.tools.files.rename()": [[196, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[196, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[196, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[196, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[196, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[196, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[196, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[196, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[196, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[196, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[197, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[197, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[197, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[197, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[198, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[198, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[198, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[198, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[199, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[200, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[200, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[200, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[200, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[201, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[201, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[201, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[201, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[202, "conan-tools-gnu"]], "Autotools": [[203, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[203, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[203, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[203, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[204, "autotoolsdeps"]], "AutotoolsToolchain": [[205, "autotoolstoolchain"]], "Customizing the environment": [[205, "customizing-the-environment"], [223, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[205, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[206, "makedeps"]], "Flags": [[206, "flags"]], "PkgConfig": [[207, "pkgconfig"]], "PkgConfigDeps": [[208, "pkgconfigdeps"]], "Naming": [[208, "naming"], [211, "naming"]], "conan.tools.google": [[209, "conan-tools-google"]], "Bazel": [[210, "bazel"]], "BazelDeps": [[211, "bazeldeps"]], "BazelToolchain": [[212, "bazeltoolchain"]], "conan.tools.intel": [[213, "conan-tools-intel"]], "IntelCC": [[213, "intelcc"]], "conan.tools.layout": [[214, "conan-tools-layout"]], "Predefined layouts": [[214, "predefined-layouts"]], "basic_layout": [[214, "basic-layout"]], "conan.tools.meson": [[215, "conan-tools-meson"]], "Meson": [[216, "meson"]], "MesonToolchain": [[217, "mesontoolchain"]], "conan_meson_native.ini": [[217, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[217, "conan-meson-cross-ini"]], "Default directories": [[217, "default-directories"]], "project_options": [[217, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[217, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[217, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[217, "objective-c-arguments"]], "conan.tools.microsoft": [[218, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[219, "conan-tools-microsoft-visual"]], "check_min_vs": [[219, "check-min-vs"]], "msvc_runtime_flag": [[219, "msvc-runtime-flag"]], "is_msvc": [[219, "is-msvc"]], "is_msvc_static_runtime": [[219, "is-msvc-static-runtime"]], "msvs_toolset": [[219, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[219, "conan-tools-microsoft-subsystems"]], "unix_path": [[219, "unix-path"]], "MSBuild": [[220, "msbuild"]], "attributes": [[220, "attributes"]], "MSBuildDeps": [[221, "msbuilddeps"]], "Requirement traits support": [[221, "requirement-traits-support"]], "Configurations": [[221, "configurations"]], "Dependencies": [[221, "dependencies"]], "MSBuildToolchain": [[222, "msbuildtoolchain"]], "NMakeDeps": [[223, "nmakedeps"]], "NMakeToolchain": [[223, "nmaketoolchain"]], "constructor": [[223, "constructor"]], "VCVars": [[224, "vcvars"]], "vs_layout": [[225, "vs-layout"]], "conan.tools.scm": [[226, "conan-tools-scm"]], "Git": [[227, "git"]], "Version": [[228, "version"]], "conan.tools.scons": [[229, "conan-tools-scons"]], "SConsDeps": [[229, "sconsdeps"]], "conan.tools.system": [[230, "conan-tools-system"]], "conan.tools.system.package_manager": [[231, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[231, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[231, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[231, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[231, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[231, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[231, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[231, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[231, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[231, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[231, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[231, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[231, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[232, "tutorial"]], "Working with Conan repositories": [[233, "working-with-conan-repositories"]], "Table of contents": [[233, null], [239, null], [246, null], [253, null], [265, null]], "Contributing to Conan Center": [[234, "contributing-to-conan-center"]], "Setting up a Conan remote": [[235, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[236, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[236, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[236, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[237, "setting-up-a-conan-server"]], "Uploading Packages": [[238, "uploading-packages"]], "Consuming packages": [[239, "consuming-packages"]], "Build a simple CMake project using Conan": [[240, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[241, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[241, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[241, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[242, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[242, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[242, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[242, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[242, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[243, "introduction-to-versioning"]], "Version ranges": [[243, "version-ranges"], [269, "version-ranges"]], "Revisions": [[243, "revisions"], [268, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[244, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[244, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[244, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[244, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[245, "using-build-tools-as-conan-packages"]], "Creating packages": [[246, "creating-packages"]], "Add dependencies to packages": [[247, "add-dependencies-to-packages"]], "Build packages: the build() method": [[248, "build-packages-the-build-method"]], "Build and run tests for your project": [[248, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[248, "changes-introduced-in-the-recipe"], [251, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[248, "changes-introduced-in-the-library-sources"], [251, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[248, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[248, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[249, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[249, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[249, "c-libraries"]], "Header-only libraries": [[249, "header-only-libraries"]], "Create your first Conan package": [[250, "create-your-first-conan-package"]], "A note about the Conan cache": [[250, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[251, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[251, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[251, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[251, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[252, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[252, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[252, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[252, "using-the-conandata-yml-file"]], "Other types of packages": [[253, "other-types-of-packages"]], "Header-only packages": [[254, "header-only-packages"]], "Header-only library with tests": [[254, "header-only-library-with-tests"]], "Package prebuilt binaries": [[255, "package-prebuilt-binaries"]], "Locally building binaries": [[255, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[255, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[255, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[256, "tool-requires-packages"]], "A simple tool require recipe": [[256, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[256, "removing-settings-in-package-id"]], "Package files: the package() method": [[257, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[257, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[257, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[257, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[258, "preparing-the-build"]], "Testing Conan packages": [[259, "testing-conan-packages"]], "Developing packages locally": [[260, "developing-packages-locally"]], "Packages in editable mode": [[261, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[261, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[261, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[261, "working-with-editable-packages"]], "Building editable dependencies": [[261, "building-editable-dependencies"]], "Revert the editable mode": [[261, "revert-the-editable-mode"]], "Package Development Flow": [[262, "package-development-flow"]], "Understanding the Conan Package layout": [[263, "understanding-the-conan-package-layout"]], "cpp.package": [[263, "cpp-package"]], "cpp.source and cpp.build": [[263, "cpp-source-and-cpp-build"]], "Other important Conan features": [[264, "other-important-conan-features"]], "Packages lists": [[264, "packages-lists"]], "Removing unused packages from the cache": [[264, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[266, "dependencies-conflicts"]], "Resolving conflicts": [[266, "resolving-conflicts"]], "Overriding options": [[266, "overriding-options"]], "Multi-configuration lockfiles": [[267, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[267, "evolving-lockfiles"]], "Creating different revisions": [[268, "creating-different-revisions"]], "Using revisions": [[268, "using-revisions"]], "Uploading revisions": [[268, "uploading-revisions"]], "Package revisions": [[268, "package-revisions"]], "Semantic versioning": [[269, "semantic-versioning"]], "Range expressions": [[269, "range-expressions"]], "Versions": [[270, "versions"]], "Automating versions": [[270, "automating-versions"]], "Requiring the new versions": [[270, "requiring-the-new-versions"]], "What\u2019s new in Conan 2.0": [[271, "what-s-new-in-conan-2-0"]], "Conan 2.0 migration guide": [[271, "conan-2-0-migration-guide"]], "New graph model": [[271, "new-graph-model"]], "New public Python API": [[271, "new-public-python-api"]], "New build system integrations": [[271, "new-build-system-integrations"]], "New custom user commands": [[271, "new-custom-user-commands"]], "New CLI": [[271, "new-cli"]], "New deployers": [[271, "new-deployers"]], "New package_id": [[271, "new-package-id"]], "compatibility.py": [[271, "compatibility-py"]], "New lockfiles": [[271, "new-lockfiles"]], "New configuration and environment management": [[271, "new-configuration-and-environment-management"]], "Multi-revision cache": [[271, "multi-revision-cache"]], "New extensions plugins": [[271, "new-extensions-plugins"]], "Profile checker": [[271, "profile-checker"]], "Package immutability optimizations": [[271, "package-immutability-optimizations"]]}, "indexentries": {"append() (conf method)": [[132, "conans.model.conf.Conf.append"]], "define() (conf method)": [[132, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[132, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[132, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[132, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[132, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[162, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[163, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[163, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[164, "conan.api.subapi.download.DownloadAPI"]], "exportapi (class in conan.api.subapi.export)": [[165, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[166, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[166, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[167, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[167, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[168, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[168, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[169, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[169, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[170, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[170, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[171, "conan.api.subapi.remotes.RemotesAPI"]], "list() (remotesapi method)": [[171, "conan.api.subapi.remotes.RemotesAPI.list"]], "removeapi (class in conan.api.subapi.remove)": [[172, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[173, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[174, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[174, "conan.api.subapi.upload.UploadAPI.prepare"]], "android_abi() (in module conan.tools.android)": [[177, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[179, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[179, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[179, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[179, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[179, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[179, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[179, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[179, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[179, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[179, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[179, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[179, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[179, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[179, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[180, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[183, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[183, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[183, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[185, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[185, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[186, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[187, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[188, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[191, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[191, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[191, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[191, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[191, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[191, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[191, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[191, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[191, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[191, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[191, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[192, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[192, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[193, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[194, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[196, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[196, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[196, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[196, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[197, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[198, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[200, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[201, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[203, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[203, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[204, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[205, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[206, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[206, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[207, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[207, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[208, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[208, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[208, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[210, "conan.tools.google.Bazel"]], "build() (bazel method)": [[210, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[210, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[211, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[211, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[211, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[212, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[212, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[212, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[213, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[213, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[213, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[213, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[213, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[213, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[216, "conan.tools.meson.Meson"]], "build() (meson method)": [[216, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[216, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[216, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[216, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[217, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[217, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[217, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[219, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[219, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[220, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[220, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[221, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[221, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[222, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[222, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[224, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[225, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[227, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[227, "conan.tools.scm.git.Git.checkout"]], "clone() (git method)": [[227, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[227, "conan.tools.scm.git.Git.commit_in_remote"]], "fetch_commit() (git method)": [[227, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[227, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[227, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[227, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[227, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[227, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[227, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[228, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[231, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[231, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[231, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[231, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[231, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[231, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[231, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[231, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[231, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[231, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[231, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[231, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[231, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[231, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[231, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[231, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[231, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[231, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file diff --git a/2/tutorial.html b/2/tutorial.html index 09ebb0b9a86..21191d98391 100644 --- a/2/tutorial.html +++ b/2/tutorial.html @@ -5,7 +5,7 @@ Tutorial — conan 2.0.17 documentation - + @@ -183,7 +183,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories.html b/2/tutorial/conan_repositories.html index 9f3db110c52..241a5fd7469 100644 --- a/2/tutorial/conan_repositories.html +++ b/2/tutorial/conan_repositories.html @@ -5,7 +5,7 @@ Working with Conan repositories — conan 2.0.17 documentation - + @@ -156,7 +156,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories/conan_center.html b/2/tutorial/conan_repositories/conan_center.html index 22b9f3bf226..3938ff174ac 100644 --- a/2/tutorial/conan_repositories/conan_center.html +++ b/2/tutorial/conan_repositories/conan_center.html @@ -5,7 +5,7 @@ Contributing to Conan Center — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories/setting_up_conan_remotes.html b/2/tutorial/conan_repositories/setting_up_conan_remotes.html index b19973be51d..3202f7d4e04 100644 --- a/2/tutorial/conan_repositories/setting_up_conan_remotes.html +++ b/2/tutorial/conan_repositories/setting_up_conan_remotes.html @@ -5,7 +5,7 @@ Setting up a Conan remote — conan 2.0.17 documentation - + @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html b/2/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html index 2176627849f..8c0701a1d26 100644 --- a/2/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html +++ b/2/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html @@ -5,7 +5,7 @@ Artifactory Community Edition for C/C++ — conan 2.0.17 documentation - + @@ -191,7 +191,7 @@

    Creating and Using a Conan Repo

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html b/2/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html index d13b66f60e0..baae752ddc7 100644 --- a/2/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html +++ b/2/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html @@ -5,7 +5,7 @@ Setting-up a Conan Server — conan 2.0.17 documentation - + @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/conan_repositories/uploading_packages.html b/2/tutorial/conan_repositories/uploading_packages.html index bd1858f9ed2..cd5e27f533d 100644 --- a/2/tutorial/conan_repositories/uploading_packages.html +++ b/2/tutorial/conan_repositories/uploading_packages.html @@ -5,7 +5,7 @@ Uploading Packages — conan 2.0.17 documentation - + @@ -180,7 +180,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/consuming_packages.html b/2/tutorial/consuming_packages.html index d6203d7ada3..eac7045e404 100644 --- a/2/tutorial/consuming_packages.html +++ b/2/tutorial/consuming_packages.html @@ -5,7 +5,7 @@ Consuming packages — conan 2.0.17 documentation - + @@ -192,7 +192,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/consuming_packages/build_simple_cmake_project.html b/2/tutorial/consuming_packages/build_simple_cmake_project.html index a059a2e6071..92b0e1d1362 100644 --- a/2/tutorial/consuming_packages/build_simple_cmake_project.html +++ b/2/tutorial/consuming_packages/build_simple_cmake_project.html @@ -5,7 +5,7 @@ Build a simple CMake project using Conan — conan 2.0.17 documentation - + @@ -272,7 +272,7 @@
    diff --git a/2/tutorial/consuming_packages/different_configurations.html b/2/tutorial/consuming_packages/different_configurations.html index 7718b34f0a1..3b1a6d3a776 100644 --- a/2/tutorial/consuming_packages/different_configurations.html +++ b/2/tutorial/consuming_packages/different_configurations.html @@ -5,7 +5,7 @@ Building for multiple configurations: Release, Debug, Static and Shared — conan 2.0.17 documentation - + @@ -131,7 +131,7 @@

    So far, we built a simple CMake project that depended on the zlib library and learned -about tool_requires, a special type or requirements for build-tools like CMake. In +about tool_requires, a special type of requirements for build-tools like CMake. In both cases, we did not specify anywhere that we wanted to build the application in Release or Debug mode, or if we wanted to link against static or shared libraries. That is because Conan, if not instructed otherwise, will use a default configuration @@ -218,8 +218,8 @@

    As we explained above, this is the equivalent of having debug profile and running these command using the --profile=debug argument instead of the --settings=build_type=Debug argument.

    -

    This conan install command will check if we already installed the required libraries -(Zlib) in Debug configuration and install them otherwise. It will also set the build +

    This conan install command will check if we already have the required libraries in the local cache +(Zlib) for Debug configuration and obtain them if not. It will also set the build configuration in the conan_toolchain.cmake toolchain that the CMakeToolchain generator creates so that when we build the application it’s built in Debug configuration. Now build your project as you did in the previous examples and check in the output how it was @@ -258,18 +258,15 @@ Zlib’s Conan package there’s an attribute set to build in that mode by default. We can change from static to shared linking by setting the shared option to True using the --options argument. To do so, please run:

    -
    -
    $ conan install . --output-folder=build --build=missing --options=zlib/1.2.11:shared=True
     
    -

    Doing this, Conan will install the Zlib shared libraries, generate the files to build with them and, also the necessary files to locate those dynamic libraries when running the application. Let’s build the application again after configuring it to link Zlib as a shared library:

    -
    -
    Windows
    +
    +
    Windows
    $ cd build
     # assuming Visual Studio 15 2017 is your VS version and that it matches your default profile
     $ cmake .. -G "Visual Studio 15 2017" -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
    @@ -279,8 +276,8 @@
     
    -
    -
    Linux, Macos
    +
    +
    Linux, Macos
    $ cd build
     $ cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
     $ cmake --build .
    @@ -291,8 +288,8 @@
     

    Now, if you try to run the compiled executable you will see an error because the executable can’t find the shared libraries for Zlib that we just installed.

    -
    -
    Windows
    +
    +
    Windows
    $ Release\compressor.exe
     (on a pop-up window) The code execution cannot proceed because zlib1.dll was not found. Reinstalling the program may fix this problem.
     # This error depends on the console being used and may not always pop up.
    @@ -300,8 +297,8 @@
     
    -
    -
    Linux, Macos
    +
    +
    Linux, Macos
    $ ./compressor
     ./compressor: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
     
    @@ -321,8 +318,8 @@ DYLD_FRAMEWORK_PATH environment variables so that executables can find the shared libraries.

    Activate the virtual environment, and run the executables again:

    -
    -
    Windows
    +
    +
    Windows
    $ conanrun.bat
     $ Release\compressor.exe
     Uncompressed size is: 233
    @@ -331,8 +328,8 @@
     
    -
    -
    Linux, macOS
    +
    +
    Linux, macOS
    $ source conanrun.sh
     $ ./compressor
     Uncompressed size is: 233
    @@ -344,14 +341,14 @@
     

    Just as in the previous example with the VirtualBuildEnv generator, when we run the conanrun.sh/bat script a deactivation script called deactivate_conanrun.sh/bat is created to restore the environment. Source or run it to do so:

    - diff --git a/2/tutorial/consuming_packages/use_tools_as_conan_packages.html b/2/tutorial/consuming_packages/use_tools_as_conan_packages.html index 4847f6e6a71..bf42eb83d01 100644 --- a/2/tutorial/consuming_packages/use_tools_as_conan_packages.html +++ b/2/tutorial/consuming_packages/use_tools_as_conan_packages.html @@ -5,7 +5,7 @@ Using build tools as Conan packages — conan 2.0.17 documentation - + @@ -359,7 +359,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages.html b/2/tutorial/creating_packages.html index 008dd07aa95..c10521d8f7b 100644 --- a/2/tutorial/creating_packages.html +++ b/2/tutorial/creating_packages.html @@ -5,7 +5,7 @@ Creating packages — conan 2.0.17 documentation - + @@ -226,7 +226,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/add_dependencies_to_packages.html b/2/tutorial/creating_packages/add_dependencies_to_packages.html index efc8ff0616c..8d0f31bc6ea 100644 --- a/2/tutorial/creating_packages/add_dependencies_to_packages.html +++ b/2/tutorial/creating_packages/add_dependencies_to_packages.html @@ -5,7 +5,7 @@ Add dependencies to packages — conan 2.0.17 documentation - + @@ -132,7 +132,7 @@ package for a “Hello World” C++ library. We used the
    conan.tools.scm.Git() tool to retrieve the sources from a git repository. So far, the package does not have any dependency on other Conan packages. -Let’s explain how to add a dependency to our package in a very similar way that we did in +Let’s explain how to add a dependency to our package in a very similar way to how we did in the consuming packages section. We will add some fancy colour output to our “Hello World” library using the fmt library.

    Please, first clone the sources to recreate this project. You can find them in the @@ -247,7 +247,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/build_packages.html b/2/tutorial/creating_packages/build_packages.html index 8e558de52ba..1f0b20d31f5 100644 --- a/2/tutorial/creating_packages/build_packages.html +++ b/2/tutorial/creating_packages/build_packages.html @@ -5,7 +5,7 @@ Build packages: the build() method — conan 2.0.17 documentation - + @@ -204,8 +204,8 @@

    Changes introduced in the recipetools.build:skip_test configuration in the build() method, after building the package and tests, to decide if we want to run the tests or not.

    -
  • In this case we are using gtest for testing and we have to add the check if the -build method to run the tests or not, but this configuration also affects the +

  • In this case we are using gtest for testing and we have to check if the +build method is to run the tests or not. This configuration also affects the execution of CMake.test() if you are using CTest and Meson.test() for Meson.

  • @@ -344,14 +344,14 @@

    Conditionally patching the source code"Hello {} Friends".format("Shared" if self.options.shared else "Static"))

    -

    Please, note that patching in build() should avoided if possible and only be done for +

    Please, note that patching in build() should be avoided if possible and only be done for very particular cases as it will make more difficult to develop your packages locally (we will explain more about this in the local development flow section later)

    Conditionally select your build system

    It’s not uncommon that some packages need one build system or another depending on the -platform we are building. For example, the hello library could build in Windows using +platform we are building on. For example, the hello library could build in Windows using CMake and in Linux and MacOS using Autotools. This can be easily handled in the build() method like this:

    diff --git a/2/tutorial/creating_packages/configure_options_settings.html b/2/tutorial/creating_packages/configure_options_settings.html index cb2156321c0..14255cd027d 100644 --- a/2/tutorial/creating_packages/configure_options_settings.html +++ b/2/tutorial/creating_packages/configure_options_settings.html @@ -5,7 +5,7 @@ Configure settings and options in recipes — conan 2.0.17 documentation - + @@ -176,16 +176,16 @@ are available. For example, in this case, we delete the fPIC option, because it should only be True if we are building the library as shared (in fact, some build systems will add this flag automatically when building a shared library).

    -
  • config_options(): This method is used to constraint the available options in a +

  • config_options(): This method is used to constrain the available options in a package before they take a value. If a value is assigned to a setting or option that is deleted inside this method, Conan will raise an error. In this case we are deleting the fPIC option in Windows because that option does not exist for that operating system. Note that this method is executed before the configure() method.

  • -

    Be aware that deleting an option in the config_options() or in the configure() has -not the same result. Deleting it in the config_options() is like if we never declared -it in the recipe and it will raise an exception saying that the option does not exist. -Nevertheless, if we delete it in the configure() method we can pass the option but it +

    Be aware that deleting an option using the config_options() method has a different result from using the configure() +method. Deleting the option in config_options() is like we never declared +it in the recipe which will raise an exception saying that the option does not exist. +However, if we delete it in the configure() method we can pass the option but it will have no effect. For example, if you try to pass a value to the fPIC option in Windows, Conan will raise an error warning that the option does not exist:

    @@ -199,7 +199,7 @@

    As you have noticed, the configure() and config_options() methods delete an -option if certain conditions meet. Let’s explain why we are doing this and the +option if certain conditions are met. Let’s explain why we are doing this and the implications of removing that option. It is related to how Conan identifies packages that are binary compatible with the configuration set in the profile. In the next section, we introduce the concept of the Conan package ID.

    @@ -282,7 +282,7 @@ sources (this depends on the value of the --build argument). This build will generate a new package ID in the local cache.

    -

    This steps are simplified, there is far more to package ID calculation than what we +

    These steps are simplified, there is far more to package ID calculation than what we explain here, recipes themselves can even adjust their package ID calculations, we can have different recipe and package revisions besides package IDs and there’s also a built-in mechanism in Conan that can be configured to declare that some packages with a @@ -386,7 +386,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/create_your_first_package.html b/2/tutorial/creating_packages/create_your_first_package.html index f75ec6bd50c..334b7aead32 100644 --- a/2/tutorial/creating_packages/create_your_first_package.html +++ b/2/tutorial/creating_packages/create_your_first_package.html @@ -5,7 +5,7 @@ Create your first Conan package — conan 2.0.17 documentation - + @@ -248,12 +248,11 @@ the sources for our “hello” library.

    Then, several methods are declared:

      -
    • The config_options() method (together with configure() one) allows to fine-tune the binary configuration +

    • The config_options() method (together with the configure() one) allows fine-tuning the binary configuration model, for example, in Windows, there is no fPIC option, so it can be removed.

    • The layout() method declares the locations where we expect to find the source files -and also those where we want to save the generated files during the build process. -Things like the folder for the generated binaries or all the files that the Conan -generators create in the generate() method. In this case, as our project uses CMake +and destinations for the files generated during the build process. Example destination folders are those for the +generated binaries and all the files that the Conan generators create in the generate() method. In this case, as our project uses CMake as the build system, we call to cmake_layout(). Calling this function will set the expected locations for a CMake project.

    • The generate() method prepares the build of the package from source. In this case, it could be simplified @@ -341,8 +340,8 @@ hello/1.0: Hello World Release!

    -

    These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer, -we can see them with:

    +

    These new package binaries will be also stored in the Conan cache, ready to be used by any project in this computer. +We can see them with:

    Read more

    @@ -423,7 +422,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/define_package_information.html b/2/tutorial/creating_packages/define_package_information.html index 16aa234cf1a..a3c04223b7b 100644 --- a/2/tutorial/creating_packages/define_package_information.html +++ b/2/tutorial/creating_packages/define_package_information.html @@ -5,7 +5,7 @@ Define information for consumers: the package_info() method — conan 2.0.17 documentation - + @@ -458,7 +458,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/handle_sources_in_packages.html b/2/tutorial/creating_packages/handle_sources_in_packages.html index d7d65746e04..4daa2c69771 100644 --- a/2/tutorial/creating_packages/handle_sources_in_packages.html +++ b/2/tutorial/creating_packages/handle_sources_in_packages.html @@ -5,7 +5,7 @@ Handle sources in packages — conan 2.0.17 documentation - + @@ -362,7 +362,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/other_types_of_packages.html b/2/tutorial/creating_packages/other_types_of_packages.html index 34762333185..388cf27fa37 100644 --- a/2/tutorial/creating_packages/other_types_of_packages.html +++ b/2/tutorial/creating_packages/other_types_of_packages.html @@ -5,7 +5,7 @@ Other types of packages — conan 2.0.17 documentation - + @@ -172,7 +172,7 @@

    Other types of packages

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/other_types_of_packages/header_only_packages.html b/2/tutorial/creating_packages/other_types_of_packages/header_only_packages.html index 8406b0ae588..c9221991b86 100644 --- a/2/tutorial/creating_packages/other_types_of_packages/header_only_packages.html +++ b/2/tutorial/creating_packages/other_types_of_packages/header_only_packages.html @@ -5,7 +5,7 @@ Header-only packages — conan 2.0.17 documentation - + @@ -363,7 +363,7 @@

    Header-only library with tests

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html b/2/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html index e23587f0797..dd8a02ae45d 100644 --- a/2/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html +++ b/2/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.html @@ -5,7 +5,7 @@ Package prebuilt binaries — conan 2.0.17 documentation - + @@ -492,7 +492,7 @@

    Downloading and Packaging Pre-built Binaries

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html b/2/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html index 9b6203efe45..c32d61cb881 100644 --- a/2/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html +++ b/2/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.html @@ -5,7 +5,7 @@ Tool requires packages — conan 2.0.17 documentation - + @@ -353,7 +353,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/package_method.html b/2/tutorial/creating_packages/package_method.html index 1fd27d06301..2aac389d8be 100644 --- a/2/tutorial/creating_packages/package_method.html +++ b/2/tutorial/creating_packages/package_method.html @@ -5,7 +5,7 @@ Package files: the package() method — conan 2.0.17 documentation - + @@ -299,7 +299,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/preparing_the_build.html b/2/tutorial/creating_packages/preparing_the_build.html index fc8ace23cbb..59a77ce28f1 100644 --- a/2/tutorial/creating_packages/preparing_the_build.html +++ b/2/tutorial/creating_packages/preparing_the_build.html @@ -5,7 +5,7 @@ Preparing the build — conan 2.0.17 documentation - + @@ -141,7 +141,7 @@ or removing information from the toolchain that Conan generates by default and may not apply for certain cases.

    -

    We explain to use this method for a simple example based on the previous tutorial section. +

    We explain how to use this method for a simple example based on the previous tutorial section. We add a with_fmt option to the recipe, depending on the value we require the fmt library or not. We use the generate() method to modify the toolchain so that it passes a variable to CMake so that we can conditionally add that library and use fmt @@ -336,7 +336,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/creating_packages/test_conan_packages.html b/2/tutorial/creating_packages/test_conan_packages.html index 766bd840824..b3f9cb4447d 100644 --- a/2/tutorial/creating_packages/test_conan_packages.html +++ b/2/tutorial/creating_packages/test_conan_packages.html @@ -5,7 +5,7 @@ Testing Conan packages — conan 2.0.17 documentation - + @@ -291,7 +291,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/developing_packages.html b/2/tutorial/developing_packages.html index edd61bcabd8..0087f2d5da3 100644 --- a/2/tutorial/developing_packages.html +++ b/2/tutorial/developing_packages.html @@ -5,7 +5,7 @@ Developing packages locally — conan 2.0.17 documentation - + @@ -155,7 +155,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/developing_packages/editable_packages.html b/2/tutorial/developing_packages/editable_packages.html index befe48d9a81..e5ef83357cc 100644 --- a/2/tutorial/developing_packages/editable_packages.html +++ b/2/tutorial/developing_packages/editable_packages.html @@ -5,7 +5,7 @@ Packages in editable mode — conan 2.0.17 documentation - + @@ -338,7 +338,7 @@

    Revert the editable mode

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/developing_packages/local_package_development_flow.html b/2/tutorial/developing_packages/local_package_development_flow.html index ea60881b370..8d0530c7a3c 100644 --- a/2/tutorial/developing_packages/local_package_development_flow.html +++ b/2/tutorial/developing_packages/local_package_development_flow.html @@ -5,7 +5,7 @@ Package Development Flow — conan 2.0.17 documentation - + @@ -403,7 +403,7 @@

    conan export-pkg

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/developing_packages/package_layout.html b/2/tutorial/developing_packages/package_layout.html index d55956a56f5..c69ab13fe93 100644 --- a/2/tutorial/developing_packages/package_layout.html +++ b/2/tutorial/developing_packages/package_layout.html @@ -5,7 +5,7 @@ Understanding the Conan Package layout — conan 2.0.17 documentation - + @@ -453,7 +453,7 @@

    cpp.source and cpp.build

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/other_features.html b/2/tutorial/other_features.html index 8ce80171b9d..67cc458025f 100644 --- a/2/tutorial/other_features.html +++ b/2/tutorial/other_features.html @@ -5,7 +5,7 @@ Other important Conan features — conan 2.0.17 documentation - + @@ -178,7 +178,7 @@

    Removing unused packages from the cache

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning.html b/2/tutorial/versioning.html index 58b6cfcddae..b18c491ef0c 100644 --- a/2/tutorial/versioning.html +++ b/2/tutorial/versioning.html @@ -5,7 +5,7 @@ Versioning — conan 2.0.17 documentation - + @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning/conflicts.html b/2/tutorial/versioning/conflicts.html index 162db633733..f45827acba0 100644 --- a/2/tutorial/versioning/conflicts.html +++ b/2/tutorial/versioning/conflicts.html @@ -5,7 +5,7 @@ Dependencies conflicts — conan 2.0.17 documentation - + @@ -426,7 +426,7 @@

    Overriding options

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning/lockfiles.html b/2/tutorial/versioning/lockfiles.html index f49a41067cc..e63c2792358 100644 --- a/2/tutorial/versioning/lockfiles.html +++ b/2/tutorial/versioning/lockfiles.html @@ -5,7 +5,7 @@ Lockfiles — conan 2.0.17 documentation - + @@ -410,7 +410,7 @@

    Read more

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning/revisions.html b/2/tutorial/versioning/revisions.html index 4fbb7fc40b0..9d8847469fc 100644 --- a/2/tutorial/versioning/revisions.html +++ b/2/tutorial/versioning/revisions.html @@ -5,7 +5,7 @@ Revisions — conan 2.0.17 documentation - + @@ -358,7 +358,7 @@

    Package revisions

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning/version_ranges.html b/2/tutorial/versioning/version_ranges.html index 02c449db652..1dcdff3f952 100644 --- a/2/tutorial/versioning/version_ranges.html +++ b/2/tutorial/versioning/version_ranges.html @@ -5,7 +5,7 @@ Version ranges — conan 2.0.17 documentation - + @@ -274,7 +274,7 @@

    Semantic versioning

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/tutorial/versioning/versions.html b/2/tutorial/versioning/versions.html index 61c472ef072..0b322d28195 100644 --- a/2/tutorial/versioning/versions.html +++ b/2/tutorial/versioning/versions.html @@ -5,7 +5,7 @@ Versions — conan 2.0.17 documentation - + @@ -353,7 +353,7 @@

    Requiring the new versions

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/2/whatsnew.html b/2/whatsnew.html index 5c89ea3b3b1..ce55dc67ea8 100644 --- a/2/whatsnew.html +++ b/2/whatsnew.html @@ -5,7 +5,7 @@ What’s new in Conan 2.0 — conan 2.0.17 documentation - + @@ -224,7 +224,7 @@

    Package immutability optimizations

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.

    diff --git a/404.html b/404.html index f990a229409..fe94aa6f0fe 100644 --- a/404.html +++ b/404.html @@ -5,7 +5,7 @@ Page Not Found — conan 2.0.17 documentation - + @@ -119,7 +119,7 @@

    Page Not Found

    © Copyright 2016-2024, JFrog. - Last updated on Feb 05, 2024. + Last updated on Feb 07, 2024.