diff --git a/2.1/404.html b/2.1/404.html index f742c5cdf4a..602050ca803 100644 --- a/2.1/404.html +++ b/2.1/404.html @@ -119,7 +119,7 @@

Page Not Found

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/Page Not Found.html b/2.1/Page Not Found.html index 375684c3746..cb599627503 100644 --- a/2.1/Page Not Found.html +++ b/2.1/Page Not Found.html @@ -112,7 +112,7 @@

Page not found

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/_sources/examples/tools/meson/build_simple_meson_project.rst.txt b/2.1/_sources/examples/tools/meson/build_simple_meson_project.rst.txt new file mode 100644 index 00000000000..834181e489a --- /dev/null +++ b/2.1/_sources/examples/tools/meson/build_simple_meson_project.rst.txt @@ -0,0 +1,132 @@ +.. _examples_tools_meson_toolchain_build_simple_meson_project: + +Build a simple Meson project using Conan +======================================== + +In this example, we are going to create a string compressor application +that uses one of the most popular C++ libraries: `Zlib `__. + +.. note:: + + This example is based on the main :ref:`Build a simple CMake project using Conan` + tutorial. So we highly recommend reading it before trying out this one. + +We'll use Meson as build system and pkg-config as helper tool in this case, so you should get them installed +before going forward with this example. + +Please, first clone the sources to recreate this project. You can find them in the +`examples2 repository `_ in GitHub: + +.. code-block:: bash + + $ git clone https://github.com/conan-io/examples2.git + $ cd examples2/examples/tools/meson/mesontoolchain/simple_meson_project + + +We start from a very simple C language project with this structure: + +.. code-block:: text + + . + ├── meson.build + └── src + └── main.c + +This project contains a basic *meson.build* including the **zlib** dependency and the +source code for the string compressor program in *main.c*. + +Let's have a look at the *main.c* file: + +.. code-block:: cpp + :caption: **main.c** + + #include + #include + #include + + #include + + int main(void) { + char buffer_in [256] = {"Conan is a MIT-licensed, Open Source package manager for C and C++ development " + "for C and C++ development, allowing development teams to easily and efficiently " + "manage their packages and dependencies across platforms and build systems."}; + char buffer_out [256] = {0}; + + z_stream defstream; + defstream.zalloc = Z_NULL; + defstream.zfree = Z_NULL; + defstream.opaque = Z_NULL; + defstream.avail_in = (uInt) strlen(buffer_in); + defstream.next_in = (Bytef *) buffer_in; + defstream.avail_out = (uInt) sizeof(buffer_out); + defstream.next_out = (Bytef *) buffer_out; + + deflateInit(&defstream, Z_BEST_COMPRESSION); + deflate(&defstream, Z_FINISH); + deflateEnd(&defstream); + + printf("Uncompressed size is: %lu\n", strlen(buffer_in)); + printf("Compressed size is: %lu\n", strlen(buffer_out)); + + printf("ZLIB VERSION: %s\n", zlibVersion()); + + return EXIT_SUCCESS; + } + +Also, the contents of *meson.build* are: + +.. code-block:: text + :caption: **meson.build** + + project('tutorial', 'c') + zlib = dependency('zlib', version : '1.2.11') + executable('compressor', 'src/main.c', dependencies: zlib) + + +Let's create a *conanfile.txt* with the following content to install **Zlib**: + +.. code-block:: ini + :caption: **conanfile.txt** + + [requires] + zlib/1.2.11 + + [generators] + PkgConfigDeps + MesonToolchain + +In this case, we will use :ref:`PkgConfigDeps` to generate information about where the **Zlib** library +files are installed thanks to the `*.pc` files and :ref:`MesonToolchain` to pass build information +to *Meson* using a `conan_meson_[native|cross].ini` file that describes the native/cross compilation environment, which in +this case is a `conan_meson_native.ini` one. + +We will use Conan to install **Zlib** and generate the files that Meson needs to find this library and build our project. +We will generate those files in the folder *build*. To do that, run: + +.. code-block:: bash + + $ conan install . --output-folder=build --build=missing + +Now we are ready to build and run our **compressor** app: + +.. code-block:: bash + :caption: Windows + + $ cd build + $ meson setup --native-file conan_meson_native.ini .. meson-src + $ meson compile -C meson-src + $ meson-src\compressor.exe + Uncompressed size is: 233 + Compressed size is: 147 + ZLIB VERSION: 1.2.11 + +.. code-block:: bash + :caption: Linux, macOS + + $ cd build + $ meson setup --native-file conan_meson_native.ini .. meson-src + $ meson compile -C meson-src + $ ./meson-src/compressor + Uncompressed size is: 233 + Compressed size is: 147 + ZLIB VERSION: 1.2.11 diff --git a/2.1/_sources/examples/tools/meson/create_your_first_package.rst.txt b/2.1/_sources/examples/tools/meson/create_your_first_package.rst.txt new file mode 100644 index 00000000000..9a324a2da37 --- /dev/null +++ b/2.1/_sources/examples/tools/meson/create_your_first_package.rst.txt @@ -0,0 +1,162 @@ +.. _examples_tools_meson_create_first_package: + +Create your first Conan package with Meson +========================================== + +In the :ref:`Create your first Conan package tutorial` +CMake was used as the build system. If you haven't read that section, read it first to familiarize +yourself with the ``conanfile.py`` and ``test_package`` concepts, then come back to read +about the specifics of the ``Meson`` package creation. + +Use the :command:`conan new` command to create a "Hello World" C++ library example project: + +.. code-block:: bash + + $ conan new meson_lib -d name=hello -d version=1.0 + + +This will create a Conan package project with the following structure. + +.. code-block:: text + + ├── conanfile.py + ├── meson.build + ├── hello.vcxproj + ├── src + │   ├── hello.h + │   └── hello.cpp + └── test_package + ├── conanfile.py + ├── meson.build + └── src + └── example.cpp + + +The structure and files are very similar to the previous CMake example: + +- **conanfile.py**: On the root folder, there is a *conanfile.py* which is the main recipe + file, responsible for defining how the package is built and consumed. +- **meson.build**: A Meson build script. This script doesn't need to contain anything Conan-specific, + it is completely agnostic of Conan, because the integration is transparent. +- **src** folder: the folder that contains the simple C++ "hello" library. +- **test_package** folder: contains an *example* application that will require + and link with the created package. In this case the ``test_package`` also contains a + ``meson.build``, but it is possible to have the ``test_package`` using + other build system as CMake if desired. It is not mandatory that the test_package is using + the same build system as the package. + +Let's have a look at the package recipe *conanfile.py* (only the relevant new parts): + +.. code-block:: python + + exports_sources = "meson.build", "src/*" + + def layout(self): + basic_layout(self) + + def generate(self): + tc = MesonToolchain(self) + tc.generate() + + def build(self): + meson = Meson(self) + meson.configure() + meson.build() + + def package(self): + meson = Meson(self) + meson.install() + +Let's explain the different sections of the recipe briefly: + +- The ``layout()`` defines a ``basic_layout()``, this is less flexible than a CMake one, so it + doesn't allow any parametrization. +- The ``generate()`` method calls ``MesonToolchain`` that can generate ``conan_meson_native.ini`` + and ``conan_meson_cross.ini`` Meson toolchain files for cross builds. If the project had dependencies + with Conan ``requires``, it should add ``PkgConfigDeps`` too +- The ``build()`` method uses the ``Meson()`` helper to drive the build +- The ``package()`` method uses the ``Meson`` install functionality to define and copy to the package + folder the final artifacts. + + +The **test_package** folder also contains a ``meson.build`` file that declares a dependency to +the tested package, and links an application, to verify the package was correctly created and contains +that library: + +.. code-block:: + :caption: test_package/meson.build + + project('Testhello', 'cpp') + hello = dependency('hello', version : '>=0.1') + executable('example', 'src/example.cpp', dependencies: hello) + + +Note the ``test_package/conanfile.py`` contains also a ``generators = "PkgConfigDeps", "MesonToolchain"``, +because the ``test_package`` has the "hello" package as dependency, and ``PkgConfigDeps`` is necessary to +locate it. + +.. note:: + + This example assumes Meson, Ninja and PkgConfig are installed in the system, which might not always be the case. + If they are not, you can create a profile ``myprofile`` with: + + .. code-block:: + + include(default) + + [tool_requires] + meson/[*] + pkgconf/[*] + +We added `Meson` and `pkg-config` as :ref:`tool requirements to the profile `. By executing ``conan create . -pr=myprofile``, those tools will be installed and made available during the package's build process. + + +Let's build the package from sources with the current default configuration, and then let +the ``test_package`` folder test the package: + +.. code-block:: bash + + $ conan create . + + ... + ======== Testing the package: Executing test ======== + hello/1.0 (test package): Running test() + hello/1.0 (test package): RUN: .\example + hello/1.0: Hello World Release! + hello/1.0: _M_X64 defined + hello/1.0: MSVC runtime: MultiThreadedDLL + hello/1.0: _MSC_VER1939 + hello/1.0: _MSVC_LANG201402 + hello/1.0: __cplusplus201402 + hello/1.0 test_package + + +We can now validate that the recipe and the package binary are in the cache: + + +.. code-block:: bash + + $ conan list hello/1.0:* + Local Cache: + hello + hello/1.0 + revisions + 856c535669f78da11502a119b7d8a6c9 (2024-03-04 17:52:39 UTC) + packages + c13a22a41ecd72caf9e556f68b406569547e0861 + info + settings + arch: x86_64 + build_type: Release + compiler: msvc + compiler.cppstd: 14 + compiler.runtime: dynamic + compiler.runtime_type: Release + compiler.version: 193 + os: Windows + + +.. seealso:: + + - :ref:`Meson built-in integrations reference`. + - :ref:`PkgConfigDeps built-in integrations reference`. diff --git a/2.1/_sources/examples/tools/meson/meson.rst.txt b/2.1/_sources/examples/tools/meson/meson.rst.txt index cd31baf9d94..c906d46b76b 100644 --- a/2.1/_sources/examples/tools/meson/meson.rst.txt +++ b/2.1/_sources/examples/tools/meson/meson.rst.txt @@ -9,4 +9,5 @@ tools.meson :maxdepth: 2 - mesontoolchain/build_simple_meson_project + build_simple_meson_project + create_your_first_package diff --git a/2.1/_sources/tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst.txt b/2.1/_sources/tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst.txt index cdeeea659dc..f9350cb49d5 100644 --- a/2.1/_sources/tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst.txt +++ b/2.1/_sources/tutorial/consuming_packages/the_flexibility_of_conanfile_py.rst.txt @@ -346,10 +346,57 @@ Windows or that you want to use the system's CMake installation instead of using self.tool_requires("cmake/3.22.6") +.. _copy_resources_on_generate: + +Use the generate() method to copy resources from packages +--------------------------------------------------------- + +In some scenarios, Conan packages include files that are useful or even necessary for the +consumption of the libraries they package. These files can range from configuration files, +assets, to specific files required for the project to build or run correctly. Using the +:ref:`generate() method` you can copy these +files from the Conan cache to your project's folder, ensuring that all required resources +are directly available for use. + +Here's an example that shows how to copy all resources from a dependency's +``resdirs`` directory to an ``assets`` directory within your project: + + +.. code-block:: python + + import os + from conan import ConanFile + from conan.tools.files import copy + + class MyProject(ConanFile): + + ... + + def generate(self): + # Copy all resources from the dependency's resource directory + # to the "assets" folder in the source directory of your project + dep = self.dependencies["dep_name"] + copy(self, "*", dep.cpp_info.resdirs[0], os.path.join(self.source_folder, "assets")) + + +Then, after the ``conan install`` step, all those resource files will be copied locally, +allowing you to use them in your project's build process. For a complete example of +how to import files from a package in the ``generate()`` method, you can refer to the +`blog post about using the Dear ImGui library +`, which +demonstrates how to import bindings for the library depending on the graphics API. + +.. note:: + + It's important to clarify that copying libraries, whether static or shared, is not + necessary. Conan is designed to use the libraries from their locations in the Conan + local cache using :ref:`generators` and :ref:`environment + tools` without the need to copy them to the local + folder. + .. seealso:: - :ref:`Using "cmake_layout" + "CMakeToolchain" + "CMakePresets feature" to build your project`. - :ref:`Understanding the Conan Package layout`. - :ref:`Documentation for all conanfile.py available methods`. - - Importing resource files in the generate() method - Conditional generators in configure() diff --git a/2.1/_sources/tutorial/creating_packages/create_your_first_package.rst.txt b/2.1/_sources/tutorial/creating_packages/create_your_first_package.rst.txt index ec193ea4dde..867224f0632 100644 --- a/2.1/_sources/tutorial/creating_packages/create_your_first_package.rst.txt +++ b/2.1/_sources/tutorial/creating_packages/create_your_first_package.rst.txt @@ -338,5 +338,6 @@ An **important** note: the Conan cache is private to the Conan client - modifyin .. seealso:: - :ref:`Create your first Conan package with Visual Studio/MSBuild`. + - :ref:`Create your first Conan package with Meson`. - :ref:`CMake built-in integrations reference`. - :ref:`conan create command reference` and :ref:`Conan list command reference`. diff --git a/2.1/_sources/tutorial/creating_packages/preparing_the_build.rst.txt b/2.1/_sources/tutorial/creating_packages/preparing_the_build.rst.txt index 3b248d0a0d4..ffd1a58c266 100644 --- a/2.1/_sources/tutorial/creating_packages/preparing_the_build.rst.txt +++ b/2.1/_sources/tutorial/creating_packages/preparing_the_build.rst.txt @@ -192,6 +192,6 @@ could do in the ``generate()`` method like: .. seealso:: - - Use the ``generate()`` method to import files from dependencies. + - Use the ``generate()`` to :ref:`import files from dependencies`. - More based on the examples mentioned above ... - :ref:`generate() method reference` diff --git a/2.1/changelog.html b/2.1/changelog.html index e69deac1910..3cf5bdd1049 100644 --- a/2.1/changelog.html +++ b/2.1/changelog.html @@ -826,7 +826,7 @@

2.0.0-beta1 (20-Jun-2022)

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/conan.pdf b/2.1/conan.pdf index dddb6a52a11..42cd9663bb3 100644 Binary files a/2.1/conan.pdf and b/2.1/conan.pdf differ diff --git a/2.1/devops.html b/2.1/devops.html index 7de646ff06e..cff3d8e9417 100644 --- a/2.1/devops.html +++ b/2.1/devops.html @@ -139,7 +139,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html b/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html index 3ec251a5511..6869502e186 100644 --- a/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html +++ b/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.html @@ -166,7 +166,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/backup_sources/sources_backup.html b/2.1/devops/backup_sources/sources_backup.html index e1133ecf51d..3a454db96a7 100644 --- a/2.1/devops/backup_sources/sources_backup.html +++ b/2.1/devops/backup_sources/sources_backup.html @@ -261,7 +261,7 @@

Upload the packages

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/conancenter/hosting_binaries.html b/2.1/devops/conancenter/hosting_binaries.html index 3f68f98b13b..60cbd796503 100644 --- a/2.1/devops/conancenter/hosting_binaries.html +++ b/2.1/devops/conancenter/hosting_binaries.html @@ -158,7 +158,7 @@

Updating from upstream

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/metadata.html b/2.1/devops/metadata.html index e6b4cd33c55..5986b59ae86 100644 --- a/2.1/devops/metadata.html +++ b/2.1/devops/metadata.html @@ -411,7 +411,7 @@

test_package as metadata

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/save_restore.html b/2.1/devops/save_restore.html index 573c7875915..1afa8607d5d 100644 --- a/2.1/devops/save_restore.html +++ b/2.1/devops/save_restore.html @@ -180,7 +180,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/using_conancenter.html b/2.1/devops/using_conancenter.html index b218dddfaf9..a13bc2e06fd 100644 --- a/2.1/devops/using_conancenter.html +++ b/2.1/devops/using_conancenter.html @@ -239,7 +239,7 @@

Control and customization

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/versioning.html b/2.1/devops/versioning.html index fcff2de3e16..364be3f6632 100644 --- a/2.1/devops/versioning.html +++ b/2.1/devops/versioning.html @@ -137,7 +137,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/devops/versioning/resolve_prereleases.html b/2.1/devops/versioning/resolve_prereleases.html index e92eff921df..6becb839f2b 100644 --- a/2.1/devops/versioning/resolve_prereleases.html +++ b/2.1/devops/versioning/resolve_prereleases.html @@ -181,7 +181,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples.html b/2.1/examples.html index e477fe2edb8..3a263e9e867 100644 --- a/2.1/examples.html +++ b/2.1/examples.html @@ -180,7 +180,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/commands.html b/2.1/examples/commands.html index 1db98f6706c..d02aff27e78 100644 --- a/2.1/examples/commands.html +++ b/2.1/examples/commands.html @@ -145,7 +145,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/commands/pkglists.html b/2.1/examples/commands/pkglists.html index 0c05351ec13..1a95da6aef1 100644 --- a/2.1/examples/commands/pkglists.html +++ b/2.1/examples/commands/pkglists.html @@ -304,7 +304,7 @@

Removing packages lists

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile.html b/2.1/examples/conanfile.html index 7416cb56046..a28e34f3ed6 100644 --- a/2.1/examples/conanfile.html +++ b/2.1/examples/conanfile.html @@ -151,7 +151,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/layout.html b/2.1/examples/conanfile/layout.html index 79150fb95ba..b9ccde4e1d8 100644 --- a/2.1/examples/conanfile/layout.html +++ b/2.1/examples/conanfile/layout.html @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/layout/conanfile_in_subfolder.html b/2.1/examples/conanfile/layout/conanfile_in_subfolder.html index 7e56c3ec595..e76e58e9f70 100644 --- a/2.1/examples/conanfile/layout/conanfile_in_subfolder.html +++ b/2.1/examples/conanfile/layout/conanfile_in_subfolder.html @@ -218,7 +218,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/layout/editable_components.html b/2.1/examples/conanfile/layout/editable_components.html index d47c2304fe0..5573f816264 100644 --- a/2.1/examples/conanfile/layout/editable_components.html +++ b/2.1/examples/conanfile/layout/editable_components.html @@ -246,7 +246,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/layout/multiple_subprojects.html b/2.1/examples/conanfile/layout/multiple_subprojects.html index a0ca620c1e4..f2900d5d647 100644 --- a/2.1/examples/conanfile/layout/multiple_subprojects.html +++ b/2.1/examples/conanfile/layout/multiple_subprojects.html @@ -245,7 +245,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/layout/third_party_libraries.html b/2.1/examples/conanfile/layout/third_party_libraries.html index d46e0cf99af..6cdbf36fcea 100644 --- a/2.1/examples/conanfile/layout/third_party_libraries.html +++ b/2.1/examples/conanfile/layout/third_party_libraries.html @@ -225,7 +225,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/package_info.html b/2.1/examples/conanfile/package_info.html index 97f6dcb783b..a4c01af97f2 100644 --- a/2.1/examples/conanfile/package_info.html +++ b/2.1/examples/conanfile/package_info.html @@ -146,7 +146,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/package_info/components.html b/2.1/examples/conanfile/package_info/components.html index 253c3bffb39..f649a0c311d 100644 --- a/2.1/examples/conanfile/package_info/components.html +++ b/2.1/examples/conanfile/package_info/components.html @@ -348,7 +348,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/conanfile/package_info/package_info_conf_and_env.html b/2.1/examples/conanfile/package_info/package_info_conf_and_env.html index b9d738ce825..db2df628e15 100644 --- a/2.1/examples/conanfile/package_info/package_info_conf_and_env.html +++ b/2.1/examples/conanfile/package_info/package_info_conf_and_env.html @@ -142,7 +142,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/config_files.html b/2.1/examples/config_files.html index 42c5045f089..ab745d6bf91 100644 --- a/2.1/examples/config_files.html +++ b/2.1/examples/config_files.html @@ -143,7 +143,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/config_files/settings/settings_user.html b/2.1/examples/config_files/settings/settings_user.html index f142855d35e..cb780f530a4 100644 --- a/2.1/examples/config_files/settings/settings_user.html +++ b/2.1/examples/config_files/settings/settings_user.html @@ -369,7 +369,7 @@

Use your new settings

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/cross_build.html b/2.1/examples/cross_build.html index 4a67774c5f9..ff88d4f1e61 100644 --- a/2.1/examples/cross_build.html +++ b/2.1/examples/cross_build.html @@ -141,7 +141,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/cross_build/android/android_studio.html b/2.1/examples/cross_build/android/android_studio.html index 7deebef1bb2..f32256a0289 100644 --- a/2.1/examples/cross_build/android/android_studio.html +++ b/2.1/examples/cross_build/android/android_studio.html @@ -368,7 +368,7 @@

Building the application

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/cross_build/android/ndk.html b/2.1/examples/cross_build/android/ndk.html index 6d098c33906..bb5a003f8af 100644 --- a/2.1/examples/cross_build/android/ndk.html +++ b/2.1/examples/cross_build/android/ndk.html @@ -206,7 +206,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/dev_flow.html b/2.1/examples/dev_flow.html index 193b783a985..265b6d6bb38 100644 --- a/2.1/examples/dev_flow.html +++ b/2.1/examples/dev_flow.html @@ -143,7 +143,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/dev_flow/debug/step_into_dependencies.html b/2.1/examples/dev_flow/debug/step_into_dependencies.html index 018fd06d530..948115f5ebc 100644 --- a/2.1/examples/dev_flow/debug/step_into_dependencies.html +++ b/2.1/examples/dev_flow/debug/step_into_dependencies.html @@ -201,7 +201,7 @@

Step into a dependency with Visual Studio

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions.html b/2.1/examples/extensions.html index 291d95f87d3..e4e29461f5b 100644 --- a/2.1/examples/extensions.html +++ b/2.1/examples/extensions.html @@ -157,7 +157,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.html b/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.html index 5aa046f0cab..3397c2aa2eb 100644 --- a/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.html +++ b/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.html @@ -338,7 +338,7 @@

Conan public API

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/commands/custom_commands.html b/2.1/examples/extensions/commands/custom_commands.html index 541a7e11e0f..b9e4a6f6bdb 100644 --- a/2.1/examples/extensions/commands/custom_commands.html +++ b/2.1/examples/extensions/commands/custom_commands.html @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/deployers/builtin_deployers.html b/2.1/examples/extensions/deployers/builtin_deployers.html index 768844c501b..d2d3ea051b1 100644 --- a/2.1/examples/extensions/deployers/builtin_deployers.html +++ b/2.1/examples/extensions/deployers/builtin_deployers.html @@ -145,7 +145,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/deployers/custom_deployers.html b/2.1/examples/extensions/deployers/custom_deployers.html index 201a703ff05..12bb9c36ed4 100644 --- a/2.1/examples/extensions/deployers/custom_deployers.html +++ b/2.1/examples/extensions/deployers/custom_deployers.html @@ -150,7 +150,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/deployers/dev/development_deploy.html b/2.1/examples/extensions/deployers/dev/development_deploy.html index 13719cd2638..d79acffb315 100644 --- a/2.1/examples/extensions/deployers/dev/development_deploy.html +++ b/2.1/examples/extensions/deployers/dev/development_deploy.html @@ -258,7 +258,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/extensions/deployers/sources/custom_deployer_sources.html b/2.1/examples/extensions/deployers/sources/custom_deployer_sources.html index 1481ac51f3d..1926c2b9639 100644 --- a/2.1/examples/extensions/deployers/sources/custom_deployer_sources.html +++ b/2.1/examples/extensions/deployers/sources/custom_deployer_sources.html @@ -218,7 +218,7 @@

deploy()

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph.html b/2.1/examples/graph.html index d6ef9730492..41e82bb820b 100644 --- a/2.1/examples/graph.html +++ b/2.1/examples/graph.html @@ -149,7 +149,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph/requires/consume_cmake_macro.html b/2.1/examples/graph/requires/consume_cmake_macro.html index 6d0c77caa9c..450820a81e5 100644 --- a/2.1/examples/graph/requires/consume_cmake_macro.html +++ b/2.1/examples/graph/requires/consume_cmake_macro.html @@ -210,7 +210,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph/tool_requires/different_options.html b/2.1/examples/graph/tool_requires/different_options.html index 1bcb0a08b1c..cb0b6ab7101 100644 --- a/2.1/examples/graph/tool_requires/different_options.html +++ b/2.1/examples/graph/tool_requires/different_options.html @@ -233,7 +233,7 @@

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

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph/tool_requires/different_versions.html b/2.1/examples/graph/tool_requires/different_versions.html index 62daa750c1a..cb7db8cff3a 100644 --- a/2.1/examples/graph/tool_requires/different_versions.html +++ b/2.1/examples/graph/tool_requires/different_versions.html @@ -231,7 +231,7 @@

Depending on different versions of the same tool-require

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph/tool_requires/use_cmake_modules.html b/2.1/examples/graph/tool_requires/use_cmake_modules.html index 7abb0049a82..2399e0ce687 100644 --- a/2.1/examples/graph/tool_requires/use_cmake_modules.html +++ b/2.1/examples/graph/tool_requires/use_cmake_modules.html @@ -222,7 +222,7 @@

Use cmake modules inside a

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/graph/tool_requires/using_protobuf.html b/2.1/examples/graph/tool_requires/using_protobuf.html index 78e769cbb70..de1a07a6d7f 100644 --- a/2.1/examples/graph/tool_requires/using_protobuf.html +++ b/2.1/examples/graph/tool_requires/using_protobuf.html @@ -360,7 +360,7 @@

© Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

diff --git a/2.1/examples/tools.html b/2.1/examples/tools.html index daae2a44701..51c5b58e083 100644 --- a/2.1/examples/tools.html +++ b/2.1/examples/tools.html @@ -140,7 +140,8 @@
  • tools.meson
  • tools.google

    Build a simple Meson project using Conan

    @@ -152,7 +152,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/integrations/visual_studio.html b/2.1/integrations/visual_studio.html index 7d4456878d4..6dadb4ea781 100644 --- a/2.1/integrations/visual_studio.html +++ b/2.1/integrations/visual_studio.html @@ -161,7 +161,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/integrations/xcode.html b/2.1/integrations/xcode.html index 270617fae37..fde3e107e55 100644 --- a/2.1/integrations/xcode.html +++ b/2.1/integrations/xcode.html @@ -155,7 +155,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/introduction.html b/2.1/introduction.html index 987abf5d922..0d06c3e5b9c 100644 --- a/2.1/introduction.html +++ b/2.1/introduction.html @@ -219,7 +219,7 @@

    Navigating the documentation

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/knowledge.html b/2.1/knowledge.html index 9e3ca3466b3..913444c8f7d 100644 --- a/2.1/knowledge.html +++ b/2.1/knowledge.html @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/knowledge/cheatsheet.html b/2.1/knowledge/cheatsheet.html index f584317a02a..3d8e3a42025 100644 --- a/2.1/knowledge/cheatsheet.html +++ b/2.1/knowledge/cheatsheet.html @@ -138,7 +138,7 @@

    Cheat sheet

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/knowledge/faq.html b/2.1/knowledge/faq.html index f14e88d9ec9..de5135b3fd2 100644 --- a/2.1/knowledge/faq.html +++ b/2.1/knowledge/faq.html @@ -224,7 +224,7 @@

    ERROR: AuthenticationException:

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/knowledge/guidelines.html b/2.1/knowledge/guidelines.html index 88d5631393d..45dcd7ed91b 100644 --- a/2.1/knowledge/guidelines.html +++ b/2.1/knowledge/guidelines.html @@ -199,7 +199,7 @@

    Forbidden practices

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/knowledge/videos.html b/2.1/knowledge/videos.html index e31b3f76577..4a282ff90de 100644 --- a/2.1/knowledge/videos.html +++ b/2.1/knowledge/videos.html @@ -178,7 +178,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/objects.inv b/2.1/objects.inv index 3bc60902579..137bf329cce 100644 Binary files a/2.1/objects.inv and b/2.1/objects.inv differ diff --git a/2.1/reference.html b/2.1/reference.html index 1f563a70874..f0f3aef87b2 100644 --- a/2.1/reference.html +++ b/2.1/reference.html @@ -197,7 +197,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/binary_model.html b/2.1/reference/binary_model.html index dae0eea430a..96e32b9a5b7 100644 --- a/2.1/reference/binary_model.html +++ b/2.1/reference/binary_model.html @@ -149,7 +149,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/binary_model/custom_compatibility.html b/2.1/reference/binary_model/custom_compatibility.html index b866dd48cc7..3bcd1f164c5 100644 --- a/2.1/reference/binary_model/custom_compatibility.html +++ b/2.1/reference/binary_model/custom_compatibility.html @@ -268,7 +268,7 @@

    Custom package_id from recipe dependencies

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/binary_model/dependencies.html b/2.1/reference/binary_model/dependencies.html index 2e3485ca8a8..7f2044fffec 100644 --- a/2.1/reference/binary_model/dependencies.html +++ b/2.1/reference/binary_model/dependencies.html @@ -259,7 +259,7 @@

    Embed mode

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/binary_model/extending.html b/2.1/reference/binary_model/extending.html index 90eb358c27a..2283ed8c242 100644 --- a/2.1/reference/binary_model/extending.html +++ b/2.1/reference/binary_model/extending.html @@ -266,7 +266,7 @@

    Custom configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/binary_model/package_id.html b/2.1/reference/binary_model/package_id.html index dc8029df501..32e4392c155 100644 --- a/2.1/reference/binary_model/package_id.html +++ b/2.1/reference/binary_model/package_id.html @@ -223,7 +223,7 @@

    How the package

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands.html b/2.1/reference/commands.html index 62fd625d305..4111f773b6d 100644 --- a/2.1/reference/commands.html +++ b/2.1/reference/commands.html @@ -204,7 +204,7 @@

    Command formatters

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/build.html b/2.1/reference/commands/build.html index 12891e60555..8750994e7b8 100644 --- a/2.1/reference/commands/build.html +++ b/2.1/reference/commands/build.html @@ -292,7 +292,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/cache.html b/2.1/reference/commands/cache.html index e2158de66af..80790c0a78d 100644 --- a/2.1/reference/commands/cache.html +++ b/2.1/reference/commands/cache.html @@ -460,7 +460,7 @@

    conan cache restore

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/config.html b/2.1/reference/commands/config.html index 85c1779d7b4..37fe07a6987 100644 --- a/2.1/reference/commands/config.html +++ b/2.1/reference/commands/config.html @@ -489,7 +489,7 @@

    conan config show

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/create.html b/2.1/reference/commands/create.html index 026a1329449..2e3390c4ef0 100644 --- a/2.1/reference/commands/create.html +++ b/2.1/reference/commands/create.html @@ -327,7 +327,7 @@

    Conan create output

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/download.html b/2.1/reference/commands/download.html index 0da13736261..e022501b020 100644 --- a/2.1/reference/commands/download.html +++ b/2.1/reference/commands/download.html @@ -251,7 +251,7 @@

    Downloading metadata

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/editable.html b/2.1/reference/commands/editable.html index 961b5d78f76..21994c81d8e 100644 --- a/2.1/reference/commands/editable.html +++ b/2.1/reference/commands/editable.html @@ -246,7 +246,7 @@

    conan editable list

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/export-pkg.html b/2.1/reference/commands/export-pkg.html index d1563d67704..4fc49371274 100644 --- a/2.1/reference/commands/export-pkg.html +++ b/2.1/reference/commands/export-pkg.html @@ -264,7 +264,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/export.html b/2.1/reference/commands/export.html index 1bfd92f69d8..a0c8c561862 100644 --- a/2.1/reference/commands/export.html +++ b/2.1/reference/commands/export.html @@ -209,7 +209,7 @@

    Output Formats

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/formatters/graph_info_json_formatter.html b/2.1/reference/commands/formatters/graph_info_json_formatter.html index 820cb6b6d8c..2d462740115 100644 --- a/2.1/reference/commands/formatters/graph_info_json_formatter.html +++ b/2.1/reference/commands/formatters/graph_info_json_formatter.html @@ -418,7 +418,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/graph.html b/2.1/reference/commands/graph.html index 99f28f321a9..b1cc1251cc9 100644 --- a/2.1/reference/commands/graph.html +++ b/2.1/reference/commands/graph.html @@ -174,7 +174,7 @@

    conan graph

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/graph/build_order.html b/2.1/reference/commands/graph/build_order.html index 0c83e8fbe82..6cf850feac9 100644 --- a/2.1/reference/commands/graph/build_order.html +++ b/2.1/reference/commands/graph/build_order.html @@ -461,7 +461,7 @@

    conan graph build-order

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/graph/build_order_merge.html b/2.1/reference/commands/graph/build_order_merge.html index 31d17e52bee..1e5b3dfe5f6 100644 --- a/2.1/reference/commands/graph/build_order_merge.html +++ b/2.1/reference/commands/graph/build_order_merge.html @@ -192,7 +192,7 @@

    conan graph build-order-merge

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/graph/explain.html b/2.1/reference/commands/graph/explain.html index b5041ffb62a..35eab7d441e 100644 --- a/2.1/reference/commands/graph/explain.html +++ b/2.1/reference/commands/graph/explain.html @@ -361,7 +361,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/graph/info.html b/2.1/reference/commands/graph/info.html index 59f6b281c3e..832cd16f767 100644 --- a/2.1/reference/commands/graph/info.html +++ b/2.1/reference/commands/graph/info.html @@ -551,7 +551,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/inspect.html b/2.1/reference/commands/inspect.html index 9e87f5c05a2..e3ad89e1efd 100644 --- a/2.1/reference/commands/inspect.html +++ b/2.1/reference/commands/inspect.html @@ -326,7 +326,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/install.html b/2.1/reference/commands/install.html index 1f6ca424df5..6a3280cf2ec 100644 --- a/2.1/reference/commands/install.html +++ b/2.1/reference/commands/install.html @@ -471,7 +471,7 @@

    Update

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/list.html b/2.1/reference/commands/list.html index 98e7ed2f505..fb64cc3f8a7 100644 --- a/2.1/reference/commands/list.html +++ b/2.1/reference/commands/list.html @@ -575,7 +575,7 @@

    List compact output format

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/lock.html b/2.1/reference/commands/lock.html index 64e862aad0b..f66cb091524 100644 --- a/2.1/reference/commands/lock.html +++ b/2.1/reference/commands/lock.html @@ -207,7 +207,7 @@

    conan lock

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/lock/add.html b/2.1/reference/commands/lock/add.html index 7b6230899d0..2d808ad6367 100644 --- a/2.1/reference/commands/lock/add.html +++ b/2.1/reference/commands/lock/add.html @@ -270,7 +270,7 @@

    conan lock add

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/lock/create.html b/2.1/reference/commands/lock/create.html index 63a253fe156..194fb84a0e3 100644 --- a/2.1/reference/commands/lock/create.html +++ b/2.1/reference/commands/lock/create.html @@ -374,7 +374,7 @@

    conan lock create

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/lock/merge.html b/2.1/reference/commands/lock/merge.html index 922261e743b..06c523b98e3 100644 --- a/2.1/reference/commands/lock/merge.html +++ b/2.1/reference/commands/lock/merge.html @@ -310,7 +310,7 @@

    conan lock merge

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/lock/remove.html b/2.1/reference/commands/lock/remove.html index 9244263b9cc..510f8d8eb3d 100644 --- a/2.1/reference/commands/lock/remove.html +++ b/2.1/reference/commands/lock/remove.html @@ -246,7 +246,7 @@

    conan lock remove

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/new.html b/2.1/reference/commands/new.html index 0912d5f714d..094e6d2cc37 100644 --- a/2.1/reference/commands/new.html +++ b/2.1/reference/commands/new.html @@ -354,7 +354,7 @@

    Custom templates

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/profile.html b/2.1/reference/commands/profile.html index b46e4578abb..224c9adbc29 100644 --- a/2.1/reference/commands/profile.html +++ b/2.1/reference/commands/profile.html @@ -455,7 +455,7 @@

    conan profile show

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/remote.html b/2.1/reference/commands/remote.html index adee241ac84..032c1a146cc 100644 --- a/2.1/reference/commands/remote.html +++ b/2.1/reference/commands/remote.html @@ -509,7 +509,7 @@

    conan remote update

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/remove.html b/2.1/reference/commands/remove.html index b0c2fe457ff..b9308952fa4 100644 --- a/2.1/reference/commands/remove.html +++ b/2.1/reference/commands/remove.html @@ -279,7 +279,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/search.html b/2.1/reference/commands/search.html index c8025cf11fe..733b262cbf3 100644 --- a/2.1/reference/commands/search.html +++ b/2.1/reference/commands/search.html @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/source.html b/2.1/reference/commands/source.html index 407ffb6df7d..ba453ae2b7f 100644 --- a/2.1/reference/commands/source.html +++ b/2.1/reference/commands/source.html @@ -189,7 +189,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/test.html b/2.1/reference/commands/test.html index cc3936cdb12..5c4de799a87 100644 --- a/2.1/reference/commands/test.html +++ b/2.1/reference/commands/test.html @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/upload.html b/2.1/reference/commands/upload.html index 7c423cf3858..9d8d506832a 100644 --- a/2.1/reference/commands/upload.html +++ b/2.1/reference/commands/upload.html @@ -226,7 +226,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/commands/version.html b/2.1/reference/commands/version.html index ff04c746a7f..cc151b2377a 100644 --- a/2.1/reference/commands/version.html +++ b/2.1/reference/commands/version.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conan_server.html b/2.1/reference/conan_server.html index 2e983427b5d..dd6cf998a5d 100644 --- a/2.1/reference/conan_server.html +++ b/2.1/reference/conan_server.html @@ -468,7 +468,7 @@

    Running Conan Server using Apache

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile.html b/2.1/reference/conanfile.html index d189b7edb4a..12648b03cfb 100644 --- a/2.1/reference/conanfile.html +++ b/2.1/reference/conanfile.html @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/attributes.html b/2.1/reference/conanfile/attributes.html index 2fbf6ee9c75..ec183c69987 100644 --- a/2.1/reference/conanfile/attributes.html +++ b/2.1/reference/conanfile/attributes.html @@ -1521,7 +1521,7 @@

    alias

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods.html b/2.1/reference/conanfile/methods.html index eff16e14c37..477e922b2a2 100644 --- a/2.1/reference/conanfile/methods.html +++ b/2.1/reference/conanfile/methods.html @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/build.html b/2.1/reference/conanfile/methods/build.html index 99fe2c5ef2c..5a4c425690e 100644 --- a/2.1/reference/conanfile/methods/build.html +++ b/2.1/reference/conanfile/methods/build.html @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/build_id.html b/2.1/reference/conanfile/methods/build_id.html index 96477d75663..f6b9db24620 100644 --- a/2.1/reference/conanfile/methods/build_id.html +++ b/2.1/reference/conanfile/methods/build_id.html @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/build_requirements.html b/2.1/reference/conanfile/methods/build_requirements.html index 000a77fb722..ca5377a66e3 100644 --- a/2.1/reference/conanfile/methods/build_requirements.html +++ b/2.1/reference/conanfile/methods/build_requirements.html @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/compatibility.html b/2.1/reference/conanfile/methods/compatibility.html index 16b50de3da9..78e22a76d2d 100644 --- a/2.1/reference/conanfile/methods/compatibility.html +++ b/2.1/reference/conanfile/methods/compatibility.html @@ -205,7 +205,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/config_options.html b/2.1/reference/conanfile/methods/config_options.html index fe7661d79b4..e3c317c90e0 100644 --- a/2.1/reference/conanfile/methods/config_options.html +++ b/2.1/reference/conanfile/methods/config_options.html @@ -227,7 +227,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/configure.html b/2.1/reference/conanfile/methods/configure.html index e60a55eb141..b1dce4fb747 100644 --- a/2.1/reference/conanfile/methods/configure.html +++ b/2.1/reference/conanfile/methods/configure.html @@ -274,7 +274,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/deploy.html b/2.1/reference/conanfile/methods/deploy.html index b25ab598f3a..911a4071f6c 100644 --- a/2.1/reference/conanfile/methods/deploy.html +++ b/2.1/reference/conanfile/methods/deploy.html @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/export.html b/2.1/reference/conanfile/methods/export.html index ad43c201181..12671c44e77 100644 --- a/2.1/reference/conanfile/methods/export.html +++ b/2.1/reference/conanfile/methods/export.html @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/export_sources.html b/2.1/reference/conanfile/methods/export_sources.html index 4cceb4deed5..da722f1783b 100644 --- a/2.1/reference/conanfile/methods/export_sources.html +++ b/2.1/reference/conanfile/methods/export_sources.html @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/generate.html b/2.1/reference/conanfile/methods/generate.html index d8b3de9d610..de2eadeda27 100644 --- a/2.1/reference/conanfile/methods/generate.html +++ b/2.1/reference/conanfile/methods/generate.html @@ -397,7 +397,7 @@

    Dependencies cp

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/init.html b/2.1/reference/conanfile/methods/init.html index e21bf2f6ded..72543abc281 100644 --- a/2.1/reference/conanfile/methods/init.html +++ b/2.1/reference/conanfile/methods/init.html @@ -277,7 +277,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/layout.html b/2.1/reference/conanfile/methods/layout.html index a6c82b548d4..56ac5a09c2d 100644 --- a/2.1/reference/conanfile/methods/layout.html +++ b/2.1/reference/conanfile/methods/layout.html @@ -298,7 +298,7 @@

    Environment variables and configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/package.html b/2.1/reference/conanfile/methods/package.html index 1562661b6d9..304a55df85a 100644 --- a/2.1/reference/conanfile/methods/package.html +++ b/2.1/reference/conanfile/methods/package.html @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/package_id.html b/2.1/reference/conanfile/methods/package_id.html index df8be63acf4..421a59a6c87 100644 --- a/2.1/reference/conanfile/methods/package_id.html +++ b/2.1/reference/conanfile/methods/package_id.html @@ -302,7 +302,7 @@

    Adding information

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/package_info.html b/2.1/reference/conanfile/methods/package_info.html index 4d150f71d39..cb0245e79fb 100644 --- a/2.1/reference/conanfile/methods/package_info.html +++ b/2.1/reference/conanfile/methods/package_info.html @@ -479,7 +479,7 @@

    Components

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/requirements.html b/2.1/reference/conanfile/methods/requirements.html index fc6d97b9985..d64db1e0ef0 100644 --- a/2.1/reference/conanfile/methods/requirements.html +++ b/2.1/reference/conanfile/methods/requirements.html @@ -306,7 +306,7 @@

    Default traits for each kind of requires

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/set_name.html b/2.1/reference/conanfile/methods/set_name.html index 0eb8effbb9a..53d972cd5f3 100644 --- a/2.1/reference/conanfile/methods/set_name.html +++ b/2.1/reference/conanfile/methods/set_name.html @@ -217,7 +217,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/set_version.html b/2.1/reference/conanfile/methods/set_version.html index b9710b6b56a..ee5e7aaddf1 100644 --- a/2.1/reference/conanfile/methods/set_version.html +++ b/2.1/reference/conanfile/methods/set_version.html @@ -229,7 +229,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/source.html b/2.1/reference/conanfile/methods/source.html index bdc04a477aa..d02bf959449 100644 --- a/2.1/reference/conanfile/methods/source.html +++ b/2.1/reference/conanfile/methods/source.html @@ -258,7 +258,7 @@

    Forced retrieval of sources

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/system_requirements.html b/2.1/reference/conanfile/methods/system_requirements.html index 27c98496780..1efa4be744d 100644 --- a/2.1/reference/conanfile/methods/system_requirements.html +++ b/2.1/reference/conanfile/methods/system_requirements.html @@ -250,7 +250,7 @@

    Collecting system requirements

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/test.html b/2.1/reference/conanfile/methods/test.html index e72cc6ff8b6..6488be27591 100644 --- a/2.1/reference/conanfile/methods/test.html +++ b/2.1/reference/conanfile/methods/test.html @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/validate.html b/2.1/reference/conanfile/methods/validate.html index eafc4496134..c23e44c612a 100644 --- a/2.1/reference/conanfile/methods/validate.html +++ b/2.1/reference/conanfile/methods/validate.html @@ -234,7 +234,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/methods/validate_build.html b/2.1/reference/conanfile/methods/validate_build.html index 414ac37bd77..fd648f958a0 100644 --- a/2.1/reference/conanfile/methods/validate_build.html +++ b/2.1/reference/conanfile/methods/validate_build.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile/running_and_output.html b/2.1/reference/conanfile/running_and_output.html index 4c1afce9a81..78d0cb902bc 100644 --- a/2.1/reference/conanfile/running_and_output.html +++ b/2.1/reference/conanfile/running_and_output.html @@ -194,7 +194,7 @@

    Output text from recipes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/conanfile_txt.html b/2.1/reference/conanfile_txt.html index 311dd53a59d..1a50cecb869 100644 --- a/2.1/reference/conanfile_txt.html +++ b/2.1/reference/conanfile_txt.html @@ -237,7 +237,7 @@

    [layout]

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files.html b/2.1/reference/config_files.html index d6401ea88ee..0fbcf141b1b 100644 --- a/2.1/reference/config_files.html +++ b/2.1/reference/config_files.html @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/conanrc.html b/2.1/reference/config_files/conanrc.html index 984142287d3..2382275fc30 100644 --- a/2.1/reference/config_files/conanrc.html +++ b/2.1/reference/config_files/conanrc.html @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/credentials.html b/2.1/reference/config_files/credentials.html index b401cefaf5d..a35a5440351 100644 --- a/2.1/reference/config_files/credentials.html +++ b/2.1/reference/config_files/credentials.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/global_conf.html b/2.1/reference/config_files/global_conf.html index 75c793aa5c1..bbc0914ccee 100644 --- a/2.1/reference/config_files/global_conf.html +++ b/2.1/reference/config_files/global_conf.html @@ -472,7 +472,7 @@

    UX confs

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/profiles.html b/2.1/reference/config_files/profiles.html index 5a6c316731e..625637522f7 100644 --- a/2.1/reference/config_files/profiles.html +++ b/2.1/reference/config_files/profiles.html @@ -895,7 +895,7 @@

    Profile includes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/remotes.html b/2.1/reference/config_files/remotes.html index e5c28d51340..e31e0fc138e 100644 --- a/2.1/reference/config_files/remotes.html +++ b/2.1/reference/config_files/remotes.html @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/settings.html b/2.1/reference/config_files/settings.html index f62b329255a..bf4bcb4c3eb 100644 --- a/2.1/reference/config_files/settings.html +++ b/2.1/reference/config_files/settings.html @@ -584,7 +584,7 @@

    Add new values

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/config_files/source_credentials.html b/2.1/reference/config_files/source_credentials.html index 02c43f17b1a..35ac1b61dfa 100644 --- a/2.1/reference/config_files/source_credentials.html +++ b/2.1/reference/config_files/source_credentials.html @@ -212,7 +212,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/environment.html b/2.1/reference/environment.html index 9860ab5c1f3..90fb594369c 100644 --- a/2.1/reference/environment.html +++ b/2.1/reference/environment.html @@ -195,7 +195,7 @@

    Logging

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions.html b/2.1/reference/extensions.html index 0e991e0afb5..a21de0f92e0 100644 --- a/2.1/reference/extensions.html +++ b/2.1/reference/extensions.html @@ -232,7 +232,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/binary_compatibility.html b/2.1/reference/extensions/binary_compatibility.html index bc467eb33bb..6b9c553d75a 100644 --- a/2.1/reference/extensions/binary_compatibility.html +++ b/2.1/reference/extensions/binary_compatibility.html @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/command_wrapper.html b/2.1/reference/extensions/command_wrapper.html index 1b283f3a04a..20bfbf7326c 100644 --- a/2.1/reference/extensions/command_wrapper.html +++ b/2.1/reference/extensions/command_wrapper.html @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/custom_commands.html b/2.1/reference/extensions/custom_commands.html index b3e30b4fb31..0624d5a9149 100644 --- a/2.1/reference/extensions/custom_commands.html +++ b/2.1/reference/extensions/custom_commands.html @@ -369,7 +369,7 @@

    Commands parameters

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/custom_generators.html b/2.1/reference/extensions/custom_generators.html index a493a514c68..3c3ebfdc687 100644 --- a/2.1/reference/extensions/custom_generators.html +++ b/2.1/reference/extensions/custom_generators.html @@ -222,7 +222,7 @@

    Using global custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/deployers.html b/2.1/reference/extensions/deployers.html index 52125ac0ed1..746b0bfcdca 100644 --- a/2.1/reference/extensions/deployers.html +++ b/2.1/reference/extensions/deployers.html @@ -217,7 +217,7 @@

    Custom deployers

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/hooks.html b/2.1/reference/extensions/hooks.html index b1c71bec0e3..94334d9b859 100644 --- a/2.1/reference/extensions/hooks.html +++ b/2.1/reference/extensions/hooks.html @@ -279,7 +279,7 @@

    Official Hooks

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/package_signing.html b/2.1/reference/extensions/package_signing.html index 18384d8482a..49efe4bc172 100644 --- a/2.1/reference/extensions/package_signing.html +++ b/2.1/reference/extensions/package_signing.html @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/profile_plugin.html b/2.1/reference/extensions/profile_plugin.html index ad6409da93a..a5736955579 100644 --- a/2.1/reference/extensions/profile_plugin.html +++ b/2.1/reference/extensions/profile_plugin.html @@ -176,7 +176,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api.html b/2.1/reference/extensions/python_api.html index 01a2cfbbcc5..65926f3d661 100644 --- a/2.1/reference/extensions/python_api.html +++ b/2.1/reference/extensions/python_api.html @@ -221,7 +221,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/ConanAPI.html b/2.1/reference/extensions/python_api/ConanAPI.html index c76c356eed8..f2ba0bdd5a8 100644 --- a/2.1/reference/extensions/python_api/ConanAPI.html +++ b/2.1/reference/extensions/python_api/ConanAPI.html @@ -178,7 +178,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/ConfigAPI.html b/2.1/reference/extensions/python_api/ConfigAPI.html index 111c3103dec..474f54eaebb 100644 --- a/2.1/reference/extensions/python_api/ConfigAPI.html +++ b/2.1/reference/extensions/python_api/ConfigAPI.html @@ -186,7 +186,7 @@

    Config API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/DownloadAPI.html b/2.1/reference/extensions/python_api/DownloadAPI.html index cea735b2f13..72ee809cd34 100644 --- a/2.1/reference/extensions/python_api/DownloadAPI.html +++ b/2.1/reference/extensions/python_api/DownloadAPI.html @@ -195,7 +195,7 @@

    Download API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/ExportAPI.html b/2.1/reference/extensions/python_api/ExportAPI.html index 5e79a7bea31..1a65d4af415 100644 --- a/2.1/reference/extensions/python_api/ExportAPI.html +++ b/2.1/reference/extensions/python_api/ExportAPI.html @@ -171,7 +171,7 @@

    Export API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/GraphAPI.html b/2.1/reference/extensions/python_api/GraphAPI.html index 3773ea00379..058a9a7ba5b 100644 --- a/2.1/reference/extensions/python_api/GraphAPI.html +++ b/2.1/reference/extensions/python_api/GraphAPI.html @@ -241,7 +241,7 @@

    Graph API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/InstallAPI.html b/2.1/reference/extensions/python_api/InstallAPI.html index 9cc655ceae4..821aa4f01c8 100644 --- a/2.1/reference/extensions/python_api/InstallAPI.html +++ b/2.1/reference/extensions/python_api/InstallAPI.html @@ -203,7 +203,7 @@

    Install API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/ListAPI.html b/2.1/reference/extensions/python_api/ListAPI.html index 164c008ca63..69bedf3d2c5 100644 --- a/2.1/reference/extensions/python_api/ListAPI.html +++ b/2.1/reference/extensions/python_api/ListAPI.html @@ -188,7 +188,7 @@

    List API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/NewAPI.html b/2.1/reference/extensions/python_api/NewAPI.html index 253484e73a5..aba13d274cc 100644 --- a/2.1/reference/extensions/python_api/NewAPI.html +++ b/2.1/reference/extensions/python_api/NewAPI.html @@ -183,7 +183,7 @@

    New API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/ProfilesAPI.html b/2.1/reference/extensions/python_api/ProfilesAPI.html index 3469b5ac3a5..3b15bd29bed 100644 --- a/2.1/reference/extensions/python_api/ProfilesAPI.html +++ b/2.1/reference/extensions/python_api/ProfilesAPI.html @@ -229,7 +229,7 @@

    Profiles API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/RemotesAPI.html b/2.1/reference/extensions/python_api/RemotesAPI.html index be4a55b9941..b073d86bbbd 100644 --- a/2.1/reference/extensions/python_api/RemotesAPI.html +++ b/2.1/reference/extensions/python_api/RemotesAPI.html @@ -328,7 +328,7 @@

    Remotes API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/RemoveAPI.html b/2.1/reference/extensions/python_api/RemoveAPI.html index febdf77e90e..b7cf2b61b9f 100644 --- a/2.1/reference/extensions/python_api/RemoveAPI.html +++ b/2.1/reference/extensions/python_api/RemoveAPI.html @@ -171,7 +171,7 @@

    Remove API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/SearchAPI.html b/2.1/reference/extensions/python_api/SearchAPI.html index cbf1192d63f..c6916c66e22 100644 --- a/2.1/reference/extensions/python_api/SearchAPI.html +++ b/2.1/reference/extensions/python_api/SearchAPI.html @@ -171,7 +171,7 @@

    Search API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_api/UploadAPI.html b/2.1/reference/extensions/python_api/UploadAPI.html index 34df8c055a5..3c4e029dc84 100644 --- a/2.1/reference/extensions/python_api/UploadAPI.html +++ b/2.1/reference/extensions/python_api/UploadAPI.html @@ -210,7 +210,7 @@

    Upload API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/extensions/python_requires.html b/2.1/reference/extensions/python_requires.html index 6c4e8be4549..f743329b02c 100644 --- a/2.1/reference/extensions/python_requires.html +++ b/2.1/reference/extensions/python_requires.html @@ -419,7 +419,7 @@

    Resolution of python_requires

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools.html b/2.1/reference/tools.html index cd67df3c705..85f905c1192 100644 --- a/2.1/reference/tools.html +++ b/2.1/reference/tools.html @@ -268,7 +268,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/android.html b/2.1/reference/tools/android.html index 28916d7a836..ee99de041f7 100644 --- a/2.1/reference/tools/android.html +++ b/2.1/reference/tools/android.html @@ -195,7 +195,7 @@

    android_abi()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/apple.html b/2.1/reference/tools/apple.html index 9b088caa637..3c8d4cc0c7b 100644 --- a/2.1/reference/tools/apple.html +++ b/2.1/reference/tools/apple.html @@ -195,7 +195,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/apple/other.html b/2.1/reference/tools/apple/other.html index d7794479e26..6349cab52b1 100644 --- a/2.1/reference/tools/apple/other.html +++ b/2.1/reference/tools/apple/other.html @@ -334,7 +334,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/apple/xcodebuild.html b/2.1/reference/tools/apple/xcodebuild.html index ea171df6fe1..f3860fe8581 100644 --- a/2.1/reference/tools/apple/xcodebuild.html +++ b/2.1/reference/tools/apple/xcodebuild.html @@ -237,7 +237,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/apple/xcodedeps.html b/2.1/reference/tools/apple/xcodedeps.html index c2e558a41bb..964f31bf573 100644 --- a/2.1/reference/tools/apple/xcodedeps.html +++ b/2.1/reference/tools/apple/xcodedeps.html @@ -288,7 +288,7 @@

    Custom configurations

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/apple/xcodetoolchain.html b/2.1/reference/tools/apple/xcodetoolchain.html index 44b15fc427b..6f663859554 100644 --- a/2.1/reference/tools/apple/xcodetoolchain.html +++ b/2.1/reference/tools/apple/xcodetoolchain.html @@ -252,7 +252,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/build.html b/2.1/reference/tools/build.html index 786677da52f..f2bc161b64d 100644 --- a/2.1/reference/tools/build.html +++ b/2.1/reference/tools/build.html @@ -372,7 +372,7 @@

    conan.tools.build.supported_cppstd()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cmake.html b/2.1/reference/tools/cmake.html index aed87ec2dc3..f3118bd6f71 100644 --- a/2.1/reference/tools/cmake.html +++ b/2.1/reference/tools/cmake.html @@ -184,7 +184,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cmake/cmake.html b/2.1/reference/tools/cmake/cmake.html index 59d542a18fc..0027294dd80 100644 --- a/2.1/reference/tools/cmake/cmake.html +++ b/2.1/reference/tools/cmake/cmake.html @@ -332,7 +332,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cmake/cmake_layout.html b/2.1/reference/tools/cmake/cmake_layout.html index d16837a3d8c..522115b4b7a 100644 --- a/2.1/reference/tools/cmake/cmake_layout.html +++ b/2.1/reference/tools/cmake/cmake_layout.html @@ -261,7 +261,7 @@

    Multi-setting/option cmake_layout

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cmake/cmakedeps.html b/2.1/reference/tools/cmake/cmakedeps.html index 43a97ef3720..e6c495fa10e 100644 --- a/2.1/reference/tools/cmake/cmakedeps.html +++ b/2.1/reference/tools/cmake/cmakedeps.html @@ -538,7 +538,7 @@

    Map from project configuration to imported target’s configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cmake/cmaketoolchain.html b/2.1/reference/tools/cmake/cmaketoolchain.html index f45b9f25996..1bae283310a 100644 --- a/2.1/reference/tools/cmake/cmaketoolchain.html +++ b/2.1/reference/tools/cmake/cmaketoolchain.html @@ -734,7 +734,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/cpp_info.html b/2.1/reference/tools/cpp_info.html index d797cd1f55b..d7ef1fbd47a 100644 --- a/2.1/reference/tools/cpp_info.html +++ b/2.1/reference/tools/cpp_info.html @@ -195,7 +195,7 @@

    Aggregating information in custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/env.html b/2.1/reference/tools/env.html index 680fc6c5e72..3f70dadee58 100644 --- a/2.1/reference/tools/env.html +++ b/2.1/reference/tools/env.html @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/env/environment.html b/2.1/reference/tools/env/environment.html index 06db1299d40..c5fcffaa77b 100644 --- a/2.1/reference/tools/env/environment.html +++ b/2.1/reference/tools/env/environment.html @@ -398,7 +398,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/env/envvars.html b/2.1/reference/tools/env/envvars.html index 6f8edbcbc3c..50fd963af6b 100644 --- a/2.1/reference/tools/env/envvars.html +++ b/2.1/reference/tools/env/envvars.html @@ -329,7 +329,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/env/virtualbuildenv.html b/2.1/reference/tools/env/virtualbuildenv.html index d72ca8e7fe9..ac625b5733c 100644 --- a/2.1/reference/tools/env/virtualbuildenv.html +++ b/2.1/reference/tools/env/virtualbuildenv.html @@ -266,7 +266,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/env/virtualrunenv.html b/2.1/reference/tools/env/virtualrunenv.html index 537f12ae00f..51506e48154 100644 --- a/2.1/reference/tools/env/virtualrunenv.html +++ b/2.1/reference/tools/env/virtualrunenv.html @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files.html b/2.1/reference/tools/files.html index 25a38c130c9..71a3f7f3f13 100644 --- a/2.1/reference/tools/files.html +++ b/2.1/reference/tools/files.html @@ -204,7 +204,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/basic.html b/2.1/reference/tools/files/basic.html index 3700a30dccb..87361464466 100644 --- a/2.1/reference/tools/files/basic.html +++ b/2.1/reference/tools/files/basic.html @@ -575,7 +575,7 @@

    conan.tools.files.trim_conandata()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/checksum.html b/2.1/reference/tools/files/checksum.html index c7acaa444c7..72b54610661 100644 --- a/2.1/reference/tools/files/checksum.html +++ b/2.1/reference/tools/files/checksum.html @@ -217,7 +217,7 @@

    conan.tools.files.check_sha256()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/downloads.html b/2.1/reference/tools/files/downloads.html index 6e5bff7db80..71052b1403a 100644 --- a/2.1/reference/tools/files/downloads.html +++ b/2.1/reference/tools/files/downloads.html @@ -291,7 +291,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/packaging.html b/2.1/reference/tools/files/packaging.html index db99b11de59..6e0b36d7f17 100644 --- a/2.1/reference/tools/files/packaging.html +++ b/2.1/reference/tools/files/packaging.html @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/patches.html b/2.1/reference/tools/files/patches.html index 5e09549b13d..4ac96e94683 100644 --- a/2.1/reference/tools/files/patches.html +++ b/2.1/reference/tools/files/patches.html @@ -267,7 +267,7 @@

    conan.tools.files.export_conandata_patches()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/files/symlinks.html b/2.1/reference/tools/files/symlinks.html index 826e5c5ce10..83f86b876b7 100644 --- a/2.1/reference/tools/files/symlinks.html +++ b/2.1/reference/tools/files/symlinks.html @@ -212,7 +212,7 @@

    conan.tools.files.symlinks.remove_broken_symlinks()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu.html b/2.1/reference/tools/gnu.html index 441eede8586..696a13b0adb 100644 --- a/2.1/reference/tools/gnu.html +++ b/2.1/reference/tools/gnu.html @@ -196,7 +196,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/autotools.html b/2.1/reference/tools/gnu/autotools.html index 7a1d35f09d0..e8e5617de29 100644 --- a/2.1/reference/tools/gnu/autotools.html +++ b/2.1/reference/tools/gnu/autotools.html @@ -351,7 +351,7 @@

    How to address this problem in Conan

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/autotoolsdeps.html b/2.1/reference/tools/gnu/autotoolsdeps.html index faeef21fb9f..ee09d21ccf3 100644 --- a/2.1/reference/tools/gnu/autotoolsdeps.html +++ b/2.1/reference/tools/gnu/autotoolsdeps.html @@ -241,7 +241,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/autotoolstoolchain.html b/2.1/reference/tools/gnu/autotoolstoolchain.html index 75f39c13f88..e5dffafbdfd 100644 --- a/2.1/reference/tools/gnu/autotoolstoolchain.html +++ b/2.1/reference/tools/gnu/autotoolstoolchain.html @@ -468,7 +468,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/makedeps.html b/2.1/reference/tools/gnu/makedeps.html index e824a48069e..444dad05567 100644 --- a/2.1/reference/tools/gnu/makedeps.html +++ b/2.1/reference/tools/gnu/makedeps.html @@ -255,7 +255,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/pkgconfig.html b/2.1/reference/tools/gnu/pkgconfig.html index c66f545573d..474ee901c99 100644 --- a/2.1/reference/tools/gnu/pkgconfig.html +++ b/2.1/reference/tools/gnu/pkgconfig.html @@ -222,7 +222,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/gnu/pkgconfigdeps.html b/2.1/reference/tools/gnu/pkgconfigdeps.html index eeaae5092c3..3a71a5224b8 100644 --- a/2.1/reference/tools/gnu/pkgconfigdeps.html +++ b/2.1/reference/tools/gnu/pkgconfigdeps.html @@ -312,7 +312,7 @@

    build_context_suffix

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/google.html b/2.1/reference/tools/google.html index 6978c78362f..d86626e24b4 100644 --- a/2.1/reference/tools/google.html +++ b/2.1/reference/tools/google.html @@ -175,7 +175,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/google/bazel.html b/2.1/reference/tools/google/bazel.html index 7388f9edb37..95b91e95396 100644 --- a/2.1/reference/tools/google/bazel.html +++ b/2.1/reference/tools/google/bazel.html @@ -242,7 +242,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/google/bazeldeps.html b/2.1/reference/tools/google/bazeldeps.html index eeae41a8c35..e9d462aed39 100644 --- a/2.1/reference/tools/google/bazeldeps.html +++ b/2.1/reference/tools/google/bazeldeps.html @@ -445,7 +445,7 @@

    build_context_activated

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/google/bazeltoolchain.html b/2.1/reference/tools/google/bazeltoolchain.html index d6c44bd042d..2566592a271 100644 --- a/2.1/reference/tools/google/bazeltoolchain.html +++ b/2.1/reference/tools/google/bazeltoolchain.html @@ -316,7 +316,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/intel.html b/2.1/reference/tools/intel.html index aae042cd8a0..f701c0e58cd 100644 --- a/2.1/reference/tools/intel.html +++ b/2.1/reference/tools/intel.html @@ -339,7 +339,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/layout.html b/2.1/reference/tools/layout.html index fd2fd27fd0f..745032e56c9 100644 --- a/2.1/reference/tools/layout.html +++ b/2.1/reference/tools/layout.html @@ -201,7 +201,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/meson.html b/2.1/reference/tools/meson.html index a68cd62be05..0f85189d2e6 100644 --- a/2.1/reference/tools/meson.html +++ b/2.1/reference/tools/meson.html @@ -172,7 +172,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/meson/meson.html b/2.1/reference/tools/meson/meson.html index 137ce665696..71cd7aa37e2 100644 --- a/2.1/reference/tools/meson/meson.html +++ b/2.1/reference/tools/meson/meson.html @@ -238,7 +238,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/meson/mesontoolchain.html b/2.1/reference/tools/meson/mesontoolchain.html index 85d6030ece7..17c704ce738 100644 --- a/2.1/reference/tools/meson/mesontoolchain.html +++ b/2.1/reference/tools/meson/mesontoolchain.html @@ -390,7 +390,7 @@

    Objective-C arguments

    See also

    @@ -613,7 +613,7 @@

    Objective-C arguments

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft.html b/2.1/reference/tools/microsoft.html index 0a7befaed8a..0699c04a05a 100644 --- a/2.1/reference/tools/microsoft.html +++ b/2.1/reference/tools/microsoft.html @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/helpers.html b/2.1/reference/tools/microsoft/helpers.html index cd5d71d6415..67dda4918cd 100644 --- a/2.1/reference/tools/microsoft/helpers.html +++ b/2.1/reference/tools/microsoft/helpers.html @@ -274,7 +274,7 @@

    conan.tools.microsoft.subsystems

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/msbuild.html b/2.1/reference/tools/microsoft/msbuild.html index 9f38b0e3e8b..52ef8c695d8 100644 --- a/2.1/reference/tools/microsoft/msbuild.html +++ b/2.1/reference/tools/microsoft/msbuild.html @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/msbuilddeps.html b/2.1/reference/tools/microsoft/msbuilddeps.html index 4dca4dfef9f..3263ef03b66 100644 --- a/2.1/reference/tools/microsoft/msbuilddeps.html +++ b/2.1/reference/tools/microsoft/msbuilddeps.html @@ -322,7 +322,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/msbuildtoolchain.html b/2.1/reference/tools/microsoft/msbuildtoolchain.html index 483f4e94e62..fa6e2c378b6 100644 --- a/2.1/reference/tools/microsoft/msbuildtoolchain.html +++ b/2.1/reference/tools/microsoft/msbuildtoolchain.html @@ -289,7 +289,7 @@

    Attributes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/nmake.html b/2.1/reference/tools/microsoft/nmake.html index b46bf73449e..dcf0f823459 100644 --- a/2.1/reference/tools/microsoft/nmake.html +++ b/2.1/reference/tools/microsoft/nmake.html @@ -305,7 +305,7 @@

    Customizing the environment

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/vcvars.html b/2.1/reference/tools/microsoft/vcvars.html index ad476d255b1..c50b93e789f 100644 --- a/2.1/reference/tools/microsoft/vcvars.html +++ b/2.1/reference/tools/microsoft/vcvars.html @@ -237,7 +237,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/microsoft/visual_layout.html b/2.1/reference/tools/microsoft/visual_layout.html index 13caa985a20..f9438648e04 100644 --- a/2.1/reference/tools/microsoft/visual_layout.html +++ b/2.1/reference/tools/microsoft/visual_layout.html @@ -174,7 +174,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/scm.html b/2.1/reference/tools/scm.html index d0e784b026c..d3d42a40451 100644 --- a/2.1/reference/tools/scm.html +++ b/2.1/reference/tools/scm.html @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/scm/git.html b/2.1/reference/tools/scm/git.html index 89e6c315ca8..9435dc0cc1f 100644 --- a/2.1/reference/tools/scm/git.html +++ b/2.1/reference/tools/scm/git.html @@ -382,7 +382,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/scm/version.html b/2.1/reference/tools/scm/version.html index 9f1ec1cd48e..e0f43d9d0a9 100644 --- a/2.1/reference/tools/scm/version.html +++ b/2.1/reference/tools/scm/version.html @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/scons.html b/2.1/reference/tools/scons.html index 759db9e676c..4355bbac821 100644 --- a/2.1/reference/tools/scons.html +++ b/2.1/reference/tools/scons.html @@ -209,7 +209,7 @@

    SConsDeps

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/system.html b/2.1/reference/tools/system.html index 27c108521a5..0746c0d902d 100644 --- a/2.1/reference/tools/system.html +++ b/2.1/reference/tools/system.html @@ -173,7 +173,7 @@

    conan.tools.system

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/reference/tools/system/package_manager.html b/2.1/reference/tools/system/package_manager.html index 77e00aba868..563b76b4c39 100644 --- a/2.1/reference/tools/system/package_manager.html +++ b/2.1/reference/tools/system/package_manager.html @@ -1160,7 +1160,7 @@

    Reference¶<

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/search.html b/2.1/search.html index 301024fb7ff..37e64d75a17 100644 --- a/2.1/search.html +++ b/2.1/search.html @@ -125,7 +125,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/searchindex.js b/2.1/searchindex.js index c6255c903f7..4574bb9bc93 100644 --- a/2.1/searchindex.js +++ b/2.1/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/cmake/cmake_toolchain/use_package_config_cmake", "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/microsoft/msbuild", "examples/tools/microsoft/msbuild/create_your_first_package", "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/cmake/cmake_toolchain/use_package_config_cmake.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/microsoft/msbuild.rst", "examples/tools/microsoft/msbuild/create_your_first_package.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", "CMakeToolchain: Using xxx-config.cmake files inside packages", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "tools.microsoft", "Create your first Conan package with Visual Studio/MSBuild", "Capturing Git scm information", "Conan 2 - 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"], "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, 50, 52, 54, 56, 58, 59, 61, 66, 67, 73, 76, 77, 78, 83, 84, 87, 88, 89, 90, 96, 99, 102, 108, 109, 111, 115, 117, 119, 120, 121, 122, 123, 125, 126, 130, 131, 132, 134, 135, 139, 144, 145, 147, 149, 150, 152, 154, 155, 158, 159, 160, 161, 163, 178, 183, 184, 185, 189, 190, 191, 194, 195, 199, 201, 206, 207, 208, 211, 214, 216, 217, 219, 220, 223, 224, 225, 226, 230, 232, 234, 235, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 61, 64, 65, 66, 68, 69, 70, 71, 72, 73, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 93, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 111, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 154, 155, 156, 158, 160, 161, 162, 169, 170, 174, 177, 178, 179, 182, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 203, 204, 206, 208, 211, 213, 214, 216, 217, 220, 224, 230, 233, 238, 239, 241, 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, 272, 273, 274], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 50, 52, 54, 56, 58, 66, 84, 86, 89, 91, 92, 93, 96, 98, 99, 101, 102, 104, 105, 106, 114, 119, 148, 149, 150, 151, 152, 157, 158, 160, 169, 191, 214, 215, 234, 243, 244, 247, 248, 253, 254, 255, 262, 265], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 50, 54, 59, 61, 67, 68, 77, 81, 82, 83, 86, 87, 88, 89, 96, 98, 99, 100, 101, 104, 105, 106, 108, 114, 117, 119, 122, 123, 129, 130, 139, 140, 148, 149, 150, 163, 174, 177, 178, 190, 195, 199, 206, 208, 230, 234, 246, 247, 248, 250, 252, 267, 272, 274], "exist": [0, 1, 6, 7, 8, 21, 59, 61, 73, 76, 81, 83, 86, 87, 88, 89, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 119, 121, 123, 124, 125, 126, 128, 130, 134, 136, 139, 147, 148, 149, 150, 152, 156, 158, 167, 169, 173, 174, 177, 182, 186, 190, 191, 194, 195, 199, 206, 208, 210, 220, 230, 241, 246, 252, 253, 258, 262, 269, 270, 271, 273, 274], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 52, 58, 59, 68, 78, 81, 82, 87, 89, 98, 101, 106, 122, 133, 134, 137, 138, 144, 152, 156, 163, 184, 185, 191, 199, 202, 206, 230, 245, 248, 250, 251, 253, 254, 257, 262, 265, 269, 270, 271, 272, 273], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 61, 73, 81, 83, 85, 86, 87, 88, 89, 92, 93, 96, 98, 99, 101, 103, 105, 106, 109, 114, 115, 119, 125, 126, 134, 135, 149, 152, 155, 156, 158, 161, 163, 164, 174, 178, 182, 191, 194, 199, 201, 202, 204, 207, 208, 220, 235, 241, 247, 252, 253, 256, 257, 258, 260, 261, 264, 266, 270, 271, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 87, 88, 89, 90, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 166, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 214, 215, 216, 217, 219, 220, 223, 224, 225, 226, 227, 230, 232, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 54, 56, 59, 66, 73, 82, 87, 96, 106, 139, 152, 178, 184, 189, 216, 217, 224, 236, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 265, 266, 270, 273], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 58, 59, 60, 64, 65, 67, 68, 69, 70, 71, 72, 73, 75, 78, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 103, 104, 105, 106, 107, 110, 111, 112, 114, 115, 118, 123, 124, 127, 130, 133, 134, 135, 140, 145, 149, 150, 152, 155, 156, 158, 162, 164, 169, 171, 177, 178, 179, 181, 187, 193, 199, 205, 212, 217, 218, 221, 240, 241, 244, 245, 248, 250, 252, 253, 254, 255, 260, 261, 264, 265, 272, 274], "tree": [0, 68, 150, 160, 190], "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, 53, 55, 58, 59, 60, 62, 64, 65, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 115, 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, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 169, 174, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 192, 194, 195, 196, 197, 199, 200, 201, 202, 204, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 234, 235, 236, 240, 241, 242, 246, 249, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274], "search": [0, 1, 31, 35, 52, 66, 77, 85, 102, 109, 117, 119, 147, 151, 155, 164, 182, 199, 206, 239, 241, 243, 245, 252, 254, 266, 274], "bar": [0, 117, 199, 208, 226], "desir": [0, 1, 4, 40, 49, 58, 83, 90, 101, 108, 117, 119, 120, 134, 152, 160, 195, 196, 197, 232], "topic": [0, 1, 9, 73, 94, 99, 100, 158, 253], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 50, 52, 58, 59, 61, 66, 73, 76, 77, 81, 82, 83, 84, 87, 88, 89, 90, 96, 98, 99, 101, 102, 104, 105, 106, 108, 110, 111, 112, 115, 117, 119, 122, 124, 125, 126, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 142, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 167, 174, 177, 182, 183, 184, 185, 186, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 203, 206, 207, 208, 210, 211, 216, 217, 220, 222, 224, 226, 230, 234, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 258, 259, 264, 265, 266, 267, 269, 270, 271, 273, 274], "think": [0, 42, 76], "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, 50, 52, 54, 56, 58, 59, 60, 61, 62, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 230, 231, 232, 234, 235, 236, 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, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 60, 61, 62, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 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, 143, 144, 145, 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, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 203, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 50, 58, 59, 60, 66, 73, 76, 77, 81, 82, 85, 86, 87, 88, 89, 92, 93, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 114, 115, 117, 119, 122, 125, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 145, 147, 148, 149, 150, 152, 153, 154, 156, 157, 158, 161, 162, 163, 169, 173, 174, 182, 185, 188, 190, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 214, 216, 220, 223, 226, 227, 230, 231, 234, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 267, 269, 270, 271, 272, 274], "error": [0, 1, 6, 21, 31, 39, 40, 59, 61, 82, 86, 87, 88, 89, 92, 93, 96, 97, 98, 99, 100, 101, 105, 109, 114, 117, 119, 121, 130, 136, 137, 138, 139, 140, 142, 143, 144, 148, 149, 152, 154, 161, 163, 169, 174, 190, 199, 201, 206, 220, 234, 242, 245, 250, 252, 264, 265, 268, 269, 270, 274], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 50, 52, 54, 56, 58, 59, 61, 66, 69, 73, 77, 81, 83, 84, 89, 96, 101, 102, 108, 117, 119, 121, 122, 123, 124, 125, 126, 127, 128, 130, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 148, 153, 154, 160, 161, 162, 163, 169, 177, 178, 183, 185, 188, 190, 191, 196, 199, 203, 209, 214, 219, 220, 226, 230, 239, 243, 244, 245, 247, 250, 251, 252, 253, 254, 257, 264, 265, 266, 269, 270, 271, 272, 273, 274], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 52, 54, 56, 59, 61, 63, 64, 67, 69, 71, 72, 73, 76, 77, 78, 90, 96, 104, 109, 110, 115, 117, 119, 130, 149, 150, 156, 161, 162, 191, 217, 220, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 274], "open": [0, 4, 5, 8, 26, 29, 48, 56, 58, 59, 60, 66, 76, 119, 121, 144, 149, 153, 162, 199, 225, 230, 236, 238, 240, 243, 245, 264], "issu": [0, 1, 6, 8, 39, 40, 50, 60, 73, 76, 83, 117, 130, 131, 132, 149, 152, 156, 190, 253, 255, 270, 271], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 50, 59, 61, 64, 66, 68, 69, 71, 72, 77, 81, 82, 83, 87, 88, 90, 96, 99, 101, 102, 104, 105, 106, 107, 108, 109, 110, 115, 119, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 136, 139, 140, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 157, 158, 160, 161, 163, 169, 178, 182, 183, 184, 185, 186, 189, 191, 192, 195, 199, 203, 208, 209, 211, 214, 216, 217, 220, 223, 224, 227, 234, 238, 239, 241, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 260, 262, 264, 265, 266, 268, 269, 270, 271, 272, 274], "more": [1, 4, 6, 7, 8, 13, 18, 19, 27, 31, 36, 42, 45, 47, 52, 59, 61, 63, 66, 68, 73, 76, 78, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 121, 123, 125, 126, 127, 131, 132, 133, 134, 135, 139, 141, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 185, 186, 190, 191, 192, 196, 197, 199, 206, 209, 211, 213, 214, 215, 217, 219, 220, 224, 226, 237, 238, 242, 243, 246, 247, 248, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 267, 270, 271, 272, 274], "detail": [1, 8, 42, 50, 52, 61, 66, 68, 73, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 149, 152, 185, 199, 220, 223, 248, 252, 253, 255, 258, 260, 262, 266], "descript": [1, 94, 99, 100, 108, 130, 131, 161, 211, 253], "major": [1, 5, 35, 39, 40, 59, 73, 78, 101, 109, 119, 150, 178, 191, 238, 243, 269, 272, 274], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 50, 52, 59, 73, 75, 76, 77, 81, 82, 83, 84, 87, 89, 94, 96, 100, 104, 105, 106, 108, 109, 116, 117, 119, 122, 123, 125, 126, 127, 134, 135, 139, 148, 149, 150, 152, 153, 154, 156, 157, 158, 160, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 195, 199, 206, 208, 209, 211, 213, 214, 215, 216, 220, 223, 226, 230, 234, 243, 245, 246, 247, 250, 252, 253, 255, 257, 258, 260, 261, 263, 264, 266, 268, 269, 270, 271, 273, 274], "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, 50, 52, 53, 55, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 94, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 207, 208, 209, 211, 213, 214, 215, 219, 223, 224, 225, 226, 227, 230, 235, 241, 242, 245, 246, 247, 249, 250, 251, 255, 257, 258, 259, 261, 263, 264, 268, 269, 270, 271, 272, 273], "bring": [1, 62, 150, 255], "compar": [1, 152, 186, 231, 271, 272], "x": [1, 61, 73, 75, 88, 93, 119, 149, 152, 161, 190, 199, 202, 222, 253, 257, 270, 272, 274], "read": [1, 3, 4, 6, 8, 18, 19, 24, 31, 36, 42, 45, 47, 54, 56, 58, 61, 66, 73, 77, 81, 83, 86, 87, 88, 89, 91, 93, 101, 102, 105, 109, 113, 114, 117, 119, 123, 124, 126, 129, 130, 132, 134, 135, 137, 138, 140, 144, 145, 149, 150, 156, 162, 178, 186, 188, 199, 203, 206, 208, 210, 216, 230, 237, 239, 241, 243, 252, 255, 259, 264, 265, 273, 274], "what": [1, 4, 5, 13, 24, 59, 60, 73, 78, 81, 95, 96, 98, 101, 102, 115, 119, 120, 154, 191, 194, 195, 202, 244, 246, 247, 248, 252, 253, 254, 257, 258, 261, 266, 269, 270, 271], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 52, 54, 56, 58, 59, 60, 61, 63, 65, 66, 68, 73, 76, 78, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 105, 106, 108, 109, 110, 114, 115, 117, 119, 123, 124, 134, 135, 136, 142, 143, 144, 147, 149, 150, 151, 152, 155, 157, 158, 160, 163, 182, 184, 185, 186, 191, 201, 206, 208, 213, 214, 215, 216, 220, 224, 225, 230, 234, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 58, 60, 61, 66, 73, 76, 77, 78, 81, 82, 83, 84, 85, 87, 101, 103, 104, 105, 106, 107, 109, 110, 119, 133, 134, 150, 155, 157, 158, 160, 162, 164, 166, 174, 178, 182, 184, 185, 189, 190, 191, 192, 194, 196, 197, 208, 216, 224, 225, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 261, 265, 266, 268, 269, 270, 271, 272], "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 60, 61, 66, 67, 68, 73, 89, 100, 116, 119, 123, 124, 125, 126, 127, 134, 135, 147, 148, 149, 150, 152, 153, 156, 161, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 186, 188, 192, 202, 209, 213, 214, 215, 235, 239, 244, 247, 254, 257, 262, 263, 264, 265, 266, 274], "implement": [1, 2, 7, 8, 41, 50, 73, 77, 82, 87, 93, 108, 117, 124, 130, 133, 139, 152, 156, 160, 163, 178, 179, 183, 191, 217, 223, 231, 238, 240, 253, 255, 257, 258, 267, 269, 274], "multi": [1, 47, 48, 50, 106, 135, 160, 184, 187, 188, 190, 224, 245, 247, 258, 264, 266, 268], "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 43, 45, 46, 48, 54, 56, 64, 65, 67, 68, 72, 76, 77, 81, 85, 108, 109, 117, 130, 135, 145, 149, 150, 152, 155, 157, 158, 159, 160, 163, 164, 183, 185, 188, 189, 190, 191, 210, 211, 213, 215, 216, 224, 225, 240, 243, 245, 247, 248, 250, 251, 254, 258, 262, 264, 266, 274], "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 50, 54, 56, 59, 60, 61, 64, 65, 66, 67, 69, 70, 71, 72, 73, 78, 79, 81, 83, 86, 88, 89, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 109, 114, 119, 121, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 150, 152, 155, 157, 159, 160, 161, 178, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 206, 207, 208, 209, 210, 211, 213, 214, 215, 219, 220, 223, 224, 225, 226, 227, 230, 235, 239, 242, 243, 244, 245, 247, 249, 250, 251, 253, 255, 256, 257, 258, 261, 262, 265, 266, 273, 274], "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, 50, 53, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 76, 77, 78, 79, 81, 82, 84, 85, 87, 88, 91, 92, 93, 94, 95, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 114, 118, 120, 122, 123, 126, 127, 128, 130, 132, 133, 134, 138, 139, 141, 142, 143, 144, 145, 149, 150, 152, 155, 157, 158, 159, 160, 161, 169, 173, 178, 179, 180, 182, 183, 184, 185, 187, 188, 189, 190, 192, 194, 195, 196, 197, 199, 203, 205, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 225, 226, 227, 230, 232, 234, 235, 237, 242, 246, 247, 249, 250, 252, 253, 254, 255, 256, 257, 259, 260, 262, 263, 267, 269, 270, 271, 272, 273], "xxxx": [1, 7, 50, 71, 83, 85, 88, 94, 119, 130, 137, 138, 191, 213, 215, 224, 274], "flag": [1, 49, 87, 88, 99, 125, 134, 135, 149, 152, 182, 183, 185, 190, 206, 207, 208, 211, 215, 219, 220, 222, 225, 226, 232, 252], "cmaketoolchain": [1, 16, 17, 18, 26, 27, 35, 38, 41, 42, 43, 46, 52, 59, 67, 72, 76, 83, 86, 88, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 130, 135, 145, 149, 150, 152, 179, 187, 188, 189, 190, 243, 244, 245, 246, 247, 248, 251, 253, 255, 257, 259, 261, 262, 265, 266, 274], "15654": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 52, 58, 59, 66, 76, 83, 85, 87, 88, 103, 105, 106, 107, 108, 111, 117, 119, 134, 135, 149, 153, 158, 161, 162, 174, 183, 184, 188, 190, 191, 194, 199, 201, 206, 208, 209, 211, 213, 214, 215, 219, 220, 224, 226, 234, 235, 239, 244, 246, 247, 248, 249, 251, 252, 254, 259, 261, 262, 264, 266, 269, 270, 273], "abil": 1, "pass": [1, 4, 13, 26, 36, 39, 45, 49, 54, 56, 67, 83, 87, 88, 89, 96, 101, 108, 109, 117, 119, 126, 131, 132, 139, 144, 148, 149, 157, 158, 160, 166, 174, 182, 183, 184, 185, 188, 189, 191, 192, 201, 203, 206, 208, 209, 213, 216, 220, 223, 230, 234, 243, 251, 252, 253, 254, 255, 257, 261, 262, 264, 270, 274], "pattern": [1, 6, 7, 13, 31, 83, 86, 87, 88, 89, 90, 91, 96, 98, 99, 101, 102, 105, 107, 110, 111, 114, 115, 117, 119, 133, 134, 139, 144, 145, 146, 174, 177, 190, 199, 201, 224, 230, 231, 245, 252, 260, 267], "updat": [1, 4, 6, 8, 26, 39, 40, 62, 66, 73, 77, 86, 88, 89, 92, 93, 96, 98, 99, 104, 105, 114, 117, 119, 131, 135, 136, 140, 149, 150, 152, 156, 169, 174, 182, 192, 199, 208, 234, 246, 254, 268, 272, 273, 274], "15652": 1, "doc": [1, 8, 60, 61, 73, 76, 117, 156, 206, 239, 247, 248, 274], "here": [1, 4, 19, 27, 41, 42, 50, 60, 85, 96, 102, 119, 126, 130, 131, 132, 136, 152, 161, 178, 190, 191, 195, 199, 211, 214, 234, 245, 250, 252, 253, 255, 258, 265, 266], "format": [1, 6, 7, 13, 52, 68, 75, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 109, 110, 111, 112, 114, 115, 116, 119, 124, 130, 135, 139, 140, 148, 152, 153, 157, 178, 192, 195, 199, 201, 209, 211, 217, 220, 225, 238, 251, 258, 259, 267, 274], "json": [1, 3, 4, 6, 13, 21, 47, 48, 59, 68, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 104, 106, 109, 110, 111, 112, 114, 115, 116, 130, 131, 139, 140, 146, 158, 174, 188, 189, 191, 258, 264, 265, 266, 267, 274], "formatt": [1, 45, 90, 99, 115, 155], "15651": 1, "ad": [1, 3, 5, 8, 10, 24, 59, 66, 69, 71, 72, 73, 76, 89, 101, 104, 105, 108, 119, 125, 126, 131, 133, 136, 149, 150, 156, 157, 158, 160, 162, 173, 174, 178, 182, 184, 185, 191, 194, 203, 206, 208, 215, 224, 225, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 259, 260, 261, 270, 274], "cross_build": [1, 88, 149, 220, 244, 262], "decid": [1, 81, 88, 117, 119, 123, 134, 137, 138, 149, 247, 251, 269, 271, 272], "whether": [1, 86, 88, 89, 92, 93, 98, 99, 101, 105, 117, 130, 140, 149, 184, 186, 222, 251, 254, 261, 266, 274], "cross": [1, 11, 26, 42, 56, 60, 61, 63, 73, 88, 121, 134, 135, 139, 149, 150, 186, 187, 190, 208, 211, 215, 218, 219, 234, 235, 242, 245, 262], "regardless": [1, 87, 88, 149, 252], "intern": [1, 50, 54, 77, 88, 117, 139, 150, 152, 153, 182, 183, 220, 223, 234, 244, 246, 257, 271], "mechan": [1, 7, 13, 59, 73, 76, 77, 83, 117, 119, 124, 130, 138, 139, 150, 153, 155, 160, 178, 192, 195, 230, 245, 246, 252, 268, 270, 271, 273, 274], "15616": 1, "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 52, 58, 59, 66, 70, 71, 72, 76, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 142, 143, 149, 151, 155, 156, 158, 160, 161, 173, 174, 184, 185, 186, 187, 188, 190, 191, 199, 201, 206, 208, 215, 216, 218, 223, 224, 225, 235, 238, 242, 247, 249, 251, 253, 255, 257, 259, 261, 268, 271, 272, 274], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 50, 52, 58, 59, 60, 61, 66, 73, 77, 82, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 111, 114, 119, 122, 127, 128, 129, 130, 132, 133, 137, 138, 148, 150, 153, 154, 155, 156, 157, 160, 161, 162, 163, 167, 169, 171, 173, 177, 185, 188, 191, 195, 199, 206, 213, 220, 225, 230, 235, 236, 241, 243, 245, 246, 248, 249, 252, 254, 257, 258, 260, 262, 263, 264, 265, 266, 269, 270, 271, 272, 273], "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 50, 52, 54, 58, 59, 61, 77, 84, 85, 86, 88, 89, 91, 92, 93, 96, 98, 99, 100, 102, 105, 106, 108, 113, 114, 117, 119, 129, 130, 131, 132, 133, 135, 136, 137, 138, 141, 147, 149, 150, 158, 160, 161, 162, 169, 173, 178, 179, 182, 183, 188, 190, 191, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 210, 213, 214, 215, 216, 217, 220, 222, 226, 227, 243, 245, 247, 248, 251, 253, 254, 257, 258, 259, 260, 262, 264, 265, 266, 274], "15613": 1, "order": [1, 4, 8, 13, 31, 36, 95, 101, 103, 104, 107, 117, 118, 119, 121, 134, 135, 149, 152, 153, 156, 160, 173, 174, 178, 191, 192, 195, 199, 208, 244, 246, 264, 270, 271, 272], "argument": [1, 6, 7, 10, 26, 29, 31, 35, 36, 47, 49, 67, 76, 77, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 127, 137, 138, 144, 148, 149, 154, 155, 156, 157, 159, 160, 162, 169, 173, 177, 183, 184, 188, 189, 190, 191, 192, 194, 195, 199, 206, 208, 213, 216, 217, 223, 230, 234, 244, 245, 247, 251, 252, 253, 255, 258, 264, 265, 267, 270, 272, 273], "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 60, 76, 77, 81, 83, 85, 88, 89, 100, 101, 103, 104, 105, 106, 109, 119, 120, 126, 130, 135, 136, 139, 140, 142, 145, 149, 150, 155, 158, 160, 164, 170, 184, 195, 224, 234, 242, 243, 244, 246, 248, 252, 267, 268, 269, 270, 271, 273], "15602": 1, "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 50, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 78, 81, 83, 86, 87, 89, 91, 92, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 108, 111, 112, 113, 114, 117, 120, 121, 127, 130, 133, 135, 136, 137, 138, 145, 148, 149, 150, 152, 153, 156, 157, 160, 169, 174, 188, 190, 191, 192, 194, 195, 199, 201, 203, 208, 210, 211, 220, 232, 245, 246, 247, 249, 258, 260, 261, 268, 270, 273, 274], "reduc": [1, 77, 96, 97, 140], "exclus": [1, 35, 86, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 102, 105, 106, 111, 114, 115, 119, 120, 123, 135, 136, 139, 224], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 43, 45, 46, 47, 49, 52, 54, 56, 57, 59, 61, 64, 66, 67, 68, 70, 71, 72, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 98, 99, 101, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 149, 150, 152, 154, 155, 156, 157, 158, 159, 160, 161, 167, 169, 170, 171, 174, 177, 178, 182, 184, 185, 188, 190, 191, 192, 194, 195, 197, 199, 202, 206, 208, 210, 211, 213, 214, 217, 219, 220, 224, 225, 230, 233, 235, 236, 237, 238, 239, 240, 243, 244, 246, 247, 261, 268, 269, 270, 272, 273], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 56, 59, 61, 66, 67, 71, 73, 77, 80, 81, 82, 85, 88, 93, 95, 96, 97, 99, 100, 104, 105, 108, 111, 115, 117, 119, 123, 125, 126, 131, 132, 134, 135, 136, 137, 138, 140, 144, 145, 149, 152, 153, 154, 155, 158, 159, 178, 182, 189, 190, 191, 192, 194, 203, 207, 208, 209, 216, 220, 223, 226, 230, 234, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 261, 264, 265, 266, 269, 271, 272, 273, 274], "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 50, 54, 58, 59, 61, 68, 73, 76, 77, 79, 81, 83, 85, 86, 87, 88, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 114, 119, 121, 124, 128, 129, 130, 132, 135, 139, 140, 143, 145, 146, 155, 156, 162, 169, 178, 180, 184, 188, 190, 192, 199, 205, 213, 219, 224, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 256, 257, 259, 260, 262, 264, 265, 266, 267, 269, 271, 274], "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, 50, 52, 54, 56, 58, 59, 60, 64, 65, 66, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 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, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 155, 158, 159, 160, 162, 167, 169, 171, 172, 174, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 234, 235, 236, 237, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 271, 272, 273, 274], "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, 51, 54, 56, 58, 59, 60, 76, 77, 78, 85, 86, 87, 88, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 109, 114, 117, 118, 120, 121, 128, 129, 130, 132, 135, 142, 149, 150, 153, 161, 162, 169, 170, 177, 178, 188, 189, 190, 191, 195, 196, 199, 201, 203, 207, 208, 211, 217, 230, 235, 236, 237, 238, 239, 240, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 257, 258, 259, 260, 261, 262, 263, 264, 268, 271, 273], "15573": 1, "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, 50, 52, 54, 58, 59, 60, 61, 62, 64, 65, 71, 72, 73, 76, 77, 79, 80, 81, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 121, 122, 123, 124, 125, 128, 129, 130, 133, 134, 135, 139, 142, 143, 150, 152, 153, 154, 161, 166, 169, 173, 178, 181, 183, 185, 186, 188, 189, 191, 196, 197, 201, 206, 208, 210, 213, 215, 219, 220, 221, 222, 223, 225, 227, 230, 233, 235, 236, 239, 242, 243, 244, 248, 249, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 271, 272, 273], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 52, 76, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 101, 102, 105, 107, 109, 110, 111, 112, 113, 114, 115, 117, 119, 123, 125, 126, 130, 132, 134, 135, 136, 144, 145, 149, 150, 151, 152, 160, 167, 177, 186, 188, 189, 190, 191, 195, 199, 200, 201, 206, 208, 209, 211, 214, 216, 219, 220, 226, 230, 241, 243, 244, 245, 246, 247, 255, 257, 272, 273], "cuda": [1, 88, 149, 191, 208], "toolkit": 1, "visual": [1, 28, 35, 43, 50, 57, 60, 62, 73, 75, 83, 88, 130, 135, 149, 152, 179, 188, 189, 190, 191, 208, 216, 217, 220, 221, 223, 224, 225, 227, 228, 243, 245, 247, 248, 253, 266], "studio": [1, 11, 25, 27, 28, 35, 43, 50, 57, 60, 62, 63, 73, 83, 88, 130, 135, 149, 152, 188, 189, 190, 191, 208, 216, 217, 220, 222, 223, 224, 225, 227, 228, 243, 245, 247, 248, 253, 266], "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 27, 29, 35, 37, 42, 43, 47, 48, 52, 54, 56, 58, 59, 60, 62, 66, 71, 72, 73, 76, 77, 78, 79, 83, 86, 88, 89, 93, 96, 98, 99, 101, 105, 107, 108, 109, 114, 119, 121, 123, 130, 132, 133, 134, 135, 136, 145, 149, 150, 152, 157, 179, 189, 191, 196, 203, 217, 235, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 264, 265, 266, 274], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 27, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 50, 54, 56, 58, 59, 64, 65, 67, 69, 70, 71, 72, 73, 77, 79, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 102, 104, 105, 106, 108, 109, 114, 115, 117, 120, 121, 122, 124, 126, 131, 132, 134, 135, 136, 139, 140, 149, 150, 152, 153, 154, 155, 156, 157, 160, 161, 162, 163, 170, 178, 179, 180, 184, 185, 187, 188, 189, 193, 194, 195, 199, 205, 206, 212, 216, 217, 218, 219, 221, 225, 226, 227, 230, 232, 238, 239, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 272, 274], "15572": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 46, 49, 52, 58, 59, 60, 61, 62, 64, 65, 69, 70, 71, 72, 73, 76, 81, 83, 85, 96, 99, 101, 105, 108, 117, 118, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 146, 148, 150, 152, 155, 156, 158, 159, 162, 178, 179, 180, 182, 183, 184, 185, 188, 189, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 219, 220, 223, 224, 225, 226, 227, 232, 234, 235, 244, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 266, 270, 272, 273, 274], "valu": [1, 21, 26, 27, 39, 49, 76, 77, 81, 83, 86, 88, 89, 96, 98, 99, 101, 102, 105, 108, 109, 114, 115, 117, 119, 121, 122, 123, 124, 125, 126, 130, 131, 132, 134, 135, 136, 137, 138, 139, 142, 143, 144, 145, 147, 148, 149, 150, 151, 154, 156, 158, 163, 166, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 199, 201, 206, 207, 208, 215, 217, 219, 220, 222, 223, 224, 225, 226, 231, 234, 245, 247, 251, 252, 253, 254, 257, 259, 261, 262, 265, 266, 269, 271], "definit": [1, 17, 64, 66, 67, 69, 70, 73, 78, 83, 88, 93, 101, 108, 109, 110, 119, 126, 135, 139, 149, 150, 152, 155, 174, 185, 191, 193, 195, 196, 197, 207, 208, 220, 224, 225, 226, 230, 247, 261, 264, 266, 273], "higher": [1, 66, 83, 101, 135, 136, 144, 148, 230, 270, 272], "preced": [1, 119, 147, 179, 191, 194, 208, 211], "over": [1, 6, 8, 10, 75, 77, 83, 87, 88, 90, 101, 119, 131, 134, 139, 147, 149, 150, 154, 156, 157, 160, 173, 178, 183, 191, 201, 208, 210, 211, 230, 251, 254, 255, 260, 267, 269, 272, 274], "regular": [1, 41, 119, 130, 132, 135, 150, 154, 161, 178, 190, 201, 211, 224, 240, 242, 244, 257], "15571": 1, "displai": [1, 13, 66, 84, 85, 88, 95, 102, 119, 140, 157, 163, 253, 270], "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 52, 76, 82, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 144, 149, 161, 248, 250, 251, 252, 255, 259, 261, 264, 271, 274], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 50, 52, 59, 61, 73, 76, 77, 81, 82, 83, 84, 86, 87, 88, 89, 91, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 110, 114, 115, 117, 119, 120, 123, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 148, 149, 150, 152, 153, 154, 158, 160, 162, 163, 174, 178, 180, 182, 184, 185, 186, 188, 190, 191, 195, 196, 197, 199, 201, 208, 211, 213, 214, 216, 219, 220, 222, 224, 225, 231, 234, 236, 239, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 50, 52, 54, 58, 59, 64, 66, 71, 72, 77, 82, 85, 86, 90, 93, 101, 108, 109, 113, 117, 120, 121, 122, 123, 125, 128, 129, 130, 131, 133, 134, 135, 137, 138, 139, 140, 141, 144, 153, 156, 157, 158, 160, 161, 162, 177, 178, 183, 188, 190, 191, 192, 195, 196, 197, 202, 206, 208, 213, 215, 216, 219, 223, 225, 226, 227, 230, 234, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 268, 269, 271, 274], "deactivate_conanvcvar": 1, "15557": 1, "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 50, 52, 58, 59, 77, 81, 83, 101, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 152, 153, 155, 157, 158, 159, 160, 161, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 269, 270, 271, 273, 274], "info": [1, 6, 13, 24, 31, 36, 54, 58, 59, 62, 76, 81, 82, 83, 84, 85, 88, 89, 95, 98, 100, 102, 105, 130, 134, 135, 136, 139, 140, 142, 143, 144, 149, 158, 161, 169, 178, 201, 220, 232, 234, 244, 252, 253, 257, 259, 270, 271], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 50, 54, 56, 61, 63, 66, 67, 71, 72, 76, 77, 78, 79, 84, 85, 89, 90, 92, 94, 95, 96, 99, 100, 101, 102, 104, 105, 108, 109, 110, 115, 116, 118, 120, 121, 122, 123, 125, 126, 127, 130, 131, 132, 133, 139, 140, 141, 142, 145, 146, 147, 148, 150, 152, 153, 155, 156, 158, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 184, 188, 191, 194, 197, 199, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 224, 230, 232, 235, 238, 241, 243, 244, 245, 247, 248, 249, 252, 253, 255, 257, 261, 262, 265, 266, 267, 271, 272, 274], "package_id": [1, 6, 7, 13, 31, 77, 79, 80, 83, 87, 88, 90, 94, 96, 98, 99, 102, 111, 115, 119, 120, 122, 126, 130, 136, 142, 143, 149, 155, 169, 245, 252, 256, 257, 269, 271], "serial": [1, 7, 119], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 52, 56, 59, 66, 68, 73, 77, 79, 85, 86, 87, 88, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 130, 134, 139, 149, 150, 154, 158, 160, 161, 178, 199, 201, 203, 210, 217, 220, 230, 243, 245, 247, 248, 250, 251, 254, 261, 262, 266, 271, 274], "forward": [1, 6, 45, 54, 56, 73, 178, 201, 269, 273], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 54, 58, 60, 64, 66, 69, 71, 72, 76, 82, 83, 84, 85, 87, 90, 96, 100, 104, 106, 108, 111, 112, 115, 117, 119, 120, 124, 130, 131, 134, 135, 144, 145, 148, 149, 150, 151, 155, 156, 158, 164, 167, 169, 173, 174, 177, 185, 186, 188, 189, 190, 191, 195, 199, 201, 206, 208, 209, 211, 213, 215, 220, 223, 224, 225, 226, 230, 232, 234, 235, 241, 246, 253, 254, 257, 258, 264, 265, 270, 271, 273], "15553": 1, "log": [1, 6, 26, 59, 90, 110, 117, 144, 153, 155, 266, 274], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 50, 52, 54, 56, 61, 68, 73, 76, 77, 88, 101, 108, 109, 119, 138, 139, 149, 153, 179, 199, 229, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 273], "command": [1, 4, 7, 10, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 54, 58, 60, 61, 64, 65, 70, 71, 72, 73, 75, 76, 77, 79, 82, 83, 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, 114, 115, 116, 117, 118, 119, 120, 121, 127, 128, 129, 130, 132, 133, 137, 138, 139, 142, 148, 150, 151, 152, 154, 155, 159, 161, 163, 165, 169, 172, 183, 184, 185, 188, 190, 191, 195, 206, 213, 214, 215, 216, 219, 223, 224, 225, 227, 230, 232, 234, 241, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 267, 270, 271, 272, 273], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 50, 52, 54, 56, 58, 59, 61, 66, 67, 73, 77, 79, 83, 88, 89, 94, 98, 99, 105, 111, 115, 118, 119, 120, 121, 122, 123, 130, 132, 134, 135, 138, 141, 147, 149, 150, 152, 155, 157, 158, 160, 161, 185, 186, 188, 190, 191, 193, 194, 197, 206, 211, 213, 214, 215, 216, 219, 223, 224, 226, 227, 230, 234, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 270, 271, 273, 274], "verbos": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 135, 144, 149, 150, 154, 183, 188, 208, 219, 223, 266], "mode": [1, 17, 21, 73, 76, 88, 91, 102, 119, 130, 132, 139, 140, 149, 152, 216, 234, 235, 245, 263, 266, 274], "15514": 1, "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 50, 52, 66, 76, 77, 101, 105, 108, 109, 119, 122, 135, 144, 150, 152, 156, 163, 183, 184, 185, 189, 190, 191, 196, 197, 199, 208, 220, 223, 224, 225, 235, 242, 247, 250, 252, 253, 257, 258, 259, 261, 264, 265, 266], "vvv": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "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, 46, 47, 49, 52, 54, 56, 58, 59, 60, 61, 64, 65, 66, 67, 68, 70, 71, 72, 73, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 109, 111, 114, 115, 116, 117, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 144, 145, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 173, 174, 177, 179, 182, 183, 184, 185, 187, 188, 189, 192, 193, 194, 205, 206, 210, 212, 213, 216, 217, 218, 219, 221, 223, 225, 227, 230, 232, 235, 239, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 264, 265, 266, 267, 270, 271, 272, 273], "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 58, 59, 61, 73, 77, 82, 87, 88, 101, 102, 108, 117, 119, 120, 127, 128, 129, 130, 132, 133, 139, 149, 155, 160, 178, 198, 202, 203, 241, 249, 253, 254, 255, 257, 258, 259, 261, 263, 274], "15513": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 50, 54, 58, 59, 73, 77, 80, 81, 83, 87, 88, 91, 93, 94, 99, 101, 102, 104, 106, 108, 109, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 158, 160, 163, 166, 173, 174, 178, 181, 183, 185, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 203, 206, 207, 208, 209, 210, 211, 214, 216, 217, 220, 224, 225, 226, 227, 230, 235, 242, 243, 244, 245, 247, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274], "python_requir": [1, 77, 94, 100, 104, 105, 106, 107, 120, 130, 131, 155, 169, 191, 217, 235, 246, 270, 272], "tested_reference_str": [1, 178, 259, 262], "explicit": [1, 41, 87, 101, 133, 148, 202, 226, 267, 268, 270, 273, 274], "test_packag": [1, 21, 27, 42, 50, 58, 59, 77, 89, 93, 108, 109, 114, 120, 141, 169, 178, 249, 250, 252, 253, 254, 255, 257, 258, 259, 261, 262, 264, 265], "15485": 1, "presets_build": 1, "run_environ": 1, "modifi": [1, 3, 4, 6, 10, 17, 26, 27, 29, 48, 52, 66, 76, 77, 83, 87, 117, 119, 122, 123, 130, 135, 152, 154, 157, 161, 163, 184, 191, 192, 199, 207, 242, 246, 247, 251, 252, 253, 255, 260, 261, 269, 271, 272, 273, 274], "cmakepreset": [1, 43, 46, 67, 88, 130, 149, 188, 189, 191, 247, 264, 265, 266, 274], "environ": [1, 2, 6, 13, 14, 20, 35, 45, 56, 60, 61, 64, 79, 83, 88, 99, 108, 109, 117, 119, 130, 135, 144, 147, 148, 149, 150, 153, 179, 188, 190, 191, 193, 196, 197, 207, 210, 216, 220, 221, 225, 227, 243, 244, 245, 247, 248, 249, 251, 257, 259, 261, 262, 265], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 50, 58, 59, 60, 64, 71, 73, 77, 79, 83, 85, 86, 87, 93, 100, 101, 108, 109, 113, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 155, 156, 159, 160, 161, 162, 174, 178, 182, 183, 184, 185, 188, 190, 191, 194, 195, 196, 197, 199, 202, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 233, 235, 242, 249, 250, 252, 253, 255, 257, 258, 259, 261, 262, 264, 265, 266, 269, 273], "15470": 1, "allow": [1, 3, 4, 6, 13, 49, 50, 56, 58, 66, 71, 73, 77, 78, 83, 85, 86, 88, 89, 91, 96, 98, 99, 101, 102, 104, 105, 109, 110, 114, 117, 119, 120, 121, 122, 123, 128, 129, 132, 134, 135, 148, 149, 150, 152, 153, 154, 155, 156, 157, 163, 170, 174, 178, 189, 190, 191, 192, 194, 199, 206, 220, 222, 224, 225, 234, 243, 246, 247, 253, 255, 265, 267, 270, 272, 273, 274], "packg": 1, "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 54, 59, 73, 76, 79, 85, 86, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 111, 112, 114, 115, 117, 146, 148, 149, 150, 155, 164, 167, 169, 170, 171, 177, 199, 230, 235, 236, 239, 240, 241, 243, 245, 248, 249, 252, 258, 265, 272, 274], "limit": [1, 35, 50, 102, 111, 119, 135, 186, 195, 199, 220, 243, 274], "suppli": [1, 4, 5, 86, 87, 89, 96, 98, 99, 101, 103, 104, 105, 107, 114, 160, 274], "15464": 1, "initi": [1, 6, 59, 66, 120, 131, 135, 137, 138, 169, 220, 228, 273], "document": [1, 3, 4, 26, 27, 61, 68, 77, 78, 83, 90, 111, 119, 127, 130, 135, 140, 152, 155, 163, 178, 179, 191, 192, 199, 202, 216, 220, 238, 239, 247, 248, 252, 266, 274], "make": [1, 6, 8, 26, 27, 29, 38, 39, 40, 45, 50, 59, 61, 62, 64, 69, 73, 88, 93, 101, 102, 104, 119, 126, 128, 130, 133, 134, 137, 140, 144, 149, 150, 152, 155, 157, 162, 178, 185, 190, 194, 206, 208, 209, 220, 230, 245, 247, 250, 251, 252, 260, 263, 264, 266, 273, 274], "remotesapi": [1, 31, 164, 174], "publicli": [1, 4], "avail": [1, 3, 4, 8, 24, 26, 36, 52, 66, 73, 75, 76, 88, 93, 98, 100, 102, 107, 108, 111, 117, 119, 124, 132, 136, 145, 149, 150, 161, 174, 178, 182, 186, 191, 233, 243, 246, 247, 252, 253, 257, 258, 259, 264, 265, 272, 274], "experiment": [1, 6, 7, 13, 31, 73, 88, 94, 100, 108, 115, 116, 119, 123, 125, 126, 127, 134, 135, 145, 148, 149, 150, 152, 153, 156, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 190, 191, 192, 209, 213, 214, 215, 216, 230, 274], "15462": 1, "support": [1, 8, 17, 26, 27, 47, 48, 49, 52, 60, 62, 63, 66, 67, 68, 69, 73, 76, 83, 99, 102, 108, 117, 123, 132, 135, 137, 138, 142, 145, 149, 150, 152, 154, 155, 156, 159, 160, 163, 174, 181, 186, 190, 208, 211, 216, 220, 222, 234, 242, 250, 255, 261, 264, 265, 266, 274], "vcvar": [1, 88, 130, 149, 152, 179, 221, 223, 225], "env": [1, 24, 26, 39, 40, 54, 77, 79, 88, 110, 135, 136, 141, 144, 149, 150, 154, 179, 188, 191, 194, 195, 196, 197, 208, 225, 226, 227, 232, 243, 245, 248, 259, 262, 265], "variabl": [1, 26, 35, 36, 43, 45, 46, 60, 64, 79, 81, 83, 88, 108, 117, 119, 130, 134, 135, 147, 148, 149, 150, 153, 181, 185, 188, 190, 192, 193, 196, 197, 207, 208, 209, 210, 211, 213, 215, 216, 219, 220, 223, 224, 225, 226, 227, 234, 244, 245, 247, 248, 251, 259, 260, 261, 262, 271, 272, 274], "powershel": [1, 88, 149, 195, 196, 197, 227, 248], "15461": 1, "exclud": [1, 39, 40, 86, 87, 88, 89, 96, 98, 99, 101, 105, 114, 119, 149, 199, 224, 230, 246, 272], "avoid": [1, 5, 6, 10, 50, 59, 61, 73, 77, 86, 88, 89, 93, 96, 98, 99, 100, 101, 105, 108, 111, 114, 117, 118, 119, 122, 123, 126, 130, 131, 136, 139, 149, 153, 154, 156, 162, 178, 190, 191, 195, 199, 206, 208, 217, 248, 251, 252, 257, 262, 264, 269, 270, 271, 272], "dirti": [1, 6, 59, 88, 119, 149, 230], "helper": [1, 18, 45, 54, 56, 58, 64, 65, 67, 70, 71, 72, 73, 76, 88, 119, 121, 129, 130, 139, 140, 144, 149, 152, 153, 158, 183, 186, 188, 190, 191, 194, 195, 199, 205, 208, 210, 213, 215, 219, 222, 223, 230, 231, 257], "15457": 1, "core": [1, 3, 4, 10, 31, 45, 54, 60, 74, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 134, 144, 148, 150, 154, 167, 177, 178, 230, 272], "scm": [1, 11, 43, 79, 88, 101, 119, 138, 149, 179, 199, 230, 250, 255, 271, 273], "revision_mod": [1, 94, 99, 100, 271], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 50, 52, 58, 59, 60, 67, 72, 73, 76, 77, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 104, 105, 106, 108, 109, 110, 111, 112, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 134, 135, 136, 137, 138, 139, 140, 142, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 167, 169, 171, 177, 178, 182, 186, 188, 189, 190, 191, 194, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 211, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 234, 235, 236, 241, 243, 245, 246, 247, 248, 249, 250, 253, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "python_package_id_mod": 1, "per": [1, 6, 71, 73, 83, 108, 121, 130, 133, 135, 139, 150, 177, 178, 184, 213, 214, 224], "effect": [1, 6, 8, 49, 76, 79, 80, 81, 101, 119, 130, 134, 139, 149, 155, 224, 234, 252, 270], "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 50, 58, 59, 60, 67, 71, 72, 82, 85, 89, 109, 118, 120, 123, 130, 132, 135, 136, 143, 145, 150, 169, 170, 178, 184, 192, 194, 206, 209, 211, 214, 224, 232, 235, 245, 246, 247, 248, 249, 250, 253, 257, 258, 259, 262, 263, 264, 266, 269, 271, 273, 274], "15453": 1, "cmakeexecut": [1, 191], "preset": [1, 29, 47, 48, 67, 88, 121, 132, 149, 189, 191, 264, 265, 266], "15447": 1, "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 71, 77, 79, 81, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 126, 130, 131, 134, 135, 144, 146, 152, 154, 160, 166, 173, 181, 189, 195, 196, 197, 206, 218, 221, 234, 240, 248, 251, 257, 274], "line": [1, 8, 10, 21, 26, 29, 31, 49, 59, 64, 65, 70, 71, 72, 73, 76, 77, 83, 86, 89, 96, 98, 99, 101, 105, 108, 109, 114, 117, 119, 121, 137, 138, 148, 149, 154, 157, 158, 159, 163, 183, 184, 188, 190, 191, 199, 206, 213, 214, 219, 223, 225, 227, 243, 245, 248, 250, 251, 253, 255, 260, 271, 272, 273, 274], "via": [1, 4, 7, 10, 13, 31, 38, 49, 50, 61, 67, 68, 73, 77, 81, 83, 88, 93, 119, 130, 132, 136, 149, 158, 160, 163, 178, 188, 190, 191, 192, 194, 237, 243, 244, 272, 274], "cli": [1, 10, 13, 31, 73, 94, 99, 149, 151, 154, 158, 188, 213, 239, 273], "15441": 1, "detect_api": [1, 149, 150], "detect_msvc_upd": [1, 150], "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, 50, 52, 56, 58, 59, 60, 61, 62, 66, 68, 73, 76, 77, 78, 80, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 111, 113, 114, 115, 117, 120, 123, 124, 130, 131, 134, 136, 138, 139, 140, 142, 143, 145, 149, 150, 152, 153, 155, 156, 157, 159, 160, 163, 169, 178, 179, 182, 185, 186, 189, 190, 191, 194, 199, 202, 203, 206, 210, 211, 216, 220, 222, 225, 226, 227, 229, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 274], "15435": 1, "job": [1, 7, 59, 77, 88, 149, 150, 186, 188, 219, 274], "buildpreset": [1, 48, 191], "15422": 1, "nest": [1, 76, 152, 199, 264], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 50, 58, 59, 73, 76, 77, 81, 82, 83, 87, 88, 89, 90, 94, 100, 101, 102, 104, 106, 108, 109, 111, 112, 115, 117, 119, 121, 122, 123, 128, 129, 130, 131, 135, 137, 138, 139, 140, 144, 147, 149, 150, 152, 154, 155, 156, 158, 161, 178, 179, 185, 188, 189, 190, 191, 196, 199, 201, 204, 206, 209, 211, 213, 214, 216, 220, 224, 225, 231, 234, 239, 241, 243, 245, 246, 250, 252, 253, 257, 258, 259, 263, 264, 267, 269, 270, 271, 272, 273, 274], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 52, 58, 59, 66, 67, 70, 71, 72, 77, 79, 80, 82, 84, 85, 86, 88, 89, 90, 93, 94, 96, 98, 99, 100, 102, 105, 109, 111, 114, 115, 117, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 139, 140, 142, 143, 144, 146, 147, 148, 149, 153, 155, 156, 158, 160, 163, 166, 173, 180, 182, 183, 184, 185, 186, 187, 188, 190, 191, 194, 195, 196, 197, 201, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 232, 234, 235, 236, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 262, 265, 266, 270, 271], "yml": [1, 4, 7, 11, 23, 52, 59, 66, 76, 77, 79, 83, 88, 119, 128, 129, 130, 131, 139, 146, 150, 162, 199, 203, 230, 249], "15415": 1, "coordinates_to_conandata": [1, 230], "checkout_from_conandata_coordin": [1, 230], "simplifi": [1, 13, 106, 145, 252, 253, 274], "base": [1, 4, 8, 35, 36, 39, 42, 47, 54, 56, 61, 73, 82, 83, 86, 90, 99, 100, 101, 102, 105, 111, 115, 119, 130, 131, 133, 136, 150, 155, 158, 160, 167, 177, 180, 183, 185, 189, 191, 216, 220, 222, 223, 225, 243, 245, 251, 261, 274], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 59, 60, 73, 86, 93, 101, 113, 130, 135, 185, 190, 225, 235, 239, 251, 263, 270, 274], "15377": 1, "autotoolstoolchain": [1, 45, 64, 88, 149, 179, 194, 205, 206, 251], "automat": [1, 3, 6, 31, 41, 47, 61, 66, 73, 83, 86, 88, 89, 93, 96, 98, 99, 100, 101, 104, 105, 108, 114, 117, 119, 128, 135, 136, 139, 148, 149, 150, 152, 161, 173, 178, 182, 188, 189, 190, 191, 194, 195, 197, 202, 203, 206, 209, 210, 211, 213, 215, 216, 219, 225, 234, 237, 243, 245, 246, 248, 251, 252, 254, 255, 259, 262, 267, 268, 269, 270, 271, 272, 274], "inject": [1, 39, 40, 43, 46, 65, 66, 88, 119, 134, 135, 144, 148, 149, 150, 153, 155, 157, 178, 215, 226, 248, 251, 261], "f": [1, 31, 36, 39, 40, 59, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 108, 109, 110, 111, 112, 114, 115, 116, 119, 135, 139, 153, 159, 161, 162, 178, 191, 211, 226], "v": [1, 26, 48, 50, 58, 78, 81, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 124, 134, 145, 149, 152, 154, 178, 219, 220, 224, 225, 226, 230, 235, 242, 243, 245, 248, 253, 274], "15375": 1, "upload": [1, 3, 5, 7, 12, 29, 59, 68, 73, 76, 77, 83, 85, 88, 90, 92, 109, 110, 111, 117, 119, 128, 129, 149, 151, 155, 162, 164, 206, 235, 236, 237, 239, 246, 257, 258, 264, 267, 268, 274], "parallel": [1, 66, 77, 83, 88, 96, 115, 149, 154, 155, 157, 167, 177, 186, 191, 274], "faster": [1, 13, 83, 230, 246, 273], "15360": 1, "intel": [1, 42, 73, 79, 88, 149, 179, 222], "oneapi": [1, 88, 149, 152, 216], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 52, 56, 58, 59, 60, 67, 76, 77, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 100, 101, 102, 105, 108, 109, 111, 114, 115, 119, 122, 124, 126, 130, 133, 134, 135, 136, 139, 143, 146, 149, 150, 156, 163, 171, 182, 183, 184, 185, 186, 188, 189, 190, 194, 196, 197, 203, 206, 207, 208, 209, 211, 213, 214, 215, 216, 219, 220, 222, 223, 224, 225, 226, 227, 232, 235, 242, 243, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 274], "detect": [1, 6, 59, 73, 77, 88, 149, 150, 173, 186, 191, 210, 220, 243, 244, 245, 254], "improv": [1, 6, 73, 121, 274], "15358": 1, "progress": 1, "long": [1, 4, 7, 73, 76, 119, 132, 152, 178, 270, 272, 274], "15354": 1, "extension_properti": [1, 156], "attribut": [1, 19, 21, 48, 77, 79, 81, 83, 100, 118, 121, 123, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 144, 145, 156, 161, 178, 184, 189, 190, 191, 203, 214, 217, 221, 245, 247, 250, 253, 254, 255, 257, 260, 262, 265, 266, 273], "extens": [1, 4, 11, 31, 35, 36, 38, 60, 61, 73, 77, 79, 80, 81, 88, 101, 119, 156, 157, 158, 159, 160, 161, 162, 163, 186, 195, 199, 244, 252, 259, 265], "15348": 1, "compatibility_cppstd": [1, 119, 156], "compat": [1, 8, 24, 27, 45, 66, 73, 78, 79, 80, 82, 83, 86, 89, 90, 96, 98, 99, 101, 105, 114, 115, 119, 120, 134, 150, 152, 155, 161, 190, 191, 206, 211, 220, 245, 247, 249, 259], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 58, 59, 60, 61, 66, 73, 77, 79, 83, 85, 86, 87, 89, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 108, 109, 113, 114, 117, 119, 124, 128, 130, 131, 132, 137, 138, 139, 140, 141, 142, 145, 150, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 169, 170, 178, 184, 185, 190, 196, 197, 203, 207, 208, 209, 211, 213, 214, 215, 216, 224, 225, 227, 232, 234, 235, 242, 243, 244, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 271, 272, 273], "plugin": [1, 26, 50, 62, 73, 77, 79, 85, 88, 117, 124, 134, 144, 155, 156, 157, 162, 259], "disabl": [1, 50, 88, 89, 117, 119, 149, 151, 154, 156, 160, 174, 191, 201, 208, 257], "fallback": [1, 101, 152, 183, 274], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 50, 58, 59, 60, 61, 69, 73, 76, 77, 81, 82, 83, 86, 87, 88, 89, 90, 93, 96, 97, 98, 99, 101, 102, 105, 106, 108, 109, 111, 114, 115, 117, 118, 121, 122, 123, 124, 126, 127, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 143, 149, 150, 152, 153, 154, 155, 158, 178, 179, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 206, 207, 208, 213, 220, 225, 226, 230, 234, 235, 239, 241, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 259, 261, 263, 264, 265, 266, 270, 271, 273, 274], "cppstd": [1, 24, 26, 27, 58, 76, 81, 94, 99, 109, 119, 126, 134, 150, 152, 156, 163, 179, 185, 191, 208, 215, 226, 243, 244, 245, 252, 253, 257, 274], "get_commit": [1, 230], "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 60, 61, 68, 73, 76, 77, 88, 90, 101, 110, 115, 119, 139, 153, 155, 158, 161, 214, 230, 234, 235, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 52, 59, 76, 82, 83, 84, 86, 88, 89, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 114, 117, 119, 121, 123, 125, 126, 130, 131, 134, 135, 136, 139, 140, 144, 145, 148, 149, 150, 151, 173, 174, 182, 184, 186, 188, 189, 190, 191, 195, 196, 197, 199, 201, 203, 208, 210, 213, 215, 219, 220, 222, 224, 225, 230, 234, 245, 247, 248, 251, 252, 253, 255, 257, 261, 265, 269, 270, 272], "obtain": [1, 39, 40, 59, 84, 85, 87, 120, 134, 140, 150, 174, 182, 183, 188, 193, 195, 196, 197, 220, 223, 225, 230, 245, 273], "commit": [1, 19, 59, 68, 73, 77, 119, 132, 139, 199, 230, 250, 251, 254, 255, 261, 265, 266, 271, 273], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 50, 54, 56, 58, 59, 61, 66, 76, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 108, 109, 113, 114, 117, 118, 120, 122, 127, 128, 129, 130, 133, 139, 147, 149, 150, 154, 155, 157, 158, 159, 160, 161, 162, 163, 172, 182, 188, 189, 190, 191, 194, 199, 201, 203, 204, 206, 208, 214, 217, 219, 220, 227, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 269, 270, 274], "15304": 1, "ensur": [1, 4, 8, 36, 42, 61, 66, 81, 89, 123, 152, 191, 199, 213, 216, 245, 272], "edit": [1, 3, 14, 15, 21, 26, 29, 52, 61, 73, 76, 77, 85, 109, 110, 117, 119, 130, 132, 135, 139, 150, 152, 163, 178, 235, 238, 240, 243, 246, 263, 266, 271], "cascad": [1, 86, 89, 96, 98, 99, 101, 105, 114, 264], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 50, 52, 59, 60, 61, 62, 70, 73, 76, 77, 85, 90, 91, 101, 106, 108, 109, 110, 111, 115, 117, 119, 120, 128, 129, 130, 132, 139, 142, 143, 148, 150, 152, 156, 158, 161, 178, 186, 188, 190, 191, 195, 214, 217, 220, 230, 235, 240, 243, 244, 245, 247, 252, 253, 255, 258, 260, 263, 265, 266, 269, 274], "togeth": [1, 59, 70, 73, 87, 97, 109, 119, 128, 129, 139, 156, 177, 178, 188, 191, 219, 226, 246, 253, 267, 274], "15300": 1, "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 50, 52, 58, 59, 61, 64, 65, 67, 68, 69, 70, 72, 73, 77, 78, 80, 81, 82, 83, 84, 85, 87, 88, 93, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 115, 117, 119, 120, 121, 122, 123, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 143, 145, 149, 150, 152, 154, 155, 156, 158, 159, 160, 161, 178, 184, 185, 189, 190, 191, 195, 196, 197, 199, 203, 211, 216, 217, 222, 224, 225, 230, 234, 239, 242, 243, 244, 247, 248, 249, 252, 253, 254, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 270, 272, 273, 274], "sort": [1, 96, 104, 106, 107, 135, 162, 192, 199, 270, 274], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 52, 54, 58, 59, 60, 61, 63, 76, 77, 78, 79, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 118, 120, 121, 122, 123, 124, 127, 130, 133, 134, 135, 136, 139, 140, 141, 142, 143, 149, 150, 151, 152, 155, 160, 167, 170, 178, 182, 185, 190, 199, 206, 211, 220, 235, 236, 237, 238, 239, 241, 243, 244, 245, 247, 248, 249, 251, 253, 254, 255, 256, 257, 259, 260, 262, 264, 265, 266, 267, 269, 271, 274], "group": [1, 31, 88, 119, 274], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 58, 59, 77, 81, 82, 84, 85, 86, 87, 89, 90, 96, 98, 99, 101, 103, 104, 105, 106, 107, 109, 111, 114, 115, 119, 130, 134, 145, 152, 158, 169, 177, 178, 199, 235, 242, 243, 248, 252, 253, 254, 257, 259, 260, 265, 267, 268, 270], "15270": 1, "past": [1, 26, 78, 87, 102], "timestamp": [1, 13, 98, 102, 104, 106], "compact": [1, 87], "lock": [1, 8, 73, 85, 86, 89, 93, 96, 98, 99, 100, 101, 109, 114, 169, 178, 246, 270], "15262": 1, "fix": [1, 5, 8, 35, 73, 119, 139, 153, 178, 182, 203, 245, 246, 269], "guarante": [1, 4, 7, 59, 83, 106, 109, 134, 150, 178, 255, 268, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 50, 56, 58, 59, 66, 77, 81, 82, 83, 87, 88, 93, 100, 101, 108, 115, 119, 122, 123, 125, 126, 127, 131, 133, 134, 135, 136, 137, 138, 139, 141, 144, 145, 149, 150, 154, 157, 158, 161, 162, 177, 182, 185, 188, 191, 195, 196, 197, 206, 208, 210, 213, 219, 220, 224, 226, 230, 232, 234, 245, 247, 248, 251, 252, 253, 254, 257, 259, 262, 264, 265, 266, 274], "15678": 1, "solv": [1, 29, 59, 61, 77, 78, 136, 150, 155, 158, 190, 211, 269, 271], "platform_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 54, 59, 61, 66, 73, 77, 79, 81, 83, 85, 86, 88, 89, 93, 96, 98, 99, 105, 114, 119, 123, 126, 135, 146, 149, 152, 154, 155, 156, 160, 164, 166, 169, 191, 194, 208, 215, 216, 219, 220, 222, 226, 242, 243, 245, 247, 248, 252, 257, 269, 270, 271, 272], "context": [1, 6, 13, 42, 77, 83, 86, 89, 93, 94, 96, 98, 99, 101, 105, 109, 114, 119, 123, 130, 135, 136, 139, 145, 149, 150, 160, 180, 190, 191, 194, 195, 196, 197, 199, 211, 214, 220, 222, 224, 235, 242, 245, 259], "discard": [1, 88, 136, 149], "platform_requir": 1, "15665": 1, "gcc": [1, 24, 39, 40, 45, 73, 77, 81, 83, 84, 86, 87, 89, 90, 93, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 119, 124, 134, 139, 143, 150, 152, 163, 171, 186, 201, 208, 244], "conda": 1, "15664": 1, "handl": [1, 6, 9, 59, 76, 117, 119, 135, 152, 194, 203, 235, 249, 251, 266], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 59, 60, 61, 66, 73, 77, 85, 87, 88, 92, 93, 95, 96, 99, 101, 102, 109, 111, 117, 119, 128, 129, 139, 150, 151, 153, 155, 162, 164, 169, 179, 198, 230, 236, 239, 241, 243, 246, 247, 248, 252, 255, 256, 259, 263, 265, 267, 269, 271, 274], "backup": [1, 7, 88, 117, 149, 177], "15601": 1, "relativ": 1, "15592": 1, "none": [1, 31, 36, 38, 49, 50, 81, 88, 94, 99, 100, 101, 119, 130, 132, 142, 144, 149, 150, 161, 165, 167, 169, 170, 173, 174, 177, 182, 183, 186, 188, 189, 190, 191, 194, 195, 199, 201, 203, 204, 206, 208, 209, 210, 213, 219, 220, 222, 223, 230, 234], "preprocessor_definit": 1, "map": [1, 82, 130, 135, 178, 183, 188, 191, 208, 220, 223, 226, 234, 258, 266], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 50, 59, 71, 73, 77, 83, 85, 88, 90, 93, 95, 99, 101, 102, 103, 104, 107, 109, 110, 111, 115, 117, 119, 122, 123, 128, 130, 134, 136, 137, 138, 140, 142, 144, 149, 150, 152, 154, 156, 161, 166, 174, 178, 190, 191, 194, 199, 203, 222, 234, 246, 247, 253, 255, 260, 261, 263, 264, 265, 270, 271, 272, 273], "15545": 1, "text": [1, 102, 117, 118, 119, 138, 149, 150, 158, 178, 199, 273], "15538": 1, "rais": [1, 6, 21, 36, 59, 86, 88, 89, 92, 93, 96, 98, 99, 100, 101, 105, 114, 117, 119, 121, 130, 139, 140, 142, 143, 144, 149, 152, 161, 163, 174, 186, 190, 199, 200, 201, 222, 230, 234, 242, 250, 252, 269], "help": [1, 8, 31, 36, 45, 48, 50, 61, 64, 65, 69, 70, 71, 73, 76, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 158, 185, 194, 208, 216, 225, 247, 248, 259, 267, 268], "reachabl": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 66, 78, 81, 83, 86, 87, 88, 89, 90, 93, 96, 98, 99, 100, 101, 102, 104, 105, 106, 111, 114, 117, 119, 121, 122, 123, 124, 125, 130, 132, 133, 134, 135, 136, 137, 138, 139, 147, 149, 150, 152, 153, 155, 157, 159, 160, 161, 163, 169, 177, 178, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 196, 199, 201, 206, 220, 222, 223, 224, 225, 234, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 50, 54, 59, 60, 61, 73, 75, 76, 77, 78, 80, 81, 83, 85, 86, 88, 89, 91, 92, 93, 94, 96, 98, 99, 102, 105, 107, 108, 109, 113, 117, 120, 123, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 146, 147, 148, 150, 151, 152, 153, 154, 155, 160, 161, 163, 172, 173, 174, 190, 191, 194, 199, 201, 203, 208, 211, 220, 224, 230, 231, 239, 240, 243, 245, 246, 248, 251, 252, 253, 254, 255, 257, 259, 260, 264, 265, 269, 272], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 52, 61, 66, 76, 81, 83, 89, 90, 96, 98, 102, 105, 106, 117, 119, 121, 122, 123, 124, 134, 135, 136, 137, 138, 139, 140, 149, 150, 152, 169, 178, 184, 189, 190, 191, 192, 199, 208, 216, 224, 226, 230, 232, 234, 238, 241, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 258, 259, 260, 264, 265, 266, 267, 269, 270, 271, 272, 273], "offlin": [1, 73], "15516": 1, "miss": [1, 5, 26, 35, 36, 42, 45, 54, 56, 81, 82, 83, 84, 86, 87, 89, 94, 95, 96, 98, 99, 101, 105, 114, 119, 140, 150, 161, 234, 243, 244, 245, 247, 248, 250, 251, 252, 254, 257, 258, 260, 261, 269, 271, 274], "stacktrac": 1, "metadata": [1, 2, 7, 60, 68, 87, 115, 118, 134, 167, 177, 253, 271], "15501": 1, "lockfil": [1, 8, 85, 86, 89, 92, 93, 96, 98, 99, 100, 103, 104, 105, 106, 107, 109, 114, 169, 178, 235, 242, 268], "intend": [1, 2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 62, 73, 77, 83, 87, 88, 101, 102, 119, 123, 127, 128, 129, 130, 141, 150, 161, 178, 188, 190, 191, 195, 213, 219, 230, 234, 245, 248, 251, 259, 270], "public": [1, 3, 4, 42, 50, 54, 59, 73, 77, 85, 100, 109, 117, 118, 155, 158, 179, 190, 192, 214, 220, 240, 260, 261], "usag": [1, 6, 27, 31, 35, 37, 39, 40, 41, 50, 66, 73, 77, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 122, 132, 135, 136, 148, 149, 150, 152, 154, 160, 192, 199, 201, 203, 206, 210, 217, 226, 246, 259, 264], "15499": 1, "check_typ": 1, "int": [1, 29, 42, 45, 54, 56, 186, 203, 243, 245, 257, 262], "bool": [1, 151, 186, 213, 219, 220, 222], "15378": 1, "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 50, 56, 64, 81, 83, 85, 86, 87, 88, 89, 90, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 114, 115, 119, 121, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 138, 139, 142, 143, 149, 150, 152, 159, 177, 178, 180, 184, 185, 190, 191, 196, 197, 199, 207, 208, 209, 210, 211, 214, 215, 216, 224, 225, 226, 227, 232, 233, 254, 258, 264, 272, 273], "entri": [1, 60, 66, 86, 88, 89, 93, 96, 98, 99, 101, 105, 114, 119, 130, 148, 153, 182, 189, 190, 191, 201, 203, 216, 272], "machin": [1, 6, 29, 61, 83, 93, 109, 117, 119, 127, 152, 154, 186, 190, 206, 211, 219, 220, 224, 234, 236, 241, 244, 245, 262, 271], "mesontoolchain": [1, 56, 70, 88, 149, 179, 218, 219], "due": [1, 84, 119, 266], "pkgconfig": [1, 88, 149, 179, 205, 220], "being": [1, 6, 8, 10, 13, 31, 50, 73, 77, 81, 82, 83, 84, 86, 89, 96, 98, 99, 101, 104, 105, 114, 119, 123, 128, 129, 130, 132, 135, 136, 137, 138, 139, 152, 154, 156, 161, 162, 169, 178, 182, 188, 189, 199, 213, 214, 219, 245, 253, 258, 262, 269, 273, 274], "deprec": [1, 73, 88, 94, 96, 144, 149, 152, 178, 202, 208, 220], "sinc": [1, 47, 48, 66, 78, 99, 191, 206, 234, 241, 264, 265, 266, 271], "meson": [1, 11, 43, 60, 62, 73, 77, 79, 88, 108, 149, 150, 179, 243, 251, 253], "15369": 1, "explain": [1, 5, 58, 59, 66, 73, 76, 81, 84, 95, 139, 149, 150, 152, 185, 192, 202, 234, 236, 242, 244, 245, 247, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 266, 268, 270, 273], "show": [1, 21, 31, 39, 40, 42, 47, 48, 85, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, 116, 123, 149, 150, 217, 230, 242, 245, 249, 253, 255, 261, 263, 264, 265, 266], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 50, 61, 62, 67, 68, 73, 76, 77, 78, 81, 82, 83, 84, 85, 86, 88, 89, 92, 93, 96, 98, 99, 100, 101, 102, 105, 106, 108, 114, 119, 120, 121, 122, 123, 125, 126, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 148, 149, 150, 152, 153, 154, 156, 157, 158, 159, 161, 174, 178, 184, 190, 191, 192, 194, 199, 201, 206, 207, 208, 210, 211, 215, 216, 217, 220, 226, 230, 234, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 50, 52, 54, 56, 58, 59, 61, 64, 66, 67, 68, 73, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 91, 92, 93, 94, 96, 98, 99, 100, 103, 104, 105, 106, 107, 108, 109, 117, 118, 120, 123, 124, 130, 131, 132, 134, 135, 142, 143, 149, 150, 151, 152, 153, 155, 158, 159, 160, 161, 169, 184, 186, 188, 190, 191, 196, 197, 199, 207, 209, 210, 211, 214, 216, 220, 225, 226, 227, 232, 234, 239, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 256, 257, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 274], "15355": 1, "did": [1, 47, 87, 178, 244, 245, 248, 250, 253, 255, 266, 273], "match": [1, 4, 10, 17, 26, 31, 35, 45, 54, 61, 81, 83, 85, 86, 87, 88, 89, 90, 95, 96, 98, 99, 101, 102, 105, 110, 111, 114, 115, 117, 119, 123, 134, 135, 139, 144, 148, 149, 150, 152, 153, 163, 174, 186, 190, 199, 200, 201, 203, 223, 226, 243, 245, 246, 247, 248, 252, 253, 259, 266, 270], "15353": 1, "upload_polici": [1, 94], "skip": [1, 4, 36, 88, 89, 90, 93, 94, 99, 119, 121, 144, 167, 177, 182, 190, 191, 230, 236, 244, 251, 252, 257, 262], "15336": 1, "accept": [1, 5, 7, 92, 100, 101, 102, 105, 110, 112, 119, 144, 147, 150, 152, 183, 188, 191, 199, 203, 211, 216, 219, 223, 234], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 50, 52, 54, 58, 59, 66, 73, 76, 77, 78, 81, 82, 83, 85, 86, 87, 88, 89, 90, 96, 97, 98, 99, 100, 101, 102, 105, 108, 110, 111, 114, 115, 118, 119, 122, 123, 124, 126, 127, 128, 130, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 145, 149, 150, 152, 154, 157, 158, 160, 161, 162, 169, 170, 174, 178, 179, 184, 185, 186, 188, 189, 190, 191, 192, 196, 197, 199, 201, 206, 207, 208, 210, 211, 214, 215, 220, 224, 232, 234, 242, 244, 245, 246, 248, 249, 251, 253, 254, 255, 256, 258, 259, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "15312": 1, "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 52, 58, 59, 68, 76, 81, 83, 84, 94, 98, 99, 100, 101, 102, 109, 119, 122, 126, 134, 135, 143, 150, 152, 156, 163, 183, 184, 185, 188, 189, 190, 191, 194, 196, 197, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 227, 232, 243, 244, 245, 246, 247, 251, 252, 253, 255, 257, 258, 259, 262, 264, 266, 271], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 50, 52, 58, 60, 62, 68, 73, 76, 78, 82, 84, 88, 94, 98, 99, 101, 102, 105, 108, 109, 119, 122, 132, 134, 135, 139, 149, 150, 152, 156, 160, 163, 178, 183, 184, 185, 188, 189, 190, 191, 196, 197, 201, 207, 208, 216, 220, 223, 224, 225, 230, 235, 242, 243, 244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272], "system": [1, 5, 7, 8, 27, 35, 39, 40, 42, 45, 50, 52, 54, 56, 58, 59, 60, 62, 64, 66, 67, 71, 76, 79, 83, 88, 101, 109, 116, 117, 119, 120, 121, 123, 130, 133, 135, 136, 139, 144, 146, 147, 149, 150, 153, 155, 159, 160, 161, 173, 179, 180, 182, 183, 184, 185, 188, 190, 191, 192, 194, 195, 199, 207, 208, 210, 224, 243, 244, 245, 247, 248, 249, 252, 253, 254, 258, 260, 261, 264, 265, 270, 271], "14780": 1, "bugfix": [1, 8, 73], "msbuilddep": [1, 58, 71, 88, 130, 149, 179, 221], "compon": [1, 14, 15, 20, 130, 132, 181, 188, 190, 192, 209, 210, 211, 214, 224, 249], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 50, 52, 54, 56, 58, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 77, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 114, 120, 123, 126, 128, 131, 134, 135, 136, 139, 140, 142, 145, 149, 150, 157, 159, 160, 161, 169, 170, 173, 178, 182, 184, 185, 189, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 209, 211, 214, 215, 216, 219, 220, 221, 226, 232, 234, 235, 239, 242, 243, 244, 246, 247, 248, 249, 251, 252, 253, 258, 259, 261, 262, 265, 266, 267, 268, 270, 271, 272, 273, 274], "15626": 1, "tool_requir": [1, 11, 27, 35, 37, 39, 40, 77, 82, 83, 89, 93, 96, 98, 99, 101, 105, 108, 109, 120, 130, 134, 135, 136, 139, 178, 190, 191, 196, 207, 211, 214, 224, 244, 245, 246, 247, 248, 259, 262, 272], "themselv": [1, 8, 108, 178, 252], "15575": 1, "scope": [1, 119, 132, 144, 145, 149, 150, 191, 194, 195, 196, 197, 216, 222, 227], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 52, 58, 59, 76, 77, 83, 84, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 100, 101, 102, 105, 106, 109, 111, 114, 115, 119, 122, 125, 126, 129, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 152, 153, 161, 162, 163, 171, 178, 182, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 199, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 227, 232, 239, 243, 244, 245, 246, 247, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269], "microsoft": [1, 11, 43, 71, 79, 88, 119, 130, 135, 149, 150, 152, 179, 188, 191, 206, 216, 223, 224, 225, 226, 227], "15568": 1, "wrong": [1, 95, 98, 133, 139], "propag": [1, 8, 14, 20, 50, 78, 119, 123, 135, 136, 145, 194, 211, 249, 257, 269], "visibl": [1, 39, 40, 78, 82, 88, 94, 117, 123, 149, 191, 214], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 52, 58, 59, 76, 83, 84, 88, 94, 96, 98, 99, 100, 102, 109, 111, 117, 119, 123, 125, 126, 130, 131, 133, 135, 136, 144, 149, 150, 151, 156, 160, 169, 170, 174, 177, 182, 184, 186, 188, 190, 191, 196, 197, 199, 201, 203, 208, 210, 219, 220, 222, 224, 230, 231, 234, 247, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 269, 272], "header": [1, 6, 17, 35, 39, 40, 42, 50, 77, 78, 82, 83, 84, 94, 119, 123, 132, 133, 134, 135, 141, 142, 153, 182, 190, 192, 201, 224, 249, 253, 254, 256, 258, 259, 260, 264, 266, 274], "15564": 1, "store": [1, 4, 6, 13, 59, 66, 68, 73, 81, 87, 88, 101, 108, 109, 117, 119, 135, 148, 149, 159, 161, 191, 199, 203, 206, 230, 235, 236, 241, 243, 245, 249, 252, 253, 254, 258, 264, 266, 270, 273, 274], "temporari": [1, 6, 7, 24, 77, 87, 119, 133, 136, 199, 201, 252, 260, 265, 269], "insid": [1, 6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 43, 46, 77, 82, 84, 88, 102, 108, 119, 123, 132, 135, 147, 149, 152, 158, 159, 161, 182, 191, 195, 199, 204, 217, 234, 240, 247, 249, 252, 253, 260, 264, 266, 270, 274], "storage_path": [1, 88], "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 50, 52, 54, 56, 58, 59, 61, 73, 76, 80, 81, 82, 83, 87, 90, 91, 93, 100, 101, 104, 106, 107, 108, 111, 115, 117, 119, 121, 125, 126, 128, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 144, 145, 148, 149, 150, 152, 153, 157, 158, 160, 161, 178, 183, 184, 185, 189, 190, 191, 192, 195, 196, 197, 199, 206, 208, 210, 211, 214, 224, 227, 230, 234, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 269, 270, 271, 272, 273, 274], "clean": [1, 6, 7, 30, 32, 59, 61, 86, 89, 93, 96, 98, 99, 101, 105, 106, 114, 119, 199, 213, 258, 264, 270, 271], "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 62, 66, 67, 69, 72, 73, 76, 81, 82, 83, 85, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 117, 119, 121, 122, 123, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 147, 149, 150, 152, 153, 154, 155, 159, 161, 162, 178, 180, 182, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 199, 206, 207, 208, 209, 211, 214, 215, 216, 220, 224, 225, 226, 227, 232, 234, 236, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 269, 270, 271, 272, 273, 274], "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 76, 82, 83, 98, 101, 119, 133, 135, 152, 155, 182, 190, 192, 206, 210, 216, 220, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 270], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 52, 54, 56, 58, 59, 61, 66, 72, 73, 76, 77, 78, 82, 83, 84, 87, 88, 90, 93, 106, 108, 109, 110, 117, 119, 121, 123, 125, 126, 130, 131, 134, 135, 140, 145, 150, 152, 157, 158, 159, 161, 173, 174, 177, 178, 183, 184, 185, 189, 190, 191, 195, 199, 201, 206, 208, 217, 220, 223, 224, 225, 234, 235, 236, 237, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 270, 272, 273], "correctli": [1, 17, 18, 24, 29, 42, 50, 66, 77, 89, 106, 141, 190, 191, 192, 199, 206, 245, 249, 253, 257, 258, 262], "15505": 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, 50, 52, 54, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 79, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 114, 115, 116, 117, 118, 119, 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, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 167, 169, 174, 178, 179, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 235, 237, 239, 240, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "export": [1, 5, 6, 7, 10, 16, 38, 50, 59, 77, 85, 87, 89, 94, 104, 109, 120, 129, 130, 131, 132, 133, 137, 138, 139, 155, 161, 162, 164, 178, 199, 203, 230, 250, 253, 254, 255, 258, 261, 263, 264, 266, 271, 273], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 54, 56, 58, 59, 61, 62, 68, 82, 84, 87, 96, 98, 99, 119, 160, 162, 178, 184, 190, 214, 216, 239, 241, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 262, 264, 265, 266, 269, 270, 271, 272, 273, 274], "return": [1, 6, 26, 29, 31, 42, 45, 54, 56, 81, 84, 85, 87, 88, 95, 96, 97, 100, 102, 109, 116, 117, 119, 124, 130, 144, 150, 156, 157, 158, 166, 169, 171, 173, 174, 178, 180, 182, 183, 186, 190, 191, 192, 194, 195, 196, 197, 199, 207, 208, 216, 222, 223, 226, 230, 234, 243, 245, 247, 257, 259, 262, 271], "statu": [1, 38, 49, 144, 230], "after": [1, 6, 10, 24, 26, 36, 42, 45, 61, 62, 66, 73, 101, 123, 125, 130, 135, 141, 142, 149, 158, 161, 185, 188, 190, 191, 195, 196, 197, 206, 215, 220, 225, 232, 242, 243, 245, 248, 249, 251, 253, 257, 260, 262, 264, 265, 266, 274], "15504": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 52, 56, 58, 59, 61, 67, 73, 76, 81, 82, 87, 88, 99, 100, 101, 102, 104, 107, 108, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 130, 134, 135, 139, 140, 142, 144, 148, 149, 153, 154, 156, 158, 160, 184, 185, 189, 190, 191, 194, 196, 197, 201, 208, 209, 211, 213, 214, 216, 220, 223, 224, 225, 226, 230, 232, 234, 239, 243, 247, 253, 254, 255, 258, 259, 262, 267, 269, 272, 273], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 50, 52, 58, 59, 61, 73, 76, 77, 81, 82, 83, 84, 87, 88, 89, 90, 97, 98, 99, 101, 105, 111, 119, 120, 122, 123, 124, 130, 132, 134, 136, 137, 138, 139, 144, 145, 149, 150, 152, 154, 156, 157, 158, 160, 161, 162, 178, 182, 184, 185, 186, 188, 190, 192, 199, 206, 208, 211, 214, 217, 220, 224, 225, 230, 234, 241, 243, 244, 245, 246, 247, 248, 252, 253, 254, 255, 257, 258, 259, 260, 262, 265, 266, 268, 269, 270, 271, 272, 273, 274], "behavior": [1, 8, 47, 73, 77, 81, 83, 97, 104, 105, 106, 119, 122, 125, 126, 130, 134, 135, 145, 149, 154, 156, 157, 161, 186, 190, 211, 214, 220, 230, 234, 255, 274], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 50, 52, 54, 56, 57, 59, 60, 66, 68, 72, 73, 76, 77, 78, 81, 82, 83, 85, 87, 92, 93, 94, 99, 101, 102, 103, 104, 106, 107, 108, 109, 119, 120, 121, 122, 123, 128, 129, 130, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 149, 150, 151, 152, 155, 158, 159, 160, 161, 165, 169, 178, 184, 185, 188, 190, 191, 192, 193, 196, 197, 199, 201, 210, 211, 213, 214, 215, 216, 220, 225, 226, 227, 230, 232, 235, 236, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 50, 52, 58, 61, 73, 77, 85, 88, 89, 90, 93, 94, 99, 102, 106, 109, 117, 119, 120, 121, 122, 123, 130, 134, 145, 149, 155, 169, 188, 191, 203, 213, 219, 224, 230, 235, 240, 244, 249, 250, 253, 254, 255, 256, 258, 259, 261, 264, 265, 270, 274], "fail": [1, 4, 6, 21, 50, 59, 61, 76, 82, 86, 89, 96, 98, 99, 101, 105, 109, 114, 119, 121, 140, 142, 154, 156, 157, 160, 169, 174, 188, 222, 234, 252, 257, 258, 264, 269, 270], "calcul": [1, 135, 196, 197, 203, 208, 226, 252, 257], "valid": [1, 6, 8, 10, 58, 76, 77, 81, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 130, 143, 149, 152, 153, 156, 163, 169, 186, 191, 201, 208, 209, 211, 220, 222, 225, 242, 250, 253, 257, 258, 261, 262, 265, 269, 270, 272], "apple_min_version_flag": [1, 220], "15465": 1, "subset": [1, 83, 126, 134, 152, 191], "build_id": [1, 13, 94, 99, 120], "15439": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 52, 54, 56, 59, 61, 73, 76, 77, 83, 87, 88, 99, 109, 111, 117, 119, 134, 139, 140, 148, 149, 150, 153, 161, 171, 174, 177, 180, 182, 186, 188, 189, 190, 192, 195, 198, 203, 206, 211, 214, 216, 220, 222, 223, 226, 230, 232, 234, 243, 245, 246, 251, 255, 257, 258, 259, 264, 265, 266, 269, 271, 274], "conan_login_username_remot": 1, "15388": 1, "don": [1, 5, 10, 13, 24, 31, 39, 40, 45, 66, 76, 82, 98, 101, 102, 110, 118, 119, 139, 148, 150, 158, 178, 190, 192, 243, 244, 245, 246, 257, 258, 260, 264, 267], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 50, 58, 59, 61, 66, 73, 76, 77, 78, 81, 82, 83, 87, 88, 93, 96, 97, 98, 99, 101, 102, 104, 105, 106, 110, 111, 117, 118, 119, 123, 125, 126, 130, 133, 134, 135, 136, 139, 142, 143, 148, 150, 152, 156, 158, 161, 177, 178, 179, 186, 188, 189, 190, 191, 192, 195, 199, 200, 201, 208, 215, 217, 220, 224, 230, 243, 244, 245, 246, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 267, 269, 270, 271, 274], "take": [1, 6, 21, 29, 30, 59, 84, 88, 89, 96, 106, 111, 115, 117, 119, 130, 137, 138, 141, 147, 148, 149, 152, 183, 184, 189, 190, 191, 194, 208, 211, 224, 231, 234, 244, 245, 247, 252, 253, 259, 261, 262, 267, 274], "consider": [1, 7, 46], "15349": 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, 50, 52, 54, 58, 59, 61, 68, 77, 82, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 96, 98, 99, 100, 102, 104, 105, 108, 109, 110, 112, 113, 117, 120, 123, 130, 131, 132, 134, 135, 137, 138, 139, 140, 142, 143, 145, 148, 149, 150, 151, 152, 154, 155, 157, 159, 160, 161, 173, 174, 178, 180, 182, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 206, 207, 208, 209, 210, 215, 216, 220, 223, 224, 225, 227, 230, 232, 234, 239, 243, 244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 269, 270, 271, 272, 273, 274], "15337": 1, "get_url_and_commit": [1, 59, 230], "15271": 1, "direct": [1, 36, 94, 101, 117, 119, 123, 130, 135, 160, 184, 190, 191, 196, 224, 269], "host": [1, 8, 13, 24, 30, 35, 42, 73, 86, 88, 89, 93, 94, 96, 98, 99, 101, 105, 109, 114, 119, 123, 130, 135, 136, 139, 149, 150, 160, 169, 173, 180, 186, 190, 191, 192, 197, 201, 208, 211, 216, 220, 222, 224, 226, 234, 235, 238, 239, 242, 245, 259], "shouldn": [1, 6, 35, 39, 40, 59, 61, 77, 78, 83, 111, 119, 123, 126, 133, 135, 179, 224, 230, 246, 257, 271], "non": [1, 50, 73, 77, 81, 87, 88, 106, 119, 133, 149, 186, 197, 242, 250, 272, 274], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 54, 56, 58, 68, 73, 78, 81, 84, 86, 88, 89, 93, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 117, 119, 126, 134, 135, 139, 140, 146, 149, 150, 156, 182, 185, 189, 190, 191, 192, 195, 203, 208, 215, 216, 219, 224, 225, 226, 227, 238, 240, 241, 242, 243, 244, 247, 248, 249, 250, 251, 253, 255, 256, 257, 258, 261, 265, 267, 271, 272, 274], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 52, 54, 56, 58, 59, 61, 66, 73, 76, 77, 78, 81, 82, 83, 84, 88, 94, 99, 100, 101, 108, 119, 120, 122, 123, 126, 130, 131, 132, 133, 134, 136, 139, 140, 141, 142, 145, 146, 149, 150, 153, 158, 182, 184, 185, 190, 191, 192, 195, 199, 205, 210, 211, 214, 216, 224, 235, 242, 243, 244, 247, 248, 249, 250, 253, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 270, 273, 274], "artifact": [1, 6, 7, 13, 29, 68, 73, 77, 82, 87, 88, 90, 101, 111, 115, 119, 120, 122, 127, 132, 133, 134, 136, 149, 160, 162, 177, 191, 238, 239, 253, 258, 260, 264, 265, 266, 271, 274], "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, 50, 58, 59, 64, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 81, 82, 83, 84, 85, 87, 88, 89, 90, 98, 99, 101, 102, 103, 104, 106, 107, 108, 109, 111, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 161, 163, 169, 170, 171, 174, 178, 179, 180, 182, 183, 184, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 208, 210, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 232, 234, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "imag": [1, 66, 73, 84, 100, 108, 135, 239], "time": [1, 6, 8, 10, 24, 26, 42, 54, 59, 66, 73, 77, 78, 84, 93, 102, 109, 111, 117, 119, 122, 123, 127, 128, 129, 130, 131, 132, 135, 136, 150, 155, 162, 178, 188, 190, 191, 196, 197, 201, 206, 211, 243, 246, 247, 248, 252, 255, 258, 259, 260, 263, 264, 266, 267, 268, 269, 271, 272, 274], "resourc": [1, 8, 60, 99, 135, 247, 271], "15128": 1, "save": [1, 2, 6, 31, 39, 40, 54, 59, 60, 73, 93, 103, 109, 117, 119, 122, 129, 149, 150, 159, 190, 191, 195, 198, 201, 211, 220], "subfold": [1, 7, 14, 15, 17, 19, 88, 132, 160, 161, 182, 189, 199, 203, 206, 239, 255, 258, 266], "tgz": [1, 7, 87, 139, 162, 177, 199, 201, 243, 248, 258], "doesn": [1, 6, 7, 35, 49, 50, 58, 59, 76, 77, 83, 93, 96, 99, 105, 106, 117, 119, 123, 125, 126, 130, 134, 136, 142, 143, 148, 152, 156, 161, 177, 178, 186, 189, 191, 195, 199, 200, 201, 217, 224, 230, 245, 246, 252, 253, 255, 257, 259, 262, 269, 270, 271, 274], "15409": 1, "libcxx": [1, 24, 26, 27, 31, 76, 94, 99, 109, 119, 126, 134, 146, 150, 185, 191, 208, 216, 220, 243, 244, 245, 252, 253], "cc": [1, 42, 54, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 182, 208, 214, 216, 220, 226, 244, 251, 257], "cxx": [1, 19, 21, 27, 42, 88, 149, 152, 182, 208, 216, 220, 226, 244, 251, 252, 253, 254, 257, 260, 261, 262, 265, 266], "var": [1, 39, 40, 77, 88, 110, 117, 136, 149, 150, 154, 190, 191, 194, 195, 196, 197, 207, 216, 226], "15418": 1, "winsdk_vers": [1, 88, 149, 191, 225, 227], "bug": [1, 8, 60, 73], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 66, 190, 243, 248, 251, 254, 260, 261, 262], "15373": 1, "trait": [1, 37, 39, 77, 78, 81, 119, 123, 269, 274], "15357": 1, "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 50, 54, 56, 58, 61, 62, 66, 68, 73, 76, 77, 78, 81, 82, 83, 84, 87, 88, 89, 94, 99, 101, 102, 103, 104, 111, 119, 123, 130, 132, 133, 134, 135, 136, 146, 152, 160, 177, 178, 184, 185, 189, 190, 191, 192, 199, 207, 208, 209, 210, 211, 214, 216, 220, 224, 225, 243, 244, 245, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272, 273, 274], "thru": 1, "15356": 1, "item": [1, 4, 36, 73, 83, 88, 101, 103, 107, 111, 130, 134, 149, 152, 154, 159, 191, 195, 272], "dump": [1, 158, 194], "reproduc": [1, 4, 6, 59, 73, 109, 119, 122, 178, 199, 230, 242, 246, 258, 268, 270, 271, 273, 274], "independ": [1, 21, 78, 83, 117, 128, 129, 134, 139, 160, 192, 266, 274], "were": [1, 6, 24, 29, 50, 59, 93, 126, 148, 160, 174, 214, 243, 245, 251, 254, 260, 269, 272, 274], "declar": [1, 14, 15, 21, 47, 52, 73, 81, 87, 119, 124, 125, 126, 130, 132, 134, 135, 136, 150, 152, 154, 155, 158, 159, 178, 184, 185, 186, 188, 189, 190, 191, 193, 195, 211, 214, 220, 224, 226, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 266, 269, 274], "revert": [1, 73, 154], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 50, 54, 58, 66, 73, 76, 80, 82, 83, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 117, 119, 127, 131, 132, 134, 135, 139, 140, 145, 148, 149, 150, 151, 152, 154, 156, 163, 169, 173, 174, 177, 178, 180, 182, 184, 185, 186, 188, 189, 190, 191, 194, 195, 199, 201, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 223, 224, 225, 226, 230, 234, 239, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 255, 257, 259, 260, 261, 264, 266, 267, 269, 270, 271, 272, 274], "source_buildenv": 1, "15319": 1, "15284": 1, "ctest": [1, 188, 251], "launch": [1, 21, 117, 144, 148, 183, 216, 239, 240, 249, 251], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 50, 61, 66, 71, 77, 85, 91, 93, 96, 98, 99, 101, 104, 105, 109, 121, 130, 136, 150, 152, 159, 183, 188, 199, 203, 213, 220, 225, 243, 246, 247, 258, 259, 264, 265, 269, 273], "instead": [1, 4, 5, 8, 19, 35, 59, 61, 66, 71, 73, 77, 83, 87, 88, 91, 96, 98, 99, 101, 105, 108, 111, 117, 119, 130, 134, 135, 144, 149, 152, 174, 178, 183, 188, 190, 191, 195, 224, 230, 245, 246, 247, 248, 250, 251, 253, 254, 255, 261, 264, 265, 266, 269, 270, 272, 273], "target": [1, 8, 17, 18, 19, 21, 27, 42, 50, 54, 59, 66, 73, 77, 88, 101, 108, 119, 121, 134, 152, 160, 180, 183, 186, 188, 206, 213, 214, 215, 216, 219, 220, 223, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 260, 261, 262, 265, 266, 271, 274], "run_test": [1, 121, 188], "15282": 1, "track": [1, 6, 68, 73, 123, 246, 271], "syntax": [1, 31, 71, 72, 76, 101, 108, 119, 123, 130, 136, 148, 156, 166, 178, 185, 190, 191, 195, 209, 211, 225, 243, 246, 253, 269, 273], "host_vers": [1, 42], "15274": 1, "given": [1, 6, 8, 31, 36, 42, 81, 82, 83, 86, 87, 88, 89, 91, 96, 98, 99, 101, 104, 105, 106, 107, 114, 125, 134, 135, 142, 144, 150, 153, 154, 156, 169, 173, 174, 191, 192, 195, 199, 201, 203, 208, 214, 220, 222, 230, 246, 267, 270, 271, 273, 274], "15272": 1, "pkglist": [1, 6, 13, 90, 92, 111, 115, 267], "15266": 1, "conan_log_level": [1, 154], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 59, 61, 77, 81, 104, 105, 107, 129, 135, 136, 139, 144, 148, 150, 190, 192, 194, 199, 216, 220, 230, 253, 262, 264, 268, 274], "global": [1, 3, 4, 7, 10, 42, 61, 76, 79, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 124, 130, 134, 146, 150, 154, 155, 161, 166, 178, 191, 192, 210, 211, 214, 224, 251, 257, 274], "level": [1, 13, 16, 18, 21, 27, 29, 66, 73, 76, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 124, 129, 134, 140, 144, 149, 152, 153, 154, 178, 183, 190, 201, 211, 214, 266, 274], "15263": 1, "xxx": [1, 6, 13, 43, 46, 90, 135, 137, 138, 149, 150, 188, 190, 191, 194, 220], "request": [1, 31, 60, 73, 76, 88, 98, 101, 110, 111, 117, 119, 124, 148, 149, 154, 161, 237], "15257": 1, "oper": [1, 6, 8, 49, 61, 62, 67, 68, 73, 83, 87, 101, 109, 111, 118, 121, 127, 146, 150, 153, 161, 174, 179, 185, 191, 194, 198, 230, 234, 236, 243, 244, 245, 252, 253, 255, 258, 263, 267, 270, 272, 274], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 60, 66, 73, 77, 79, 81, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 96, 98, 99, 100, 103, 104, 105, 108, 109, 113, 114, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 150, 152, 153, 156, 157, 159, 160, 161, 162, 166, 169, 170, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 235, 242, 243, 244, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 50, 59, 67, 72, 101, 119, 130, 135, 145, 160, 179, 187, 188, 191, 243, 244, 246, 247, 248, 250, 251, 253, 254, 257, 262, 265, 274], "conandep": [1, 58, 184, 209, 224, 232], "aggreg": [1, 24, 54, 106, 109, 135, 173, 179, 184, 185, 195, 207, 224, 243, 248, 265], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 50, 52, 54, 59, 60, 61, 64, 65, 66, 67, 68, 70, 72, 76, 77, 78, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 96, 98, 99, 100, 101, 102, 104, 105, 106, 109, 110, 111, 112, 114, 115, 117, 119, 122, 126, 127, 128, 129, 130, 132, 134, 135, 137, 138, 139, 145, 147, 148, 149, 150, 152, 154, 157, 158, 159, 160, 161, 166, 169, 173, 174, 177, 178, 179, 182, 183, 184, 185, 190, 191, 192, 195, 196, 197, 199, 201, 203, 207, 208, 209, 210, 211, 213, 214, 215, 216, 220, 224, 225, 227, 232, 234, 235, 238, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 259, 261, 262, 264, 265, 266, 267, 269, 271, 274], "style": [1, 86, 89, 96, 98, 99, 101, 105, 110, 114, 182, 199], "15207": 1, "15192": 1, "warn": [1, 24, 54, 59, 66, 76, 82, 88, 109, 111, 119, 137, 138, 144, 150, 161, 199, 220, 230, 252, 274], "about": [1, 4, 6, 18, 19, 21, 24, 31, 37, 42, 45, 47, 52, 54, 56, 58, 59, 66, 67, 68, 72, 73, 77, 78, 79, 81, 83, 85, 86, 89, 91, 93, 95, 99, 101, 105, 108, 109, 113, 114, 116, 119, 120, 121, 123, 125, 126, 130, 131, 132, 134, 135, 139, 140, 142, 145, 146, 150, 152, 154, 158, 163, 191, 205, 211, 217, 220, 232, 237, 239, 242, 243, 245, 249, 251, 252, 254, 255, 257, 261, 262, 264, 265, 268, 271, 272, 274], "potenti": [1, 5, 40, 61, 90, 122, 136, 137, 138, 177, 191, 195, 271], "migrat": [1, 73, 119, 222, 247], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 50, 59, 61, 76, 77, 83, 93, 96, 101, 104, 106, 111, 117, 119, 121, 123, 127, 128, 130, 134, 135, 136, 137, 138, 139, 149, 150, 152, 153, 156, 157, 160, 162, 178, 189, 191, 192, 195, 206, 214, 230, 243, 244, 245, 246, 251, 254, 257, 259, 260, 269, 270, 271, 272, 273], "print": [1, 4, 26, 39, 40, 45, 49, 54, 75, 82, 99, 102, 108, 111, 119, 144, 154, 158, 162, 163, 210, 220, 250, 259, 261], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 50, 66, 73, 77, 83, 84, 87, 88, 101, 119, 130, 133, 134, 148, 149, 150, 153, 160, 162, 184, 185, 191, 195, 213, 214, 224, 225, 243, 247, 248, 258, 259, 263, 264, 267, 270, 271, 273, 274], "15174": 1, "deploi": [1, 30, 33, 54, 59, 86, 99, 101, 120, 134, 160, 170, 243, 248, 259, 265], "deploy": [1, 6, 11, 30, 35, 77, 79, 86, 87, 88, 90, 99, 127, 139, 149, 155, 195, 220], "15172": 1, "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 59, 87, 117, 118, 119, 123, 126, 130, 139, 152, 160, 178, 199, 201, 207, 210, 222, 224, 261], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 54, 56, 59, 60, 61, 77, 87, 88, 108, 117, 118, 129, 132, 150, 155, 161, 162, 178, 179, 199, 203, 211, 214, 220, 225, 243, 245, 246, 247, 253, 255, 262, 263, 265, 266, 271], "settings_us": [1, 11, 23, 76, 83, 146], "configapi": [1, 164, 166], "15151": 1, "builtin": [1, 11, 30, 73, 88, 149, 152], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 58, 60, 61, 63, 66, 67, 68, 71, 72, 73, 76, 83, 108, 115, 121, 130, 135, 141, 152, 159, 162, 180, 237, 252, 253, 262, 270], "15150": 1, "warnings_as_error": [1, 88, 144, 149], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 52, 110, 149, 153, 174, 201, 259, 272, 274], "ftp_download": [1, 198], "commun": [1, 3, 8, 76, 88, 117, 135, 149, 152, 227, 238, 240], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "redefin": [1, 101, 150], "replac": [1, 19, 35, 49, 52, 76, 88, 119, 150, 154, 166, 178, 191, 195, 199, 260], "zlibng": [1, 150], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 56, 73, 76, 82, 84, 87, 88, 90, 94, 96, 98, 99, 101, 102, 105, 111, 112, 115, 119, 130, 135, 136, 145, 149, 150, 151, 159, 184, 190, 196, 197, 209, 211, 214, 224, 227, 232, 242, 243, 244, 245, 246, 247, 248, 253], "conflict": [1, 39, 40, 61, 77, 101, 118, 119, 123, 136, 150, 169, 190, 194, 211, 220, 235, 257, 268], "altern": [1, 59, 73, 89, 93, 95, 98, 119, 137, 138, 150, 178, 195, 230, 258], "wrap": [1, 121, 144, 150, 195, 216, 220, 227, 274], "anoth": [1, 7, 13, 35, 41, 52, 82, 119, 122, 123, 130, 140, 150, 152, 158, 190, 194, 206, 214, 234, 236, 241, 243, 244, 251, 252, 254, 258, 260, 261, 264, 271], "15136": 1, "stderr": [1, 73, 144, 188, 274], "captur": [1, 6, 11, 43, 89, 105, 139, 196, 197, 199, 230, 234, 244, 246, 247, 248, 251, 255, 270], "15121": 1, "platform": [1, 8, 17, 39, 40, 56, 60, 61, 62, 70, 71, 76, 77, 83, 87, 98, 109, 125, 128, 129, 130, 133, 135, 139, 148, 149, 150, 152, 182, 191, 220, 222, 223, 224, 225, 234, 242, 243, 244, 247, 251, 262, 264, 271], "14871": 1, "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 50, 89, 94, 99, 132, 184, 190, 191, 192, 197, 199, 208, 209, 210, 211, 214, 253, 254, 255, 257, 258, 259, 266], "13994": 1, "15297": 1, "separ": [1, 21, 59, 85, 89, 111, 117, 119, 122, 132, 149, 150, 154, 189, 190, 194, 195, 220, 240, 248, 254, 266, 272], "15296": 1, "rang": [1, 8, 9, 73, 77, 81, 83, 86, 88, 89, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 114, 119, 134, 136, 145, 149, 150, 152, 178, 235, 242, 253, 268, 270, 273], "escap": [1, 110, 154], "report": [1, 6, 13, 60, 61, 73, 88, 98, 101, 117, 140, 149, 152, 170, 234], "involv": [1, 264, 265], "15222": 1, "hard": [1, 152], "set_nam": [1, 100, 120, 130], "set_vers": [1, 100, 119, 120, 130, 178, 230, 273], "mutat": 1, "15211": 1, "stdout": [1, 73, 100, 102, 108, 116, 119, 144, 188, 274], "15170": 1, "cmake_policy_default_cmp0091": 1, "unus": [1, 86, 89, 93, 96, 98, 99, 101, 105, 106, 114, 235, 270], "15127": 1, "system_tool": [1, 248], "favor": [1, 119], "align": [1, 7, 152], "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, 50, 52, 54, 56, 58, 59, 61, 66, 68, 73, 76, 77, 78, 81, 82, 83, 84, 85, 86, 87, 89, 96, 98, 99, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 117, 119, 123, 126, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 145, 148, 149, 150, 152, 153, 154, 158, 159, 161, 169, 178, 182, 184, 185, 190, 191, 199, 201, 206, 208, 211, 214, 216, 217, 220, 224, 225, 234, 236, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "least": [1, 3, 86, 89, 96, 98, 99, 101, 103, 104, 105, 114, 119, 136, 230, 246, 250, 257, 261, 267], "is_dirti": [1, 230], "sure": [1, 8, 24, 29, 38, 42, 50, 61, 102, 130, 133, 140, 144, 162, 178, 199, 220, 273], "process": [1, 5, 7, 26, 54, 59, 61, 66, 73, 77, 83, 94, 104, 106, 108, 117, 119, 120, 121, 126, 135, 150, 154, 158, 160, 161, 177, 191, 196, 220, 241, 245, 246, 249, 253, 258, 260, 270, 273, 274], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 58, 59, 61, 67, 69, 70, 71, 72, 73, 76, 77, 81, 83, 87, 88, 93, 101, 104, 108, 110, 117, 119, 120, 127, 128, 129, 130, 132, 134, 136, 137, 138, 139, 142, 143, 147, 149, 150, 156, 163, 177, 178, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 234, 241, 243, 244, 245, 247, 248, 250, 251, 253, 259, 264, 266, 270], "whole": [1, 6, 10, 17, 73, 81, 83, 87, 101, 119, 142, 177, 178, 190, 191, 195, 210], "repo": [1, 4, 5, 6, 16, 59, 61, 68, 73, 108, 109, 119, 161, 230, 266, 273], "similarli": [1, 150, 197, 239, 272], "15289": 1, "clear": [1, 110, 119, 134, 135, 142, 194, 247, 252, 257, 270], "15285": 1, "restor": [1, 2, 60, 195, 196, 197, 245, 246, 248], "portabl": [1, 73, 119], "across": [1, 8, 56, 149, 155, 156, 243], "window": [1, 8, 13, 17, 26, 27, 29, 35, 39, 40, 42, 48, 56, 58, 61, 62, 73, 77, 83, 84, 87, 88, 90, 102, 105, 106, 111, 115, 119, 122, 125, 130, 133, 135, 139, 142, 149, 150, 152, 156, 163, 171, 195, 197, 199, 207, 208, 216, 220, 234, 239, 240, 243, 245, 247, 248, 251, 252, 253, 254, 255, 258, 259, 264, 266, 271, 274], "oss": [1, 106, 135, 152, 271], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 50, 56, 59, 61, 66, 73, 76, 77, 81, 82, 83, 86, 87, 88, 89, 91, 92, 93, 95, 96, 98, 99, 100, 101, 104, 105, 107, 111, 114, 115, 119, 121, 122, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 144, 148, 149, 150, 152, 153, 154, 158, 160, 174, 178, 186, 190, 191, 194, 199, 206, 220, 230, 234, 241, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 264, 266, 267, 269, 270, 271, 273, 274], "absolut": [1, 35, 36, 49, 88, 108, 130, 147, 149, 150, 160, 172, 190, 191, 199, 201, 203, 204, 260], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 52, 67, 73, 83, 84, 88, 122, 125, 134, 146, 149, 150, 182, 183, 185, 186, 191, 208, 216, 220, 223, 234, 243, 244, 245, 247, 258, 262, 270], "ignor": [1, 6, 29, 54, 77, 127, 137, 138, 154, 188, 203, 204, 230, 234, 270], "toolchain": [1, 26, 27, 45, 46, 58, 64, 65, 67, 71, 72, 83, 88, 121, 130, 132, 149, 150, 152, 185, 188, 206, 208, 215, 220, 225, 243, 244, 245, 247, 248, 249, 252, 253, 259, 261, 265], "15215": 1, "html": [1, 45, 61, 76, 99, 158, 274], "mislead": 1, "node": [1, 13, 94, 96, 140, 169], "15196": 1, "15185": 1, "nmakedep": [1, 179, 192, 221], "quot": [1, 102, 110], "15140": 1, "lru": [1, 102, 111, 267], "data": [1, 6, 8, 83, 117, 119, 122, 129, 130, 131, 132, 135, 146, 186, 190, 199, 211, 218, 240, 255, 274], "15135": 1, "package_metadata_fold": [1, 6], "15126": 1, "pyinstal": [1, 61], "broken": [1, 5, 68, 73, 96, 132, 139, 204, 260, 271], "python": [1, 8, 31, 52, 59, 61, 64, 71, 73, 77, 79, 81, 86, 88, 103, 104, 107, 116, 117, 131, 144, 149, 150, 155, 157, 158, 159, 161, 163, 169, 188, 191, 195, 206, 208, 211, 213, 220, 223, 226, 247], "useless": [1, 131, 190], "distutil": 1, "15116": 1, "download_cach": [1, 4, 88], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 50, 54, 56, 61, 64, 65, 66, 68, 69, 70, 71, 77, 78, 81, 83, 85, 88, 101, 103, 108, 109, 110, 115, 119, 120, 125, 126, 134, 135, 139, 140, 149, 150, 151, 152, 160, 174, 178, 180, 184, 191, 192, 194, 195, 199, 207, 216, 220, 222, 230, 233, 238, 242, 243, 244, 247, 249, 253, 259, 267, 268, 270, 271, 272, 273], "autotool": [1, 11, 43, 60, 62, 73, 88, 108, 130, 149, 179, 182, 192, 194, 195, 205, 207, 208, 243, 251, 253], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 50, 54, 56, 58, 66, 71, 73, 76, 77, 78, 81, 82, 83, 84, 86, 87, 88, 89, 90, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 115, 117, 119, 121, 122, 123, 126, 130, 132, 133, 134, 135, 136, 139, 142, 145, 149, 150, 153, 155, 156, 157, 158, 160, 163, 174, 178, 182, 184, 186, 188, 189, 190, 191, 192, 194, 196, 197, 199, 201, 206, 207, 208, 210, 214, 216, 219, 223, 224, 225, 226, 232, 234, 243, 244, 245, 246, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 269, 270, 271, 272, 273, 274], "simultan": [1, 190, 264, 269], "databas": [1, 88, 149, 234], "connect": [1, 54, 76, 88, 99, 110, 117, 149, 174, 239], "15029": 1, "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 50, 54, 56, 58, 59, 61, 64, 65, 66, 69, 75, 76, 77, 82, 83, 85, 86, 87, 88, 89, 92, 96, 98, 99, 100, 101, 102, 104, 105, 108, 111, 114, 116, 117, 119, 121, 123, 126, 128, 129, 132, 133, 135, 136, 139, 143, 144, 147, 148, 149, 150, 152, 153, 155, 157, 160, 161, 162, 166, 177, 178, 182, 183, 188, 190, 191, 194, 199, 201, 206, 208, 210, 213, 214, 215, 216, 217, 219, 220, 223, 224, 226, 234, 243, 245, 246, 247, 249, 252, 253, 254, 258, 264, 265, 267, 269, 272, 274], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 59, 64, 65, 68, 69, 70, 72, 73, 76, 77, 78, 81, 82, 83, 87, 89, 90, 93, 95, 99, 100, 101, 103, 104, 106, 117, 119, 121, 123, 124, 126, 130, 132, 135, 136, 139, 140, 145, 148, 149, 150, 152, 153, 154, 158, 160, 161, 169, 174, 178, 180, 182, 185, 188, 191, 199, 204, 213, 217, 220, 225, 230, 234, 241, 245, 246, 249, 252, 253, 254, 255, 257, 258, 259, 266, 267, 269, 270, 271, 272, 274], "15013": 1, "better": [1, 5, 6, 24, 27, 31, 36, 59, 67, 85, 101, 106, 119, 121, 134, 137, 138, 153, 195, 240, 258, 259, 269, 270, 274], "ux": [1, 112, 146], "15011": 1, "15007": 1, "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 88, 89, 108, 119, 134, 137, 138, 144, 149, 188, 203, 208, 213, 215, 220, 225, 226, 230, 250, 257, 261], "14966": 1, "load": [1, 16, 41, 45, 54, 59, 65, 101, 119, 128, 129, 131, 137, 138, 149, 150, 161, 172, 173, 178, 191, 198, 201, 206, 214, 216, 232, 245, 247, 273], "ci": [1, 2, 4, 5, 6, 7, 8, 59, 68, 77, 96, 98, 109, 119, 121, 149, 152, 153, 154, 270, 274], "workflow": [1, 59, 161, 265], "move": [1, 7, 35, 73, 77, 139, 178, 199, 253, 255, 260, 265, 266, 269, 270, 271, 273], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 59, 73, 76, 79, 80, 81, 95, 96, 99, 101, 102, 103, 105, 109, 119, 120, 126, 130, 134, 136, 139, 142, 150, 152, 163, 169, 173, 178, 196, 197, 207, 208, 241, 243, 245, 246, 248, 252, 253, 262, 271], "intersect": [1, 10], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 71, 72, 73, 77, 86, 89, 90, 96, 98, 99, 101, 105, 114, 117, 119, 130, 132, 134, 150, 153, 160, 178, 184, 188, 190, 191, 192, 196, 206, 208, 217, 220, 224, 234, 235, 236, 239, 242, 249, 264, 266, 270, 272, 274], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 56, 61, 62, 76, 84, 94, 99, 102, 109, 150, 152, 182, 205, 216, 220, 234, 243, 245, 247, 248, 251, 253, 254, 258, 264, 266], "14858": 1, "pkgconfigdep": [1, 45, 56, 64, 70, 135, 179, 205, 220, 251], "listen": [1, 117, 210, 213, 240], "system_package_vers": [1, 190, 211], "properti": [1, 21, 42, 50, 58, 70, 71, 94, 99, 119, 130, 132, 136, 166, 182, 191, 207, 216, 220, 224, 225, 233, 249, 260, 261, 265], "14808": 1, "shorthand": 1, "14727": 1, "control": [1, 4, 5, 49, 59, 73, 76, 81, 89, 119, 132, 138, 152, 154, 184, 191, 224, 258, 270, 272, 274], "14054": 1, "overwrit": [1, 7, 24, 81, 86, 89, 93, 96, 98, 99, 101, 105, 108, 109, 114, 119, 139, 178, 194, 211], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 54, 58, 79, 118, 120, 130, 133, 135, 139, 179, 188, 189, 191, 203, 208, 214, 220, 228, 235, 242, 244, 253, 255, 257, 258, 259, 262, 263, 264, 265], "nor": [1, 36, 73, 127, 131, 139, 140, 177, 234], "15058": 1, "astra": 1, "elbru": [1, 152], "altlinux": 1, "distribut": [1, 7, 35, 45, 59, 61, 73, 109, 139, 152, 163, 234, 240], "apt": [1, 61, 88, 120, 140, 149, 233], "systempackagemanag": 1, "15051": 1, "linux": [1, 8, 26, 27, 35, 44, 48, 56, 61, 62, 73, 83, 84, 88, 90, 98, 102, 105, 106, 140, 142, 149, 150, 152, 186, 201, 216, 234, 243, 244, 245, 247, 248, 251, 254, 258, 264, 266, 271], "mint": [1, 61], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 52, 59, 61, 63, 64, 66, 67, 68, 69, 71, 72, 73, 76, 77, 81, 88, 89, 93, 98, 99, 100, 101, 104, 109, 110, 115, 117, 119, 121, 132, 134, 135, 139, 140, 142, 143, 149, 150, 152, 154, 155, 156, 158, 161, 163, 169, 170, 174, 177, 185, 186, 190, 195, 199, 200, 201, 206, 214, 216, 217, 220, 222, 230, 234, 238, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 270, 271, 274], "server": [1, 4, 5, 6, 7, 8, 13, 29, 54, 59, 60, 68, 73, 77, 79, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 101, 105, 108, 109, 110, 111, 114, 115, 119, 128, 129, 134, 148, 149, 153, 154, 162, 169, 174, 177, 201, 206, 235, 238, 239, 241, 243, 246, 255, 257, 267, 271, 274], "even": [1, 4, 6, 35, 36, 47, 50, 52, 61, 62, 73, 76, 77, 82, 84, 90, 101, 106, 110, 115, 119, 121, 123, 126, 130, 136, 137, 138, 139, 140, 149, 150, 151, 152, 157, 160, 161, 174, 178, 199, 217, 224, 230, 241, 244, 246, 251, 252, 253, 257, 268, 269, 270, 271, 272, 273], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 88, 101, 139, 153, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271], "15023": 1, "appl": [1, 24, 42, 72, 73, 76, 79, 84, 88, 94, 99, 102, 109, 149, 150, 152, 179, 183, 184, 185, 189, 191, 206, 208, 218, 243, 245, 253], "15015": 1, "extraflag": 1, "prioriti": [1, 101, 107, 119, 126, 135, 136, 137, 138, 148, 149, 150, 154, 173, 194, 230, 269], "15005": 1, "color": [1, 31, 119, 250, 251, 254, 261, 262], "15002": 1, "sqlite3": [1, 130], "unsupport": [1, 255], "less": [1, 6, 35, 58, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 149, 273], "than": [1, 8, 50, 58, 59, 66, 73, 76, 81, 83, 88, 89, 90, 97, 101, 104, 111, 115, 119, 122, 124, 125, 131, 134, 135, 137, 138, 143, 144, 149, 152, 153, 160, 178, 185, 186, 190, 191, 208, 211, 225, 226, 234, 243, 246, 252, 256, 262, 271, 272, 274], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 58, 59, 73, 77, 78, 83, 101, 107, 108, 119, 122, 123, 128, 130, 134, 136, 137, 138, 139, 145, 150, 152, 153, 161, 179, 186, 188, 189, 191, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 219, 220, 222, 223, 224, 225, 226, 227, 228, 234, 243, 245, 246, 247, 257, 258, 267, 269, 271, 272, 274], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 59, 66, 77, 81, 82, 101, 119, 122, 123, 149, 150, 178, 191, 208, 214, 220, 254, 264, 265, 274], "forc": [1, 6, 31, 36, 41, 77, 86, 88, 89, 94, 96, 98, 99, 101, 105, 107, 108, 109, 110, 114, 115, 117, 119, 123, 148, 149, 150, 152, 154, 174, 177, 191, 208, 216, 243, 246, 264, 269, 270, 271], "rebuild": [1, 5, 82, 119, 258, 264, 274], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 61, 73, 77, 78, 80, 81, 83, 88, 101, 107, 119, 120, 126, 135, 136, 144, 149, 150, 152, 160, 203, 211, 217, 242, 245, 261, 263, 264, 265, 267, 272, 273, 274], "previou": [1, 2, 6, 7, 13, 58, 73, 81, 98, 101, 102, 104, 106, 152, 158, 174, 184, 189, 190, 191, 194, 220, 225, 234, 241, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 272, 273], "still": [1, 5, 29, 39, 40, 50, 59, 61, 104, 111, 119, 122, 123, 126, 134, 135, 152, 169, 177, 230, 257, 264, 271, 272, 274], "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, 50, 52, 53, 55, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 81, 83, 88, 89, 108, 117, 119, 120, 132, 135, 149, 160, 178, 183, 184, 185, 189, 206, 209, 213, 214, 215, 216, 217, 220, 224, 225, 228, 235, 236, 238, 239, 241, 242, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 270, 272, 274], "14938": 1, "affect": [1, 5, 6, 10, 61, 81, 83, 84, 96, 101, 119, 125, 126, 134, 136, 150, 152, 178, 185, 188, 190, 191, 199, 211, 213, 214, 215, 219, 220, 223, 224, 225, 226, 227, 233, 244, 247, 249, 251, 252, 254, 257, 264, 266], "14932": 1, "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 50, 54, 56, 58, 59, 60, 62, 73, 76, 77, 81, 82, 83, 84, 85, 86, 89, 90, 93, 94, 96, 98, 99, 102, 103, 104, 105, 108, 109, 114, 117, 119, 120, 121, 127, 130, 132, 133, 136, 137, 138, 139, 140, 142, 143, 145, 149, 150, 152, 155, 157, 159, 160, 161, 162, 163, 164, 169, 182, 183, 184, 185, 188, 189, 191, 196, 197, 206, 207, 208, 210, 213, 214, 215, 216, 219, 220, 224, 225, 227, 232, 234, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 257, 258, 259, 261, 264, 266, 269, 270, 272, 273, 274], "fill_cpp_info": [1, 210], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 50, 54, 56, 58, 59, 73, 78, 81, 83, 99, 105, 119, 130, 135, 150, 152, 154, 178, 189, 217, 238, 239, 240, 243, 250, 251, 265, 271, 272, 273, 274], "noisi": 1, "quiet": [1, 88, 144, 149, 183, 188, 219, 223], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 27, 29, 35, 36, 39, 40, 49, 50, 52, 59, 61, 66, 72, 73, 76, 77, 81, 83, 88, 89, 93, 96, 99, 101, 102, 104, 106, 108, 111, 115, 119, 120, 121, 123, 128, 129, 130, 131, 133, 134, 135, 139, 140, 142, 143, 145, 148, 149, 150, 152, 153, 170, 177, 180, 190, 191, 192, 196, 197, 199, 220, 226, 230, 232, 243, 245, 247, 248, 252, 253, 254, 255, 257, 258, 262, 265, 267, 269, 270, 271, 272, 273, 274], "buildinfo": 1, "14886": 1, "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 50, 52, 61, 62, 68, 73, 77, 83, 87, 89, 90, 98, 101, 105, 108, 111, 115, 117, 119, 123, 130, 134, 135, 136, 139, 141, 142, 143, 144, 148, 149, 150, 152, 153, 154, 156, 159, 161, 163, 170, 173, 178, 182, 184, 190, 194, 195, 196, 208, 210, 220, 224, 230, 234, 238, 239, 245, 246, 247, 251, 252, 253, 255, 258, 259, 262, 265, 267, 270, 271, 274], "14852": 1, "min": [1, 99, 185, 220], "xro": [1, 152], "simul": [1, 50], "14776": 1, "unnecessari": [1, 59, 122], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 59, 81, 83, 85, 87, 93, 99, 101, 104, 106, 108, 119, 121, 122, 123, 124, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 142, 148, 149, 150, 152, 157, 159, 160, 173, 178, 190, 191, 192, 195, 199, 208, 217, 219, 224, 241, 244, 245, 247, 251, 253, 255, 257, 258, 260, 261, 266, 269, 270, 271, 272, 273], "transit": [1, 13, 36, 50, 77, 89, 90, 101, 123, 130, 136, 150, 178, 184, 190, 196, 207, 224, 242, 264], "15082": 1, "15042": 1, "download_sourc": [1, 36, 88, 139, 149], "15004": 1, "incorrectli": 1, "xcconfig": [1, 72, 184, 185], "14898": 1, "export_sourc": [1, 7, 16, 18, 59, 87, 119, 120, 128, 130, 132, 203], "been": [1, 4, 6, 8, 13, 26, 50, 61, 62, 68, 73, 77, 78, 81, 87, 89, 93, 97, 101, 102, 111, 126, 130, 135, 136, 139, 141, 142, 143, 150, 152, 170, 178, 184, 190, 196, 245, 246, 252, 253, 254, 264, 265, 267, 271, 274], "14850": 1, "properli": [1, 100, 149, 253, 262], "candid": 1, "14846": 1, "end": [1, 4, 73, 76, 77, 123, 136, 149, 150, 160, 161, 191, 195, 219, 245, 254, 262, 271, 272], "activ": [1, 8, 29, 35, 41, 49, 59, 61, 66, 73, 83, 88, 119, 130, 135, 144, 149, 152, 154, 155, 184, 188, 190, 191, 194, 196, 197, 211, 214, 224, 226, 227, 244, 245, 248, 259], "pre": [1, 9, 45, 54, 59, 61, 73, 76, 85, 88, 93, 109, 119, 139, 148, 149, 155, 161, 195, 217, 247, 249, 256, 265, 266, 272], "resolut": [1, 78, 128, 155], "full": [1, 5, 6, 24, 36, 39, 40, 52, 64, 68, 69, 71, 72, 73, 82, 83, 87, 89, 93, 96, 101, 102, 104, 108, 119, 124, 130, 134, 140, 145, 152, 156, 160, 162, 164, 169, 178, 190, 191, 194, 210, 216, 230, 252, 260, 264, 273], "14814": 1, "lower": [1, 217, 246, 258, 272], "bound": [1, 272], "upper": [1, 272], "newer": [1, 8, 73, 86, 89, 96, 98, 99, 101, 103, 104, 105, 107, 114, 119, 152, 169, 259, 272, 273], "clang": [1, 24, 26, 27, 42, 45, 73, 76, 83, 84, 88, 94, 99, 102, 109, 111, 116, 143, 149, 150, 152, 163, 182, 189, 191, 203, 220, 243, 245, 253], "introduc": [1, 29, 52, 78, 80, 117, 139, 242, 252, 257, 265, 266, 268, 269, 270, 271, 272, 273, 274], "14837": 1, "14781": 1, "dry": [1, 111, 115], "14760": 1, "host_tool": 1, "package_manag": [1, 88, 119, 135, 140, 149, 179, 233], "indic": [1, 4, 26, 66, 76, 88, 89, 93, 136, 149, 151, 188, 194, 199, 213, 214, 227, 245, 247, 259, 269], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 54, 56, 61, 73, 76, 82, 98, 99, 101, 105, 110, 119, 128, 129, 131, 139, 142, 150, 152, 154, 163, 169, 178, 182, 189, 191, 216, 234, 241, 243, 245, 248, 251, 252, 254, 258, 261, 262, 265, 269, 270, 273], "14819": 1, "set_properti": [1, 17, 21, 41, 50, 135, 211, 214, 254], "14813": 1, "minor": [1, 73, 81, 82, 119, 150, 152, 178, 269, 272, 274], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 83, 134, 182, 259], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 43, 45, 48, 52, 54, 56, 57, 59, 61, 66, 80, 82, 88, 89, 101, 103, 104, 106, 107, 119, 122, 133, 134, 137, 138, 149, 150, 153, 154, 156, 161, 162, 163, 173, 184, 185, 191, 196, 197, 201, 203, 208, 216, 219, 225, 230, 234, 235, 236, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273], "found": [1, 4, 21, 26, 27, 39, 40, 49, 50, 54, 61, 86, 89, 92, 93, 96, 98, 99, 100, 101, 105, 109, 114, 132, 135, 140, 141, 147, 150, 153, 156, 160, 174, 188, 190, 191, 199, 206, 217, 220, 243, 245, 248, 257, 266, 270], "14800": 1, "reus": [1, 29, 41, 73, 119, 120, 130, 131, 133, 135, 139, 155, 236, 243, 253, 254, 262, 267], "session": [1, 61], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 54, 60, 66, 81, 88, 117, 123, 147, 149, 160, 235, 236, 241, 245, 251, 254, 257], "14795": 1, "rel": [1, 5, 18, 35, 36, 66, 84, 96, 108, 117, 119, 120, 121, 132, 135, 137, 138, 147, 150, 160, 161, 182, 190, 191, 194, 199, 203, 204, 260, 265, 266, 269, 271], "partial": [1, 82, 86, 89, 92, 93, 96, 98, 99, 100, 101, 104, 105, 106, 107, 114, 150, 270, 274], "directori": [1, 26, 27, 35, 36, 38, 47, 61, 101, 108, 117, 119, 128, 129, 130, 132, 135, 137, 138, 139, 147, 149, 150, 151, 158, 190, 199, 203, 204, 214, 217, 230, 245, 251, 257, 258, 263, 264, 265], "14782": 1, "14743": 1, "arg": [1, 31, 88, 96, 121, 154, 158, 206, 213, 216, 227, 230, 234, 273], "cmd": [1, 26, 119, 135, 141, 150, 157, 195, 206, 223, 230, 240, 262], "14737": 1, "block": [1, 52, 274], "interfac": [1, 6, 59, 66, 73, 82, 117, 155, 156, 192], "select": [1, 21, 26, 66, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 109, 110, 111, 112, 114, 115, 116, 119, 180, 189, 191, 199, 216, 223, 239, 249, 260, 267], "kei": [1, 59, 88, 108, 117, 119, 130, 135, 149, 153, 158, 191, 203, 208, 220, 225, 226, 230, 239, 255, 263, 264], "14731": 1, "larg": [1, 6, 10, 117, 119, 134, 150, 195, 263, 273], "14716": 1, "14692": 1, "cl": [1, 73, 226], "14682": 1, "transform": [1, 154, 199, 220], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 50, 52, 54, 58, 66, 73, 78, 82, 88, 135, 141, 149, 150, 152, 189, 191, 208, 217, 220, 226, 239, 250, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 264, 265, 271], "ld": [1, 54, 99, 208, 220, 244], "blank": [1, 117, 194, 220], "string": [1, 6, 26, 42, 45, 52, 56, 83, 88, 102, 108, 117, 119, 134, 137, 138, 144, 149, 150, 151, 177, 188, 189, 191, 194, 195, 199, 203, 208, 211, 215, 220, 243, 244, 251, 253, 273, 274], "14676": 1, "nobara": 1, "distro": [1, 61, 149, 152, 234], "dnf": [1, 88, 149, 233], "14668": 1, "b_vscrt": [1, 220], "14664": 1, "regex": [1, 83, 119, 134, 190], "14621": 1, "makedep": [1, 69, 179, 205], "tweak": [1, 191], "14605": 1, "jinja": [1, 49, 148, 149, 150, 153, 195], "templat": [1, 26, 47, 49, 73, 84, 85, 99, 109, 119, 146, 150, 153, 172, 189, 191, 195], "14578": 1, "14532": 1, "14740": 1, "conanapi": [1, 31, 158, 164, 165], "init": [1, 59, 120, 130, 178, 273], "failur": [1, 73, 88, 149, 201], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 54, 73, 77, 88, 90, 93, 96, 101, 106, 108, 109, 110, 115, 119, 125, 126, 131, 149, 150, 167, 169, 174, 177, 180, 184, 190, 191, 199, 208, 211, 234, 235, 236, 241, 245, 247, 248, 250, 251, 252, 253, 256, 259, 260, 262, 266, 269, 271, 273, 274], "duplic": [1, 39, 40, 54, 110, 135], "alias": [1, 119, 178, 190, 211], "14644": 1, "regress": [1, 73], "win_bash": [1, 88, 94, 149], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 52, 58, 59, 73, 76, 77, 78, 81, 82, 83, 84, 88, 94, 98, 99, 100, 102, 105, 108, 109, 111, 119, 123, 126, 130, 133, 135, 136, 137, 145, 150, 152, 155, 159, 178, 184, 185, 188, 189, 190, 191, 195, 205, 208, 211, 215, 220, 224, 234, 235, 236, 241, 242, 243, 244, 251, 252, 253, 254, 255, 261, 267, 269, 274], "test_requir": [1, 77, 120, 130, 136, 244, 247, 251, 257, 259, 272], "diamond": [1, 119, 269], "14721": 1, "crash": [1, 6, 77, 269], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 96, 97, 109, 117, 119, 126, 127, 139, 150, 152, 157, 162, 186, 190, 191, 195, 199, 201, 220, 222, 223, 230, 241, 245, 262, 269], "chain": [1, 5, 144, 274], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 50, 56, 59, 61, 65, 73, 77, 81, 87, 88, 89, 93, 96, 97, 100, 101, 102, 104, 105, 110, 111, 117, 119, 121, 126, 128, 129, 130, 132, 133, 134, 135, 136, 139, 140, 142, 149, 152, 154, 155, 158, 159, 160, 177, 178, 182, 184, 185, 190, 191, 192, 196, 197, 199, 208, 209, 211, 220, 224, 226, 230, 234, 237, 243, 244, 245, 246, 247, 248, 249, 252, 253, 254, 257, 259, 260, 264, 265, 267, 268, 269, 270, 271, 274], "14673": 1, "cpu": [1, 8, 88, 149, 152, 186, 215, 223], "nativ": [1, 26, 27, 50, 56, 71, 77, 88, 149, 178, 186, 214, 219, 220, 227], "arm64": [1, 26, 42, 152, 180, 183, 223], "14667": 1, "ones": [1, 6, 10, 30, 31, 42, 43, 46, 65, 73, 77, 81, 85, 87, 88, 96, 98, 111, 119, 124, 136, 140, 149, 150, 152, 160, 161, 166, 174, 180, 190, 191, 194, 195, 199, 204, 211, 216, 222, 223, 224, 241, 246, 260, 265, 266, 270, 271, 272, 273], "14643": 1, "unnecessarili": [1, 83], "decor": [1, 155], "sequenc": [1, 45, 95, 117], "14642": 1, "14622": 1, "patch_us": [1, 203], "conandata": [1, 4, 52, 59, 66, 77, 119, 128, 129, 130, 131, 139, 162, 199, 203, 230, 249], "patch": [1, 6, 19, 43, 51, 73, 77, 81, 82, 87, 119, 121, 129, 139, 150, 152, 178, 179, 182, 198, 206, 249, 255, 272, 274], "apply_conandata_patch": [1, 129, 139, 198], "14576": 1, "xcode": [1, 60, 62, 86, 88, 89, 93, 96, 98, 99, 101, 105, 109, 114, 149, 183, 184, 185, 188, 189, 216, 220], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 62, 68, 73, 76, 88, 94, 99, 100, 119, 151, 152, 158, 182, 183, 220, 237, 238, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "tvo": [1, 152, 182], "watcho": [1, 152, 182, 220], "14538": 1, "incorrect": [1, 73], "conancent": [1, 2, 13, 29, 50, 59, 60, 73, 76, 82, 84, 94, 98, 99, 102, 112, 119, 135, 149, 151, 237, 243, 246, 248], "web": [1, 4, 6, 61, 119, 152, 238, 239], "url": [1, 3, 4, 59, 87, 88, 94, 99, 100, 108, 110, 117, 130, 139, 149, 151, 153, 161, 174, 199, 201, 230, 239, 240, 250, 251, 253, 254, 255, 258, 261], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 58, 59, 73, 77, 83, 108, 117, 119, 135, 145, 150, 161, 178, 184, 194, 195, 224, 246, 264, 270], "14529": 1, "rrev": [1, 31, 94, 102], "rrev_timestamp": [1, 94], "prev_timestamp": [1, 94], "14526": 1, "resolv": [1, 8, 10, 86, 87, 88, 89, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 107, 114, 117, 123, 149, 150, 173, 195, 199, 246, 268, 270, 271, 272], "14510": 1, "verifi": [1, 5, 50, 52, 77, 87, 88, 143, 149, 151, 155, 162, 201, 255, 258, 262, 274], "14508": 1, "visiono": [1, 152, 182], "14504": 1, "unknown": [1, 81, 94, 99, 144], "14493": 1, "skip_binari": [1, 36, 88, 149], "14466": 1, "symlink": [1, 88, 149, 160, 179, 198, 199, 249], "14461": 1, "14413": 1, "cli_arg": [1, 188], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 76, 79, 110, 117, 146, 153, 230, 239], "14392": 1, "apk": [1, 88, 149, 233], "alpin": [1, 234], "14382": 1, "msvc": [1, 50, 58, 84, 88, 102, 119, 135, 149, 150, 163, 208, 222, 225, 247], "invok": [1, 42, 45, 88, 101, 149, 150, 160, 170, 182, 224, 233, 244, 245, 248, 250, 251, 255, 260, 262, 265], "within": [1, 88, 117, 119, 127, 150, 182, 192, 199, 247, 272], "prompt": [1, 31, 154, 191, 223, 226, 227], "where": [1, 4, 8, 19, 21, 31, 42, 45, 52, 56, 61, 73, 83, 87, 88, 100, 101, 117, 119, 121, 130, 132, 135, 147, 149, 150, 151, 152, 158, 178, 183, 190, 191, 192, 194, 195, 199, 201, 206, 208, 213, 214, 216, 217, 219, 220, 223, 230, 239, 243, 244, 245, 247, 252, 253, 254, 255, 266, 271], "point": [1, 4, 8, 29, 35, 39, 40, 59, 60, 66, 73, 83, 88, 99, 101, 106, 108, 119, 130, 150, 160, 161, 169, 182, 191, 199, 204, 206, 230, 244, 246, 258, 260, 266, 269, 274], "14364": 1, "14358": 1, "14347": 1, "default_build_opt": 1, "14340": 1, "channel": [1, 5, 60, 73, 76, 86, 89, 91, 92, 93, 94, 96, 98, 99, 102, 105, 113, 117, 130, 150, 246], "14338": 1, "makefil": [1, 45, 60, 62, 73, 188, 189, 206, 208, 209, 226, 247], "14133": 1, "14594": 1, "v2": [1, 152, 161, 186, 240], "readi": [1, 30, 54, 56, 76, 150, 208, 217, 243, 253], "center": [1, 5, 8, 59, 66, 73, 76, 94, 99, 100, 151, 152, 155, 235, 236, 243, 248], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 54, 58, 60, 77, 82, 83, 99, 119, 123, 132, 135, 136, 141, 156, 184, 190, 191, 192, 199, 211, 220, 225, 226, 239, 242, 244, 251, 252, 253, 254, 257, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "14593": 1, "inspect": [1, 6, 7, 36, 66, 85, 87, 109, 169, 226], "14572": 1, "hyphen": [1, 211, 214], "14561": 1, "user_toolchain": [1, 49, 88, 149, 191], "14556": 1, "boolean": [1, 88, 119, 130, 149, 174, 190, 191, 213, 215, 220, 274], "14530": 1, "14511": 1, "14491": 1, "14444": 1, "conf_info": [1, 94, 130, 132, 149, 191, 254, 261], "14442": 1, "msbuildtoolchain": [1, 58, 71, 88, 119, 135, 149, 179, 221], "resourcecompil": [1, 225], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 61, 73, 76, 77, 81, 82, 83, 89, 90, 96, 97, 101, 102, 103, 104, 106, 107, 108, 109, 115, 119, 121, 130, 132, 134, 139, 140, 144, 149, 150, 152, 156, 158, 169, 173, 178, 191, 192, 208, 220, 230, 245, 247, 248, 252, 254, 255, 260, 265, 271, 274], "14376": 1, "processor": [1, 152, 186, 220], "armv8": [1, 26, 27, 42, 45, 83, 99, 109, 119, 135, 150, 152, 180, 186, 220, 234, 247, 258, 262], "aarch64": [1, 99, 152, 234], "14362": 1, "mandat": [1, 194], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 50, 54, 59, 66, 73, 80, 101, 102, 106, 119, 121, 122, 123, 126, 127, 128, 129, 131, 132, 133, 134, 135, 139, 150, 152, 173, 190, 192, 199, 208, 211, 219, 236, 243, 248, 250, 253, 259, 262, 263, 265, 268, 269, 272, 274], "14342": 1, "default_opt": [1, 42, 52, 59, 83, 94, 100, 126, 131, 184, 188, 191, 220, 224, 251, 252, 253, 255, 261, 269], "xcrun": [1, 179, 181], "14326": 1, "abspath": 1, "14183": 1, "14555": 1, "except": [1, 26, 31, 39, 40, 49, 81, 83, 88, 117, 119, 123, 124, 126, 132, 139, 144, 145, 149, 150, 152, 154, 174, 178, 186, 188, 199, 230, 234, 243, 247, 252, 269], "vtrace": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "14522": 1, "confirm": [1, 31, 111, 115], "interact": [1, 88, 110, 148, 149, 154], "14512": 1, "filter": [1, 6, 88, 99, 111, 119, 130, 142, 158, 177, 199, 270], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 50, 61, 71, 73, 76, 77, 82, 83, 88, 90, 101, 106, 107, 108, 111, 117, 119, 121, 122, 123, 134, 136, 139, 145, 152, 154, 157, 161, 163, 178, 184, 190, 201, 206, 224, 231, 234, 239, 241, 243, 244, 245, 248, 251, 252, 255, 259, 260, 261, 262, 264, 270, 273, 274], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 52, 59, 66, 77, 83, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 121, 122, 128, 129, 133, 136, 139, 143, 161, 170, 178, 199, 201, 237, 239, 257, 264, 265, 271], "14478": 1, "14443": 1, "14441": 1, "14410": 1, "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 50, 52, 58, 64, 77, 88, 119, 121, 122, 130, 133, 135, 136, 138, 149, 157, 161, 163, 190, 191, 194, 195, 196, 197, 206, 207, 208, 215, 216, 220, 225, 226, 227, 239, 244, 245, 253, 261, 262, 270], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "outsid": [1, 8, 59, 73, 81, 117, 119, 134, 147, 204], "scm_folder": [1, 119], "14330": 1, "trace": [1, 144, 258], "14322": 1, "flush": 1, "stream": [1, 73, 188], "write": [1, 4, 27, 45, 54, 73, 77, 78, 101, 108, 117, 122, 132, 155, 162, 178, 190, 191, 199, 208, 247, 253, 255, 261, 265], "14310": 1, "sign": [1, 79, 117, 155], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 59, 87, 191, 258, 264, 265, 266], "inherit": [1, 48, 77, 131, 178, 191, 247], "typo": 1, "14325": 1, "conanpreset": [1, 48, 191], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50, 54, 56, 58, 59, 64, 65, 69, 73, 81, 82, 83, 84, 86, 88, 89, 91, 92, 93, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 112, 113, 114, 117, 119, 120, 122, 126, 130, 131, 132, 135, 136, 147, 149, 152, 154, 155, 160, 162, 163, 166, 174, 178, 182, 184, 190, 191, 192, 196, 197, 203, 207, 208, 209, 211, 214, 215, 216, 220, 224, 225, 230, 232, 243, 244, 246, 250, 253, 257, 258, 259, 261, 262, 264, 265, 266, 270, 272, 273, 274], "14296": 1, "prefix": [1, 99, 111, 119, 150, 158, 191, 208, 209, 210, 211, 214, 215, 220, 252, 260], "param": [1, 31, 158, 170, 177, 188, 194, 219], "unix": [1, 150, 188, 189, 199, 247], "14295": 1, "invalid": [1, 6, 99, 117, 120, 142, 143, 186, 190, 269], "loglevel": 1, "14289": 1, "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 52, 54, 56, 58, 59, 66, 82, 83, 84, 87, 96, 99, 101, 102, 106, 123, 134, 149, 150, 157, 158, 163, 184, 190, 214, 224, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273], "pkg_config_custom_cont": [1, 211], "pc": [1, 45, 56, 209, 210, 211], "14233": 1, "dict": [1, 88, 119, 130, 135, 149, 158, 171, 191, 208, 211, 220, 225, 226], "object": [1, 6, 19, 21, 27, 42, 45, 94, 99, 117, 119, 130, 131, 132, 133, 134, 135, 144, 156, 157, 158, 160, 161, 169, 174, 177, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 219, 222, 223, 224, 225, 226, 227, 228, 234, 244, 245, 251, 252, 253, 254, 257, 262, 265, 266], "fix_apple_shared_install_nam": [1, 179, 181, 206], "otool": [1, 182, 206], "install_name_tool": [1, 182, 206], "program": [1, 29, 45, 54, 56, 88, 131, 149, 206, 227, 243, 245], "14195": 1, "fpic": [1, 42, 52, 59, 76, 83, 84, 94, 99, 100, 102, 119, 125, 126, 188, 191, 208, 215, 220, 251, 252, 253, 255, 261], "header_onli": [1, 83, 119, 126, 134, 257], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 50, 58, 62, 66, 67, 72, 76, 81, 82, 83, 84, 88, 94, 99, 119, 121, 122, 134, 135, 140, 149, 150, 152, 178, 182, 184, 190, 191, 224, 225, 242, 247, 249, 257, 258, 259, 264, 274], "type": [1, 6, 37, 67, 73, 82, 88, 92, 97, 109, 119, 134, 135, 146, 160, 178, 188, 190, 191, 196, 197, 211, 218, 235, 238, 239, 245, 246, 247, 248, 249, 251, 252, 274], "cmake_package_version_compat": 1, "anynewervers": [1, 190], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 73, 76, 160, 246, 274], "won": [1, 4, 29, 39, 40, 50, 73, 104, 111, 117, 119, 150, 152, 158, 190, 199, 220, 244, 252, 260, 264], "14261": 1, "permit": [1, 272], "empti": [1, 4, 6, 88, 89, 110, 111, 119, 135, 149, 150, 158, 169, 177, 208, 211, 214, 224, 257, 258, 269, 270, 273], "14254": 1, "rm_safe": [1, 42, 83, 119, 125, 126, 134, 252], "never": [1, 73, 77, 81, 82, 86, 89, 93, 96, 98, 99, 101, 102, 105, 114, 119, 145, 170, 234, 246, 252, 258], "14238": 1, "gnu": [1, 45, 64, 69, 79, 83, 88, 99, 149, 152, 179, 186, 194, 195, 201, 206, 207, 208, 209, 210, 211, 215, 244], "make_program": [1, 88, 149], "14223": 1, "package_typ": [1, 38, 42, 94, 99, 100, 131, 134, 142, 159, 178, 259, 274], "lib": [1, 17, 21, 26, 35, 42, 50, 58, 87, 94, 98, 99, 117, 119, 123, 130, 132, 133, 135, 152, 182, 190, 191, 192, 199, 207, 208, 209, 210, 211, 214, 226, 232, 244, 252, 253, 254, 255, 257, 258, 260, 266, 274], "14215": 1, "clarif": [1, 73], "shown": [1, 4, 36, 99, 100, 124, 220], "queri": [1, 87, 88, 90, 99, 102, 111, 112, 115, 171], "14199": 1, "enabl": [1, 8, 10, 66, 76, 88, 119, 149, 151, 174, 186, 191, 199, 208, 234, 257, 272], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 50, 52, 56, 59, 61, 66, 73, 76, 77, 82, 87, 88, 108, 119, 120, 130, 135, 139, 140, 142, 149, 152, 153, 155, 178, 183, 189, 190, 191, 192, 201, 211, 216, 224, 230, 234, 243, 245, 246, 247, 249, 250, 252, 253, 255, 257, 261, 262, 264, 265, 266, 267, 268, 270, 271, 273], "function": [1, 6, 8, 21, 26, 38, 41, 42, 58, 59, 62, 65, 73, 77, 82, 89, 108, 117, 119, 123, 129, 133, 137, 138, 141, 144, 145, 149, 150, 153, 155, 156, 158, 160, 161, 162, 163, 178, 180, 186, 189, 190, 195, 199, 203, 206, 214, 220, 247, 251, 253, 254, 255, 257, 260, 269, 270, 274], "14177": 1, "xcodedep": [1, 72, 179, 181, 185], "14168": 1, "respect": [1, 31, 36, 76, 106, 119, 150, 154, 155, 191, 194, 220, 244, 269, 271], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 50, 58, 66, 91, 101, 108, 109, 117, 119, 130, 132, 133, 135, 137, 138, 149, 150, 151, 152, 154, 155, 156, 157, 160, 162, 163, 173, 182, 183, 184, 188, 190, 191, 199, 206, 208, 217, 226, 243, 244, 245, 248, 253, 254, 255, 258, 259, 260, 266, 271], "14164": 1, "runner": [1, 26], "13985": 1, "leak": [1, 59, 153], "cmake_find_library_suffix": 1, "14253": 1, "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 66, 68, 73, 76, 77, 78, 79, 80, 85, 88, 101, 109, 111, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 134, 146, 149, 150, 154, 155, 156, 157, 161, 163, 165, 178, 179, 181, 187, 189, 194, 203, 205, 212, 218, 221, 249, 252, 254, 260, 261, 266], "14227": 1, "14190": 1, "osx": [1, 35, 61, 73, 130, 135, 191, 245], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 152], "cmake_generator_platform": [1, 152, 191], "14114": 1, "cppinfo": [1, 21, 79, 119, 130, 135, 179, 190, 254], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 58, 75, 82, 83, 86, 87, 88, 89, 93, 96, 98, 99, 101, 102, 103, 105, 106, 108, 109, 111, 114, 119, 122, 130, 131, 132, 133, 135, 137, 138, 144, 149, 150, 152, 154, 160, 178, 182, 184, 185, 186, 190, 194, 214, 230, 238, 241, 243, 245, 247, 248, 254, 258, 259, 260, 262, 264, 266, 269, 270, 273, 274], "summari": [1, 4, 8, 81, 216, 254], "delet": [1, 31, 42, 61, 77, 111, 117, 119, 126, 252], "thing": [1, 13, 18, 21, 29, 50, 66, 67, 73, 76, 77, 101, 106, 119, 134, 170, 178, 179, 191, 195, 206, 243, 245, 247, 249, 251, 253, 254, 259, 260, 261, 266, 274], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 67, 73, 76, 78, 119, 217, 236, 241, 242, 244, 245, 251, 253, 257, 259, 262, 263, 264, 270, 274], "14011": 1, "express": [1, 42, 49, 83, 107, 119, 132, 144, 145, 150, 191, 246, 268, 274], "14004": 1, "equival": [1, 59, 87, 88, 101, 102, 105, 112, 119, 121, 123, 128, 129, 135, 136, 145, 152, 174, 178, 188, 192, 194, 230, 244, 245, 246, 247, 253, 254, 265, 266, 270], "14002": 1, "13999": 1, "small": [1, 59, 73, 117, 128, 199, 240, 253, 258, 262, 269, 270], "13989": 1, "packageslist": [1, 167], "input": [1, 8, 58, 77, 81, 83, 88, 90, 92, 97, 99, 101, 102, 103, 104, 105, 107, 108, 111, 115, 134, 139, 148, 149, 154, 199, 220, 225, 245, 247, 257, 267, 271], "13928": 1, "associ": [1, 3, 6, 108, 110, 111, 150, 152, 191, 246, 274], "13918": 1, "13757": 1, "split": [1, 150], "two": [1, 6, 18, 45, 52, 73, 82, 83, 87, 92, 117, 119, 122, 123, 150, 159, 160, 178, 186, 191, 194, 203, 208, 224, 225, 234, 242, 243, 245, 251, 252, 257, 264, 266, 270], "13729": 1, "bindir": [1, 18, 39, 40, 94, 99, 135, 141, 189, 191, 208, 211, 217, 220, 254, 257, 259, 262], "13623": 1, "autopackag": [1, 179, 198], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 61, 73, 101, 110, 117, 119, 133, 152, 194, 272], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 61, 73, 76, 100, 116, 123, 125, 126, 127, 134, 148, 150, 152, 153, 160, 162, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 192, 209, 213, 214, 215, 216, 222], "subsystem": [1, 88, 119, 135, 149, 152, 179, 195, 221], "msys2": [1, 88, 149, 152, 234, 242], "14061": 1, "intermedi": [1, 101], "aggregated_compon": [1, 192], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 59, 61, 73, 82, 84, 86, 87, 89, 90, 96, 98, 99, 101, 102, 105, 107, 108, 109, 111, 114, 115, 119, 152, 158, 196, 197, 230, 239, 243, 246, 260, 268, 270, 271, 272, 273, 274], "14110": 1, "doubl": [1, 29, 110, 190, 239, 252], "setup": [1, 7, 41, 50, 56, 59, 219, 236], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 50, 199, 253], "14106": 1, "overlap": [1, 220], "14095": 1, "freebsd": [1, 8, 61, 73, 150, 152, 234], "14065": 1, "through": [1, 24, 93, 108, 119, 151, 161, 191, 219, 235, 241, 251, 253, 262], "root": [1, 10, 16, 18, 19, 27, 36, 38, 58, 86, 88, 91, 93, 94, 99, 101, 132, 135, 149, 150, 152, 158, 160, 169, 170, 190, 208, 214, 216, 217, 243, 244, 246, 248, 252, 253, 258], "14051": 1, "irrespect": [1, 119, 134, 137, 138, 140, 224, 230, 247, 253], "problem": [1, 4, 6, 8, 73, 123, 240, 245, 262], "parent": [1, 119, 132, 147, 199, 255], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 59, 61, 73, 76, 94, 99, 100, 110, 155, 174, 182, 237], "libdir": [1, 17, 21, 94, 99, 130, 132, 135, 189, 191, 192, 199, 208, 210, 211, 217, 220, 254, 257, 258, 259, 266], "includedir": [1, 17, 21, 94, 99, 130, 132, 135, 189, 191, 192, 208, 210, 211, 220, 224, 254, 258, 266], "cmake_program": [1, 88, 149, 188, 191], "13940": 1, "str": [1, 17, 31, 36, 119, 134, 160, 167, 171, 174, 184, 195, 199, 216, 217, 219, 220, 222, 223, 224, 227, 247, 251, 258, 266], "13964": 1, "layer": [1, 152, 158, 253, 274], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 54, 58, 59, 60, 73, 76, 77, 82, 83, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 105, 109, 111, 113, 114, 117, 119, 121, 130, 132, 135, 137, 138, 139, 150, 160, 161, 169, 173, 185, 199, 201, 206, 210, 216, 217, 225, 230, 235, 236, 239, 241, 243, 244, 245, 248, 251, 252, 253, 254, 256, 257, 260, 264, 265, 266, 271, 272, 273, 274], "13944": 1, "unzip": [1, 6, 19, 27, 61, 119, 139, 198, 201, 239, 255, 265], "13937": 1, "13929": 1, "13967": 1, "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 52, 58, 88, 94, 99, 100, 132, 133, 139, 170, 191, 199, 203, 206, 219, 251, 257, 258, 260], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 54, 59, 73, 89, 99, 101, 102, 104, 106, 111, 119, 130, 134, 135, 137, 138, 139, 142, 150, 152, 160, 161, 177, 191, 234, 238, 239, 254, 258, 261, 264, 266, 274], "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, 50, 52, 54, 56, 59, 61, 68, 73, 76, 88, 94, 99, 100, 108, 117, 119, 139, 149, 151, 153, 158, 161, 201, 203, 225, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 60, 61, 68, 73, 88, 94, 99, 100, 117, 119, 130, 139, 152, 155, 158, 161, 203, 237, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 68, 73, 88, 94, 99, 100, 117, 119, 139, 150, 158, 161, 203, 225, 237, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "pull": [1, 73, 76, 203, 237, 270], "13898": 1, "overrid": [1, 39, 40, 77, 86, 88, 89, 93, 94, 96, 98, 99, 101, 105, 114, 117, 119, 123, 149, 150, 188, 191, 234, 245, 268], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 61, 66, 73, 83, 87, 88, 90, 99, 102, 107, 110, 115, 117, 119, 130, 132, 134, 135, 145, 149, 150, 152, 156, 157, 160, 188, 191, 195, 196, 197, 199, 217, 220, 224, 227, 234, 241, 245, 248, 249, 253, 255, 258, 259, 266, 272], "13923": 1, "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 54, 59, 66, 117, 119, 125, 126, 150, 188, 206, 216, 249, 252, 258, 261, 264, 265], "13833": 1, "relocat": [1, 29, 35, 205, 260], "build_polici": [1, 93, 94, 258], "debugg": 1, "13810": 1, "possible_valu": [1, 119], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 50, 58, 59, 61, 73, 76, 77, 81, 83, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 111, 114, 115, 119, 121, 122, 123, 126, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 145, 149, 150, 152, 153, 155, 156, 157, 158, 162, 166, 169, 177, 178, 180, 184, 186, 188, 190, 192, 194, 195, 216, 220, 224, 231, 234, 245, 246, 251, 252, 255, 263, 264, 266, 267, 269, 270, 271, 272, 273, 274], "13796": 1, "optim": [1, 73, 93, 119, 122, 257], "hit": [1, 195, 240], "13771": 1, "sh": [1, 35, 39, 40, 45, 54, 88, 130, 149, 152, 194, 195, 196, 197, 207, 208, 216, 226, 239, 244, 245, 247, 248, 251, 259, 265, 266], "shell": [1, 35, 39, 40, 42, 61, 64, 88, 119, 144, 149, 194, 195, 199, 207, 208, 216], "13764": 1, "13748": 1, "auto": [1, 42, 76, 77, 88, 109, 149, 150, 152, 243], "home": [1, 4, 26, 27, 31, 59, 60, 76, 108, 109, 117, 119, 135, 147, 149, 151, 152, 154, 158, 172, 174, 209, 243, 244, 245, 253], "13746": 1, "render": [1, 21, 102, 108, 146, 148, 149, 153], "profile_nam": [1, 150], "13721": 1, "13718": 1, "understand": [1, 24, 31, 36, 47, 64, 69, 76, 80, 98, 106, 119, 145, 149, 160, 207, 208, 226, 235, 242, 253, 263], "13716": 1, "13712": 1, "skip_warn": [1, 88, 144, 149], "silenc": 1, "13706": 1, "info_invalid": [1, 94, 99], "13688": 1, "13680": 1, "mono": [1, 119], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 77], "field": [1, 50, 85, 89, 96, 99, 100, 102, 109, 112, 118, 119, 130, 132, 135, 148, 151, 152, 153, 161, 182, 191, 203, 206, 211, 230, 274], "13870": 1, "compiler_execut": [1, 88, 149, 150, 191, 208, 220, 226, 243], "13867": 1, "13857": 1, "suffix": [1, 158, 190, 211], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 174, 190, 198, 211], "d": [1, 7, 13, 27, 47, 58, 82, 86, 87, 99, 101, 108, 117, 119, 131, 150, 178, 189, 191, 209, 239, 253, 258, 271], "13740": 1, "omit": [1, 21, 119, 149, 266], "l": [1, 86, 87, 89, 90, 92, 93, 96, 98, 99, 100, 101, 105, 111, 114, 115, 206, 207, 209, 211, 230], "libpath": [1, 232], "13704": 1, "13855": 1, "out": [1, 26, 29, 31, 36, 54, 56, 59, 73, 75, 83, 86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 114, 117, 130, 216, 220, 251, 255, 266, 270], "13853": 1, "13846": 1, "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 95, 96, 103, 192, 237, 266, 270, 274], "alia": [1, 108, 190, 206], "13763": 1, "dep": [1, 21, 36, 41, 54, 82, 98, 130, 142, 150, 159, 160, 184, 188, 190, 192, 214, 224, 226, 251, 253], "13762": 1, "cmake_system_nam": [1, 88, 149, 191], "baremet": [1, 152], "13739": 1, "deactiv": [1, 49, 161, 191, 196, 197, 245, 272], "13707": 1, "13597": 1, "extend": [1, 43, 46, 76, 79, 80, 89, 96, 105, 120, 131, 155, 161, 187, 270, 272, 274], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 88, 130, 149, 191, 194, 195, 196, 197, 207, 208, 216, 220, 225, 226, 227, 239, 245, 247, 248], "13607": 1, "preliminari": 1, "dev": [1, 140, 152, 234], "premake5": 1, "13390": 1, "old": [1, 30, 32, 119, 152, 166, 267, 270], "login": [1, 85, 117, 148, 174, 201, 239], "13671": 1, "msg": [1, 144, 158], "13668": 1, "correct": [1, 40, 42, 76, 77, 81, 119, 132, 133, 135, 137, 138, 162, 182, 184, 190, 191, 195, 199, 219, 226, 244, 245, 254, 255, 258, 260, 264], "origin": [1, 4, 6, 8, 13, 24, 59, 61, 88, 101, 119, 123, 133, 148, 152, 194, 195, 220, 230, 246, 255, 258, 274], "13667": 1, "13661": 1, "respond": [1, 73], "forbidden": [1, 74, 104, 106, 123], "13626": 1, "13622": 1, "direct_deploi": [1, 101, 274], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 52, 71, 87, 90, 94, 99, 102, 110, 111, 115, 149, 209, 223, 239, 251, 252, 254, 255, 257, 258, 260, 266], "had": [1, 13, 58, 59, 93, 119, 123, 247, 252, 255, 264, 266, 269], "13662": 1, "13657": 1, "close": [1, 93, 119, 199], "13631": 1, "13618": 1, "full_deploi": [1, 35, 101, 274], "collis": [1, 118, 190, 206, 208], "13610": 1, "13601": 1, "temp": [1, 87], "everyth": [1, 5, 13, 19, 42, 59, 61, 68, 73, 76, 87, 106, 111, 123, 132, 150, 179, 230, 247, 264], "13581": 1, "dictionari": [1, 88, 96, 119, 130, 135, 149, 158, 188, 191, 199, 201], "semant": [1, 119, 152, 253, 268], "13571": 1, "sdk": [1, 26, 35, 88, 149, 152, 182, 183, 185, 208, 220], "13531": 1, "13526": 1, "13505": 1, "legaci": [1, 122, 149, 191, 222], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 50, 117, 119, 135, 149, 243, 244, 251, 261, 271], "third": [1, 2, 14, 15, 52, 59, 60, 99, 119, 139, 153, 201, 230, 258, 265, 266], "parti": [1, 2, 14, 15, 52, 59, 60, 99, 119, 139, 153, 230, 258, 265, 266], "13461": 1, "android": [1, 8, 11, 25, 60, 62, 73, 79, 88, 119, 135, 149, 152, 179, 191, 218, 244], "cmake_legacy_toolchain": [1, 88, 149, 191], "android_use_legacy_toolchain_fil": [1, 88, 149, 191], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 50, 52, 58, 59, 61, 65, 66, 67, 71, 72, 73, 75, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 96, 98, 99, 101, 104, 106, 107, 108, 109, 111, 112, 115, 119, 121, 122, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 152, 154, 155, 156, 158, 161, 177, 178, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 203, 206, 207, 208, 209, 210, 213, 214, 215, 220, 222, 223, 224, 225, 226, 230, 231, 232, 234, 238, 239, 240, 243, 245, 246, 247, 251, 252, 253, 255, 257, 258, 259, 262, 264, 267, 269, 270, 271, 272, 273, 274], "cflag": [1, 45, 88, 94, 99, 135, 149, 150, 185, 191, 207, 208, 211, 215, 220, 225, 226], "cxxflag": [1, 49, 83, 88, 94, 99, 135, 149, 185, 191, 192, 207, 208, 215, 220, 225, 226, 232], "prevent": [1, 117, 119, 191], "13459": 1, "13458": 1, "authent": [1, 3, 59, 76, 109, 110, 148, 151, 153, 154, 174, 201, 238, 239], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 52, 59, 61, 67, 76, 81, 85, 87, 88, 89, 98, 102, 117, 119, 121, 130, 132, 133, 150, 152, 153, 154, 155, 159, 178, 191, 210, 217, 224, 230, 239, 241, 243, 245, 247, 250, 251, 252, 255, 257, 263, 264, 269, 271, 272, 274], "python_requires_extend": [1, 77, 131, 178], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 52, 87, 89, 117, 142, 144, 162, 214, 216, 230, 241, 245, 257, 258, 260, 264, 269, 271], "mydep": [1, 81, 130, 226], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 88, 149, 216, 220], "vs2022": 1, "rather": [1, 8, 50, 81, 88, 134, 149, 152, 208, 226, 256, 266], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 155, 157, 274], "paramet": [1, 31, 54, 65, 85, 135, 155, 160, 169, 171, 174, 180, 182, 183, 186, 188, 189, 190, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 219, 220, 222, 223, 224, 225, 227, 228, 230, 234, 253], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 50, 59, 61, 62, 66, 73, 81, 84, 87, 96, 102, 104, 105, 119, 126, 133, 134, 135, 136, 140, 149, 150, 152, 162, 178, 186, 190, 191, 211, 216, 245, 246, 248, 252, 257, 258, 259, 260, 264, 265, 266, 269, 270, 271, 272], "13544": 1, "subcommand": [1, 95, 103, 158, 274], "underscor": [1, 253], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 88, 132, 149, 189, 191], "13488": 1, "composit": [1, 131, 152, 193], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 188, 206, 257], "autoreconf": [1, 206, 208, 251], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 50, 52, 59, 73, 77, 81, 83, 101, 108, 117, 118, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 150, 152, 155, 158, 159, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 180, 182, 183, 184, 185, 188, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 223, 224, 225, 226, 227, 230, 231, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 265, 266, 269, 270, 271, 272, 273], "mirror": [1, 4, 201], "That": [1, 8, 13, 17, 24, 38, 65, 77, 101, 119, 139, 154, 156, 163, 184, 190, 195, 211, 216, 225, 244, 245, 246, 257, 261, 270, 273, 274], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 108, 109, 149, 150], "inclus": [1, 224], "13336": 1, "13324": 1, "version_rang": [1, 10, 88, 119, 149, 272], "resolve_prereleas": [1, 10, 88, 119, 149, 272], "prereleas": [1, 10, 272], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 76, 94, 99, 109, 150, 152, 191, 220, 243, 245, 253], "13359": 1, "vswhere": [1, 88, 149], "13355": 1, "convers": [1, 78, 85], "13323": 1, "13230": 1, "msbuild": [1, 43, 50, 57, 62, 71, 73, 88, 108, 135, 149, 150, 152, 179, 188, 221, 224, 225, 227, 253], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 73, 123, 130, 134, 148, 173, 265, 272], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 94, 99, 135, 192, 209, 210], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 119, 135, 150, 179, 191, 193, 194, 195, 244, 245, 248, 254, 259], "instanti": [1, 50, 119, 130, 184, 185, 190, 191, 192, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 226, 227, 232], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 152], "13326": 1, "insecur": [1, 88, 110], "ssl": [1, 88, 110, 135, 149, 151, 174, 201, 214], "13270": 1, "conanignor": [1, 88], "13269": 1, "traceback": 1, "vv": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 73, 117], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 73, 153, 154, 201], "13285": 1, "unexpect": [1, 76, 77, 144, 220, 270], "13282": 1, "runtime_typ": [1, 58, 152, 163, 208], "reli": [1, 4, 50, 73, 77, 102, 137, 138, 211, 243, 258, 260], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 50, 54, 56, 60, 66, 67, 77, 79, 84, 86, 87, 91, 96, 98, 99, 101, 105, 108, 109, 119, 129, 133, 137, 138, 150, 159, 162, 170, 178, 184, 185, 188, 189, 190, 191, 196, 197, 199, 207, 208, 209, 211, 214, 215, 216, 217, 224, 225, 227, 232, 235, 242, 243, 244, 248, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272, 273, 274], "pars": [1, 31, 73, 102, 149, 150, 155, 210, 230, 231, 255], "13266": 1, "unifi": [1, 6, 152], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 73, 77, 83, 87, 88, 90, 96, 101, 102, 104, 111, 119, 121, 125, 126, 128, 130, 134, 135, 136, 139, 140, 149, 178, 190, 192, 243, 246, 254, 269, 271, 272, 273], "state": [1, 7, 136, 174, 178, 191, 220, 246], "13211": 1, "13207": 1, "readm": [1, 161, 201, 265], "13186": 1, "13298": 1, "certain": [1, 61, 101, 107, 111, 130, 135, 149, 150, 152, 161, 224, 246, 252, 254, 261], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 61, 106, 258], "drive": [1, 58], "13248": 1, "13191": 1, "gnu17": [1, 42, 94, 99, 109, 150, 152, 186, 243], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 60, 67, 70, 73, 77, 85, 88, 101, 105, 106, 109, 117, 119, 120, 122, 126, 130, 132, 133, 134, 135, 141, 149, 150, 152, 154, 155, 162, 182, 183, 190, 191, 192, 194, 196, 197, 207, 208, 211, 220, 224, 227, 238, 239, 242, 243, 252, 255, 257, 258, 261, 266, 271, 273, 274], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 56, 66, 73, 75, 77, 99, 104, 106, 108, 117, 119, 127, 153, 161, 179, 191, 192, 198, 201, 217, 242, 243, 249, 251, 257, 270, 271], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 50, 52, 54, 56, 58, 59, 60, 66, 68, 89, 90, 99, 101, 106, 116, 119, 131, 133, 152, 158, 179, 184, 185, 190, 203, 213, 225, 243, 245, 247, 248, 251, 253, 255, 257, 262, 265, 266, 271, 272, 274], "13117": 1, "13112": 1, "13110": 1, "13109": 1, "assign": [1, 77, 81, 119, 125, 134, 137, 138, 189, 190, 191, 210, 220, 230, 252, 259], "13099": 1, "ui": [1, 31, 238, 239], "13093": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 152, 274], "presets_prefix": 1, "prepend": [1, 135, 149, 150, 194, 195, 210], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 58, 64, 67, 69, 71, 72, 73, 78, 80, 81, 83, 84, 85, 88, 89, 90, 94, 100, 102, 105, 109, 110, 115, 116, 117, 119, 123, 125, 126, 127, 130, 134, 136, 145, 146, 147, 148, 149, 152, 153, 154, 156, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 185, 191, 192, 194, 199, 206, 208, 209, 211, 213, 214, 215, 219, 220, 225, 235, 236, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 273], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 52, 54, 57, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 76, 77, 78, 83, 87, 89, 99, 108, 109, 118, 119, 120, 121, 125, 126, 128, 129, 130, 131, 134, 135, 139, 144, 149, 150, 152, 155, 158, 159, 160, 161, 162, 163, 178, 180, 183, 184, 185, 186, 189, 191, 199, 206, 208, 214, 215, 216, 217, 219, 220, 224, 226, 230, 232, 234, 235, 236, 241, 242, 243, 245, 247, 248, 249, 252, 255, 257, 258, 260, 261, 262, 263, 264, 265, 267, 274], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 59, 61, 73, 76, 77, 78, 80, 83, 84, 99, 108, 109, 118, 119, 121, 122, 130, 139, 149, 150, 152, 155, 158, 159, 160, 161, 178, 180, 190, 191, 217, 230, 236, 238, 249, 253, 258, 262, 264, 266, 274], "10166": 1, "13084": 1, "hash": [1, 80, 84, 94, 99, 100, 119, 139, 178, 201, 245, 246, 252, 254, 255, 271, 274], "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, 66, 77, 88, 149, 154, 270, 274], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 77, 110, 119, 127, 135, 144, 148, 151, 152, 157, 174, 232, 245, 253, 254, 262, 269, 270], "12913": 1, "system_requir": [1, 94, 99, 120, 130, 234], "12912": 1, "tar": [1, 4, 8, 119, 199, 201], "pax": 1, "python3": [1, 61, 117], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 50, 77, 93, 119, 120, 132, 161, 178, 184, 190, 191, 192, 194, 199, 208, 210, 211, 214, 235, 249, 253, 255, 257, 258, 259, 266], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 62, 66, 81, 83, 84, 87, 89, 93, 98, 101, 103, 105, 107, 117, 118, 119, 121, 122, 123, 124, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 145, 150, 152, 159, 160, 161, 169, 178, 183, 184, 186, 189, 190, 191, 194, 195, 206, 208, 216, 220, 222, 225, 234, 236, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273, 274], "perform": [1, 4, 68, 87, 88, 101, 104, 106, 109, 110, 111, 115, 117, 119, 149, 154, 161, 174, 177, 182, 199, 215, 230, 234, 238, 239, 247, 263, 265, 274], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 56, 73, 119, 191, 243, 245, 247, 248, 259, 264], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 102], "12801": 1, "prev": [1, 13, 31, 94, 96, 99, 102], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 88, 149, 208], "12881": 1, "ref": [1, 13, 19, 40, 45, 52, 76, 91, 94, 96, 99, 117, 119, 130, 133, 140, 142, 145, 157, 159, 162, 167, 170, 255, 264, 265, 266], "12722": 1, "12699": 1, "required_conan_vers": [1, 88, 149], "between": [1, 7, 13, 27, 52, 81, 88, 98, 101, 119, 124, 130, 134, 135, 149, 178, 201, 238, 242, 244, 264, 269, 274], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 81, 153, 191, 238, 247], "12666": 1, "12636": 1, "conaninfo": [1, 24, 84, 87, 243, 248, 252, 260], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 190], "12578": 1, "12525": 1, "api": [1, 6, 27, 68, 73, 77, 79, 119, 150, 155, 158, 161, 238, 239], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 259], "12351": 1, "12379": 1, "reciperefer": [1, 167, 169], "equal": [1, 87, 108, 119, 139, 156, 194, 272], "12506": 1, "compress": [1, 6, 56, 61, 88, 94, 99, 149, 177, 199, 201, 243, 244, 245, 247, 248], "uncompress": [1, 56, 61, 243, 245, 247, 248], "12378": 1, "12475": 1, "proper": [1, 7, 135, 206, 208, 218, 244], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 59, 61, 62, 66, 71, 76, 83, 84, 85, 90, 95, 96, 101, 103, 106, 119, 122, 149, 150, 158, 178, 184, 190, 191, 214, 230, 234, 238, 239, 243, 245, 251, 253, 255, 260, 262, 265, 267, 268, 269, 272, 274], "loos": 1, "12502": 1, "produc": [1, 76, 77, 83, 87, 88, 101, 103, 104, 106, 119, 122, 130, 132, 135, 149, 152, 178, 190, 191, 196, 197, 199, 255, 269], "drop": [1, 50, 101, 150], "compat_app": 1, "12484": 1, "transitive_head": [1, 94, 274], "12508": 1, "transitive_lib": [1, 94, 274], "static": [1, 8, 19, 21, 27, 38, 52, 58, 78, 81, 82, 83, 84, 94, 99, 105, 119, 126, 133, 135, 136, 152, 171, 173, 184, 189, 208, 224, 235, 242, 243, 251, 252, 253, 254, 266, 269, 274], "uncommit": [1, 119], "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 230], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 125, 126, 139, 149, 152], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 52, 81, 83, 108, 119, 120, 123, 144, 149, 150, 178, 190, 194, 206, 211, 245, 247, 272], "char": [1, 29, 42, 56, 203, 243], "12053": 1, "12032": 1, "clicolor_forc": [1, 154], "12028": 1, "12050": 1, "output_fold": [1, 36, 86, 91, 93, 101, 160, 170], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 79, 146], "11675": 1, "11672": 1, "max": [1, 88, 149, 152], "11610": 1, "post_build_fail": 1, "hook": [1, 73, 77, 79, 88, 155], "11593": 1, "pre_gener": [1, 161], "post_gener": [1, 161], "cover": [1, 68, 132, 152, 236, 242, 259, 263], "around": [1, 8, 64, 65, 70, 71, 72, 73, 183, 188, 206, 213, 223, 234, 249], "brought": 1, "back": [1, 2, 10, 18, 58, 60, 73, 81, 88, 107, 149, 273], "11575": 1, "11522": 1, "model": [1, 17, 21, 60, 73, 76, 78, 79, 84, 117, 118, 124, 130, 134, 135, 136, 140, 152, 156, 242, 249, 252, 253], "relationship": [1, 119, 274], "linkag": [1, 245], "autom": [1, 5, 13, 26, 73, 102, 119, 139, 140, 154, 225, 268, 270, 274], "flexibl": [1, 58, 119, 145, 235, 242, 272, 274], "power": [1, 13, 73, 101, 155, 158, 191, 242, 274], "transpar": [1, 4, 11, 37, 67, 243, 264, 274], "pythonapi": 1, "cleaner": [1, 274], "structur": [1, 6, 18, 42, 45, 52, 54, 56, 58, 77, 96, 100, 101, 102, 116, 119, 135, 147, 150, 155, 169, 189, 214, 243, 247, 248, 253, 254, 255, 257, 258, 266, 269, 274], "account": [1, 6, 29, 81, 117, 119, 130, 133, 152, 178, 183, 189, 191, 194, 231, 244, 252, 259, 261, 267, 274], "simpler": [1, 5, 6, 41, 112, 130, 136], "immut": [1, 6, 19, 77, 81, 139, 153, 246, 250, 251, 254, 255, 261, 265, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 52, 54, 56, 58, 60, 67, 73, 86, 89, 91, 93, 101, 104, 105, 106, 110, 113, 114, 115, 119, 121, 123, 125, 126, 130, 132, 133, 134, 135, 139, 141, 142, 217, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 273, 274], "aim": [2, 73, 94, 123, 145, 149, 152, 214, 261], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 50, 54, 56, 59, 60, 68, 73, 77, 86, 87, 93, 101, 102, 113, 117, 119, 121, 127, 132, 135, 137, 138, 139, 149, 152, 154, 160, 163, 180, 185, 190, 216, 217, 225, 227, 235, 238, 239, 240, 243, 244, 248, 251, 258, 264, 270], "engin": [2, 21, 107, 149, 269, 270], "administr": [2, 3, 239], "architect": 2, "adopt": 2, "design": [2, 18, 73, 131, 152, 266, 274], "product": [2, 5, 6, 35, 60, 73, 77, 89, 106, 109, 123, 127, 134, 266], "team": [2, 5, 8, 50, 56, 73, 76, 81, 107, 108, 109, 117, 119, 152, 238, 239, 240, 243, 258], "plan": [2, 96, 130, 135], "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, 50, 52, 54, 56, 58, 59, 61, 62, 66, 68, 77, 78, 81, 82, 83, 84, 87, 96, 98, 101, 102, 105, 106, 107, 108, 117, 119, 122, 124, 126, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 143, 149, 150, 152, 169, 178, 184, 186, 189, 190, 191, 192, 195, 211, 214, 216, 217, 224, 230, 234, 236, 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, 269, 270, 271, 272, 273], "ll": [3, 4, 31, 45, 54, 56, 66, 99, 150, 158, 191, 216, 225, 227, 243, 265], "free": [3, 4, 73, 94, 99, 117, 238, 239, 240], "tab": [3, 66], "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, 50, 52, 54, 56, 58, 59, 60, 63, 66, 67, 68, 70, 73, 76, 77, 78, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 107, 109, 114, 115, 117, 119, 122, 123, 124, 125, 126, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 145, 147, 148, 149, 150, 152, 156, 157, 158, 160, 161, 162, 163, 170, 182, 183, 184, 185, 189, 190, 191, 192, 195, 196, 199, 203, 209, 210, 211, 214, 217, 220, 222, 223, 224, 230, 234, 235, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 272, 273, 274], "imagin": [3, 10, 98, 190, 214, 247, 252, 260], "give": [3, 4, 8, 73, 85, 98, 109, 116, 196, 197], "upload_url": [3, 4, 88, 149], "myteam": [3, 4, 149], "myorg": [3, 4, 149], "next": [3, 26, 29, 45, 73, 84, 106, 119, 208, 224, 230, 244, 250, 251, 252, 259, 273], "anonym": [3, 117, 148, 153, 154], "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, 50, 52, 54, 59, 61, 66, 68, 76, 82, 83, 84, 85, 88, 89, 90, 96, 100, 101, 102, 105, 109, 111, 115, 116, 117, 119, 123, 125, 126, 127, 133, 134, 135, 139, 141, 147, 148, 149, 150, 152, 153, 156, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 190, 191, 192, 199, 206, 208, 209, 211, 213, 214, 215, 219, 220, 225, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 273], "offici": [3, 31, 100, 155, 158, 216, 236, 274], "guid": [3, 4, 60, 235], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 52, 54, 58, 59, 63, 66, 67, 73, 76, 78, 79, 80, 81, 83, 89, 93, 96, 102, 105, 106, 110, 115, 118, 119, 132, 136, 147, 149, 150, 151, 152, 155, 160, 178, 190, 214, 217, 233, 235, 236, 237, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 271, 272, 273], "token": [3, 59, 117, 148, 153, 230], "live": [3, 13, 19, 119, 139, 145, 224, 274], "source_credenti": [3, 4, 79, 146], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 52, 61, 68, 87, 90, 108, 119, 130, 142, 145, 149, 150, 152, 159, 161, 163, 178, 184, 185, 194, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 227, 244, 246, 253, 254, 264, 269, 270], "last": [3, 7, 102, 136, 152, 173, 174, 215, 225, 267, 272, 274], "permiss": [3, 4, 61, 73, 77, 199, 238, 239], "feel": [3, 135], "accord": [3, 45, 66, 67, 83, 139, 150, 183, 190, 191, 227, 254, 272], "With": [3, 4, 7, 17, 21, 35, 36, 50, 61, 66, 73, 148, 150, 152, 203, 216, 245, 251, 259, 264], "common": [4, 6, 8, 13, 17, 18, 27, 35, 52, 76, 77, 83, 87, 88, 102, 119, 128, 129, 130, 134, 135, 138, 152, 155, 157, 158, 178, 183, 217, 223, 230, 234, 245, 246, 253, 260, 267, 268], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 59, 73, 74, 81, 83, 87, 89, 102, 104, 106, 108, 109, 117, 121, 122, 123, 126, 127, 128, 129, 130, 131, 133, 135, 136, 139, 142, 145, 150, 153, 178, 220, 235, 244, 246, 248, 250, 251, 254, 255, 259, 261, 265, 269, 270, 271, 272, 273], "canon": [4, 190], "page": [4, 27, 60, 119, 239], "keep": [4, 6, 18, 26, 59, 68, 77, 106, 107, 131, 152, 161, 178, 189, 190, 191, 199, 243, 246, 247, 258, 259, 267, 273, 274], "record": 4, "traceabl": [4, 6, 73, 259, 268, 273, 274], "purpos": [4, 7, 61, 77, 119, 126, 128, 130, 131, 149, 153, 155, 230, 234, 235, 236, 241, 259, 266, 270, 273, 274], "howev": [4, 5, 21, 35, 39, 40, 61, 62, 68, 96, 99, 117, 122, 145, 149, 152, 161, 190, 246, 247, 248, 252, 255, 269, 270, 271, 273], "often": [4, 29, 132, 272], "term": [4, 7, 253], "futur": [4, 7, 36, 59, 69, 76, 77, 78, 96, 108, 109, 119, 150, 156, 157, 160, 162, 178, 202, 247, 255], "mai": [4, 8, 19, 21, 26, 61, 73, 76, 90, 116, 119, 121, 125, 126, 135, 152, 184, 190, 191, 231, 240, 242, 245, 247, 248, 254, 255, 261], "encount": [4, 119], "thu": [4, 8, 77, 117, 119, 122, 128, 129, 206, 209, 274], "retriev": [4, 6, 7, 8, 59, 77, 87, 90, 99, 117, 119, 124, 201, 230, 243, 245, 248, 249, 250, 253, 255, 258, 271], "addition": [4, 8, 99, 123, 136, 144, 149, 190, 211], "alongsid": [4, 214, 235], "infrastructur": [4, 6], "trigger": [4, 144, 274], "sha256": [4, 119, 200, 201, 255], "signatur": [4, 160, 162, 163, 200], "few": [4, 36, 83, 154, 155, 157, 178, 259], "download_url": [4, 88, 149], "repres": [4, 6, 77, 81, 83, 84, 119, 190, 191, 192, 195, 220, 234, 245, 271, 274], "fetch": [4, 6, 61, 73, 85, 87, 100, 139, 230, 245], "either": [4, 8, 36, 108, 117, 119, 121, 130, 134, 135, 136, 144, 154, 162, 173, 177, 180, 194, 246, 272], "present": [4, 13, 36, 45, 50, 76, 78, 87, 88, 100, 101, 119, 136, 152, 154, 177, 186, 248], "prefer": [4, 47, 48, 61, 66, 81, 96, 153, 183, 191, 208, 230, 258, 264, 265, 266, 272], "ahead": [4, 10], "Being": [4, 178], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 50, 52, 59, 61, 73, 76, 77, 78, 81, 83, 87, 89, 96, 98, 101, 102, 104, 105, 106, 108, 117, 119, 122, 126, 129, 130, 132, 133, 134, 135, 138, 139, 140, 149, 150, 152, 169, 180, 194, 208, 220, 224, 225, 240, 245, 253, 258, 259, 264, 265, 269, 273], "exclude_url": [4, 87, 88, 149], "start": [4, 5, 6, 17, 29, 45, 54, 56, 59, 61, 77, 96, 108, 118, 119, 134, 135, 150, 152, 153, 158, 161, 169, 199, 201, 211, 216, 220, 239, 240, 243, 253, 264, 265, 266, 269, 270, 271, 273, 274], "begin": [4, 73, 88, 149, 150, 242, 249], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 50, 66, 73, 77, 83, 84, 106, 117, 119, 126, 129, 130, 132, 134, 135, 139, 145, 148, 149, 150, 152, 158, 163, 180, 182, 191, 210, 216, 230, 243, 245, 246, 264, 265, 266, 270, 271, 273], "A": [4, 6, 13, 47, 52, 58, 68, 73, 83, 87, 88, 90, 94, 98, 99, 102, 105, 106, 111, 115, 117, 119, 123, 125, 127, 134, 136, 138, 139, 140, 144, 149, 150, 157, 161, 169, 174, 177, 178, 188, 191, 194, 199, 201, 205, 222, 225, 234, 239, 243, 246, 249, 251, 252, 254, 256, 257, 258, 262, 264, 267, 270, 272, 274], "put": [4, 6, 17, 29, 36, 61, 87, 88, 93, 108, 119, 130, 132, 135, 139, 148, 149, 150, 155, 162, 195, 214, 215, 217, 253, 259, 262, 266, 267, 271], "its": [4, 13, 24, 29, 31, 36, 39, 40, 50, 58, 59, 61, 62, 73, 76, 80, 82, 83, 84, 85, 86, 87, 89, 90, 96, 100, 101, 109, 111, 119, 122, 130, 134, 135, 136, 139, 141, 148, 149, 150, 158, 160, 161, 178, 190, 191, 194, 206, 225, 242, 244, 246, 247, 253, 262, 264, 266, 267, 270], "strongli": [4, 8, 61, 81, 119, 122, 153, 220, 255], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 54, 56, 59, 62, 73, 77, 81, 83, 88, 96, 101, 102, 106, 109, 117, 119, 122, 127, 128, 133, 134, 136, 137, 139, 149, 150, 154, 161, 178, 190, 202, 234, 238, 239, 240, 248, 251, 253, 258, 264, 270, 272], "below": [4, 5, 6, 8, 66, 73, 81, 83, 84, 87, 124, 136, 139, 147, 149, 182, 184, 185, 191, 199, 208, 211, 214, 252], "relev": [4, 21, 58, 60, 64, 65, 69, 70, 71, 72, 83, 149, 250, 251, 252, 254, 255, 259, 261, 262, 270], "els": [4, 6, 17, 26, 31, 39, 40, 52, 73, 117, 119, 133, 134, 135, 139, 150, 177, 186, 234, 245, 247, 250, 251, 254, 259, 261], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 52, 54, 61, 65, 73, 76, 88, 94, 96, 101, 108, 117, 119, 122, 124, 130, 132, 134, 135, 145, 150, 151, 152, 158, 160, 184, 185, 190, 191, 203, 208, 215, 220, 232, 234, 244, 247, 252, 253, 254, 255, 258, 259, 264, 270, 271, 272], "blob": [4, 68, 274], "belong": [4, 87, 90, 102, 106, 119, 177, 179, 190, 199, 211, 244, 253, 259, 262, 274], "artifactori": [4, 13, 62, 73, 117, 155, 238, 240], "describ": [4, 5, 6, 8, 10, 45, 56, 80, 82, 85, 97, 119, 130, 132, 138, 148, 186, 191, 192, 220, 266, 273], "approach": [4, 6, 8, 13, 29, 41, 50, 59, 73, 76, 77, 78, 81, 83, 101, 119, 132, 133, 134, 135, 136, 137, 139, 150, 152, 158, 178, 188, 190, 202, 230, 244, 251, 258, 259, 270, 273], "deal": [4, 9, 78, 122, 134], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 52, 54, 58, 59, 73, 82, 83, 84, 87, 90, 99, 105, 108, 111, 117, 119, 130, 131, 134, 136, 145, 149, 152, 162, 178, 184, 185, 188, 190, 191, 195, 196, 199, 214, 224, 234, 245, 254, 255, 260, 261, 264, 266, 269, 270, 271, 273, 274], "travers": [4, 147], "until": [4, 8, 66, 77, 147, 148, 153, 156, 253], "client": [4, 7, 13, 31, 50, 66, 73, 76, 85, 88, 109, 116, 117, 119, 148, 161, 239, 240, 245, 253], "regard": [4, 73, 78, 105, 152, 161, 199, 260], "capabl": [4, 7, 100, 101, 150, 191, 247, 274], "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, 50, 52, 54, 56, 58, 59, 68, 73, 75, 76, 78, 81, 82, 84, 87, 88, 89, 90, 94, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 119, 123, 130, 131, 134, 135, 136, 138, 139, 142, 143, 145, 149, 150, 151, 152, 159, 160, 161, 178, 184, 186, 188, 189, 190, 191, 194, 196, 197, 199, 201, 203, 206, 209, 211, 214, 220, 222, 224, 225, 226, 227, 230, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 272, 273, 274], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 52, 59, 61, 66, 73, 76, 82, 83, 84, 89, 96, 101, 102, 104, 105, 106, 108, 116, 117, 119, 123, 130, 140, 145, 150, 152, 178, 183, 184, 190, 191, 196, 201, 211, 214, 216, 243, 244, 246, 247, 248, 251, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 270, 272, 273, 274], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 61, 76, 88, 94, 99, 109, 154, 209, 243, 245, 251, 252, 253, 254, 255, 257, 260], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 50, 52, 54, 56, 58, 82, 87, 119, 127, 132, 133, 190, 199, 214, 243, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271], "net": [4, 88, 94, 99, 117, 149], "fossil": 4, "gz": [4, 119, 199, 201], "madler": 4, "v1": [4, 186], "newli": 4, "therefor": [4, 8, 66, 122, 199, 234, 257], "dure": [4, 8, 26, 59, 66, 78, 119, 126, 136, 188, 220, 253, 265, 272], "address": [4, 8, 134, 152, 268], "scenario": [4, 7, 40, 41, 42, 59, 61, 83, 119, 121, 122, 135, 136, 150, 156, 258, 274], "ce": [4, 73, 238], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 53, 55, 58, 59, 65, 70, 73, 76, 77, 89, 96, 108, 117, 119, 120, 121, 123, 131, 136, 145, 158, 161, 178, 213, 214, 215, 217, 235, 238, 240, 242, 245, 247, 249, 253, 255, 256, 257, 261, 264, 265, 272, 273], "suffici": [4, 117], "instruct": [4, 61, 66, 76, 120, 133, 152, 245], "author": [4, 6, 8, 50, 59, 94, 131, 153, 253], "agent": [4, 59, 96], "done": [5, 6, 36, 38, 50, 52, 73, 76, 77, 80, 96, 104, 106, 111, 117, 121, 122, 123, 130, 135, 136, 138, 139, 148, 150, 152, 154, 159, 160, 161, 170, 178, 182, 190, 191, 195, 196, 197, 206, 237, 244, 246, 247, 251, 253, 254, 262, 264, 265, 266, 267, 272, 273, 274], "much": [5, 6, 77, 121, 128, 139, 178, 253, 265, 274], "fulli": [5, 35, 59, 73, 104, 106, 119, 136, 137, 138, 160, 184, 185, 191, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 226, 227, 232, 264, 274], "fork": [5, 8, 119], "maintain": [5, 8, 18, 73, 96, 104, 119, 134, 145, 150, 161, 211, 246, 267], "pr": [5, 42, 49, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 150, 214, 216, 244], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 54, 56, 59, 61, 62, 66, 73, 75, 76, 78, 82, 84, 87, 88, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 115, 116, 117, 119, 123, 128, 130, 131, 133, 135, 136, 138, 142, 145, 149, 150, 151, 152, 159, 162, 178, 184, 190, 196, 197, 201, 202, 206, 209, 211, 214, 222, 224, 227, 243, 244, 245, 246, 247, 248, 250, 253, 257, 258, 264, 269, 270, 271, 272, 273], "13": [5, 6, 13, 24, 35, 42, 82, 84, 87, 90, 98, 99, 101, 102, 105, 109, 111, 112, 115, 116, 123, 145, 150, 152, 159, 209, 243, 246, 250], "part": [5, 17, 21, 31, 38, 39, 40, 42, 58, 59, 73, 83, 88, 89, 90, 102, 111, 119, 120, 123, 126, 128, 129, 132, 133, 134, 136, 149, 150, 152, 178, 236, 238, 250, 251, 252, 253, 254, 255, 261, 262, 265, 266, 271, 273], "mostli": [5, 31, 45, 119, 136, 152, 161, 234], "proprietari": [5, 73, 153, 210], "idea": [5, 130, 149, 270, 274], "further": [5, 81, 119, 123, 152, 191, 274], "soon": [5, 62, 73, 274], "straightforward": [5, 80, 89, 101, 130, 263, 269], "mani": [5, 6, 45, 49, 50, 59, 61, 68, 73, 76, 77, 78, 83, 104, 108, 130, 150, 178, 195, 241, 264, 267, 270, 274], "advantag": [5, 61, 159, 185, 225, 247], "mitig": [5, 50, 195], "risk": [5, 50, 59, 76, 149, 272], "befor": [5, 6, 7, 10, 26, 45, 54, 56, 59, 115, 119, 121, 125, 130, 132, 139, 142, 150, 160, 161, 178, 195, 199, 208, 213, 216, 220, 226, 230, 234, 244, 245, 247, 248, 251, 252, 255, 259, 266, 270, 274], "No": [5, 24, 50, 119, 126, 245, 257, 273], "central": [5, 73, 236], "outag": 5, "adapt": [5, 80, 108, 109, 119], "perfectli": [5, 50, 76, 145], "minut": [5, 102, 111], "week": [5, 102, 111, 267], "appli": [5, 8, 49, 50, 52, 77, 78, 83, 85, 86, 87, 89, 93, 96, 98, 99, 101, 104, 105, 106, 109, 114, 117, 119, 121, 122, 126, 129, 130, 135, 139, 149, 150, 152, 184, 191, 193, 203, 216, 244, 245, 246, 248, 249, 251, 252, 257, 258, 261, 269, 272, 274], "wouldn": [5, 50, 61, 66, 119, 188], "elimin": [5, 264], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 54, 155], "diff": [5, 52, 98, 102, 203], "trim": [5, 105], "fire": [5, 96, 139, 178, 266], "effici": [5, 35, 56, 73, 81, 119, 134, 224, 243, 274], "thank": [5, 26, 39, 40, 45, 56, 83, 155, 158, 258], "secondari": [5, 73], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 59, 66, 68, 77, 96, 108, 123, 125, 126, 131, 134, 135, 148, 150, 159, 160, 190, 192, 199, 206, 216, 225, 236, 239, 240, 242, 243, 244, 246, 249, 252, 253, 254, 260, 262, 268, 269, 272, 273], "good": [5, 19, 59, 73, 74, 81, 106, 108, 117, 119, 121, 123, 124, 130, 131, 135, 136, 149, 169, 225, 227, 238, 250, 251, 254, 261, 265, 269, 270, 273], "subject": [6, 7, 13, 31, 73, 94, 100, 116, 123, 125, 126, 127, 134, 148, 150, 152, 153, 156, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 190, 192, 209, 213, 214, 215, 216], "stabil": [6, 7, 13, 31, 68, 73, 100, 102, 109, 116, 123, 125, 126, 127, 134, 147, 148, 150, 152, 153, 156, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 192, 199, 209, 213, 214, 215, 267], "typic": [6, 8, 13, 27, 39, 40, 50, 58, 59, 61, 66, 76, 83, 119, 125, 128, 129, 130, 132, 135, 136, 150, 153, 162, 182, 183, 189, 190, 192, 195, 211, 217, 223, 228, 234, 244, 245, 247, 251, 252, 254, 257, 258, 259, 264, 265, 267, 274], "compos": [6, 101, 135, 149, 150, 166, 173, 183, 191, 194, 230, 257], "But": [6, 7, 13, 29, 39, 40, 50, 59, 73, 83, 93, 102, 107, 119, 122, 130, 141, 143, 144, 150, 158, 162, 190, 211, 214, 244, 246, 247, 253, 257, 259, 269, 270, 271], "normal": [6, 35, 42, 70, 76, 111, 119, 127, 158, 161, 194, 264, 272], "consumpt": [6, 21, 73, 120, 145], "complianc": [6, 122, 274], "technic": [6, 119], "busi": [6, 274], "reason": [6, 8, 41, 50, 59, 76, 77, 89, 93, 106, 139, 153, 259, 266, 269, 271], "suit": [6, 145, 150, 217, 251, 257], "heavi": [6, 29, 73, 119, 121, 157], "pdb": [6, 29], "coverag": [6, 190, 274], "sanit": 6, "analysi": [6, 88, 149], "exact": [6, 47, 48, 77, 81, 87, 104, 106, 111, 119, 122, 150, 174, 185, 199, 225, 230, 246, 253, 264, 265, 266, 271, 273], "relat": [6, 45, 61, 70, 78, 119, 130, 149, 174, 185, 191, 199, 211, 220, 247, 252, 253, 265, 274], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 50, 59, 61, 66, 73, 75, 76, 83, 88, 96, 101, 108, 111, 117, 119, 121, 128, 132, 133, 134, 142, 143, 149, 154, 161, 178, 190, 191, 194, 217, 234, 238, 239, 247, 251, 252, 254, 258, 259, 264, 268, 269, 271, 274], "regul": 6, "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 59, 76, 84, 89, 111, 121, 128, 129, 130, 133, 134, 135, 148, 153, 154, 158, 195, 243, 246, 248, 252, 253, 257, 264, 266, 269, 270, 272, 274], "lot": [6, 8, 261, 272, 274], "impact": [6, 8], "experi": [6, 119, 121, 240, 272, 274], "cost": [6, 77], "furthermor": [6, 54, 77, 274], "append": [6, 26, 49, 61, 88, 117, 119, 135, 137, 138, 149, 150, 156, 162, 188, 190, 191, 194, 195, 199, 207, 208, 209, 225, 226, 259], "highlight": [6, 26, 144, 194, 214, 255], "probabl": [6, 31, 191, 217, 224, 246], "scan": [6, 204], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 56, 58, 59, 62, 66, 73, 75, 78, 81, 82, 87, 90, 94, 96, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 116, 117, 119, 123, 130, 131, 134, 136, 139, 140, 142, 143, 145, 150, 152, 159, 160, 178, 188, 189, 190, 191, 194, 196, 197, 199, 201, 203, 206, 211, 214, 220, 222, 224, 225, 226, 227, 234, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 272, 273, 274], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 54, 58, 59, 81, 83, 101, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 152, 153, 156, 157, 158, 159, 160, 161, 162, 163, 178, 180, 182, 183, 184, 185, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 273], "Or": [6, 88, 121, 130, 150, 191, 210, 226, 232], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 52, 59, 88, 145, 149, 179, 187, 191, 217, 244, 247, 253, 255, 257, 259, 262, 264, 265, 266], "mybuild": [6, 119], "recipe_fold": [6, 16, 18, 59, 94, 99, 128, 129, 130, 131, 137, 138], "dst": [6, 17, 38, 58, 119, 127, 199, 260], "join": [6, 16, 17, 18, 19, 36, 39, 40, 52, 58, 76, 119, 129, 131, 132, 133, 135, 137, 138, 141, 150, 161, 162, 178, 190, 191, 194, 199, 217, 247, 251, 257, 258, 259, 260, 262, 266], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 54, 56, 62, 64, 65, 69, 70, 71, 72, 73, 77, 83, 85, 89, 102, 103, 105, 119, 124, 133, 134, 136, 137, 146, 149, 156, 178, 189, 191, 192, 199, 217, 226, 234, 235, 243, 250, 259, 262, 263, 265, 269, 270], "mylog": 6, "build_fold": [6, 17, 58, 77, 94, 99, 100, 130, 132, 133, 161, 189, 199, 214, 219, 257, 258, 259, 260], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 50, 58, 61, 66, 78, 81, 83, 87, 96, 97, 99, 101, 104, 106, 108, 111, 117, 119, 121, 131, 134, 135, 139, 141, 144, 145, 150, 152, 160, 162, 178, 184, 190, 191, 205, 220, 234, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 260, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "clutter": [6, 217], "accross": [6, 81], "sai": [6, 13, 16, 18, 38, 41, 52, 83, 87, 98, 101, 106, 119, 149, 150, 184, 224, 252, 266], "no_copy_sourc": [6, 121, 257], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 54, 58, 73, 76, 82, 83, 84, 87, 96, 97, 102, 107, 108, 119, 139, 150, 152, 153, 160, 178, 180, 185, 190, 191, 195, 214, 234, 243, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 263, 264, 266, 269, 270, 271, 273, 274], "post_export": [6, 161], "post_sourc": [6, 161], "post_build": [6, 155, 161], "similar": [6, 8, 18, 58, 61, 68, 73, 90, 93, 106, 115, 117, 119, 132, 140, 150, 158, 178, 190, 192, 194, 230, 243, 250, 252, 255, 257, 266, 272], "To": [6, 24, 26, 29, 31, 36, 56, 59, 61, 66, 67, 76, 102, 106, 109, 111, 119, 123, 131, 132, 139, 144, 149, 150, 153, 156, 161, 184, 189, 190, 191, 196, 197, 199, 206, 207, 208, 217, 243, 245, 247, 248, 254, 255, 264, 266, 270, 272, 273], "achiev": [6, 8, 39, 59, 77, 121, 134, 160, 185, 190, 199, 225, 242, 247, 253, 257, 270, 273, 274], "didn": [6, 47, 50, 59, 76, 82, 253, 257], "far": [6, 245, 246, 247, 250, 252, 264, 274], "r": [6, 13, 31, 35, 59, 68, 76, 82, 84, 86, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 111, 112, 114, 115, 230, 239, 241, 246, 267, 271], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 257], "By": [6, 21, 41, 48, 73, 76, 81, 86, 87, 88, 89, 93, 96, 98, 99, 101, 102, 105, 109, 114, 115, 117, 119, 135, 148, 149, 154, 178, 190, 191, 194, 206, 208, 209, 211, 213, 220, 230, 234, 270, 271], "situat": [6, 13, 35, 39, 40, 83, 104, 111, 119, 121, 133, 134, 138, 150, 178, 190, 211, 268, 269], "sometim": [6, 7, 29, 52, 76, 89, 119, 140, 246, 251, 255, 257, 263], "mix": [6, 83, 178], "recov": [6, 59, 199], "previous": [6, 13, 24, 31, 36, 61, 101, 106, 148, 150, 152, 191, 194, 216, 248, 255, 258, 269], "under": [6, 8, 36, 64, 69, 71, 72, 73, 84, 117, 119, 132, 134, 150, 158, 161, 203, 220, 230, 234, 240, 243, 253, 258, 263, 272], "collect": [6, 36, 99, 101, 130, 135, 139, 199, 209, 252, 261], "recal": [6, 50, 104, 106, 111, 123, 126, 150, 154, 184, 188, 191], "At": [6, 10, 21, 26, 66, 73, 77, 106, 119, 130, 152, 199, 207, 215, 216], "moment": [6, 7, 35, 77, 117, 119, 130, 135, 152, 207, 215], "addit": [6, 8, 61, 62, 88, 89, 103, 119, 136, 149, 150, 152, 174, 181, 191, 199, 201, 208, 220, 225, 226, 227, 247, 248, 254], "quit": [6, 149, 178, 240], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 77, 101, 106, 119, 123, 128, 129, 131, 133, 139, 145, 184, 185, 242, 251, 252, 270, 272], "metatada": 6, "best": [6, 7, 13, 35, 59, 81, 83, 87, 89, 102, 104, 109, 121, 122, 123, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 139, 142, 150, 153, 173, 178, 248, 259, 269, 271, 273], "mandatori": [6, 36, 50, 58, 83, 104, 108, 119, 157, 160, 178, 253], "frequent": [6, 8, 199], "excepcion": 6, "decompress": [6, 199, 201, 243, 248, 263], "consid": [6, 7, 8, 21, 45, 73, 81, 82, 83, 87, 96, 119, 122, 124, 156, 184, 186, 191, 220, 247, 271], "zip": [6, 8, 19, 52, 88, 109, 115, 119, 139, 153, 199, 201, 238, 239, 249, 265], "yourself": [6, 58], "categori": [6, 244], "illustr": [6, 82, 273], "later": [6, 7, 13, 26, 66, 68, 89, 96, 97, 99, 119, 122, 126, 129, 135, 144, 150, 174, 199, 230, 236, 241, 246, 247, 251, 252, 258, 268, 270], "necessarili": [6, 119, 270], "ton": 6, "assum": [6, 29, 35, 66, 73, 77, 81, 82, 87, 90, 98, 102, 111, 115, 119, 131, 135, 140, 150, 152, 154, 156, 184, 190, 214, 224, 243, 245, 247, 248, 273], "stage": [6, 26, 61, 89, 93, 152, 161], "applic": [6, 8, 27, 38, 45, 48, 54, 56, 58, 61, 73, 76, 82, 83, 99, 119, 123, 134, 136, 142, 190, 191, 197, 199, 211, 224, 235, 240, 242, 243, 248, 249, 253, 256, 257, 259, 262, 264, 269, 274], "cp": [6, 35, 59], "todo": [6, 169], "hear": 6, "feedback": [6, 73, 78, 272], "continu": [7, 73, 77, 78, 104, 117, 237, 266, 270], "conveni": [7, 13, 68, 102, 108, 119, 139, 140, 150, 160, 163, 178, 190, 194, 196, 197, 246, 259, 262], "recent": [7, 21, 102, 111, 267], "transfer": [7, 8, 50, 117, 274], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 102], "b": [7, 21, 24, 29, 42, 52, 61, 86, 87, 89, 93, 96, 98, 99, 101, 105, 109, 114, 139, 149, 203, 209, 214, 244, 251, 252, 254, 255, 257, 260, 266], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "well": [7, 59, 73, 75, 93, 102, 116, 119, 132, 152, 188, 190, 191, 211, 220, 253, 274], "pkg773791b8c97aa": 7, "substitut": [7, 154, 234], "storag": [7, 73, 87, 117, 149, 155, 201, 240, 271], "transitori": 7, "strategi": [7, 8, 59, 134, 139, 265, 274], "proof": 7, "stabl": [7, 61, 102, 108, 109, 119, 149, 150], "expect": [7, 10, 42, 45, 59, 77, 93, 98, 101, 119, 121, 139, 149, 152, 200, 217, 253, 255, 265, 271], "fantast": 8, "1500": 8, "contribut": [8, 73, 195, 203, 235, 236], "great": [8, 61, 73, 76, 239, 274], "knowledg": [8, 60, 73, 76], "wide": [8, 61, 83, 245, 247, 248, 253], "variant": [8, 69], "On": [8, 45, 58, 83, 117, 140, 152, 216, 240, 243, 244, 245, 253], "top": [8, 136, 150, 230], "contributor": [8, 73], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 90, 119, 191, 245], "snapshot": [8, 246, 270], "contrari": 8, "e": [8, 42, 61, 73, 76, 87, 90, 91, 94, 96, 98, 99, 101, 102, 105, 108, 111, 115, 117, 119, 123, 149, 150, 151, 152, 182, 186, 188, 191, 199, 206, 208, 209, 211, 214, 220, 224, 225, 234, 254, 255, 274], "g": [8, 35, 42, 47, 48, 76, 86, 87, 90, 91, 96, 98, 99, 101, 102, 105, 108, 111, 115, 117, 119, 149, 150, 151, 152, 159, 170, 182, 186, 188, 191, 196, 199, 206, 208, 209, 211, 214, 220, 224, 225, 234, 243, 244, 245, 247, 248, 255, 264, 265, 266], "opencv": [8, 117, 140, 157], "greater": 8, "remain": [8, 117, 119, 154, 184, 194, 220], "older": [8, 73, 104, 107, 271, 272, 273], "push": [8, 59, 73, 230], "ecosystem": [8, 78, 83, 216], "hand": [8, 73, 83, 105, 121, 140], "combin": [8, 86, 89, 96, 98, 99, 101, 105, 107, 109, 114, 133, 139, 273], "mean": [8, 13, 29, 31, 35, 39, 40, 50, 61, 66, 73, 76, 77, 81, 82, 83, 87, 90, 98, 99, 100, 101, 102, 111, 115, 119, 121, 123, 126, 130, 134, 135, 139, 142, 145, 150, 152, 154, 156, 157, 169, 177, 178, 184, 190, 194, 195, 199, 206, 208, 217, 234, 245, 246, 257, 261, 263, 266, 269, 270, 271, 272], "languag": [8, 38, 42, 45, 49, 54, 56, 73, 185, 243], "pip": [8, 59, 117, 240], "pypi": [8, 61], "npm": 8, "cargo": 8, "discourag": [8, 87, 119, 153, 178, 220, 255], "unconstrain": 8, "manner": [8, 264], "guidelin": [8, 60, 61, 73, 74, 179], "seri": [8, 119, 263], "highli": [8, 24, 31, 36, 45, 54, 56], "mention": [8, 94, 99, 134, 136, 150, 184, 190, 208, 215, 220, 226, 251, 261, 266, 274], "earlier": [8, 73, 272], "caus": [8, 77, 119, 123, 136, 142, 190, 211, 253, 255, 269, 270, 271], "solver": 8, "actual": [8, 13, 19, 39, 40, 73, 76, 83, 93, 111, 115, 121, 130, 136, 140, 150, 152, 177, 195, 196, 197, 199, 234, 241, 246, 266, 269, 270, 273], "4": [8, 10, 21, 26, 48, 54, 76, 81, 82, 99, 102, 106, 116, 117, 119, 124, 130, 134, 140, 145, 149, 150, 152, 178, 191, 214, 244, 247, 250, 257, 267, 273], "5": [8, 10, 66, 76, 81, 88, 96, 101, 104, 105, 106, 107, 119, 123, 130, 134, 150, 152, 163, 201, 224, 246, 270, 272, 273], "greatli": [8, 274], "encourag": [8, 73, 119, 253, 265], "consist": [8, 18, 81, 83, 88, 89, 269, 270, 273, 274], "rust": 8, "technologi": [8, 152], "upstream": [8, 59, 119, 123, 130, 136, 177, 190, 264, 269], "period": [8, 267], "downtim": 8, "schedul": 8, "effort": [8, 130, 274], "made": [8, 87, 274], "unschedul": 8, "rare": [8, 121, 135, 137], "treat": [8, 88, 136, 149, 152, 199], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 117, 152, 238, 240], "strong": [8, 73, 83, 150], "uptim": 8, "protect": [8, 61, 118, 152], "transient": 8, "network": [8, 21, 88, 117, 146], "extern": [8, 19, 26, 49, 61, 249, 253, 255, 258, 260, 271], "These": [8, 21, 31, 45, 71, 73, 81, 88, 89, 101, 117, 128, 129, 130, 132, 144, 146, 149, 150, 153, 154, 158, 174, 189, 191, 192, 206, 207, 211, 220, 244, 245, 252, 253, 257, 258, 262, 266, 270, 274], "industri": [8, 78], "financ": 8, "robot": 8, "embed": [8, 73, 81, 82, 119, 136, 152], "stronger": 8, "licens": [8, 36, 56, 73, 94, 99, 100, 101, 108, 128, 129, 130, 131, 133, 161, 238, 243, 249, 253, 261, 265, 271], "medic": 8, "automot": 8, "advis": [8, 137, 138, 150], "instanc": [8, 31, 42, 66, 94, 99, 117, 119, 123, 132, 133, 134, 149, 150, 158, 180, 182, 186, 190, 191, 194, 195, 196, 197, 208, 216, 220, 222, 223, 224, 227, 230, 254, 262], "backport": [8, 203, 274], "suitabl": [8, 152], "review": [8, 66, 256, 257, 259, 266], "tight": 8, "subsect": 8, "come": [10, 58, 61, 130, 150, 158, 186, 191, 211, 220, 239, 245, 258, 274], "glanc": 10, "becom": [10, 61, 83, 128, 129, 178, 271, 274], "unfeas": 10, "benefit": 10, "interest": [10, 13, 73, 87, 89], "pick": [10, 246], "action": [10, 31, 54, 59, 66, 117, 246, 254], "summar": [10, 78, 274], "libpng": [10, 96, 100, 184], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 63, 67, 68, 73, 77, 84, 139, 246, 253, 265, 269], "invoc": [10, 13, 36, 64, 65, 70, 71, 72, 77, 121, 144, 155, 157, 182, 183, 184, 185, 188, 191, 196, 206, 213, 214, 223, 225], "8": [10, 76, 81, 101, 112, 119, 124, 130, 150, 152, 183, 196, 197, 199, 203, 220, 224, 225, 227, 246, 250, 251, 252, 261, 262, 272], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 54, 61, 73, 76, 81, 102, 116, 117, 124, 139, 142, 152, 184, 203, 210, 244, 246, 247, 248], "40": [10, 102, 271], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 52, 76, 81, 88, 105, 123, 124, 130, 145, 149, 150, 152, 201, 244, 272], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 73, 82, 84, 90, 101, 119, 130, 145, 211, 214], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 102, 258], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 82, 84, 99, 102, 123, 152], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 52, 54, 56, 66, 93, 96, 107, 128, 136, 145, 191, 217, 224, 241, 243, 256, 257, 259, 262, 264, 266, 269, 272], "usual": [10, 61, 119, 136, 141, 150, 155, 160, 184, 194, 264, 266, 270], "behaviour": [10, 117, 150, 190, 234, 252, 253, 254], "googl": [11, 42, 43, 54, 65, 79, 88, 149, 179, 203, 213, 214, 215], "ndk": [11, 25, 26, 63, 119, 135, 180, 191, 220, 244], "macro": [11, 37, 45], "modul": [11, 37, 45, 61, 68, 117, 119, 130, 131, 150, 155, 159, 178, 190, 214], "concaten": [13, 90, 115], "11": [13, 24, 56, 76, 84, 87, 88, 94, 98, 101, 102, 111, 112, 119, 130, 136, 145, 149, 150, 151, 152, 159, 184, 190, 196, 197, 203, 206, 211, 214, 224, 227, 243, 244, 245, 246, 247, 248, 250, 251, 257, 261, 262, 265, 272], "sent": 13, "12": [13, 21, 24, 26, 27, 94, 102, 111, 112, 145, 150, 152, 186, 203, 211, 220, 240, 246, 257, 258, 271], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 105], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 102], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 52, 58, 59, 61, 72, 76, 83, 84, 87, 88, 90, 94, 98, 99, 100, 102, 109, 111, 115, 119, 122, 125, 126, 131, 134, 135, 140, 143, 149, 150, 152, 160, 163, 171, 180, 182, 183, 184, 185, 188, 190, 191, 194, 196, 197, 206, 207, 208, 209, 211, 213, 214, 215, 216, 220, 223, 224, 225, 226, 227, 232, 234, 243, 244, 245, 246, 247, 251, 253, 255, 257, 258, 259, 262, 270, 271], "x86_64": [13, 24, 26, 27, 35, 42, 58, 76, 83, 84, 94, 98, 102, 109, 125, 132, 140, 150, 152, 160, 163, 183, 184, 186, 191, 196, 197, 234, 243, 244, 245, 247, 248, 251, 253, 258, 259, 262, 265, 270, 271], "singl": [13, 26, 47, 48, 50, 73, 81, 85, 90, 96, 106, 109, 119, 156, 161, 174, 184, 188, 189, 190, 191, 192, 196, 197, 199, 220, 224, 247, 255, 258, 266, 274], "almost": [13, 81, 85], "myremot": [13, 90, 111, 115, 117, 148, 267, 271], "slow": 13, "promot": 13, "magnitud": 13, "dedupl": 13, "One": [13, 73, 76, 119, 159, 185, 191, 199, 220, 225, 244, 251], "mypkg": [13, 50, 83, 87, 101, 108, 119, 137, 139, 140, 150, 159, 190, 194, 214], "cmake_lib": [13, 27, 82, 87, 108, 189, 253, 258, 271], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 87, 271], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 83, 94, 96, 100, 152], "known": [13, 50, 152, 201, 246, 257, 274], "destruct": 13, "natur": [13, 83, 269, 271], "cannot": [13, 27, 42, 59, 77, 83, 86, 89, 96, 98, 99, 101, 103, 104, 105, 114, 119, 120, 121, 122, 131, 139, 143, 145, 149, 154, 158, 178, 186, 190, 191, 192, 245, 253, 257, 258, 263, 269, 270], "OR": [13, 26, 87, 90, 102, 111, 115, 171, 226, 272], "leav": [13, 26, 83, 97, 111, 117, 130, 149, 152, 267], "subproject": [14, 15, 132, 266], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 243, 244, 245, 246, 247, 248, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 82, 190, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 274], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 50, 66, 67, 77, 87, 108, 119, 133, 188, 189, 190, 191, 217, 243, 247, 248, 250, 251, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 271, 274], "h": [16, 17, 18, 21, 26, 31, 42, 45, 50, 54, 56, 58, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 133, 158, 199, 243, 244, 245, 250, 251, 252, 253, 254, 257, 258, 260, 261, 262, 264, 265, 266], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 52, 129, 203], "cmake_fil": 16, "real": [17, 26, 59, 73, 78, 115, 135, 142, 199, 269, 273, 274], "editable_compon": 17, "greet": [17, 158, 220], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 50, 52, 54, 58, 59, 82, 99, 102, 108, 119, 130, 158, 178, 188, 189, 190, 191, 213, 220, 241, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 264, 265, 266, 271], "bye": [17, 18, 158, 264, 271], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 52, 58, 59, 77, 128, 129, 178, 191, 230, 253, 255, 257, 259, 266, 271, 273], "src_folder": [17, 19, 189, 217, 265], "dir": [17, 19, 21, 27, 88, 108, 119, 135, 150, 192, 209, 216, 230, 251, 252, 253, 254, 257, 262, 265, 266], "bt": [17, 89], "package_fold": [17, 38, 39, 40, 41, 58, 94, 99, 100, 118, 127, 130, 132, 133, 135, 161, 182, 184, 191, 194, 199, 206, 209, 211, 219, 257, 258, 259, 260], "keep_path": [17, 58, 133, 199, 258, 259, 260], "cmake_file_nam": [17, 135, 190], "myg": 17, "cmake_target_nam": [17, 21, 135, 190, 254], "mygreet": 17, "myhello": [17, 254], "myby": 17, "beyond": 17, "filenam": [17, 48, 50, 86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 114, 150, 160, 162, 195, 199, 201, 219], "besid": [17, 31, 48, 59, 69, 101, 149, 150, 152, 155, 184, 190, 192, 243, 252, 254, 255, 261, 265], "app": [17, 26, 38, 56, 72, 82, 83, 88, 106, 117, 130, 136, 149, 183, 185, 186, 188, 190, 191, 194, 206, 207, 208, 209, 211, 213, 214, 215, 216, 220, 223, 225, 232, 239, 243, 272, 273], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 50, 66, 108, 190, 243, 248, 251, 254, 261, 262], "add_execut": [17, 21, 50, 66, 190, 243, 248, 251, 254, 262], "target_link_librari": [17, 21, 26, 42, 50, 66, 190, 243, 248, 251, 254, 261, 262], "adio": 17, "multiple_subproject": 18, "sibl": [18, 119], "myhead": [18, 201], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 88, 117, 119, 243, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 262, 265, 266], "world": [18, 27, 47, 48, 50, 52, 54, 58, 59, 73, 78, 82, 119, 158, 191, 213, 250, 251, 253, 254, 255, 258, 261, 262, 264, 265, 271], "fine": [18, 19, 42, 106, 117, 119, 240, 253], "principl": [18, 269, 270], "must": [18, 58, 59, 61, 65, 77, 87, 103, 104, 106, 117, 119, 125, 126, 128, 129, 134, 139, 149, 150, 156, 157, 158, 162, 167, 174, 188, 190, 199, 203, 206, 208, 210, 230, 243, 246, 247, 248, 253, 254, 270], "third_party_librari": 19, "whose": [19, 85, 86, 89, 96, 98, 99, 101, 105, 114, 139, 150], "mypatch": 19, "sour": 19, "libhello": [19, 27, 52, 250, 251, 252, 254, 255, 258, 260, 261, 262, 265], "archiv": [19, 52, 87, 88, 139, 182, 199, 210, 255, 265], "head": [19, 52, 139, 230, 250, 251, 254, 255, 261, 265, 271], "strip_root": [19, 52, 199, 201, 255, 265], "awar": [19, 39, 40, 61, 67, 90, 96, 109, 125, 126, 147, 230, 250, 251, 252, 254, 255, 258, 261, 265, 274], "branch": [19, 61, 77, 138, 139, 230, 249, 250, 251, 254, 261, 265, 268, 271, 273], "tag": [19, 61, 77, 88, 119, 138, 139, 144, 149, 230, 250, 251, 253, 254, 255, 261, 265, 271, 273], "patch_fil": [19, 52, 203], "7kb": [19, 255, 265], "50": [19, 21, 27, 251, 252, 253, 254, 257, 262, 265, 266], "cmakefil": [19, 21, 27, 251, 252, 253, 254, 257, 262, 265, 266], "libcrypto": [21, 135], "libssl": [21, 135], "abstract": [21, 49, 50, 64, 71, 72, 77, 83, 183, 188, 206, 213, 223, 254], "rest": [21, 73, 83, 96, 107, 149, 150, 199, 202, 211, 238, 239], "game": [21, 108, 269, 270], "algorithm": [21, 201], "ai": [21, 108], "coupl": [21, 29, 122, 243, 251, 254, 262], "package_nam": [21, 108, 145, 184, 234, 239], "component_nam": [21, 190, 192, 214], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 66, 88, 109, 149, 152, 190, 234, 243, 245, 246, 247, 248, 251, 254, 260, 261, 262], "packagetest": [21, 251, 254, 262], "barbarian": [21, 99, 109], "d6e361d329116": 21, "j16": [21, 254], "25": [21, 35, 82, 83, 150, 152, 251, 254, 259, 271], "37": [21, 184], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 251, 254], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 269], "NOT": [21, 26, 119, 139, 178, 190, 231, 251], "stack": 21, "incomplet": [21, 104, 107, 152], "occur": [21, 144, 201], "22": [21, 82, 84, 102, 150, 152, 244, 246, 247, 248, 257, 258], "conanexcept": [21, 36, 59, 200, 201], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 152, 182, 183], "7": [24, 54, 59, 76, 81, 88, 124, 150, 152, 272], "cortexa15t2hf": 24, "rc": [24, 54, 65, 88, 149, 191, 213, 215, 226], "rewrit": [24, 105], "sub": [24, 103, 110, 119, 150, 158, 199, 265], "conan_hom": [24, 36, 77, 99, 109, 147, 149, 150, 151, 152, 159, 160, 161], "myuser": [24, 29, 42, 59, 119, 148, 150, 153], "pkgconan": [24, 150, 219], "gnu98": [24, 152], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 88, 149, 150, 152, 208, 216, 244], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 214], "right": [24, 26, 62, 77, 101, 121, 178, 190, 264, 265, 270, 272], "2023": [24, 78, 82, 84, 102, 271], "02": [24, 84, 102, 206, 271], "16": [24, 88, 102, 145, 149, 150, 152], "06": [24, 246], "42": [24, 83, 88, 102, 119, 178], "10": [24, 45, 54, 59, 88, 102, 116, 149, 150, 152, 220, 246], "utc": [24, 58, 82, 84, 102, 246, 253, 257, 258, 271], "wizard": 26, "myconanappl": 26, "minimum": [26, 119, 140, 220, 253, 261], "suggest": [26, 73, 119, 126], "21": [26, 27, 102, 116, 123, 152, 191, 220], "rememb": [26, 36, 117, 216, 247], "api_level": [26, 27, 152, 220], "standard": [26, 27, 35, 50, 73, 119, 122, 132, 146, 149, 150, 180, 185, 190, 191, 220, 224, 225, 230, 243, 244, 250, 252, 257, 261, 265, 272], "choic": [26, 152, 260], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 52, 78, 208, 215, 251, 261, 271], "zlibvers": [26, 56, 243], "newstringutf": 26, "c_str": 26, "prepar": [26, 77, 115, 121, 130, 142, 177, 235, 244, 249, 253, 265, 274], "my_conan_app": 26, "view": [26, 29, 66, 102, 119, 124, 134, 156, 252], "task": [26, 59, 77, 139, 154, 155, 174, 258, 270, 274], "conaninstal": 26, "element": [26, 31, 77, 96, 97, 111, 224, 225], "conanexecut": 26, "builddir": [26, 38, 41, 50, 94, 99, 135, 190], "mkdir": [26, 59, 82, 198, 258, 271], "armv7": [26, 27, 152, 180, 183, 234], "x86": [26, 27, 87, 88, 90, 102, 111, 115, 149, 152, 171, 186, 199, 223, 227, 234, 270], "n": [26, 36, 42, 45, 52, 54, 56, 152, 162, 189, 223, 230, 243, 245, 250, 251, 261, 271], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 87, 144, 154], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 82, 125, 152, 186, 216, 227, 244, 258, 270], "defaultconfig": 26, "adjust": [26, 27, 132, 182, 190, 191, 208, 209, 211, 252], "focu": [26, 261], "proil": 26, "_static": [26, 27, 152], "14": [26, 27, 58, 76, 99, 102, 108, 109, 119, 150, 152, 163, 211, 227, 243, 244, 245, 253, 257, 261], "ndk_path": [26, 27, 88, 119, 135, 149, 191, 220], "luism": [26, 257, 259], "7075529": 26, "bin": [26, 27, 35, 39, 40, 54, 94, 99, 135, 150, 182, 191, 208, 209, 211, 214, 239, 244, 257, 259, 260], "android31": [26, 27], "llvm": [26, 27, 152], "prebuilt": [26, 27, 82, 98, 249, 256, 265], "darwin": [26, 27, 54, 99, 109, 150], "_share": [26, 27, 152], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 207, 208], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 188, 190, 191, 243, 244, 245, 247, 248, 253, 258, 264, 265, 266], "respons": [26, 39, 40, 50, 58, 61, 67, 76, 88, 93, 101, 118, 119, 121, 126, 135, 137, 138, 149, 161, 199, 203, 220, 230, 253], "android_abi": [26, 179, 191], "exit": [26, 31, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 142], "prematur": 26, "essenti": [26, 45, 73, 150, 151], "absent": 26, "cmake_build_typ": [26, 190, 191], "endif": [26, 52, 245, 250, 251, 254, 261], "strequal": [26, 251], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 50, 88, 130, 149, 188, 190, 191, 243, 244, 245, 247, 248, 253, 258, 264, 265, 266], "elseif": 26, "v8a": [26, 180], "armeabi": [26, 180], "v7a": [26, 180], "Not": [26, 77, 94, 99, 119, 126, 130, 149, 157, 243, 248, 255, 269], "add_librari": [26, 42, 50, 254, 260, 261], "virtual": [26, 61, 73, 117, 150, 245, 248, 252], "devic": [26, 27], "pair": [26, 117], "qr": 26, "click": [26, 29, 66, 211, 239], "brew": [27, 61, 88, 149, 233], "usr": [27, 117, 150, 210, 244], "choos": [27, 119, 190, 206, 234, 243, 261], "fit": [27, 78, 85, 186, 270], "balanc": [27, 81], "mingw": [27, 152, 242, 248], "ninja": [27, 77, 83, 88, 101, 107, 123, 130, 144, 149, 188, 191, 220, 248, 259], "provis": 27, "w": [27, 144, 162], "r23b": 27, "unless": [27, 73, 87, 101, 111, 115, 117, 119, 128, 129, 149, 154, 203, 224, 243, 267], "know": [27, 31, 50, 81, 89, 93, 119, 143, 152, 158, 190, 206, 245, 252, 254, 259, 266, 273], "bare": [29, 73, 253], "symbol": [29, 66, 78, 147, 182, 191], "box": [29, 266], "consuming_packag": [29, 243, 244, 245, 246, 247, 248], "simple_cmake_project": [29, 243], "finish": [29, 54], "successfulli": [29, 54, 67, 244, 254, 262, 264], "23": [29, 47, 48, 89, 101, 105, 123, 145, 152, 191, 257, 258, 259, 264, 265, 266, 271], "compressor": [29, 35, 56, 190, 243, 244, 245, 247, 248], "sln": [29, 58, 71, 223], "solut": [29, 58, 71, 73, 77, 117, 132, 136, 224, 225, 238, 240, 269], "startup": 29, "breakpoint": 29, "void": [29, 42, 52, 56, 243, 245, 250, 261, 271], "deflateinit": [29, 56, 243], "defstream": [29, 56, 243], "z_best_compress": [29, 56, 243], "deflat": [29, 56, 243], "z_finish": [29, 56, 243], "f5": 29, "stop": [29, 101, 191], "Into": 29, "navig": [29, 66, 239], "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, 56, 243], "inspir": 30, "agnost": [30, 33, 50, 101, 160], "enough": [31, 50, 59, 61, 77, 93, 123, 130, 134, 149, 150, 154, 192, 247, 260, 269], "cmd_clean": 31, "your_conan_hom": [31, 158, 266], "Will": [31, 39, 40, 86, 89, 90, 96, 98, 99, 101, 105, 107, 111, 114, 119, 130, 139, 163, 182, 185, 190, 191, 195, 220, 234], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 158, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177], "conanoutput": [31, 158], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "add_argu": [31, 158], "store_tru": 31, "parse_arg": [31, 158], "request_boolean": 31, "non_interact": [31, 88, 148, 149, 154], "output_remot": 31, "writeln": 31, "fg": [31, 250, 261], "all_rrev": 31, "recipe_revis": [31, 81, 119, 246], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 81], "latest_prev": 31, "argpars": [31, 158], "argumentpars": [31, 158], "visit": [31, 83, 85, 106, 117, 121, 239], "websit": [31, 158], "proce": [31, 42, 245], "translat": [31, 66, 71, 72, 76, 135, 185, 191, 208, 220, 224, 225, 247, 253, 254], "bg": 31, "font": 31, "foreground": 31, "background": [31, 154], "apart": [31, 54, 214], "predefin": [31, 47, 85, 108, 123, 145, 179, 191, 264, 266], "success": [31, 119, 144], "remoteregistri": 31, "searchapi": [31, 164, 176], "listapi": [31, 164, 171], "removeapi": [31, 164, 175], "deserv": [31, 149], "especi": [31, 61, 119, 149, 258, 263, 274], "attent": [31, 149, 260], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 61], "elsewher": [35, 50, 119, 138], "place": [35, 36, 42, 50, 58, 76, 83, 99, 115, 119, 121, 123, 135, 147, 159, 161, 178, 194, 199, 247, 253, 258, 259, 260, 272], "conanbuild": [35, 45, 54, 130, 135, 150, 188, 194, 195, 196, 206, 208, 227, 244, 247, 248, 259, 265], "17": [35, 58, 66, 82, 88, 102, 116, 149, 150, 152, 215, 253, 257, 258], "2022": [35, 66, 78, 102, 116, 152, 246, 257, 258], "big": [35, 117, 128, 152], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 188, 190, 243, 244, 245, 247, 248, 258, 264, 265, 266], "fact": [35, 50, 117, 252], "ticket": 35, "manual": [35, 45, 58, 66, 87, 103, 104, 106, 117, 130, 136, 270, 273], "cwd": [36, 101, 108, 137, 138, 144, 160, 173], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 108, 121, 224], "dependencies_sourc": 36, "preprocess": 36, "accomplish": [36, 191], "source_deploi": 36, "kwarg": [36, 157, 160, 162, 203, 234], "robust": [36, 157], "dependency_sourc": 36, "iter": [36, 101, 106, 156, 160, 162, 191, 193], "said": [36, 252, 270], "advanc": [37, 39, 40, 66, 73, 78, 119, 136, 150, 187, 192, 230, 238, 239, 270, 274], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 89, 104, 105, 106, 107, 120, 130, 136, 150, 190, 211, 214, 244, 246, 247, 259, 270], "different_opt": 39, "myoption": [39, 119, 122, 142], "echo": [39, 40, 157, 178, 259], "off": [39, 40, 62, 67, 159, 191, 215, 251, 265], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 59, 77, 117, 119, 134, 135, 139, 178, 191, 247, 253, 262, 267], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 162, 191, 195], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 54, 119, 151, 178, 190, 206, 214, 216, 243, 251, 254, 262], "anyth": [39, 40, 73, 77, 197, 234, 244, 258, 259, 262, 271, 274], "identifi": [39, 40, 68, 80, 82, 84, 111, 119, 120, 245, 252, 259, 266, 272], "construct": [39, 40], "Of": [39, 40, 73, 269], "cours": [39, 40, 269], "invis": [39, 40], "exactli": [39, 40, 50, 73, 81, 130, 132, 134, 156, 234, 259], "disambigu": [39, 40, 149, 190, 211], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 119, 178], "cmake_build_modul": [41, 190], "tc": [41, 48, 58, 119, 130, 152, 185, 188, 191, 207, 208, 215, 220, 225, 226, 232, 251, 253, 255, 259, 261, 265], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 50, 135, 190], "build_context": [41, 190, 222], "behav": [42, 206, 245], "protobuf": [42, 119, 123, 135, 190, 211], "perhap": 42, "pb": 42, "nonetheless": [42, 257], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 119, 120, 126, 130, 249, 252, 253, 255], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 50, 260, 261], "build_interfac": [42, 50], "cmake_current_source_dir": 42, "cmake_current_binary_dir": [42, 50], "install_interfac": [42, 50], "set_target_properti": [42, 50, 254, 260, 261], "public_head": [42, 50, 260, 261], "iostream": [42, 119, 261], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 149], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 52, 261, 271], "alloc": [42, 214], "shutdownprotobuflibrari": 42, "simpli": [42, 65, 150, 216, 217, 264], "argc": [42, 203], "argv": [42, 203], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 99, 105], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 94, 102], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 66, 87, 251, 257], "notic": [42, 50, 66, 88, 119, 151, 158, 208, 211, 213, 214, 219, 220, 245, 250, 251, 252, 261], "arm": [42, 83, 152, 223, 244, 247], "mach": 42, "64": [42, 152, 186, 216, 227, 244, 270], "bit": [42, 50, 52, 59, 125, 135, 150, 152, 158, 186, 199, 227, 244, 253, 258, 262, 273], "arbitrari": [43, 46, 50, 66, 73, 104, 106, 134, 155, 272], "bazel": [43, 53, 60, 62, 88, 108, 149, 179, 212, 214, 215, 243], "popular": [45, 54, 56, 62, 69, 73, 152, 234, 243], "fmt": [45, 54, 105, 250, 251, 252, 261, 262], "mac": [45, 186, 262], "string_formatt": [45, 54], "ac": 45, "www": [45, 99, 100, 117, 119, 274], "org": [45, 61, 99, 100, 119, 149, 201], "softwar": [45, 99, 216, 234, 274], "autoconf": 45, "60": [45, 54], "html_node": 45, "configure_002eac": 45, "_": [45, 77, 119, 150, 154, 159, 179, 185, 211, 224, 258], "cstdlib": [45, 54], "exit_success": [45, 54, 56, 243, 245], "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, 117, 199], "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, 61, 77, 83], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 208], "conanbuildenv": [45, 196, 259, 265], "conanrun": [45, 54, 135, 141, 150, 188, 195, 197, 245, 262, 265], "conanrunenv": [45, 197, 265], "deactivate_conanbuild": [45, 196, 244, 247, 248, 265], "deactivate_conanrun": [45, 245, 265, 266], "_fmt": 45, "run_exampl": 45, "u": [45, 73, 76, 86, 89, 96, 98, 99, 101, 105, 114, 123, 247, 255], "ldflag": [45, 119, 135, 149, 150, 207, 208, 220, 226], "pkg_config_path": [45, 208, 210, 220], "m4": 45, "second": [45, 59, 82, 88, 117, 119, 133, 149, 184, 201, 252, 259], "cmake_ex": [47, 82, 108], "foo": [47, 48, 49, 90, 117, 119, 132, 190, 191, 195, 199, 208, 210, 226], "correspond": [47, 66, 119, 191, 196, 197, 208, 211, 222, 245, 252, 254], "binarydir": 47, "everytim": [47, 48, 244, 264, 265, 266], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 191], "displaynam": 48, "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 80, 123], "appconan": 49, "myvar1": [49, 150, 194], "my_user_var1": 49, "myvar": [49, 119, 135, 150, 178, 191, 194, 220, 259], "myprofil": [49, 101, 109, 150], "profile_dir": [49, 150], "evalu": [49, 81, 100, 101, 103, 105, 109, 117, 119, 128, 130, 136, 142, 149, 153, 169, 247, 270], "myvalue1": [49, 194], "system_nam": [49, 88, 149, 191], "usabl": [50, 152], "aren": 50, "fair": [50, 78], "vendor": [50, 93, 153], "happili": 50, "pkg_config_fil": 50, "pkgrecip": [50, 272, 273], "three": [50, 119, 132, 149, 185, 194, 225, 234], "mylib": [50, 119, 123, 150, 191, 208, 274], "project_source_dir": 50, "cmake_install_includedir": [50, 191], "mypkgconfig": 50, "namespac": [50, 77, 190, 206, 208, 251], "destin": [50, 127, 128, 129, 199, 201, 224, 253], "cmake_install_prefix": [50, 191, 260], "_m_x64": [50, 58], "runtim": [50, 58, 73, 78, 119, 123, 135, 150, 152, 163, 194, 197, 206, 208, 220, 222, 225, 226, 245, 262], "multithreadeddl": [50, 58], "_msc_ver1939": [50, 58], "_msvc_lang201402": [50, 58], "__cplusplus199711": [50, 58, 253, 255, 258], "switch": [50, 135, 163, 184, 224, 225], "viceversa": 50, "inconveni": [50, 264], "trivial": 50, "transtiv": 50, "simplest": [52, 121, 255, 260, 273], "hellorecip": [52, 59, 250, 251, 252, 253, 254, 255, 258, 261, 265, 271], "friend": [52, 251], "rule": [52, 81, 87, 117, 118, 119, 134, 153, 155, 156, 208, 211, 214, 267, 269, 272], "ifdef": [52, 245, 250, 261, 271], "ndebug": [52, 208, 245, 250, 261, 271], "hello_patch": 52, "conan_data": [52, 59, 128, 130, 203, 255], "complex": [52, 78, 119, 131, 150, 178, 199, 222, 272], "bazeltoolchain": [54, 65, 108, 179, 212, 213], "workspac": [54, 65, 91, 214, 259], "demo": [54, 59, 78, 117], "charg": [54, 133], "bzl": [54, 65, 214], "load_conan_depend": [54, 214], "rules_cc": [54, 214], "cc_binari": 54, "bazeldep": [54, 65, 108, 179, 212], "bazel_layout": [54, 145, 214], "conan_bzl": [54, 65, 213, 215], "franchuti": [54, 94], "bazelrc": [54, 88, 149, 213, 215], "38": [54, 99, 258], "272": 54, "lc": 54, "date": 54, "elaps": 54, "180": [54, 152], "critic": [54, 87, 253, 271], "68": [54, 98, 102], "sandbox": 54, "total": [54, 101, 145, 149, 152, 195, 251, 257], "simple_meson_project": 56, "stdlib": [56, 152, 191, 208, 243, 245], "stdio": [56, 243], "buffer_in": [56, 243], "256": [56, 201, 243], "mit": [56, 73, 108, 119, 131, 238, 243, 271], "easili": [56, 59, 76, 83, 117, 121, 122, 135, 139, 153, 160, 191, 192, 243, 251, 273, 274], "buffer_out": [56, 243], "z_stream": [56, 243], "zalloc": [56, 243], "z_null": [56, 243], "zfree": [56, 243], "opaqu": [56, 243], "avail_in": [56, 243], "uint": [56, 243], "strlen": [56, 243], "bytef": [56, 243], "avail_out": [56, 243], "sizeof": [56, 243], "next_out": [56, 243], "deflateend": [56, 243], "printf": [56, 243, 245], "size": [56, 78, 195, 243, 245, 247, 248, 267], "lu": [56, 243], "conan_meson_": 56, "ini": [56, 70, 219, 243], "conan_meson_n": [56, 219], "233": [56, 243, 245, 247, 248], "147": [56, 243, 245, 247, 248], "haven": [58, 66, 81, 97, 254, 264, 267], "familiar": 58, "concept": [58, 75, 82, 242, 252, 266, 268, 270], "creation": [58, 73, 77, 120, 152, 161, 230, 246], "msbuild_lib": [58, 108], "vcxproj": 58, "test_hello": [58, 251, 254], "vs_layout": [58, 145, 179, 217, 221], "briefli": [58, 149, 236, 252, 253], "parametr": [58, 108], "conantoolchain": [58, 185, 225], "prop": [58, 71, 130, 190, 224, 225], "sheet": [58, 60, 74], "receiv": [58, 59, 76, 83, 103, 123, 156, 157, 158, 161, 162, 163, 192, 220, 230, 253, 259, 267, 272], "act": [58, 158], "accordingli": [58, 119], "importgroup": 58, "label": [58, 73, 94, 99, 100, 213, 214, 225], "propertysheet": 58, "x64": [58, 83, 132, 152, 223], "856c535669f78da11502a119b7d8a6c9": 58, "2024": [58, 253], "03": [58, 152, 246, 253, 271], "04": [58, 102, 152, 253], "52": [58, 82, 84, 253], "39": [58, 102, 246, 253, 258], "c13a22a41ecd72caf9e556f68b406569547e0861": 58, "dynam": [58, 84, 102, 119, 120, 137, 138, 150, 152, 161, 163, 178, 220, 244, 245, 247, 273, 274], "193": [58, 84, 152], "pragmat": 59, "someon": [59, 270], "coordin": [59, 139, 199, 230], "who": [59, 272], "tri": [59, 98, 163, 243, 246], "capture_scm": 59, "update_conandata": [59, 198], "scm_url": 59, "scm_commit": 59, "checkout": [59, 61, 76, 77, 230, 250, 251, 254, 255, 261, 271], "myfold": [59, 101, 199], "m": [59, 61, 88, 90, 102, 111, 115, 149, 188, 196, 197, 210, 223, 224, 227, 251, 257, 273], "wip": 59, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 59, "buildabl": 59, "techniqu": 59, "imposs": [59, 82, 83, 150, 269, 270], "squash": 59, "19": [59, 76, 102, 152, 258], "xdf": [59, 264], "gitignor": [59, 230], "anywai": [59, 119], "encod": [59, 153, 199, 225, 271], "password": [59, 110, 117, 148, 153, 154, 174, 201, 239], "repeat": [59, 73, 119, 189, 196, 197, 258, 267], "consequ": [59, 96], "orthogon": [59, 155, 161, 274], "ssh": [59, 153], "actor": 59, "ubuntu": [59, 73, 152, 234, 244], "v3": [59, 152, 248], "secret": [59, 117, 153, 154], "ssh_private_kei": 59, "v4": [59, 152], "webfactori": 59, "v0": [59, 240], "privat": [59, 73, 76, 77, 117, 131, 135, 149, 153, 178, 179, 238, 239, 240, 253, 261], "care": [59, 83], "riski": 59, "disclos": 59, "welcom": 60, "decentr": 60, "blog": [60, 66, 75, 274], "social": 60, "mail": 60, "tracker": [60, 73], "question": [60, 73], "tabl": 60, "introduct": [60, 62, 106, 136, 146, 155, 235, 239, 242, 250, 258, 270, 274], "devop": 60, "clion": [60, 62, 191], "jfrog": [60, 62, 73, 78, 239], "cheat": [60, 74], "faq": [60, 73, 74, 119, 271], "video": [60, 73, 74, 269], "changelog": 60, "solari": [61, 73, 234], "suno": [61, 73, 152], "modern": [61, 76, 130, 203, 261, 274], "carefulli": 61, "sudo": [61, 88, 119, 135, 149, 234], "virtualenv": [61, 88, 149, 195, 196, 197, 227, 248], "virtualenvwrapp": 61, "readthedoc": 61, "en": [61, 76, 199, 274], "venv": 61, "restart": [61, 66], "logout": [61, 85, 174], "termin": [61, 73, 88, 102, 149, 157], "upgrad": [61, 190, 269, 274], "inconsist": 61, "somehow": 61, "userhom": 61, "attempt": [61, 66, 77, 88, 130, 139, 149, 152, 201], "yield": 61, "xyz": 61, "mark": [61, 66, 142], "interfer": 61, "pep": 61, "668": 61, "isol": [61, 77, 265, 270, 272], "isn": [61, 66], "debian": [61, 73, 152, 201, 234], "ensurepath": 61, "number": [61, 68, 73, 88, 115, 134, 149, 152, 186, 189, 201, 203, 222, 223, 234, 257, 258, 272, 273, 274], "gatekeep": 61, "quarantin": 61, "browser": 61, "curl": [61, 66], "wget": 61, "util": [61, 66, 76, 84, 92, 115, 119, 139, 182, 191, 195, 199, 206, 234, 244, 260], "interpret": [61, 149, 178, 244], "conan_src": 61, "develop2": 61, "beta": [61, 119, 272], "matter": [61, 101, 143, 149, 154, 204, 258, 269, 274], "seamless": 62, "shelf": [62, 67, 159], "though": [62, 89, 102, 117, 119, 133, 149, 240, 246, 272], "yet": [62, 66, 81, 94, 98, 99, 130, 132, 158, 169, 207, 254], "resum": 62, "enhanc": 62, "autotoolsdep": [64, 179, 205], "wrapper": [64, 65, 70, 71, 72, 79, 144, 155, 182, 183, 188, 190, 201, 206, 213, 223, 230, 234, 253], "jetbrain": 66, "marketplac": 66, "brows": 66, "conan_provid": 66, "cmake_project_top_level_includ": 66, "bear": [66, 251], "mind": [66, 243, 251, 262], "24": [66, 101, 150, 152, 206, 240, 258], "button": [66, 239], "appear": [66, 158, 160, 239, 265], "bottom": 66, "toolbar": 66, "wheel": 66, "checkbox": 66, "sequenti": [66, 73], "uncheck": 66, "disappear": 66, "libcurl": 66, "internet": [66, 99, 153, 258, 274], "along": [66, 67, 87, 119, 190, 252], "ey": 66, "icon": 66, "snippet": 66, "project_nam": [66, 190, 243, 248], "cmake_cxx_standard": [66, 191], "reload": [66, 117], "recollect": [68, 139], "down": [68, 81, 82, 251, 257, 271], "segment": 68, "histori": 68, "servic": [68, 237], "offer": [68, 119, 150], "dedic": [68, 73, 89, 110, 115, 123, 247, 271], "sf": [68, 88], "art": 68, "tf": [68, 82, 88, 89, 93, 251, 252, 260], "create_releas": 68, "mybuildname_releas": 68, "my_artifactori": 68, "mybuildname_aggreg": 68, "readme_build_info": 68, "md": [68, 119, 128, 129, 225, 265, 274], "bsd": 69, "maketoolchain": 69, "myproject": [71, 223], "xcodebuild": [72, 179, 181, 184], "xcodetoolchain": [72, 179, 181, 184], "xcodeproj": [72, 183], "mobil": 73, "metal": 73, "scon": [73, 79, 179], "acceler": 73, "matur": [73, 119], "polici": [73, 76, 119, 178, 190, 191, 258, 267], "creator": [73, 76, 85, 109, 158, 246], "thousand": [73, 78], "compani": [73, 78, 119, 161, 238, 239], "high": [73, 107, 129, 201], "consol": [73, 144, 220, 227, 230, 245], "logic": [73, 77, 120, 125, 126, 130, 134, 139, 152, 156, 159, 184, 185, 191, 217, 247, 267, 270, 272], "webui": [73, 239], "protocol": [73, 119], "ldap": [73, 117], "topologi": 73, "conan_serv": [73, 117, 240], "boost": [73, 101, 135, 145, 149, 157, 190], "poco": [73, 130, 139, 145], "signific": 73, "truth": [73, 78], "redhat": 73, "archlinux": 73, "raspbian": [73, 234], "desktop": 73, "likewis": [73, 123, 126, 134, 135, 139, 270, 272, 273], "onward": 73, "goal": [73, 122, 134, 141], "evolv": [73, 152, 178, 246, 268], "backward": [73, 96], "incompat": [73, 123, 152, 178, 264], "disrupt": [73, 270], "preview": [73, 102, 124, 147, 156, 160, 162, 190, 199, 267], "year": [73, 78, 274], "life": [73, 78, 273], "eol": 73, "tomtom": 73, "audi": 73, "rti": 73, "continent": 73, "plex": 73, "electrolux": 73, "merced": 73, "benz": 73, "amaz": 73, "5k": 73, "star": 73, "count": 73, "300": 73, "cpplang": [73, 76], "slack": [73, 76], "discuss": [73, 149, 169], "discord": 73, "plai": [73, 119, 186], "exercis": 73, "narr": 73, "explan": [73, 80, 98, 105, 119, 134, 152], "conduct": 73, "thread": [73, 88, 115, 149, 152], "bad": [73, 139, 220, 255, 271], "confer": [73, 78], "talk": [73, 78], "evolut": [73, 270], "troubleshoot": 74, "handi": [75, 119, 189, 255], "pdf": 75, "png": [75, 100, 108], "post": [75, 155, 161, 260, 274], "goe": [75, 270], "behind": [76, 117], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [76, 102, 253, 265], "gnu11": [76, 152, 245, 253], "precompil": [76, 87, 101, 119, 133, 135, 214, 235, 258], "mayb": [76, 190, 252, 260], "influenc": [76, 119, 245], "overcom": 76, "agre": 76, "spell": [76, 152], "submit": [76, 130, 237], "Such": [76, 77, 246, 274], "httpconnect": 76, "debuglevel": 76, "netrc": 76, "honor": 76, "crlf": [76, 77, 271], "lf": [76, 271], "gitattribut": 76, "gitconfig": 76, "editor": 76, "notepad": 76, "playground": 77, "colleagu": 77, "kept": 77, "kind": [77, 106, 117, 128, 129, 152, 153, 154, 161, 239, 258, 272], "unit": [77, 121, 134, 141, 251, 253, 262], "among": [77, 81, 119, 133, 135, 152, 199, 225, 246, 247], "convert": [77, 108, 135, 182, 204, 252, 260], "flat": [77, 178, 199], "strictli": [77, 93, 119, 123, 135, 208, 247, 253, 269], "extrem": [77, 272], "complic": [77, 119, 136], "workaround": [77, 136, 269], "Its": [77, 108, 119, 136, 156, 234], "whenev": [77, 119, 128, 136, 139, 150, 186, 251], "abus": [77, 131, 259], "entrant": 77, "undefin": [77, 83, 104, 106, 163, 199, 253, 255], "indirect": [77, 136], "reserv": [77, 83, 118, 191], "_conan": [77, 117, 118], "sens": [77, 93, 104, 126, 137, 150, 152, 230, 245, 252], "rewritten": 77, "checksum": [77, 84, 87, 119, 179, 198, 201, 271], "educ": 78, "outdat": 78, "accu": 78, "diego": 78, "rodriguez": 78, "losada": 78, "cppcon": 78, "watch": [78, 274], "grow": [78, 274], "lesson": [78, 274], "challeng": [78, 154], "trend": 78, "ten": 78, "largest": 78, "why": [78, 95, 98, 252, 257, 259], "lui": 78, "caro": 78, "campo": 78, "quick": 78, "overview": [78, 119], "intrins": [78, 128], "visibilitybinari": 78, "half": 78, "battl": 78, "meet": 78, "onlin": 78, "book": 78, "chri": 78, "mcarthur": 78, "fall": [81, 273], "ill": 81, "form": [81, 87, 90, 98, 102, 108, 111, 115, 117, 119, 123, 128, 129, 135, 139, 141, 234, 246, 247, 253, 271, 272], "taken": [81, 119, 133, 152, 178, 191], "eras": [81, 134], "del": [81, 125, 134, 143, 252, 253, 255, 259], "gcc5": 81, "lost": [81, 96], "default_xxx": 81, "default_build_mod": [81, 88, 149], "default_embed_mod": [81, 88, 149], "full_mod": [81, 82, 88, 119, 149, 274], "default_non_embed_mod": [81, 88, 149], "minor_mod": [81, 82, 88, 119, 136, 149, 178, 274], "default_python_mod": [81, 88, 149, 178], "default_unknown_mod": [81, 88, 149], "semver_mod": [81, 88, 119, 149], "confus": [81, 272], "safeti": 81, "emb": [81, 230], "package_id_xxxx_mod": 81, "package_id_embed_mod": [81, 119], "package_id_non_embed_mod": [81, 119], "package_id_unknown_mod": [81, 119], "patch_mod": [81, 119, 178], "package_id_": 81, "non_emb": 81, "_mode": 81, "package_id_mod": [81, 94, 119, 252, 274], "differenti": [81, 152, 244], "expand": [81, 84, 126, 134, 147], "major_mod": [81, 119], "inlin": [82, 84, 257], "pure": [82, 135, 185, 191, 208, 215, 220, 225, 226, 258], "linker": [82, 88, 99, 135, 149, 185, 191, 206, 208, 215, 220, 225, 226, 244, 245], "8879e931d726a8aad7f372e28470faa1": [82, 84], "09": [82, 84, 102, 246], "54": [82, 84], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [82, 84], "z": [82, 83, 84, 98, 119, 178, 209, 253], "quickli": [82, 93, 258], "632e236936211ac2293ec33339ce582b": 82, "34": [82, 257, 271], "3ca530d20914cf632eb00efbccc564da48190314": 82, "d125304fb1fb088d5b92d4f8135f4dff": 82, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": [82, 253], "bump": [82, 178, 246, 274], "moon": [82, 158], "1c90e8b8306c359b103da31faeee824c": 82, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 82, "rebuilt": [82, 269, 271], "wil": 82, "49": [82, 102], "embed_mod": 82, "new_subset": 83, "subvalue1": 83, "subvalue2": 83, "new_root_set": 83, "value1": [83, 119, 150], "value2": [83, 119, 150], "implictli": 83, "explicilti": 83, "implicitli": [83, 119, 152, 178], "build_test": [83, 89, 119, 191, 251], "option2": [83, 119], "option1": [83, 119], "wherebi": 83, "therebi": 83, "comment": [83, 102, 108, 147, 152, 156, 163, 190, 262, 269], "tune": [83, 253], "realli": [83, 89, 126, 152, 264, 269, 273], "retri": [83, 88, 148, 149, 199, 201], "spirit": 83, "myconf": [83, 119, 132, 134, 135, 149, 150], "myitem": [83, 134], "settings_build": [83, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 130, 259], "outcom": [83, 215], "irrelev": [83, 145], "reflect": [83, 182, 246], "97d5730b529b4224045fe7090592d4c1": [84, 102], "08": [84, 102, 271], "51": [84, 102, 272], "57": [84, 102], "d62dff20d86436b9c58ddc0162499d197be9de1": [84, 96, 102], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [84, 102], "sha1": [84, 200, 201, 244], "cat": [84, 104, 105, 106, 107, 207, 245, 270], "compilerruntim": 84, "compilerruntime_typ": 84, "sha1sum": [84, 200], "386": 84, "seen": [84, 180, 246, 269, 273], "worthi": 85, "core_conf": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "deployer_fold": [86, 99, 101], "nr": [86, 89, 91, 92, 93, 96, 98, 99, 100, 101, 105, 114], "profile_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 169], "profile_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 169], "profile_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "settings_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "settings_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "lockfile_out": [86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 114], "lockfile_overrid": [86, 89, 93, 96, 98, 99, 101, 105, 114], "posit": [86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 102, 103, 105, 108, 110, 111, 112, 113, 114, 115, 174], "vquiet": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "verror": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vwarn": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 144], "vnotic": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 144], "vstatu": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vverbos": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vdebug": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "disallow": [86, 89, 96, 98, 99, 101, 105, 114], "fnmatch": [86, 88, 89, 96, 98, 99, 101, 105, 110, 114, 119, 199, 230], "wildcard": [86, 89, 90, 96, 98, 99, 100, 101, 102, 105, 110, 112, 114, 174, 199], "satisfi": [86, 89, 96, 98, 99, 101, 105, 114, 150, 246], "with_qt": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "cdc0d9d0e8f554d3df2388c535137d77": 87, "5cb229164ec1d245": 87, "conanmanifest": [87, 162, 243, 248], "liter": [87, 108, 150, 178], "ident": [87, 119, 134, 178, 241, 245], "1cae77d6250c23b7": 87, "al": 87, "eventu": [87, 190], "extract": [87, 127, 135, 148, 199, 210, 255, 260], "package_queri": [87, 90, 102, 111, 115], "AND": [87, 90, 102, 111, 115, 171], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 87, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 87, "verify_ssl": [88, 151], "target_fold": 88, "origin2": 88, "target2": 88, "submodul": 88, "conan_config": [88, 184, 185], "recurs": [88, 147, 199], "deduc": [88, 119, 189, 195, 197, 201, 202, 226, 273], "verif": [88, 149, 201], "certif": [88, 117, 151, 201], "my_set": 88, "retry_wait": [88, 149, 201], "wait": [88, 149, 201], "gzip": [88, 149, 199], "compresslevel": [88, 149], "cacert_path": [88, 117, 149], "cacert": [88, 117, 149], "clean_system_proxi": [88, 149], "proxi": [88, 117, 149], "client_cert": [88, 149], "tupl": [88, 119, 131, 149, 150, 199, 201, 230], "cert": [88, 149], "max_retri": [88, 149], "maximum": [88, 117, 119, 149, 186, 223, 253, 261], "no_proxy_match": [88, 149], "timeout": [88, 149], "allow_uppercase_pkg_nam": [88, 149], "temporarili": [88, 149, 150, 154], "uppercas": [88, 149, 154], "default_build_profil": [88, 149, 154], "default_profil": [88, 149, 154], "cmake_android_ndk": [88, 149], "enable_arc": [88, 149, 191], "arc": [88, 149, 191], "enable_bitcod": [88, 149, 191], "bitcod": [88, 149, 191], "enable_vis": [88, 149, 191], "sdk_path": [88, 149, 182, 183, 191, 220], "can_run": [88, 121, 141, 149, 262], "objc": [88, 149, 191, 220], "objcxx": [88, 149], "fortran": [88, 149, 191, 208], "asm": [88, 149, 152, 191, 226], "hip": [88, 149, 191], "ispc": [88, 149, 191], "exelinkflag": [88, 94, 99, 135, 149, 185, 191, 208, 215, 220, 225, 226], "cmake_exe_linker_flags_init": [88, 149, 191], "jx": [88, 149], "mp": [88, 149, 191], "linker_script": [88, 149, 191, 208, 215, 220], "sharedlinkflag": [88, 94, 99, 135, 149, 185, 191, 208, 215, 220, 225, 226], "cmake_shared_linker_flags_init": [88, 149, 191], "skip_test": [88, 121, 149, 191, 213, 251, 257], "sysroot": [88, 94, 99, 149, 182, 191, 208, 220], "find_package_prefer_config": [88, 149], "cmake_find_package_prefer_config": [88, 149, 191], "presets_environ": [88, 149, 191], "wether": [88, 149], "system_processor": [88, 149, 191], "cmake_system_processor": [88, 149, 191], "system_vers": [88, 149, 191], "cmake_system_vers": [88, 149, 191], "toolchain_fil": [88, 149, 150, 191], "toolset_arch": [88, 149, 191], "toolset": [88, 149, 152, 191, 216, 222], "cmake_generator_toolset": [88, 149, 191], "toolset_cuda": [88, 149, 191], "install_strip": [88, 149, 188], "strip": [88, 96, 149, 182, 188, 199, 203, 220, 230, 244], "launcher": [88, 149, 195, 196, 197, 207, 208, 227, 259, 262], "define_libcxx11_abi": [88, 149], "glibcxx_use_cxx11_abi": [88, 149], "host_triplet": [88, 149], "pkg_config": [88, 149, 210, 211, 220], "bazelrc_path": [88, 149, 213], "rcpath1": [88, 149, 213], "config1": [88, 149, 213], "installation_path": [88, 149, 216, 227], "setvars_arg": [88, 149, 216], "onto": [88, 149], "setvar": [88, 149, 216], "backend": [88, 117, 149, 220], "vs2010": [88, 149, 220], "vs2012": [88, 149], "vs2013": [88, 149], "vs2015": [88, 149, 220], "vs2017": [88, 149, 216, 220], "extra_machine_fil": [88, 149, 219], "bash": [88, 119, 149, 227, 240], "msy": [88, 149, 152, 240], "cygwin": [88, 149, 152], "wsl": [88, 149, 152], "sfu": [88, 149], "2019": [88, 149, 152, 216, 227], "max_cpu_count": [88, 135, 149, 150, 188, 223], "vs_version": [88, 149, 150, 152], "exclude_code_analysi": [88, 149, 224], "suppress": [88, 149, 191], "compile_opt": [88, 119, 135, 149, 225], "sudo_askpass": [88, 149, 234], "yum": [88, 149, 233], "pacman": [88, 149, 233], "choco": [88, 149, 234], "zypper": [88, 149, 233], "pkgutil": [88, 149, 233], "30": [88, 96, 102, 258], "test_fold": [89, 93, 251], "serv": [89, 117, 239, 245], "misus": 89, "mutual": [90, 101, 111, 115], "packagelist": [90, 115], "pgkg": 90, "resid": [91, 109], "my_project": [91, 96, 98, 99, 101, 105], "variou": [92, 136, 152, 265], "sb": 93, "this_pkg": 93, "slower": [93, 128], "y": [93, 98, 119, 253], "binary_remot": 94, "invalid_build": [94, 99], "homepag": [94, 99, 100, 130], "win_bash_run": 94, "options_descript": 94, "options_definit": [94, 100], "generators_fold": [94, 99, 100, 130, 190, 191, 224], "srcdir": [94, 99, 135], "resdir": [94, 99, 135, 191, 208, 220], "frameworkdir": [94, 99, 135], "framework": [94, 99, 123, 135, 136, 211, 224, 232, 244, 251, 259], "ffa77daf83a57094149707928bdce823": [94, 102], "1440f4f447208c8e6808936b4c6ff282": 94, "dc0e384f0551386cd76dc29cc964c95": [94, 98], "1703667991": 94, "3458598": 94, "1703668372": 94, "8517942": 94, "massiv": [94, 99], "spiffi": [94, 99], "delic": [94, 99], "unobtrus": [94, 99], "unencumb": [94, 99], "patent": [94, 99], "zlib774aa77541f8b": 94, "resolved_rang": 94, "replaced_requir": 94, "closest": [95, 98], "annot": 96, "doesnt": 96, "preserv": 96, "absenc": 96, "order_bi": 96, "06023034579559bb64357db3a53f88a4": 96, "54b9c3efd9ddd25eb6a8cbf01860b499": 96, "build_arg": 96, "ed8593b3f837c6c9aa766f231c917a5b": 96, "60778dfa43503cdcda3636d15124c19bf6546ae3": 96, "ad092d2e4aebcd9d48a5b1f3fd51ba9a": 96, "firstli": 96, "purpous": 96, "pref": [96, 117, 130, 167], "closest_binari": 98, "1692672717": [98, 102], "b647c43bfefae3f830561ca202b6cfd935b56205": 98, "package_filt": [99, 158], "df": 99, "dot": [99, 158, 272], "myproject_fold": 99, "binutil": 99, "0dc90586530d3e194d01d17cb70d9461": 99, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 99, "cci": 99, "degrad": 99, "gpl": 99, "assembl": 99, "objcopi": 99, "objdump": 99, "multilib": 99, "target_arch": 99, "target_o": 99, "target_triplet": 99, "with_libquadmath": 99, "binut53bd9b3ee9490": 99, "416618fa04d433c6bd94279ed2e93638": 99, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 99, "866f53e31e2d9b04d49d0bb18606e88": 99, "zlibbcf9063fcc882": 99, "digraph": 99, "vi": 99, "j": [99, 119, 152, 219], "css": 99, "cloudfar": 99, "cdnj": 99, "cloudflar": 99, "ajax": 99, "info_graph": 99, "basi": [99, 108], "neon": 100, "msa": 100, "sse": 100, "vsx": 100, "api_prefix": 100, "graphic": 100, "redirect": [100, 102, 116, 117, 144, 154, 188, 264, 274], "deployer_packag": 101, "recomput": 101, "myconan": [101, 119], "bzip2": [101, 130, 196, 197, 224, 227], "compound": 101, "left": [101, 117, 253, 266, 272], "highest": 101, "myprofile3": 101, "myprofile1": [101, 150], "myprofile2": [101, 150], "minim": [101, 108, 186, 262], "immedi": [101, 135, 141, 149, 150, 224, 262], "uniqu": [101, 119, 121, 134, 149, 245, 252, 257, 271], "strict": [101, 104, 106, 150, 199, 270, 274], "newpkg": 101, "gb": 102, "graph_binari": 102, "gr": 102, "graph_recip": 102, "5d": [102, 111], "dai": [102, 111], "4w": [102, 111, 267], "hour": [102, 111], "26": 102, "mycompani": 102, "20": [102, 150, 152, 163, 196, 250], "lite": 102, "shortest": 102, "46": 102, "53": [102, 116], "placehold": [102, 115, 194, 195], "8b23adc7acd6f1d6e220338a78e3a19": 102, "ce3665ce19f82598aa0f7ac0b71ee966": 102, "31ee767cb2828e539c42913a471e821a": 102, "05": [102, 246], "d77ee68739fcbe5bf37b8a4690eea6ea": 102, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 102, "implicit": [102, 203, 270], "e4e1703f72ed07c15d73a555ec3a2fa1": 102, "07": [102, 116], "45": [102, 246, 257, 272], "fdb823f07bc228621617c6397210a5c6c4c8807b": 102, "4834a9b0d050d7cf58c3ab391fe32e25": 102, "33": [102, 257, 258], "31": [102, 123, 271], "6a6451bbfcb0e591333827e9784d7dfa": 102, "29": [102, 246, 271], "67bb089d9d968cbc4ef69e657a03de84": 102, "47": [102, 246], "36": [102, 258], "5e196dbea832f1efee1e70e058a7eead": 102, "26475a416fa5b61cb962041623748d73": 102, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [102, 253], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 102, "human": 102, "zli": 102, "b58eeddfe2fd25ac3a105f72836b3360": 102, "01": [102, 206, 271], "d9b1e9044ee265092e81db7028ae10e0": 102, "192": [102, 117, 152, 163, 222], "denomin": 102, "deviat": [102, 119], "mypytool": 104, "manipul": [104, 106, 139, 199, 260], "moreov": 104, "scratch": [105, 263, 264], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 105, "1675126491": 105, "773": 105, "5f184bc602682bcea668356d75e7563b": 105, "1676913225": 105, "027": [105, 274], "733": 105, "e747928f85b03f48aaf227ff897d9634": 105, "1675126490": 105, "952": 105, "lock1": 106, "lock2": 106, "consolid": 106, "diverg": 106, "simplic": 106, "pkgb": 106, "app1": 106, "pkgawin": 106, "pkganix": 106, "gone": [106, 251, 262], "nix": [106, 199], "math": [107, 108, 136, 199, 269], "85d927a4a067a531b1a9c7619522c015": 107, "1702683583": 107, "3411012": 107, "fd2b006646a54397c16a1478ac4111ac": 107, "3544693": 107, "mytool": [107, 214], "othertool": 107, "downgrad": 107, "unlock": 107, "meson_lib": 108, "meson_ex": 108, "msbuild_ex": 108, "bazel_lib": 108, "bazel_ex": 108, "autotools_lib": 108, "autotools_ex": 108, "aid": 108, "boilerpl": [108, 119], "requires1": 108, "requires2": 108, "tool_requires1": 108, "tool_requires2": 108, "magic": 108, "mygam": 108, "mytempl": 108, "full_path": 108, "conan_vers": [108, 149], "brack": 108, "not_templ": 108, "image2": 108, "guess": [109, 150, 173, 243], "Be": [109, 125, 126, 147, 230, 252], "carlosz": 109, "ios_bas": 109, "ios_simul": 109, "clang_15": 109, "package_set": 109, "build_env": 109, "registri": [110, 239], "usernam": [110, 117, 150, 154, 174], "ap": 110, "allowed_packag": [110, 174], "insert": [110, 174], "conan_login_": 110, "expos": [110, 117, 130, 150, 230], "new_nam": [110, 174], "keyword": [111, 157, 203, 206], "intact": 111, "smell": [111, 271], "manifest": [115, 119, 261], "sys_vers": 116, "1316": 116, "mainli": [117, 240], "pro": [117, 238, 240], "conan_server_hom": 117, "server_dir": 117, "server_directori": 117, "prior": [117, 161], "hot": 117, "relaunch": 117, "jwt_secret": 117, "ijkhyoiouinmxcrtytrr": 117, "jwt_expire_minut": 117, "120": 117, "ssl_enabl": 117, "port": [117, 240], "9300": [117, 240], "public_port": 117, "host_nam": 117, "localhost": [117, 201, 239, 240], "authorize_timeout": 117, "1800": 117, "disk_storage_path": 117, "disk_authorize_timeout": 117, "updown_secret": 117, "hjhjujkjkjkjkluyyuuyhj": 117, "write_permiss": 117, "lasot": 117, "default_us": 117, "default_user2": 117, "read_permiss": 117, "jwt": 117, "random": [117, 190], "safe": [117, 119, 139, 186], "anytim": 117, "amount": 117, "ip": [117, 201], "domain": 117, "168": 117, "docker": [117, 239], "9999": 117, "p9300": 117, "traffic": 117, "somedir": [117, 210], "crt": 117, "pem": [117, 149], "reject": 117, "regist": 117, "plain": [117, 119], "premis": 117, "firewal": 117, "trust": 117, "sysadmin": 117, "restrict": [117, 119, 152], "comma": [117, 119], "allowed_user1": 117, "allowed_user2": 117, "packagea": 117, "john": [117, 119], "peter": 117, "custom_authent": 117, "authenticator_nam": 117, "collabor": [117, 166], "htpasswd": 117, "schiffner": 117, "uilianri": 117, "my_authent": 117, "get_class": 117, "myauthent": 117, "valid_us": 117, "plain_password": 117, "factori": 117, "custom_author": 117, "authorizer_nam": 117, "my_author": 117, "authenticationexcept": 117, "forbiddenexcept": 117, "myauthor": 117, "_check_conan": 117, "deni": [117, 199], "_check_packag": 117, "_check": 117, "check_read_conan": 117, "check_write_conan": 117, "check_delete_conan": 117, "check_read_packag": 117, "check_write_packag": 117, "check_delete_packag": 117, "conform": 117, "check_": 117, "conanfilerefer": 117, "meanwhil": 117, "_packag": 117, "packagerefer": 117, "443": 117, "server_nam": 117, "myservernam": 117, "mydomain": 117, "proxy_pass": 117, "ssl_certif": 117, "ssl_certificate_kei": 117, "mod_wsgi": 117, "apache2": 117, "site": [117, 119], "0_conan": 117, "virtualhost": 117, "80": 117, "wsgiscriptalia": 117, "dist": 117, "server_launch": 117, "wsgicallableobject": 117, "wsgipassauthor": 117, "grant": 117, "srv": 117, "helloconan": [118, 119, 182, 206, 258], "varieti": 118, "member": [118, 119, 130, 178], "_my_data": 118, "_my_help": 118, "lowercas": [119, 253, 272], "101": 119, "charact": [119, 154, 194, 195, 253], "shorter": [119, 195], "z0": 119, "9_": 119, "alphanumer": [119, 253], "ing": 119, "pkgname": [119, 224, 246], "pre1": [119, 253, 272], "build2": [119, 253], "pkgversion": 119, "programmat": 119, "mychannel": 119, "short": [119, 253], "incred": 119, "spdx": 119, "peopl": 119, "smith": 119, "protocinstallerconan": 119, "protoc_instal": 119, "buffer": 119, "rpc": 119, "eigenconan": 119, "eigen": 119, "tuxfamili": 119, "mylibconan": 119, "otherlib": 119, "otherus": 119, "bracket": [119, 272], "alpha": [119, 272], "tool_a": 119, "tool_b": 119, "gtest": [119, 123, 130, 136, 145, 224, 244, 251, 257, 262], "downstream": [119, 123, 135, 136, 178, 190, 269], "other_test_tool": 119, "pyreq": [119, 131, 159, 178], "myconanfilebas": [119, 131], "utilsbas": 119, "tmp": [119, 191, 199, 251, 252, 254, 255, 257, 260], "got": [119, 259, 265, 270], "shutil": [119, 139], "emul": [119, 152, 225, 270], "mistak": 119, "yaml": 119, "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 119, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 119, "opt": [119, 195, 215, 216, 272, 274], "7zip": [119, 145, 150], "7z": 119, "determin": [119, 136, 150, 194, 245], "gnu20": [119, 152], "get_saf": [119, 125, 126, 217, 247], "compiler_vers": [119, 150, 186], "feasibl": [119, 135], "is_android": 119, "option3": 119, "option4": 119, "comparison": [119, 238, 272], "encapsul": 119, "zwave": 119, "reference_pattern": 119, "option_nam": 119, "condition": [119, 121, 122, 126, 130, 139, 224, 225, 247, 249, 254, 261], "otherpkg": 119, "some_opt": 119, "overridden": [119, 178, 201], "123": [119, 150, 178], "conaninvalidconfigur": [119, 142, 143, 186, 247, 269], "word": [119, 131, 152, 271], "freez": 119, "overriden": [119, 201], "234": [119, 178], "particularli": [119, 132, 134], "explanatori": 119, "reference_conanfile_methods_package_id": 119, "package_id_python_mod": 119, "semver": [119, 231, 272, 274], "modif": [119, 134, 152, 191, 194, 246, 271, 274], "unrelated_mod": 119, "ever": 119, "pocotimerconan": 119, "foorecip": 119, "myrecip": 119, "methodconan": 119, "export_fold": [119, 128], "codebas": 119, "androidndk": [119, 135], "define_path": [119, 132, 135, 194], "fill": [119, 161, 177, 210], "append_path": [119, 135, 194], "runtime_var": 119, "flag3": [119, 135], "flag1": [119, 135, 149, 150, 215], "flag2": [119, 135, 149, 150], "expandattributedsourc": [119, 135], "unset": [119, 135, 149, 150, 152, 194, 207], "flag0": [119, 135], "pop": [119, 220, 245], "friendli": 119, "emit": 119, "taskflow": 119, "odr": [119, 136], "violat": [119, 136], "libressl": 119, "boringssl": 119, "libav": 119, "ffmpeg": [119, 157], "mariadb": 119, "mysql": 119, "libjpeg": 119, "9d": 119, "turbo": 119, "libjpegturbo": 119, "openbla": 119, "cbla": 119, "lapack": 119, "redund": 119, "myconsum": [119, 259], "my_android_ndk": 119, "var1": [119, 150], "green": 119, "neutral": 119, "white": [119, 154], "yellow": 119, "red": 119, "distinct": 119, "tend": 119, "auto_shared_fp": 119, "auto_header_onli": 119, "parenthes": 119, "extensions_properti": 119, "abi": [119, 152, 180, 244], "validate_build": 120, "mybuildsystem": 121, "interrupt": 121, "lift": 121, "info_build": 122, "myvalu": [122, 191, 194, 220], "fullsourc": 122, "theori": [123, 247], "parameter": 123, "ran": [123, 140, 160, 251, 257], "nutshel": [123, 208], "mylibrecip": 123, "myapprecip": 123, "myapp": [123, 274], "gettext": 123, "libgettext": 123, "constrain": [125, 252], "sse2": 125, "with_sse2": 125, "elif": 126, "deploy_fold": [127, 170, 194], "myfil": [129, 178, 199, 274], "export_conandata_patch": [129, 198], "conanvcvar": [130, 191, 220, 225, 226, 227], "repetit": [130, 135], "mygener": [130, 159], "mygen": [130, 159], "dylib": [130, 135, 182, 199, 206, 245, 252, 260], "dll": [130, 133, 135, 195, 245, 260], "xxxdir": 130, "indirectli": 130, "buildenv_info": [130, 132, 194, 196, 254, 259], "runenv_info": [130, 132, 194, 196, 197, 254, 259], "is_build_context": 130, "fashion": 130, "pcre": 130, "44": 130, "expat": 130, "35": [130, 258, 271], "1k": 130, "criteria": 130, "direct_host": 130, "direct_build": 130, "heavili": 130, "mycomp": 130, "mylicens": 131, "overwritten": [131, 135, 139], "baseconan": 131, "derivedconan": 131, "deriv": [131, 139], "uncondition": 131, "datafil": 131, "my": [131, 132, 135, 150, 152, 161, 178, 201, 208, 220], "awesom": 131, "me": 131, "__init__": [131, 159, 161, 183, 226], "constructor": [131, 192, 203, 206, 208, 221, 230, 234], "subdirectori": 132, "classic": [132, 152, 216, 256], "hopefulli": 132, "release64": 132, "stub": 132, "my_includ": 132, "sayconan": [132, 266], "mydata_path": 132, "obvious": 132, "mydata_path2": 132, "my_conf_fold": 132, "creating_packages_package_method": 133, "relax": [134, 270], "assumpt": [134, 247, 270], "couldn": 134, "disadvantag": [134, 273], "lose": 134, "although": [134, 195, 262], "predict": 134, "obj": 135, "preprocessor": [135, 185, 191, 208, 220, 225, 226], "property_nam": 135, "property_valu": 135, "xml": [135, 225], "pkg_config_nam": [135, 211], "zmq": 135, "zmq_static": 135, "ws2_32": 135, "get_properti": 135, "crypto": [135, 211, 214], "define_crypto": 135, "headers_ssl": 135, "obj_ext": 135, "prepend_path": [135, 194], "mypath": [135, 194, 259], "myarmarch": 135, "otherarch": 135, "my_android_arch": 135, "myrunpath": 135, "mypkghom": 135, "ti": 135, "former": [135, 270], "virtualrunenv": [135, 150, 179, 191, 193, 194, 195, 245, 254, 259], "transmit": [135, 274], "exceptionhandl": [135, 149], "async": [135, 149, 203], "bundl": [135, 239], "android_ndk": 135, "albeit": 135, "adequ": 135, "claus": 136, "catch2": [136, 251], "seem": 136, "ambigu": [136, 274], "priorit": [137, 138, 192, 199, 269, 270], "tarbal": [139, 230, 238, 271], "check_sha1": [139, 198], "pococonan": 139, "zip_nam": 139, "pocoproject": 139, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 139, "unlink": 139, "bypass": 139, "appar": 139, "problemat": [139, 272], "destroi": [139, 152, 163], "lead": [139, 247], "frozen": 139, "realiz": [140, 246, 270], "gtk": 140, "undesir": 140, "libgtk": 140, "pkg1": [140, 190, 234], "pkg2": [140, 190, 234], "prove": [141, 262], "succe": [142, 234], "cfc18fcc7a50ead278a7c1820be74e56": 142, "warn_tag": 144, "custom_tag": 144, "ignore_error": 144, "appropri": 144, "unnot": 144, "ninja_stdout": 144, "stringio": 144, "pin": [145, 246, 271, 273], "revision1": 145, "70": 145, "revision2": 145, "00": [145, 206, 271], "inde": 145, "aka": [146, 182], "project1": [147, 224], "project2": [147, 224], "unauthor": 148, "ask": [148, 154], "conan_login_usernam": [148, 154], "conan_login_username_": [148, 154], "conan_password": [148, 154], "conan_password_": [148, 154], "admin": [148, 239], "emptiv": 148, "getenv": [148, 150, 153, 195], "mytk": [148, 153], "mytoken": [148, 153], "whatev": [149, 150, 158, 216], "heaviest": 149, "dowload": 149, "danielm": 149, "my_conan_storage_fold": 149, "recurr": 149, "my_download_cach": 149, "confvar": [149, 150], "hint": [149, 150], "yyi": [149, 150], "ins": 149, "zzz": [149, 150], "everywher": [149, 150], "discret": 149, "establish": 149, "packagenam": [149, 190], "orgnam": 149, "_must_": 149, "cpu_count": 149, "myconf1": 149, "detect_o": [149, 150], "myconf2": 149, "detect_arch": [149, 150], "conan_home_fold": 149, "eval": 149, "integ": [149, 174, 231], "unmodifi": 149, "rid": [149, 150], "f1": 149, "f2": 149, "f0": 149, "pai": [149, 260], "tl": [149, 151, 201], "constitut": 149, "implic": [149, 252], "tool1": 150, "tool4": 150, "environmentvar1": 150, "dlib": 150, "ab": 150, "relpath": 150, "my_pkg_opt": 150, "myvalue12": 150, "mypath1": [150, 194], "path11": 150, "path12": 150, "comp": [150, 211], "chanel": 150, "ration": 150, "kitwar": 150, "3488ec5c2829b44387152a6c4b013767": 150, "20496b332552131b67fb99bf425f95f64d0d0818": 150, "profile_var": 150, "my_build_typ": 150, "referenc": [150, 190, 201], "loop": 150, "meant": [150, 253, 262], "judici": 150, "compiler_ex": 150, "detect_default_compil": 150, "default_msvc_runtim": 150, "default_compiler_vers": 150, "default_cppstd": 150, "detect_libcxx": 150, "v143": [150, 152], "gnu14": [150, 152, 208, 244], "default_msvc_ide_vers": 150, "digit": [150, 152, 272, 274], "zlib_clang_profil": 150, "my_var": [150, 259], "statement": 150, "gcc_49": 150, "my_remote_nam": 151, "windowsstor": 152, "windowsc": 152, "ios_vers": 152, "iphoneo": [152, 220], "iphonesimul": 152, "watchsimul": 152, "appletvo": 152, "appletvsimul": 152, "xrsimul": 152, "catalyst": 152, "aix": 152, "arduino": 152, "board": 152, "emscripten": 152, "neutrino": 152, "vxwork": 152, "ppc32be": 152, "ppc32": [152, 186, 234], "ppc64le": [152, 234], "ppc64": [152, 186], "armv4": 152, "armv4i": 152, "armv5el": [152, 180], "armv5hf": [152, 180], "armv6": [152, 180], "armv7hf": [152, 180, 234, 244], "armv7k": 152, "armv8_32": 152, "sparc": [152, 186, 191], "sparcv9": [152, 186], "mip": 152, "mips64": 152, "avr": 152, "s390": 152, "s390x": [152, 234], "wasm": 152, "sh4le": 152, "e2k": 152, "v5": 152, "v6": [152, 180], "v7": 152, "xtensalx6": 152, "xtensalx106": 152, "xtensalx7": 152, "sun": 152, "posix": 152, "libcstd": 152, "libstdcxx": 152, "libstlport": 152, "win32": 152, "dwarf2": 152, "sjlj": 152, "seh": 152, "98": 152, "gnu23": 152, "170": 152, "190": 152, "191": 152, "v110_xp": 152, "v120_xp": 152, "v140_xp": 152, "v141_xp": 152, "runtime_vers": 152, "v140": 152, "v141": 152, "v142": 152, "2021": [152, 216], "icx": [152, 216], "dpcpp": [152, 216], "gnu03": 152, "gpp": 152, "ne": 152, "accp": 152, "acpp": 152, "ecpp": 152, "mcst": 152, "lcc": 152, "relwithdebinfo": 152, "minsizerel": 152, "hardwar": 152, "microprocessor": 152, "microcontrol": 152, "famili": 152, "2015": 152, "2017": [152, 216, 243, 245, 247, 248], "finer": 152, "1913": 152, "dpc": [152, 216], "suppos": 152, "311": 152, "brief": [152, 239, 242], "arch_build": 152, "arch_target": 152, "powerpc": [152, 234], "endian": 152, "littl": [152, 158], "soft": 152, "float": 152, "swift": 152, "a6": 152, "a6x": 152, "chip": 152, "iphon": 152, "5c": 152, "ipad": 152, "k": 152, "aarch32": 152, "ilp32": 152, "a12": 152, "chipset": 152, "xr": [152, 199], "scalabl": [152, 238, 239], "microsystem": 152, "interlock": 152, "pipelin": [152, 154], "formerli": 152, "atmel": 152, "microchip": 152, "390": 152, "ibm": 152, "javascript": 152, "low": 152, "assembli": 152, "byte": [152, 199], "hitachi": 152, "superh": 152, "2000": 152, "512": 152, "vliw": 152, "2cm": 152, "2c": 152, "moscow": 152, "4c": 152, "8c": 152, "8c1": 152, "1c": 152, "1ck": 152, "8c2": 152, "8cb": 152, "2c3": 152, "12c": 152, "16c": 152, "32c": 152, "xtensa": 152, "lx6": 152, "dpu": 152, "esp32": 152, "esp8266": 152, "lx7": 152, "s2": 152, "s3": 152, "_glibcxx_use_cxx11_abi": [152, 191, 208], "wise": 152, "cento": [152, 234], "rogu": 152, "wave": 152, "stlport": 152, "apach": 152, "dinkum": 152, "abridg": 152, "rhel6": 152, "cache_vari": 152, "some_centos_flag": 152, "anymor": 152, "myo": 152, "mycompil": 152, "my_custom_compil": 152, "sync": [152, 203], "tarballnam": 153, "bearer": 153, "mypassword": 153, "hardcod": [153, 262, 272], "difficult": [153, 178, 251, 273], "remote_nam": [154, 174], "unauthent": 154, "unattend": 154, "stuck": 154, "autodetect": [154, 191], "tty": 154, "no_color": 154, "conan_color_dark": 154, "scheme": [154, 272, 274], "light": 154, "dark": 154, "mypythoncod": [155, 267], "altogeth": [155, 158, 191], "pre_build": [155, 161], "complement": 155, "qualiti": [155, 161], "facilit": [155, 160], "variat": [156, 269], "intercept": 157, "commmand": 157, "startswith": 157, "caller": 157, "heavy_pkg": 157, "qt": 157, "abseil": 157, "_commands_": 158, "cmd_": 158, "your_command_nam": 158, "cmd_hello": 158, "cmd_bye": 158, "topic_nam": 158, "topic1": 158, "topic2": 158, "cmd_command": 158, "output_json": 158, "parser": 158, "hello_moon": 158, "subpars": 158, "narg": 158, "mygroup": 158, "mycommand": 158, "mycommand_mysubcommand": 158, "add_my_common_arg": 158, "chose": 158, "format_graph_html": 158, "format_graph_info": 158, "field_filt": 158, "format_graph_json": 158, "format_graph_dot": 158, "graph_info": 158, "deps_graph": [158, 170], "command_subcommand": 158, "child": 158, "arg1": [158, 188, 216], "arg2": [158, 188, 216], "arg3": 158, "_conanfil": 159, "deps_info": 159, "repeatedli": [160, 274], "my_custom_deploy": 160, "hook_exampl": 161, "pre_export": 161, "field_valu": 161, "getattr": 161, "abort": 161, "hook_": 161, "replace_in_fil": [161, 198, 251], "post_packag": 161, "isdir": 161, "custom_modul": 161, "hook_print": 161, "my_print": 161, "hook_ful": 161, "pre_sourc": 161, "pre_packag": 161, "pre_package_info": 161, "post_package_info": 161, "artifacts_fold": 162, "signature_fold": 162, "conan_packag": [162, 243, 248], "written": [162, 254, 274], "twice": 162, "conan_sourc": 162, "signer": 162, "asc": 162, "listdir": 162, "isfil": 162, "profile_plugin": 163, "ordereddict": [163, 192], "profilesapi": [164, 173], "installapi": [164, 170], "graphapi": [164, 169], "exportapi": [164, 168], "newapi": [164, 172], "uploadapi": [164, 177], "downloadapi": [164, 167], "cache_fold": 165, "global_conf": 166, "settings_yml": 166, "pkgrefer": [167, 171], "download_ful": 167, "package_list": [167, 177], "load_root_test_conanfil": 169, "tested_refer": 169, "tested_python_requir": 169, "recipe_consum": 169, "load_graph": 169, "root_nod": 169, "check_upd": 169, "load_root_nod": 169, "analyze_binari": 169, "build_mod": 169, "build_modes_test": 169, "tested_graph": 169, "buildmod": 169, "install_binari": 170, "intal": 170, "install_system_requir": 170, "only_info": 170, "install_sourc": 170, "install_consum": 170, "deploy_packag": 170, "filter_packages_configur": 171, "pkg_configur": 171, "pkgconfigur": 171, "get_templ": 172, "template_fold": 172, "get_home_templ": 172, "template_nam": 172, "get_default_host": 173, "get_default_build": 173, "get_profil": 173, "get_path": 173, "sin": 173, "alphabet": [173, 272], "contact": 174, "user_xxx": 174, "only_en": 174, "user_login": 174, "user_logout": 174, "check_upstream": 177, "enabled_remot": 177, "upload_data": 177, "upload_ful": 177, "check_integr": 177, "dry_run": 177, "get_backup_sourc": 177, "mybas": 178, "cool": 178, "super": [178, 208], "pyreq_path": 178, "myfile_path": 178, "mynumb": 178, "gradual": 178, "hierarchi": 178, "is_apple_o": [179, 181], "to_apple_arch": [179, 181], "envvar": [179, 193, 194, 196, 197], "intelcc": 179, "basic_layout": 179, "nmaketoolchain": [179, 221], "sconsdep": 179, "armv5": 180, "lc_id_dylib": [182, 206], "lc_load_dylib": [182, 206], "rpath": [182, 191, 206, 245], "lc_rpath": [182, 206], "outlin": 182, "libnam": 182, "my_execut": 182, "add_rpath": 182, "executable_path": 182, "use_settings_target": 182, "ranlib": 182, "lipo": 182, "codesign": 182, "isysroot": [182, 220], "sdk_platform_path": 182, "sdk_platform_vers": 182, "libtool": 182, "alltarget": 183, "i386": [183, 220], "sdkroot": 183, "ios8": 183, "skd": 183, "conan_libpng": 184, "conan_libpng_libpng": 184, "conan_libpng_libpng_debug_x86_64": 184, "conan_libpng_libpng_release_x86_64": 184, "conan_zlib": [184, 224], "conan_zlib_zlib": 184, "conan_zlib_zlib_debug_x86_64": 184, "conan_zlib_zlib_release_x86_64": 184, "system_header_search_path": 184, "gcc_preprocessor_definit": 184, "other_cflag": 184, "other_cplusplusflag": 184, "framework_search_path": 184, "library_search_path": 184, "other_ldflag": 184, "conan_libpng_debug_x86_64": 184, "package_root_": 184, "releaseshar": [184, 190, 224, 261], "mycustomconfig": [184, 224], "conantoolchain_release_x86_64": 185, "conantoolchain_debug_x86_64": 185, "conan_global_flag": 185, "conantoolchain_": [185, 225], "_x86_64": 185, "clang_cxx_librari": 185, "clang_cxx_language_standard": 185, "macosx_deployment_target": 185, "mmacosx": 185, "_cpu_count": 186, "cgroup": 186, "skip_x64_x86": 186, "m1": [186, 220, 262], "gnu_extens": 186, "cppstd_default": 186, "dxxx": 188, "dvar": 188, "build_tool_arg": 188, "barg1": 188, "barg2": 188, "underli": 188, "diagnost": 188, "dcmake_verbose_makefil": 188, "maxcpucount": 188, "cmake_gener": 189, "shared_fals": 189, "shared_tru": 189, "chosen": [189, 216], "cmake_prefix_path": [190, 191], "cmake_module_path": [190, 191], "findxxx": 190, "conandeps_legaci": 190, "cmake_binary_dir": 190, "enumer": 190, "overal": 190, "releasedshar": 190, "my_tool": [190, 211, 214], "collid": [190, 211, 274], "capnproto": [190, 211], "_build": [190, 211], "81": 190, "fakecomp": 190, "cmake_module_file_nam": 190, "cmake_module_target_nam": 190, "dep_nam": 190, "get_cmake_package_nam": 190, "module_mod": 190, "get_find_mod": 190, "cmake_target_alias": 190, "rout": 190, "cmake_set_interface_link_directori": 190, "pragma": 190, "nosonam": 190, "sonam": 190, "cmake_config_version_compat": 190, "samemajorvers": 190, "sameminorvers": 190, "exactvers": 190, "configvers": 190, "myfilenam": [190, 201], "myfooalia": 190, "mycompon": [190, 211, 214], "varcompon": 190, "myfilenameconfig": 190, "findmyfilenam": 190, "zlibconan": 190, "alter": 190, "colon": 190, "new_component_target_nam": 190, "buildir": 190, "popul": [190, 244], "cmake_map_imported_config_": 190, "dcmake_map_imported_config_coverag": 190, "myvar_valu": 191, "mydefin": [191, 220], "mydef_valu": [191, 220], "cmake_path": 191, "cmake_position_independent_cod": 191, "nmake": [191, 192, 226], "easier": [191, 274], "schema": [191, 199, 225], "testpreset": 191, "jon": 191, "mydef": [191, 220], "myconfigdef": 191, "mydebugvalu": 191, "myreleasevalu": 191, "novalue_def": 191, "add_compile_definit": 191, "cachevari": 191, "foo2": 191, "ON": [191, 244, 265], "myconfigvar": 191, "sentenc": 191, "buildenv": [191, 194, 216, 244], "my_build_var": 191, "my_buildvar_value_overridden": 191, "runenv": [191, 194], "my_run_var": 191, "my_runvar_set_in_gener": 191, "my_env_var": 191, "my_env_var_valu": 191, "save_script": [191, 195], "other_env": 191, "compose_env": [191, 194], "extra_cxxflag": [191, 208, 226], "extra_cflag": [191, 208, 226], "extra_sharedlinkflag": 191, "extra_exelinkflag": 191, "clash": 191, "filepath": 191, "mytoolchainpackag": 191, "mytoolchain": 191, "mytoolrequir": 191, "toolchain1": 191, "toolchain2": 191, "yyyi": 191, "ninclud": 191, "generic_system": 191, "cmake_c_compil": 191, "cmake_cxx_compil": 191, "android_system": 191, "android_platform": 191, "android_stl": 191, "android_ndk_path": 191, "apple_system": 191, "cmake_osx_architectur": 191, "cmake_osx_sysroot": 191, "arch_flag": [191, 208], "m32": 191, "m64": 191, "vs_runtim": 191, "cmake_msvc_runtime_librari": 191, "cmake_cxx_extens": 191, "cmake_flags_init": 191, "cmake_xxx_flag": 191, "conan_xxx": 191, "cmake_cxx_flags_init": 191, "conan_cxx_flag": 191, "try_compil": 191, "in_try_compil": 191, "find_path": 191, "cmake_skip_rpath": 191, "skip_rpath": 191, "build_shared_lib": [191, 254, 265], "output_dir": 191, "cmake_install_xxx": 191, "cmake_install_bindir": 191, "cmake_install_sbindir": 191, "cmake_install_libexecdir": 191, "cmake_install_libdir": 191, "cmake_install_oldincludedir": 191, "cmake_install_datarootdir": 191, "mybin": [191, 208], "myinclud": [191, 208], "myre": [191, 208], "block_nam": 191, "new_tmp": 191, "other_toolset": 191, "generic_block": 191, "methodtyp": 191, "mygenericblock": 191, "helloworld": 191, "myblock": 191, "mynewblock": 191, "64bit": [191, 270], "32bit": [191, 270], "ppc": 191, "r23c": 191, "cmake_c_flags_init": 191, "add_definit": 191, "cmake_xcode_attribute_enable_bitcod": 191, "cmake_xcode_attribute_clang_enable_objc_arc": 191, "cmake_xcode_attribute_gcc_symbols_private_extern": 191, "cmake_sysroot": 191, "cmp0149": 191, "cmake_rc_compil": 191, "cmake_objc_compil": 191, "objcpp": [191, 220], "cmake_objcxx_compil": 191, "cmake_cuda_compil": 191, "cmake_fortran_compil": 191, "cmake_asm_compil": 191, "cmake_hip_compil": 191, "cmake_ispc_compil": 191, "collaps": 192, "aggregated_cpp_info": 192, "topological_sort": 192, "revers": 192, "dep_cppinfo": 192, "get_sorted_compon": 192, "fewer": 192, "other_cppinfo": 192, "myvar2": 194, "myvalue2": 194, "myvar3": 194, "myvalue3": 194, "myvar4": 194, "mypath2": 194, "mypath3": 194, "env1": [194, 195], "env2": 194, "prevail": [194, 269], "autootoolsdep": 194, "mypkg_data_dir": 194, "datadir": [194, 211, 220], "filesystem": [194, 201], "deploy_base_fold": 194, "my_env_fil": 195, "ps1": [195, 196, 197, 227, 248], "var2": 195, "variable_refer": 195, "penv": 195, "32k": 195, "2048": 195, "closer": 195, "varnam": 195, "ld_library_path": [196, 197, 245, 254, 259], "deactivate_conanbuildenv": [196, 244, 247, 248, 251], "accumul": [196, 197, 207, 232], "auto_gener": [196, 197], "dyld_library_path": [197, 245], "dyld_framework_path": [197, 245], "deactivate_conanrunenv": 197, "rm": 198, "rmdir": 198, "chdir": 198, "trim_conandata": 198, "collect_lib": 198, "check_md5": 198, "check_sha256": 198, "absolute_to_relative_symlink": [198, 260], "remove_external_symlink": 198, "remove_broken_symlink": 198, "ignore_cas": 199, "insensit": 199, "utf": [199, 225], "otherfil": 199, "robocopi": 199, "abe2h9f": 199, "file_path": [199, 200], "mydir": 199, "newdir": 199, "do_someth": 199, "tzb2": 199, "bz2": 199, "txz": 199, "xz": 199, "keep_permiss": [199, 201], "bigfil": 199, "danger": 199, "inter": 199, "libmylib": [199, 206], "stare": 199, "libmath": 199, "other_libdir": 199, "rwxr": 199, "lrwxr": 199, "md5sum": 200, "sha256sum": 200, "md5": 201, "ftp": 201, "impli": [201, 271, 274], "httpbasic": 201, "sha": 201, "someurl": 201, "somefil": 201, "e5d695597e9fa520209d1b41edad2a27": 201, "ia64": 201, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 201, "base_path": 203, "patch_str": 203, "fuzz": 203, "fuzzi": 203, "0001": 203, "buildflatbuff": 203, "0002": 203, "patch_typ": 203, "patch_sourc": 203, "flatbuff": 203, "5650": 203, "patch_descript": 203, "misc": 203, "1232": 203, "1292": 203, "g_test_add_func": 203, "paus": 203, "cancel": 203, "do_pause_cancel_test": 203, "g_test_add_data_func": 203, "steal": 203, "gint_to_point": 203, "do_stealing_test": 203, "length": 203, "do_response_informational_content_length_test": 203, "ret": 203, "g_test_run": 203, "0003": 203, "base_fold": 204, "configure_arg": 206, "make_arg": 206, "_conanbuild": [206, 208], "destdir": 206, "unix_path": [206, 221], "install_nam": 206, "cmdsize": 206, "48": 206, "offset": 206, "stamp": 206, "jan": 206, "1970": 206, "loader": 206, "wl": [206, 210], "conanautotoolsdep": 207, "undesired_valu": 207, "seamlessli": 208, "precalcul": 208, "my_argu": 208, "sbindir": [208, 220], "oldincludedir": 208, "datarootdir": 208, "he": 208, "extra_defin": [208, 226], "extra_ldflag": [208, 226], "gcc_cxx11_abi": 208, "build_type_flag": 208, "sysroot_flag": 208, "apple_arch_flag": [208, 220], "apple_isysroot_flag": [208, 220], "msvc_runtime_flag": [208, 221], "myflag": 208, "update_configure_arg": 208, "updated_flag": 208, "update_make_arg": 208, "update_autoreconf_arg": 208, "xxxxxx_arg": 208, "prune": [208, 270], "gold": [208, 220], "lld": [208, 220], "nvcc": 208, "fc": 208, "mk": 209, "conan_dep": 209, "conan_name_zlib": 209, "conan_version_zlib": 209, "conan_reference_zlib": 209, "conan_root_zlib": 209, "zlib273508b343e8c": 209, "conan_include_dirs_zlib": 209, "conan_include_dir_flag": 209, "conan_lib_dirs_zlib": 209, "conan_lib_dir_flag": 209, "conan_bin_dirs_zlib": 209, "conan_bin_dir_flag": 209, "conan_libs_zlib": 209, "conan_lib_flag": 209, "conan_include_dir": 209, "conan_lib_dir": 209, "conan_bin_dir": 209, "conan_lib": [209, 266], "conan_define_flag": 209, "conan_system_lib_flag": 209, "lz": [209, 211], "libastr": 210, "_use_libastr": 210, "astral": 210, "linkflag": [210, 232], "tmp_dir": 210, "is_system": 210, "rt": 210, "your_us": 211, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 211, "pkg_config_alias": 211, "xxxxx": [211, 215, 220], "freeform": 211, "component_vers": 211, "custom_cont": 211, "mynam": 211, "componentnam": 211, "alias1": 211, "alias2": 211, "rcpath": 213, "bz": [213, 214], "fresh": 213, "new_local_repositori": 214, "build_fil": 214, "cc_import": 214, "cc_librari": 214, "z_precompil": 214, "static_librari": 214, "libz": [214, 245], "hdr": 214, "glob": 214, "filegroup": 214, "zlib_binari": 214, "bazel_target_nam": 214, "bazel_repository_nam": 214, "my_target": 214, "my_repo": 214, "cxxopt": 215, "dynamic_mod": 215, "compilation_mod": 215, "force_p": 215, "copt": 215, "flagn": 215, "conlyopt": 215, "linkopt": 215, "dbg": 215, "crosstool_top": 215, "icpx": 216, "conanintelsetvar": 216, "intelprofil": 216, "ms_toolset": 216, "batch": 216, "argn": 216, "intel64": 216, "ia32": 216, "ia": 216, "mysrcfold": 217, "reconfigur": 219, "dprefix": 219, "conan_meson_cross": 219, "n_job": 219, "55": [220, 246], "default_librari": 220, "buildtyp": 220, "libexecdir": 220, "localedir": 220, "mandir": 220, "infodir": 220, "wrap_mod": 220, "nofallback": 220, "cpp_arg": 220, "c_arg": 220, "c_link_arg": 220, "cpp_link_arg": 220, "conan_meson_xxxx": 220, "with_msg": 220, "hi": 220, "everyon": 220, "contrast": 220, "packageopt": 220, "upon": 220, "mio": 220, "ios_host_profil": 220, "objc_arg": 220, "objc_link_arg": 220, "objcpp_arg": 220, "objcpp_link_arg": 220, "android_host_profil": 220, "c_ld": 220, "cc_ld": 220, "cpp_ld": 220, "cxx_ld": 220, "as_": 220, "AS": [220, 226], "windr": 220, "macosx": 220, "objcflag": 220, "objcxxflag": 220, "check_min_v": 221, "is_msvc": 221, "is_msvc_static_runtim": 221, "msvs_toolset": 221, "raise_invalid": 222, "visualstudio": 222, "worth": 222, "mt": [222, 225], "neither": 222, "myreleas": 223, "myplatform": 223, "conan_zlib_vars_release_x64": 224, "conanzlibxxxx": 224, "conanzlibincludedir": 224, "conanzliblib": 224, "conan_zlib_vars_debug_x64": 224, "conanzlib": 224, "conan_zlib_release_x64": 224, "conan_zlib_debug_x64": 224, "conan_bzip": 224, "bzip": 224, "conan_bzip2": 224, "conan_pkgname_compname_vars_release_x64": 224, "compnam": 224, "conan_pkgname_compname_release_x64": 224, "conan_pkgname_compnam": 224, "conan_pkgnam": 224, "conan_pkgname_vars_release_x64": 224, "gather": [224, 272], "catch": 224, "executablepath": 224, "binarydirectori": 224, "custombuild": 224, "caexcludepath": 224, "uncondit": 224, "conan_": 224, "_var": 224, "conantoolchain_release_x86": 225, "mtd": 225, "mdd": 225, "clcompil": 225, "windowstargetplatformvers": 225, "additionalopt": 225, "preprocessordefinit": 225, "vcvarsal": [225, 227], "includeextern": 225, "xmln": 225, "2003": 225, "itemdefinitiongroup": 225, "propertygroup": 225, "conannmakedep": 226, "_link_": 226, "conannmaketoolchain": 226, "my_flag": 226, "env_var": 226, "cl_env_var": 226, "winsdk": 227, "thin": [230, 253], "repourl": 230, "children": 230, "hidden_output": 230, "rev": 230, "get_remote_url": 230, "commit_in_remot": 230, "occurr": 230, "get_repo_root": 230, "toplevel": 230, "fetch_commit": 230, "qualifi": [231, 272], "sconscript_conandep": 232, "cpppath": 232, "binpath": 232, "frameworkpath": 232, "cppdefin": 232, "ccflag": 232, "shlinkflag": 232, "sconscript": 232, "mergeflag": 232, "chocolatei": 233, "libgl": 234, "libglvnd": 234, "devel": 234, "mesa": 234, "linuxmint": 234, "pidora": 234, "scientif": 234, "xenserv": 234, "amazon": 234, "oracl": 234, "amzn": 234, "almalinux": 234, "rocki": 234, "fedora": 234, "rhel": 234, "mageia": 234, "manjaro": 234, "opensus": 234, "sle": 234, "host_packag": 234, "install_substitut": 234, "packages_substitut": 234, "pkg3": 234, "_arch_nam": 234, "multiarch": 234, "arch_nam": 234, "libxcb": 234, "util0": 234, "packages_altern": 234, "amd64": 234, "conan_arch_set": 234, "apt_arch_set": 234, "86": 234, "armv7hl": 234, "lib32": 234, "c3i": 237, "profession": 238, "matrix": [238, 269, 270], "8081": 239, "8082": 239, "bintrai": 239, "jdk": 239, "dialog": 239, "bottl": 240, "wsgirefserv": 240, "ctrl": 240, "my_local_serv": 241, "lan": 241, "easiest": 243, "conan_export": 243, "f1fadf0d3b196dc0332750354ad8ab7b": [243, 248], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 243, "dd7bf2a1ab4eb5d1943598c09b616121": 243, "raspberri": 244, "pi": 244, "someprofil": 244, "gnueabihf": 244, "compressorrecip": [244, 246, 247], "identif": 244, "elf": 244, "lsb": 244, "eabi5": 244, "sysv": 244, "armhf": 244, "buildid": 244, "2a216076864a1b1f30211debf297ac37a9195196": 244, "different_configur": 245, "anywher": 245, "tutorial_us": 245, "zlib1": 245, "reinstal": 245, "dyld": 245, "41259": 245, "wonder": 245, "answer": 245, "li": [245, 272], "factor": 245, "breakdown": 245, "approxim": [246, 272], "87a7211557b6690ef5bf7fc599dd8349": 246, "f305019023c2db74d1001c5afa5cf362": 246, "82202701ea360c0863f1db5008067122": 246, "bd533fb124387a214816ab72c8d1df28": 246, "59": 246, "58": 246, "3b9e037ae1c615d045a06c67d88491a": 246, "chronolog": 246, "tediou": [246, 264, 273], "occas": 246, "4524fcdd41f33e8df88ece6e755a5dcc": 246, "1650538915": 246, "154": 246, "stai": 246, "conanfile_pi": 247, "neater": 247, "base64": 247, "auxiliari": 247, "v8": 247, "cmake_vers": 248, "3e3d8f3a848b2a60afafbe7a0955085a": 248, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 248, "48bc7191ec1ee467f1e951033d7d41b2": 248, "f2f48d9745706caf77ea883a5855538256e7f2d4": 248, "6c519070f013da19afd56b52c465b596": 248, "scaffold": 249, "walkthrough": 249, "peculiar": 249, "fanci": 250, "colour": [250, 261], "creating_packag": [250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262], "add_requir": 250, "check_max_cppstd": [250, 261], "check_min_cppstd": [250, 257, 261], "require_fmt": 250, "crimson": [250, 261], "emphasi": [250, 261], "bold": [250, 261], "__x86_64__": [250, 253, 255, 258, 265], "__cplusplu": 250, "201103": 250, "__gnuc__": 250, "__gnuc_minor__": 250, "__clang_major__": 250, "__clang_minor__": 250, "__apple_build_version__": 250, "13160021": 250, "build_method": 251, "with_test": 251, "with_fmt": [251, 252, 261], "novelti": 251, "compose_messag": 251, "add_subdirectori": 251, "googletest": [251, 257], "gtest_main": [251, 257], "hellotest": 251, "composemessag": 251, "expect_eq": 251, "c51d80ef47661865": 251, "3ad4c6873a47059c": 251, "tear": [251, 257], "82b6c0c858e739929f74f59c25c187b927d514f3": 251, "particular": 251, "uncommon": 251, "configure_options_set": 252, "met": 252, "ng": 252, "738feca714b7251063cc51448da0cf4811424e7c": 252, "7fe7f5af0ef27552": 252, "3bd9faedc711cbb4fdf10b295268246": 252, "e6b11fb0cb64e3777f8d62f4543cd6b3": 252, "5c497cbb5421cbda": 252, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 252, "19a2e552db727a2b": 252, "67b887a0805c2a535b58be404529c1f": 252, "c7796386fcad5369": 252, "depict": 252, "diagram": 252, "intuit": 252, "2a899fd0da3125064bf9328b8db681cd82899d56": 252, "f0d1385f4f90ae465341c15740552d7": 252, "8a55286c6595f662": 252, "601209640bd378c906638a8de90070f7": 252, "d1b3f3666400710fec06446a697f9eeddd1235aa": 252, "24a2edf207deeed4151bd87bca4af51c": 252, "concret": 253, "email": 253, "constraint": [253, 270, 274], "completitud": 253, "leverag": 253, "dcbfe21e5250264b26595d151796be70": 253, "__gnuc__4": [253, 255, 258, 265], "__gnuc_minor__2": [253, 255, 258, 265], "__clang_major__13": [253, 255, 258], "__clang_minor__1": [253, 255, 258], "__apple_build_version__13160021": [253, 255, 258], "6679492451b5d0750f14f9024fdbf84e19d2941b": 253, "customis": 253, "breakag": [253, 255], "package_inform": 254, "output_nam": 254, "a311fcf8a63f3206": 254, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [254, 260, 262], "44d78a68b16b25c5e6d7e8884b8f58b8": 254, "a8cb81b31dc10d96": 254, "handle_sourc": 255, "mutabl": 255, "0fcb5ffd11025446": 255, "update_sourc": 255, "369786d0fb355069": 255, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 255, "saw": [256, 257, 270], "other_packag": [257, 258, 259], "sumconan": 257, "sum": 257, "8d9f1fb3655adcb348befcd8374c5292": 257, "pid": [257, 258], "header_only_gtest": 257, "test_sum": 257, "9bf83ef65d5ff0d6": 257, "sumtest": 257, "basicsum": 257, "lack": 257, "3rd": 258, "circumst": 258, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 258, "deep": 258, "local_include_fold": 258, "local_lib_fold": 258, "prebuilt_binari": 258, "vendor_hello_librari": 258, "_o": 258, "_arch": 258, "9c7634dfe0369907f569c4e583f9bc50": 258, "522dcea5982a3f8a5b624c16477e47195da2f84f": 258, "63fead0844576fc02943e16909f08fcdddd6f44b": 258, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [258, 259], "28": 258, "a0cd51c51fe9010370187244af885b0efcc5b69b": 258, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 258, "dcf68e932572755309a5f69f3cee1bede410e907": 258, "somewher": 258, "prebuilt_remote_binari": 258, "base_url": 258, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 258, "secure_scannerrecip": 259, "secure_scann": 259, "scanner": 259, "secure_scannertestconan": 259, "my_consum": 259, "enviorn": 259, "overwrot": 259, "package_method": 260, "predetermin": 260, "b5857f2e70d1b2fd": 260, "bf7f5b9a3bb2c957742be4be216dfcbb": 260, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [260, 262], "47b4c4c61c8616e5": 260, "222db0532bba7cbc": 260, "50f91e204d09b64b24b29df3b87a2f3a": 260, "96ed9fb1f78bc96708b1abf4841523b0": 260, "21ec37b931782de8": 260, "preparing_the_build": 261, "optional_fmt": 261, "target_compile_definit": 261, "using_fmt": 261, "endl": 261, "debugshar": 261, "testing_packag": 262, "hellotestconan": 262, "cd132b054cf999f31bd2fd2424053ddc": 262, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 262, "1d9bb4c015de50bcb4a338c07229b3bc": 262, "4ff3fd65a1d37b52436bf62ea6eaac04": 262, "d136b3379fdb29bdfe31404b916b29e1": 262, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 262, "ee8cbd2bf32d1c89e553bdd9d5606127": 262, "costli": 263, "entir": 263, "depth": 263, "developing_packag": [264, 265, 266], "editable_packag": 264, "fledg": 264, "perspect": 264, "increment": 264, "trial": 265, "phase": 265, "local_package_development_flow": 265, "ve": 265, "cmakedeps_macro": 265, "f09ef573c22f3919ba26ee91ae444eaa": 265, "__cplusplus201103": 265, "__clang_major__14": 265, "__apple_build_version__14000029": 265, "po": 265, "examin": 266, "package_layout": 266, "sayb3ea744527a91": 266, "say830097e941e10": 266, "libsai": 266, "say8938ceae216fc": 266, "say_say_releas": 266, "local_fold": 266, "expir": 267, "increas": [267, 268], "oppos": [267, 274], "intent": 267, "intro": [269, 270], "credit": 269, "videogam": 269, "0fe4e6890766f7b8e21f764f0049aec7": 269, "d639998c2e55cf36d261ab319801c322": 269, "905c3f0babc520684c84127378fefdd0": [269, 270], "converg": 269, "mathemat": 270, "sound32": 270, "sound": 270, "1675278126": 270, "0552447": 270, "83d4b7bf607b3b60a6546f8b58b5cdd7": 270, "1675278904": 270, "0791488": 270, "1675278900": 270, "0103245": 270, "enforc": 270, "paramount": 270, "1675278901": 270, "7527816": 270, "harm": 270, "1675294635": 270, "6049662": 270, "1675294637": 270, "9775107": 270, "2475ece651f666f42c155623228c75d2": 271, "2b547b7f20f5541c16d0b5cbcf207502": 271, "licenc": 271, "1d674b4349d2b1ea06aa6419f5f99dd9": 271, "chat": 271, "17b45a168519b8e0ed178d822b7ad8c8": 271, "12f87e1b8a881da6b19cc7f229e16c76": 271, "ago": 271, "determinist": 271, "subsequ": 271, "8b8c3deef5ef47a8009d4afaebfe952": 271, "8e8d380347e6d067240c4c00132d42b1": 271, "c347faaedc1e7e3282d3bfed31700019": 271, "wast": 271, "apprecip": [272, 273], "newest": 272, "hold": 272, "letter": [272, 274], "becam": 272, "evid": 272, "demand": 272, "entiti": 272, "numer": 272, "tild": 272, "caret": 272, "include_prereleas": 272, "henc": 272, "fast": 273, "blown": 273, "intervent": 273, "excit": 274, "youtub": 274, "kkgglzm5ou": 274, "tribe": 274, "026": 274, "requirements_trait": 274, "modular": 274, "subapi": 274, "redesign": 274, "send": 274, "thorough": 274, "mydeploi": 274, "meaning": 274, "mylib_a": 274, "mylib_b": 274, "034": 274, "new_lockfil": 274, "enviro": 274, "shorten": 274, "short_path": 274, "incredibuild": 274, "sigstor": 274, "accur": 274, "bulk": 274, "teh": 274}, "objects": {"conan.api.conan_api": [[165, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[166, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[166, 1, 1, "", "global_conf"], [166, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[167, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.download.DownloadAPI": [[167, 2, 1, "", "download_full"], [167, 2, 1, "", "package"], [167, 2, 1, "", "recipe"]], "conan.api.subapi.export": [[168, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[169, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[169, 2, 1, "", "analyze_binaries"], [169, 2, 1, "", "load_graph"], [169, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[170, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[170, 2, 1, "", "install_binaries"], [170, 2, 1, "", "install_consumer"], [170, 2, 1, "", "install_sources"], [170, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[171, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[171, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[172, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[172, 2, 1, "", "get_home_template"], [172, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[173, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[173, 2, 1, "", "detect"], [173, 2, 1, "", "get_default_build"], [173, 2, 1, "", "get_default_host"], [173, 2, 1, "", "get_path"], [173, 2, 1, "", "get_profile"], [173, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[174, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[174, 2, 1, "", "add"], [174, 2, 1, "", "disable"], [174, 2, 1, "", "enable"], [174, 2, 1, "", "get"], [174, 2, 1, "", "list"], [174, 2, 1, "", "remove"], [174, 2, 1, "", "rename"], [174, 2, 1, "", "update"], [174, 2, 1, "", "user_login"], [174, 2, 1, "", "user_logout"]], "conan.api.subapi.remove": [[175, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[176, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[177, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[177, 2, 1, "", "check_upstream"], [177, 2, 1, "", "get_backup_sources"], [177, 2, 1, "", "prepare"], [177, 2, 1, "", "upload_full"]], "conan.tools.android": [[180, 3, 1, "", "android_abi"]], "conan.tools.apple": [[182, 0, 1, "", "XCRun"], [182, 3, 1, "", "fix_apple_shared_install_name"], [182, 3, 1, "", "is_apple_os"], [182, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[182, 1, 1, "", "ar"], [182, 1, 1, "", "cc"], [182, 1, 1, "", "cxx"], [182, 2, 1, "", "find"], [182, 1, 1, "", "install_name_tool"], [182, 1, 1, "", "libtool"], [182, 1, 1, "", "otool"], [182, 1, 1, "", "ranlib"], [182, 1, 1, "", "sdk_path"], [182, 1, 1, "", "sdk_platform_path"], [182, 1, 1, "", "sdk_platform_version"], [182, 1, 1, "", "sdk_version"], [182, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[183, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[183, 2, 1, "", "__init__"], [183, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[186, 3, 1, "", "check_max_cppstd"], [186, 3, 1, "", "check_min_cppstd"], [186, 3, 1, "", "default_cppstd"], [186, 3, 1, "", "supported_cppstd"], [186, 3, 1, "", "valid_max_cppstd"], [186, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[186, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[186, 3, 1, "", "can_run"], [186, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[188, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[188, 2, 1, "", "build"], [188, 2, 1, "", "configure"], [188, 2, 1, "", "ctest"], [188, 2, 1, "", "install"], [188, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[190, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[190, 2, 1, "", "generate"], [190, 2, 1, "", "get_cmake_package_name"], [190, 2, 1, "", "get_find_mode"], [190, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[189, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[191, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[191, 2, 1, "", "generate"]], "conan.tools.env.environment": [[195, 0, 1, "", "EnvVars"], [194, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[195, 2, 1, "", "apply"], [195, 2, 1, "", "get"], [195, 2, 1, "", "items"], [195, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[194, 2, 1, "", "append"], [194, 2, 1, "", "append_path"], [194, 2, 1, "", "compose_env"], [194, 2, 1, "", "define"], [194, 2, 1, "", "deploy_base_folder"], [194, 2, 1, "", "dumps"], [194, 2, 1, "", "prepend"], [194, 2, 1, "", "prepend_path"], [194, 2, 1, "", "remove"], [194, 2, 1, "", "unset"], [194, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[196, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[196, 2, 1, "", "environment"], [196, 2, 1, "", "generate"], [196, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[197, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[197, 2, 1, "", "environment"], [197, 2, 1, "", "generate"], [197, 2, 1, "", "vars"]], "conan.tools.files": [[199, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[199, 3, 1, "", "trim_conandata"], [199, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[199, 3, 1, "", "copy"]], "conan.tools.files.files": [[199, 3, 1, "", "chdir"], [200, 3, 1, "", "check_md5"], [200, 3, 1, "", "check_sha1"], [200, 3, 1, "", "check_sha256"], [201, 3, 1, "", "download"], [201, 3, 1, "", "ftp_download"], [201, 3, 1, "", "get"], [199, 3, 1, "", "load"], [199, 3, 1, "", "mkdir"], [199, 3, 1, "", "rename"], [199, 3, 1, "", "replace_in_file"], [199, 3, 1, "", "rm"], [199, 3, 1, "", "rmdir"], [199, 3, 1, "", "save"], [199, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[203, 3, 1, "", "apply_conandata_patches"], [203, 3, 1, "", "export_conandata_patches"], [203, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[204, 3, 1, "", "absolute_to_relative_symlinks"], [204, 3, 1, "", "remove_broken_symlinks"], [204, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[209, 0, 1, "", "MakeDeps"], [210, 0, 1, "", "PkgConfig"], [211, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[209, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[210, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[211, 1, 1, "", "content"], [211, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[206, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[206, 2, 1, "", "autoreconf"], [206, 2, 1, "", "configure"], [206, 2, 1, "", "install"], [206, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[207, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[207, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[208, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[208, 2, 1, "", "update_autoreconf_args"], [208, 2, 1, "", "update_configure_args"], [208, 2, 1, "", "update_make_args"]], "conan.tools.google": [[213, 0, 1, "", "Bazel"], [214, 0, 1, "", "BazelDeps"], [215, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[213, 2, 1, "", "build"], [213, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[214, 4, 1, "", "build_context_activated"], [214, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[215, 4, 1, "", "compilation_mode"], [215, 4, 1, "", "compiler"], [215, 4, 1, "", "conlyopt"], [215, 4, 1, "", "copt"], [215, 4, 1, "", "cppstd"], [215, 4, 1, "", "cpu"], [215, 4, 1, "", "crosstool_top"], [215, 4, 1, "", "cxxopt"], [215, 4, 1, "", "dynamic_mode"], [215, 4, 1, "", "force_pic"], [215, 2, 1, "", "generate"], [215, 4, 1, "", "linkopt"]], "conan.tools.intel": [[216, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[216, 4, 1, "", "arch"], [216, 1, 1, "", "command"], [216, 2, 1, "", "generate"], [216, 1, 1, "", "installation_path"], [216, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[219, 0, 1, "", "Meson"], [220, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[219, 2, 1, "", "build"], [219, 2, 1, "", "configure"], [219, 2, 1, "", "install"], [219, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[220, 4, 1, "", "apple_arch_flag"], [220, 4, 1, "", "apple_isysroot_flag"], [220, 4, 1, "", "apple_min_version_flag"], [220, 4, 1, "", "ar"], [220, 4, 1, "", "as_"], [220, 4, 1, "", "c"], [220, 4, 1, "", "c_args"], [220, 4, 1, "", "c_ld"], [220, 4, 1, "", "c_link_args"], [220, 4, 1, "", "cpp"], [220, 4, 1, "", "cpp_args"], [220, 4, 1, "", "cpp_ld"], [220, 4, 1, "", "cpp_link_args"], [220, 4, 1, "", "cross_build"], [220, 2, 1, "", "generate"], [220, 4, 1, "", "ld"], [220, 4, 1, "", "objc"], [220, 4, 1, "", "objc_args"], [220, 4, 1, "", "objc_link_args"], [220, 4, 1, "", "objcpp"], [220, 4, 1, "", "objcpp_args"], [220, 4, 1, "", "objcpp_link_args"], [220, 4, 1, "", "pkg_config_path"], [220, 4, 1, "", "pkgconfig"], [220, 4, 1, "", "preprocessor_definitions"], [220, 4, 1, "", "project_options"], [220, 4, 1, "", "properties"], [220, 4, 1, "", "strip"], [220, 4, 1, "", "windres"]], "conan.tools.microsoft": [[223, 0, 1, "", "MSBuild"], [224, 0, 1, "", "MSBuildDeps"], [225, 0, 1, "", "MSBuildToolchain"], [227, 0, 1, "", "VCVars"], [222, 3, 1, "", "unix_path"], [228, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[223, 2, 1, "", "build"], [223, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[225, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[227, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[222, 3, 1, "", "check_min_vs"], [222, 3, 1, "", "is_msvc"], [222, 3, 1, "", "is_msvc_static_runtime"], [222, 3, 1, "", "msvc_runtime_flag"], [222, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[231, 0, 1, "", "Version"]], "conan.tools.scm.git": [[230, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[230, 2, 1, "", "checkout"], [230, 2, 1, "", "checkout_from_conandata_coordinates"], [230, 2, 1, "", "clone"], [230, 2, 1, "", "commit_in_remote"], [230, 2, 1, "", "coordinates_to_conandata"], [230, 2, 1, "", "fetch_commit"], [230, 2, 1, "", "get_commit"], [230, 2, 1, "", "get_remote_url"], [230, 2, 1, "", "get_repo_root"], [230, 2, 1, "", "get_url_and_commit"], [230, 2, 1, "", "included_files"], [230, 2, 1, "", "is_dirty"], [230, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[234, 0, 1, "", "Apk"], [234, 0, 1, "", "Apt"], [234, 0, 1, "", "Brew"], [234, 0, 1, "", "Chocolatey"], [234, 0, 1, "", "PacMan"], [234, 0, 1, "", "Pkg"], [234, 0, 1, "", "PkgUtil"], [234, 0, 1, "", "Yum"], [234, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conans.model.conf.Conf": [[135, 2, 1, "", "append"], [135, 2, 1, "", "define"], [135, 2, 1, "", "prepend"], [135, 2, 1, "", "remove"], [135, 2, 1, "", "unset"], [135, 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, 60, 274], "1": [1, 264], "0": [1, 264], "15": 1, "feb": 1, "2024": 1, "17": 1, "10": 1, "jan": 1, "16": 1, "21": 1, "dec": 1, "2023": 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, "22": 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, 274], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 61, 89, 105, 117, 195, 239, 249, 253, 271], "an": [3, 247], "artifactori": [3, 68, 239], "backup": [3, 4, 87, 274], "repo": [3, 239], "your": [3, 5, 24, 36, 47, 48, 58, 117, 244, 251, 253], "sourc": [3, 4, 29, 36, 52, 61, 73, 113, 119, 139, 251, 254, 255, 265, 266, 274], "back": 4, "up": [4, 238, 240], "third": [4, 19, 274], "parti": [4, 19, 274], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 54, 56, 58, 60, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 159, 165, 180, 181, 182, 186, 187, 192, 193, 198, 199, 200, 201, 202, 203, 204, 205, 206, 212, 216, 217, 218, 220, 221, 222, 229, 232, 233, 234, 236, 237, 238, 239, 240, 243, 244, 248, 252, 253, 254, 260, 262, 265, 266, 267, 274], "configur": [4, 22, 23, 66, 83, 117, 126, 132, 146, 149, 160, 184, 190, 216, 224, 234, 245, 247, 252, 254, 270, 274], "overview": 4, "usag": 4, "set": [4, 24, 76, 81, 83, 101, 110, 119, 150, 152, 189, 238, 240, 245, 252, 254, 259], "necessari": 4, "config": [4, 50, 88, 166], "run": [4, 31, 36, 117, 136, 144, 195, 239, 251], "normal": 4, "upload": [4, 6, 13, 87, 115, 177, 241, 271], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 50, 58, 60, 73, 76, 102, 119, 133, 162, 234, 241, 242, 245, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 271, 274], "repositori": [4, 236, 255], "host": [5, 244], "own": [5, 117], "conancent": [5, 8], "binari": [5, 73, 80, 81, 83, 119, 156, 252, 258], "updat": [5, 61, 101, 110], "from": [5, 7, 13, 29, 36, 61, 81, 144, 161, 190, 255, 267], "upstream": 5, "manag": [6, 59, 60, 73, 208, 234, 260, 274], "metadata": [6, 90, 119, 274], "file": [6, 23, 50, 51, 146, 149, 178, 190, 191, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 207, 208, 209, 211, 214, 215, 220, 224, 255, 260, 274], "recip": [6, 31, 43, 81, 102, 144, 179, 251, 252, 254, 259], "hook": [6, 161], "ad": [6, 134, 152], "command": [6, 12, 31, 32, 68, 85, 144, 157, 158, 274], "download": [6, 13, 90, 149, 167, 201, 258], "remov": [6, 13, 91, 107, 110, 111, 175, 259, 267], "test_packag": 6, "save": [7, 87, 199], "restor": [7, 87], "cach": [7, 87, 139, 149, 253, 267, 274], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 50, 52, 54, 56, 61, 66, 89, 117, 159, 190, 191, 206, 220, 239, 243, 244, 245, 247, 248, 255, 260, 264, 271], "product": 8, "environ": [8, 22, 132, 154, 194, 195, 208, 226, 254, 274], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 81, 83, 108, 117, 152, 158, 159, 160, 184, 190, 191, 192, 207, 208, 209, 211, 214, 216, 220, 223, 224, 225, 226, 227, 274], "version": [9, 10, 39, 40, 81, 101, 116, 119, 231, 246, 268, 272, 273], "handl": [10, 255], "rang": [10, 246, 272], "pre": [10, 258], "releas": [10, 245], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 108], "list": [13, 88, 91, 102, 109, 110, 171, 267, 274], "them": 13, "one": 13, "remot": [13, 110, 151, 154, 174, 238, 255], "differ": [13, 39, 40, 76, 245, 271], "build": [13, 25, 26, 27, 29, 45, 47, 52, 54, 56, 68, 73, 83, 86, 89, 96, 97, 119, 121, 135, 136, 186, 191, 206, 220, 243, 244, 245, 248, 251, 258, 261, 264, 265, 266, 274], "conanfil": [14, 15, 16, 20, 26, 101, 118, 145, 247], "method": [14, 52, 81, 120, 234, 247, 251, 254, 260], "layout": [15, 16, 18, 19, 119, 132, 145, 217, 247, 266], "declar": [16, 18, 19, 194], "when": [16, 18, 19, 206], "i": [16, 84, 206], "insid": [16, 41, 50], "subfold": 16, "compon": [17, 21, 135, 184, 254], "edit": [17, 91, 239, 264], "we": 18, "have": 18, "multipl": [18, 21, 245, 254], "subproject": 18, "librari": [19, 21, 135, 152, 206, 245, 251, 252, 254, 257], "package_info": [20, 135, 254], "defin": [21, 184, 254], "provid": [21, 119, 254], "propag": [22, 254], "inform": [22, 59, 81, 119, 134, 135, 149, 192, 254], "consum": [22, 81, 119, 190, 242, 254], "settings_us": [24, 152], "yml": [24, 152, 255], "locat": [24, 31, 36, 158], "new": [24, 26, 108, 152, 172, 273, 274], "cross": [25, 27, 83, 191, 220, 244], "integr": [26, 62, 87, 274], "android": [26, 27, 63, 180, 220], "studio": [26, 29, 58, 71], "project": [26, 45, 47, 54, 56, 190, 243, 251], "introduc": [26, 245, 251, 254], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 81, 82, 119, 130, 224, 245, 250, 254, 264, 269], "txt": [26, 145, 247], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 50, 67, 187, 188, 190, 243, 260], "cmakelist": 26, "applic": [26, 244, 245], "ndk": 27, "develop": [28, 35, 263, 265], "tool": [28, 39, 40, 43, 44, 46, 51, 52, 53, 55, 57, 149, 179, 180, 181, 182, 186, 187, 192, 193, 198, 199, 200, 201, 202, 203, 204, 205, 212, 216, 217, 218, 221, 222, 229, 232, 233, 234, 248, 259, 260], "flow": [28, 265], "debug": [29, 245], "step": [29, 260], "visual": [29, 58, 71, 222], "extens": [30, 68, 155, 274], "clean": [31, 87], "old": 31, "revis": [31, 76, 102, 246, 271, 274], "code": [31, 36, 251], "tour": [31, 36], "parser": 31, "user": [31, 101, 110, 119, 149, 274], "input": 31, "output": [31, 89, 92, 102, 119, 144], "public": [31, 274], "api": [31, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 274], "builtin": 33, "deploy": [33, 34, 36, 101, 160, 274], "agnost": 35, "deploi": [35, 36, 127], "copi": [36, 199, 260], "all": [36, 73], "graph": [37, 94, 95, 96, 97, 98, 99, 102, 169, 274], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 89, 101, 119, 136, 140, 145, 178, 224, 247, 259, 273], "option": [39, 81, 83, 101, 119, 145, 150, 189, 220, 245, 252, 254, 269], "modul": [41, 161], "tool_requir": [41, 42, 119, 123, 145, 150], "transpar": 41, "autotool": [44, 45, 64, 206], "simpl": [45, 54, 56, 243, 259], "linux": [45, 76], "maco": [45, 206], "cmaketoolchain": [47, 48, 49, 50, 191], "cmakepreset": [47, 48], "gener": [47, 48, 68, 101, 119, 130, 145, 159, 190, 191, 192, 196, 197, 207, 208, 209, 211, 214, 215, 220, 224, 254], "toolchain": [47, 191], "extend": [48, 83, 178, 191], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 132, 154, 184, 191, 194, 195], "xxx": 50, "import": [50, 161, 190, 267], "consider": 50, "patch": [52, 203, 251], "replace_in_fil": [52, 199], "apply_conandata_patch": [52, 203], "googl": [53, 212], "bazel": [54, 65, 213], "meson": [55, 56, 70, 218, 219, 220], "microsoft": [57, 221, 222], "first": [58, 253], "msbuild": [58, 223], "captur": 59, "git": [59, 230, 255], "scm": [59, 229], "credenti": [59, 148], "c": [60, 152, 220, 239, 252], "document": [60, 73], "instal": [61, 66, 68, 88, 101, 170, 190, 260, 265], "pip": 61, "recommend": 61, "known": 61, "issu": 61, "pipx": 61, "system": [61, 73, 140, 152, 233, 234, 251, 274], "self": [61, 130, 132, 266], "contain": 61, "execut": 61, "android_logo": 63, "autotools_logo": 64, "bazel_logo": 65, "clion_logo": 66, "clion": 66, "introduct": [66, 73, 149, 150, 178, 246], "plugin": [66, 81, 163, 274], "cmake_logo": 67, "jfrog_logo": 68, "jfrog": 68, "info": [68, 94, 99, 119], "how": [68, 84, 206, 234, 244], "gnu_make_logo": 69, "makefil": 69, "meson_logo": 70, "visual_studio_logo": 71, "xcode_logo": 72, "xcode": 72, "open": 73, "decentr": 73, "platform": 73, "compil": [73, 152, 191, 244], "stabl": 73, "commun": [73, 239], "navig": 73, "knowledg": 74, "cheat": 75, "sheet": 75, "faq": 76, "troubleshoot": 76, "error": [76, 247], "miss": 76, "prebuilt": [76, 258], "invalid": 76, "authenticationexcept": 76, "obtain": [76, 194], "window": 76, "core": [77, 149], "guidelin": 77, "good": 77, "practic": 77, "forbidden": 77, "video": 78, "refer": [79, 102, 119, 165, 183, 188, 189, 190, 191, 194, 195, 196, 197, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 223, 224, 225, 227, 234], "The": [80, 81, 82], "model": [80, 83, 119, 244, 254, 274], "compat": [81, 124, 156, 252, 274], "erasur": [81, 134], "package_id": [81, 82, 84, 134, 178, 259, 274], "py": [81, 118, 247, 274], "global": [81, 149, 159], "default": [81, 136, 220], "mode": [81, 82, 264], "effect": [82, 178], "non": [82, 247], "emb": [82, 119], "v": [83, 247], "conf": [83, 101, 119, 149, 150, 183, 185, 188, 191, 201, 208, 210, 213, 215, 216, 219, 220, 223, 224, 225, 226, 227], "target": [83, 190], "comput": 84, "formatt": [85, 94, 158], "path": [87, 101, 109], "check": 87, "home": 88, "show": [88, 109], "add": [91, 104, 110, 152, 250], "export": [92, 93, 119, 128, 168, 265], "format": [92, 102], "pkg": [93, 234, 265], "json": [94, 102, 148, 151, 153], "order": [96, 97], "merg": [97, 106], "explain": 98, "inspect": 100, "profil": [101, 109, 150, 163, 173, 244, 274], "name": [101, 119, 158, 211, 214], "channel": [101, 119], "lockfil": [101, 246, 270, 274], "id": [102, 245, 252], "artifact": 102, "html": 102, "compact": 102, "lock": [103, 104, 105, 106, 107], "templat": [108, 149], "detect": 109, "auth": 110, "disabl": [110, 190], "enabl": 110, "login": [110, 154], "logout": 110, "renam": [110, 199], "search": [112, 176], "test": [114, 136, 141, 178, 251, 257, 262], "server": [117, 240], "paramet": [117, 158], "permiss": 117, "authent": 117, "author": [117, 119], "ssl": 117, "nginx": 117, "subdirectori": 117, "apach": 117, "attribut": [119, 208, 211, 220, 223, 225, 226], "descript": [119, 149], "licens": [119, 260], "topic": 119, "homepag": 119, "url": 119, "build_requir": [119, 123], "test_requir": [119, 123, 145], "python_requir": [119, 159, 178, 267], "python_requires_extend": 119, "exports_sourc": 119, "conan_data": 119, "source_buildenv": 119, "package_typ": [119, 136], "default_opt": 119, "default_build_opt": 119, "options_descript": 119, "package_id_": 119, "non_emb": 119, "python": [119, 164, 178, 274], "unknown": 119, "_mode": 119, "build_polici": 119, "win_bash": 119, "win_bash_run": 119, "folder": [119, 132, 266], "source_fold": 119, "export_sources_fold": 119, "build_fold": 119, "package_fold": 119, "recipe_fold": 119, "recipe_metadata_fold": 119, "package_metadata_fold": 119, "no_copy_sourc": 119, "cpp": [119, 132, 266], "cpp_info": [119, 130, 135], "buildenv_info": [119, 135], "runenv_info": [119, 135], "conf_info": [119, 135], "deprec": [119, 150], "other": [119, 256, 267], "content": [119, 191, 236, 242, 249, 256, 268], "revision_mod": 119, "upload_polici": 119, "required_conan_vers": 119, "implement": [119, 125, 126, 134], "alia": 119, "extension_properti": 119, "build_id": 122, "host_vers": 123, "config_opt": 125, "avail": [125, 126, 134, 234], "automat": [125, 126, 134], "auto_shared_fp": [125, 126], "export_sourc": 129, "interfac": [130, 161], "iter": [130, 195], "init": 131, "auto_header_onli": 134, "partial": 134, "properti": [135, 190, 211, 213, 214, 234, 254], "trait": [136, 224], "header": [136, 252, 257], "lib": 136, "visibl": 136, "transitive_head": 136, "transitive_lib": 136, "package_id_mod": 136, "forc": [136, 139], "overrid": [136, 269], "direct": 136, "infer": 136, "each": 136, "kind": 136, "set_nam": 137, "set_vers": 138, "retriev": 139, "system_requir": 140, "collect": 140, "valid": [142, 247], "validate_build": 143, "text": 144, "conanrc": 147, "storage_path": 149, "download_cach": 149, "data": [149, 220], "type": [149, 220, 256], "oper": [149, 152, 199], "pattern": [149, 150], "about": [149, 206, 253], "built": [149, 160, 206, 258], "network": 149, "client": 149, "certif": 149, "ux": 149, "skip": 149, "warn": 149, "section": 150, "system_tool": 150, "buildenv": 150, "runenv": 150, "replace_requir": 150, "replace_tool_requir": 150, "platform_requir": 150, "platform_tool_requir": 150, "render": 150, "includ": 150, "msvc": 152, "intel": [152, 216], "cc": 152, "architectur": 152, "standard": 152, "aka": 152, "libcxx": 152, "sub": 152, "valu": 152, "source_credenti": 153, "conan_hom": 154, "conan_default_profil": 154, "termin": 154, "color": 154, "log": 154, "wrapper": [157, 274], "scope": 158, "decor": 158, "conan_command": 158, "group": 158, "none": 158, "conan_subcommand": 158, "argument": [158, 220], "definit": [158, 194], "pars": 158, "full_deploi": 160, "direct_deploi": 160, "structur": 161, "storag": 161, "activ": 161, "share": [161, 206, 245], "offici": 161, "sign": [162, 274], "base": 178, "class": 178, "reus": 178, "resolut": 178, "android_abi": 180, "appl": [181, 182, 220], "fix_apple_shared_install_nam": 182, "is_apple_o": 182, "to_apple_arch": 182, "xcrun": 182, "xcodebuild": 183, "xcodedep": 184, "addit": 184, "support": [184, 224, 247], "xcodetoolchain": 185, "build_job": 186, "cross_build": 186, "can_run": 186, "cppstd": 186, "check_min_cppstd": 186, "check_max_cppstd": 186, "valid_min_cppstd": 186, "valid_max_cppstd": 186, "default_cppstd": 186, "supported_cppstd": 186, "cmake_layout": 189, "multi": [189, 270, 274], "cmakedep": 190, "build_context_activ": [190, 211, 214], "build_context_suffix": [190, 211], "build_context_build_modul": 190, "check_components_exist": 190, "overwrit": 190, "side": 190, "set_properti": 190, "For": 190, "map": 190, "": [190, 274], "preprocessor_definit": [191, 220], "cache_vari": 191, "user_presets_path": 191, "presets_build_environ": 191, "presets_run_environ": 191, "extra": 191, "flag": [191, 209], "presets_prefix": 191, "advanc": 191, "block": 191, "cppinfo": 192, "aggreg": 192, "env": 193, "composit": 194, "envvar": 195, "appli": 195, "virtualbuildenv": 196, "virtualrunenv": 197, "basic": 199, "load": 199, "rm": 199, "mkdir": 199, "rmdir": 199, "chdir": 199, "unzip": 199, "update_conandata": 199, "trim_conandata": 199, "collect_lib": 199, "checksum": 200, "check_md5": 200, "check_sha1": 200, "check_sha256": 200, "get": 201, "ftp_download": 201, "autopackag": 202, "export_conandata_patch": 203, "symlink": [204, 260], "absolute_to_relative_symlink": 204, "remove_external_symlink": 204, "remove_broken_symlink": 204, "gnu": 205, "A": [206, 253, 259], "note": [206, 253], "relocat": 206, "helper": 206, "why": 206, "thi": 206, "problem": 206, "address": 206, "autotoolsdep": 207, "autotoolstoolchain": 208, "configure_arg": 208, "make_arg": 208, "autoreconf_arg": 208, "makedep": 209, "pkgconfig": 210, "pkgconfigdep": 211, "bazeldep": 214, "bazeltoolchain": 215, "intelcc": 216, "predefin": 217, "basic_layout": 217, "mesontoolchain": 220, "conan_meson_n": 220, "ini": 220, "conan_meson_cross": 220, "directori": 220, "project_opt": 220, "proper": 220, "object": 220, "check_min_v": 222, "msvc_runtime_flag": 222, "is_msvc": 222, "is_msvc_static_runtim": 222, "msvs_toolset": 222, "subsystem": 222, "unix_path": 222, "msbuilddep": 224, "msbuildtoolchain": 225, "nmakedep": 226, "nmaketoolchain": 226, "constructor": 226, "vcvar": 227, "vs_layout": 228, "scon": 232, "sconsdep": 232, "package_manag": 234, "affect": 234, "ar": 234, "invok": 234, "apk": 234, "apt": 234, "yum": 234, "dnf": 234, "pacman": 234, "zypper": 234, "brew": 234, "pkgutil": 234, "chocolatei": 234, "tutori": 235, "work": [236, 264], "tabl": [236, 242, 249, 256, 268], "contribut": 237, "center": 237, "ce": 239, "context": 244, "two": 244, "static": 245, "modifi": 245, "its": 245, "link": 245, "between": 245, "concept": 245, "understand": [247, 266], "flexibl": 247, "rais": 247, "condit": 247, "chang": [251, 254], "condition": 251, "select": 251, "onli": [252, 257], "specif": 254, "zip": 255, "store": 255, "branch": 255, "conandata": 255, "local": [258, 263], "alreadi": 258, "prepar": 261, "put": 264, "sai": 264, "revert": 264, "featur": 267, "unus": 267, "conflict": 269, "resolv": 269, "evolv": 270, "semant": 272, "express": 272, "autom": 273, "what": 274, "migrat": 274, "cli": 274, "checker": 274, "immut": 274, "optim": 274}, "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.1.0 (15-Feb-2024)": [[1, "feb-2024"]], "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, "id77"]], "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, "id159"]], "2.0.11 (18-Sept-2023)": [[1, "id171"]], "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, "id257"]], "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, "id326"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id386"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id435"]], "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"], [90, "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"], [268, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [108, "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"], [254, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [254, "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"], [145, "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"]], "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"], [158, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [160, "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"], [127, "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"]], "CMakeToolchain: Using xxx-config.cmake files inside packages": [[50, "cmaketoolchain-using-xxx-config-cmake-files-inside-packages"]], "Important considerations": [[50, "important-considerations"]], "tools.files": [[51, "tools-files"]], "Patching sources": [[52, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[52, "patching-using-replace-in-file"]], "in source() method": [[52, "in-source-method"]], "in build() method": [[52, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[52, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[52, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[53, "tools-google"]], "Build a simple Bazel project using Conan": [[54, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[55, "tools-meson"]], "Build a simple Meson project using Conan": [[56, "build-a-simple-meson-project-using-conan"]], "tools.microsoft": [[57, "tools-microsoft"]], "Create your first Conan package with Visual Studio/MSBuild": [[58, "create-your-first-conan-package-with-visual-studio-msbuild"]], "Capturing Git scm information": [[59, "capturing-git-scm-information"]], "Credentials management": [[59, "credentials-management"]], "Conan 2 - C and C++ Package Manager Documentation": [[60, "conan-2-c-and-c-package-manager-documentation"]], "Install": [[61, "install"]], "Install with pip (recommended)": [[61, "install-with-pip-recommended"]], "Known installation issues with pip": [[61, "known-installation-issues-with-pip"]], "Update": [[61, "update"], [101, "update"]], "Install with pipx": [[61, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[61, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[61, "install-from-source"]], "Integrations": [[62, "integrations"]], "android_logo Android": [[63, "android-logo-android"]], "autotools_logo Autotools": [[64, "autotools-logo-autotools"]], "bazel_logo Bazel": [[65, "bazel-logo-bazel"]], "clion_logo CLion": [[66, "clion-logo-clion"]], "Introduction": [[66, "introduction"], [73, "introduction"], [178, "introduction"]], "Installing the plugin": [[66, "installing-the-plugin"]], "Configuring the plugin": [[66, "configuring-the-plugin"]], "Using the plugin": [[66, "using-the-plugin"]], "cmake_logo CMake": [[67, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[68, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[68, "artifactory-build-info"]], "How to install the build info extension commands": [[68, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[68, "generating-a-build-info"]], "gnu_make_logo Makefile": [[69, "gnu-make-logo-makefile"]], "meson_logo Meson": [[70, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[71, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[72, "xcode-logo-xcode"]], "Open Source": [[73, "open-source"]], "Decentralized package manager": [[73, "decentralized-package-manager"]], "Binary management": [[73, "binary-management"]], "All platforms, all build systems and compilers": [[73, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[73, "stable"]], "Community": [[73, "community"]], "Navigating the documentation": [[73, "navigating-the-documentation"]], "Knowledge": [[74, "knowledge"]], "Cheat sheet": [[75, "cheat-sheet"]], "FAQ": [[76, "faq"]], "Troubleshooting": [[76, "troubleshooting"]], "ERROR: Missing prebuilt package": [[76, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[76, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[76, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[76, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[77, "core-guidelines"]], "Good practices": [[77, "good-practices"]], "Forbidden practices": [[77, "forbidden-practices"]], "Videos": [[78, "videos"]], "Reference": [[79, "reference"], [183, "reference"], [188, "reference"], [189, "reference"], [190, "reference"], [191, "reference"], [194, "reference"], [195, "reference"], [196, "reference"], [197, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [209, "reference"], [210, "reference"], [211, "reference"], [213, "reference"], [214, "reference"], [215, "reference"], [216, "reference"], [219, "reference"], [220, "reference"], [223, "reference"], [224, "reference"], [225, "reference"], [227, "reference"], [234, "reference"], [234, "id4"], [234, "id6"], [234, "id7"], [234, "id8"], [234, "id9"], [234, "id10"], [234, "id11"], [234, "id12"]], "The binary model": [[80, "the-binary-model"]], "Customizing the binary compatibility": [[81, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[81, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[81, "information-erasure-in-package-id-method"]], "The compatibility() method": [[81, "the-compatibility-method"]], "The compatibility.py plugin": [[81, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[81, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[81, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[81, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[81, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[82, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[82, "non-embed-mode"]], "Embed mode": [[82, "embed-mode"]], "Extending the binary model": [[83, "extending-the-binary-model"]], "Custom settings": [[83, "custom-settings"]], "Custom options": [[83, "custom-options"]], "Settings vs options vs conf": [[83, "settings-vs-options-vs-conf"]], "Custom configuration": [[83, "custom-configuration"]], "Cross build target settings": [[83, "cross-build-target-settings"]], "How the package_id is computed": [[84, "how-the-package-id-is-computed"]], "Commands": [[85, "commands"]], "Command formatters": [[85, "command-formatters"]], "conan build": [[86, "conan-build"], [265, "conan-build"]], "conan cache": [[87, "conan-cache"]], "conan cache path": [[87, "conan-cache-path"]], "conan cache clean": [[87, "conan-cache-clean"]], "conan cache check-integrity": [[87, "conan-cache-check-integrity"]], "conan cache backup-upload": [[87, "conan-cache-backup-upload"]], "conan cache save": [[87, "conan-cache-save"]], "conan cache restore": [[87, "conan-cache-restore"]], "conan config": [[88, "conan-config"]], "conan config home": [[88, "conan-config-home"]], "conan config install": [[88, "conan-config-install"]], "conan config list": [[88, "conan-config-list"]], "conan config show": [[88, "conan-config-show"]], "conan create": [[89, "conan-create"]], "Using conan create with build requirements": [[89, "using-conan-create-with-build-requirements"]], "Conan create output": [[89, "conan-create-output"]], "conan download": [[90, "conan-download"]], "conan editable": [[91, "conan-editable"]], "conan editable add": [[91, "conan-editable-add"]], "conan editable remove": [[91, "conan-editable-remove"]], "conan editable list": [[91, "conan-editable-list"]], "conan export": [[92, "conan-export"]], "Output Formats": [[92, "output-formats"]], "conan export-pkg": [[93, "conan-export-pkg"], [265, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[94, "formatter-graph-info-json"]], "conan graph": [[95, "conan-graph"]], "conan graph build-order": [[96, "conan-graph-build-order"]], "conan graph build-order-merge": [[97, "conan-graph-build-order-merge"]], "conan graph explain": [[98, "conan-graph-explain"]], "conan graph info": [[99, "conan-graph-info"]], "conan inspect": [[100, "conan-inspect"]], "conan install": [[101, "conan-install"], [265, "conan-install"]], "Conanfile path or \u2013requires": [[101, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[101, "profiles-settings-options-conf"]], "Generators and deployers": [[101, "generators-and-deployers"]], "Name, version, user, channel": [[101, "name-version-user-channel"]], "Lockfiles": [[101, "lockfiles"], [246, "lockfiles"], [270, "lockfiles"]], "conan list": [[102, "conan-list"]], "Listing recipe references": [[102, "listing-recipe-references"]], "Listing recipe revisions": [[102, "listing-recipe-revisions"]], "Listing package IDs": [[102, "listing-package-ids"]], "Listing package revisions": [[102, "listing-package-revisions"]], "Listing graph artifacts": [[102, "listing-graph-artifacts"]], "List json output format": [[102, "list-json-output-format"]], "List html output format": [[102, "list-html-output-format"]], "List compact output format": [[102, "list-compact-output-format"]], "conan lock": [[103, "conan-lock"]], "conan lock add": [[104, "conan-lock-add"]], "conan lock create": [[105, "conan-lock-create"]], "conan lock merge": [[106, "conan-lock-merge"]], "conan lock remove": [[107, "conan-lock-remove"]], "conan new": [[108, "conan-new"], [108, "id1"]], "Custom templates": [[108, "custom-templates"]], "conan profile": [[109, "conan-profile"]], "conan profile detect": [[109, "conan-profile-detect"]], "conan profile list": [[109, "conan-profile-list"]], "conan profile path": [[109, "conan-profile-path"]], "conan profile show": [[109, "conan-profile-show"]], "conan remote": [[110, "conan-remote"]], "conan remote add": [[110, "conan-remote-add"]], "conan remote auth": [[110, "conan-remote-auth"]], "conan remote disable": [[110, "conan-remote-disable"]], "conan remote enable": [[110, "conan-remote-enable"]], "conan remote list": [[110, "conan-remote-list"]], "conan remote list-users": [[110, "conan-remote-list-users"]], "conan remote login": [[110, "conan-remote-login"]], "conan remote logout": [[110, "conan-remote-logout"]], "conan remote remove": [[110, "conan-remote-remove"]], "conan remote rename": [[110, "conan-remote-rename"]], "conan remote set-user": [[110, "conan-remote-set-user"]], "conan remote update": [[110, "conan-remote-update"]], "conan remove": [[111, "conan-remove"]], "conan search": [[112, "conan-search"]], "conan source": [[113, "conan-source"], [265, "conan-source"]], "conan test": [[114, "conan-test"]], "conan upload": [[115, "conan-upload"]], "conan version": [[116, "conan-version"]], "Conan Server": [[117, "conan-server"]], "Configuration": [[117, "configuration"]], "Server Parameters": [[117, "server-parameters"]], "Permissions Parameters": [[117, "permissions-parameters"]], "Authentication": [[117, "authentication"]], "Create Your Own Custom Authenticator": [[117, "create-your-own-custom-authenticator"]], "Authorizations": [[117, "authorizations"]], "Create Your Own Custom Authorizer": [[117, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[117, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[117, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[117, "running-conan-server-using-apache"]], "conanfile.py": [[118, "conanfile-py"]], "Attributes": [[119, "attributes"], [211, "attributes"], [220, "attributes"], [225, "attributes"], [226, "attributes"]], "Package reference": [[119, "package-reference"]], "name": [[119, "name"]], "version": [[119, "version"]], "user": [[119, "user"]], "channel": [[119, "channel"]], "Metadata": [[119, "metadata"]], "description": [[119, "description"]], "license": [[119, "license"]], "author": [[119, "author"]], "topics": [[119, "topics"]], "homepage": [[119, "homepage"]], "url": [[119, "url"]], "Requirements": [[119, "requirements"]], "requires": [[119, "requires"]], "tool_requires": [[119, "tool-requires"]], "build_requires": [[119, "build-requires"]], "test_requires": [[119, "test-requires"], [123, "test-requires"]], "python_requires": [[119, "python-requires"], [267, "python-requires"]], "python_requires_extend": [[119, "python-requires-extend"]], "Sources": [[119, "sources"]], "exports": [[119, "exports"]], "exports_sources": [[119, "exports-sources"]], "conan_data": [[119, "conan-data"]], "source_buildenv": [[119, "source-buildenv"]], "Binary model": [[119, "binary-model"]], "package_type": [[119, "package-type"]], "settings": [[119, "settings"]], "options": [[119, "options"]], "default_options": [[119, "default-options"]], "default_build_options": [[119, "default-build-options"]], "options_description": [[119, "options-description"]], "info": [[119, "info"]], "package_id_{embed,non_embed,python,unknown}_mode": [[119, "package-id-embed-non-embed-python-unknown-mode"]], "Build": [[119, "build"]], "generators": [[119, "generators"]], "build_policy": [[119, "build-policy"]], "win_bash": [[119, "win-bash"]], "win_bash_run": [[119, "win-bash-run"]], "Folders and layout": [[119, "folders-and-layout"]], "source_folder": [[119, "source-folder"]], "export_sources_folder": [[119, "export-sources-folder"]], "build_folder": [[119, "build-folder"]], "package_folder": [[119, "package-folder"]], "recipe_folder": [[119, "recipe-folder"]], "recipe_metadata_folder": [[119, "recipe-metadata-folder"]], "package_metadata_folder": [[119, "package-metadata-folder"]], "no_copy_source": [[119, "no-copy-source"]], "Layout": [[119, "layout"]], "folders": [[119, "folders"]], "cpp": [[119, "cpp"]], "layouts": [[119, "layouts"]], "Package information for consumers": [[119, "package-information-for-consumers"]], "cpp_info": [[119, "cpp-info"]], "buildenv_info": [[119, "buildenv-info"]], "runenv_info": [[119, "runenv-info"]], "conf_info": [[119, "conf-info"], [135, "conf-info"]], "deprecated": [[119, "deprecated"]], "provides": [[119, "provides"]], "Other": [[119, "other"]], "dependencies": [[119, "dependencies"]], "conf": [[119, "conf"], [183, "conf"], [185, "conf"], [188, "conf"], [191, "conf"], [201, "conf"], [208, "conf"], [210, "conf"], [213, "conf"], [215, "conf"], [216, "conf"], [219, "conf"], [220, "conf"], [223, "conf"], [224, "conf"], [225, "conf"], [226, "conf"], [227, "conf"]], "Output": [[119, "output"]], "Output contents": [[119, "output-contents"]], "revision_mode": [[119, "revision-mode"]], "upload_policy": [[119, "upload-policy"]], "required_conan_version": [[119, "required-conan-version"]], "implements": [[119, "implements"]], "alias": [[119, "alias"]], "extension_properties": [[119, "extension-properties"]], "Methods": [[120, "methods"]], "build()": [[121, "build"]], "build_id()": [[122, "build-id"]], "build_requirements()": [[123, "build-requirements"]], "tool_requires()": [[123, "tool-requires"]], "": [[123, "host-version"]], "compatibility()": [[124, "compatibility"]], "config_options()": [[125, "config-options"]], "Available automatic implementations": [[125, "available-automatic-implementations"], [126, "available-automatic-implementations"], [134, "available-automatic-implementations"]], "auto_shared_fpic": [[125, "auto-shared-fpic"], [126, "auto-shared-fpic"]], "configure()": [[126, "configure"]], "export()": [[128, "export"]], "export_sources()": [[129, "export-sources"]], "generate()": [[130, "generate"]], "self.dependencies": [[130, "self-dependencies"]], "Dependencies interface": [[130, "dependencies-interface"]], "Iterating dependencies": [[130, "iterating-dependencies"]], "Dependencies cpp_info interface": [[130, "dependencies-cpp-info-interface"]], "init()": [[131, "init"]], "layout()": [[132, "layout"]], "self.folders": [[132, "self-folders"], [266, "self-folders"]], "self.cpp": [[132, "self-cpp"], [266, "self-cpp"]], "Environment variables and configuration": [[132, "environment-variables-and-configuration"]], "package()": [[133, "package"]], "package_id()": [[134, "package-id"]], "auto_header_only": [[134, "auto-header-only"]], "Information erasure": [[134, "information-erasure"]], "Partial information erasure": [[134, "partial-information-erasure"]], "Adding information": [[134, "adding-information"]], "package_info()": [[135, "package-info"]], "cpp_info: Library and build information": [[135, "cpp-info-library-and-build-information"]], "Properties": [[135, "properties"], [190, "properties"], [211, "properties"], [213, "properties"], [214, "properties"]], "Components": [[135, "components"]], "buildenv_info, runenv_info": [[135, "buildenv-info-runenv-info"]], "requirements()": [[136, "requirements"]], "Requirement traits": [[136, "requirement-traits"]], "headers": [[136, "headers"]], "libs": [[136, "libs"]], "build": [[136, "build"]], "run": [[136, "run"]], "visible": [[136, "visible"]], "transitive_headers": [[136, "transitive-headers"]], "transitive_libs": [[136, "transitive-libs"]], "test": [[136, "test"]], "package_id_mode": [[136, "package-id-mode"]], "force": [[136, "force"]], "override": [[136, "override"]], "direct": [[136, "direct"]], "package_type trait inferring": [[136, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[136, "default-traits-for-each-kind-of-requires"]], "set_name()": [[137, "set-name"]], "set_version()": [[138, "set-version"]], "source()": [[139, "source"]], "Source caching": [[139, "source-caching"]], "Forced retrieval of sources": [[139, "forced-retrieval-of-sources"]], "system_requirements()": [[140, "system-requirements"]], "Collecting system requirements": [[140, "collecting-system-requirements"]], "test()": [[141, "test"]], "validate()": [[142, "validate"]], "validate_build()": [[143, "validate-build"]], "Running and output": [[144, "running-and-output"]], "Output text from recipes": [[144, "output-text-from-recipes"]], "Running commands": [[144, "running-commands"]], "[requires]": [[145, "requires"]], "[tool_requires]": [[145, "tool-requires"], [150, "tool-requires"]], "[test_requires]": [[145, "test-requires"]], "[generators]": [[145, "generators"]], "[options]": [[145, "options"], [150, "options"]], "[layout]": [[145, "layout"]], "Configuration files": [[146, "configuration-files"]], ".conanrc": [[147, "conanrc"]], "credentials.json": [[148, "credentials-json"]], "global.conf": [[149, "global-conf"]], "Introduction to configuration": [[149, "introduction-to-configuration"]], "Description of configurations": [[149, "description-of-configurations"]], "core.cache:storage_path": [[149, "core-cache-storage-path"]], "core.download:download_cache": [[149, "core-download-download-cache"]], "User/Tools configurations": [[149, "user-tools-configurations"]], "Configuration file template": [[149, "configuration-file-template"]], "Configuration data types": [[149, "configuration-data-types"]], "Configuration data operators": [[149, "configuration-data-operators"]], "Configuration patterns": [[149, "configuration-patterns"]], "Information about built-in confs": [[149, "information-about-built-in-confs"]], "Networking confs": [[149, "networking-confs"]], "Configuration of client certificates": [[149, "configuration-of-client-certificates"]], "UX confs": [[149, "ux-confs"]], "Skip warnings": [[149, "skip-warnings"]], "profiles": [[150, "profiles"]], "Introduction to profiles": [[150, "introduction-to-profiles"]], "Profile sections": [[150, "profile-sections"]], "[settings]": [[150, "settings"]], "[system_tools] (DEPRECATED)": [[150, "system-tools-deprecated"]], "[buildenv]": [[150, "buildenv"]], "[runenv]": [[150, "runenv"]], "[conf]": [[150, "conf"]], "[replace_requires]": [[150, "replace-requires"]], "[replace_tool_requires]": [[150, "replace-tool-requires"]], "[platform_requires]": [[150, "platform-requires"]], "[platform_tool_requires]": [[150, "platform-tool-requires"]], "Profile rendering": [[150, "profile-rendering"]], "Profile patterns": [[150, "profile-patterns"]], "Profile includes": [[150, "profile-includes"]], "remotes.json": [[151, "remotes-json"]], "settings.yml": [[152, "settings-yml"]], "Operating systems": [[152, "operating-systems"]], "Compilers": [[152, "compilers"]], "msvc": [[152, "msvc"]], "intel-cc": [[152, "intel-cc"]], "Architectures": [[152, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[152, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[152, "customizing-settings"]], "Adding new settings": [[152, "adding-new-settings"]], "Adding new sub-settings": [[152, "adding-new-sub-settings"]], "Add new values": [[152, "add-new-values"]], "settings_user.yml": [[152, "settings-user-yml"]], "source_credentials.json": [[153, "source-credentials-json"]], "Environment variables": [[154, "environment-variables"]], "CONAN_HOME": [[154, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[154, "conan-default-profile"]], "Remote login variables": [[154, "remote-login-variables"]], "Terminal color variables": [[154, "terminal-color-variables"]], "Logging": [[154, "logging"]], "Extensions": [[155, "extensions"]], "Binary compatibility": [[156, "binary-compatibility"]], "Command wrapper": [[157, "command-wrapper"], [274, "command-wrapper"]], "Location and naming": [[158, "location-and-naming"]], "Scoping": [[158, "scoping"]], "Decorators": [[158, "decorators"]], "conan_command(group=None, formatters=None)": [[158, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[158, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[158, "argument-definition-and-parsing"]], "Formatters": [[158, "formatters"]], "Commands parameters": [[158, "commands-parameters"]], "Custom Conan generators": [[159, "custom-conan-generators"]], "Custom generators as python_requires": [[159, "custom-generators-as-python-requires"]], "Using global custom generators": [[159, "using-global-custom-generators"]], "Deployers": [[160, "deployers"]], "Built-in deployers": [[160, "built-in-deployers"]], "full_deploy": [[160, "full-deploy"]], "direct_deploy": [[160, "direct-deploy"]], "configuration": [[160, "configuration"], [190, "configuration"]], "Hooks": [[161, "hooks"]], "Hook structure": [[161, "hook-structure"]], "Importing from a module": [[161, "importing-from-a-module"]], "Hook interface": [[161, "hook-interface"]], "Storage, activation and sharing": [[161, "storage-activation-and-sharing"]], "Official Hooks": [[161, "official-hooks"]], "Package signing": [[162, "package-signing"], [274, "package-signing"]], "Profile plugin": [[163, "profile-plugin"]], "Python API": [[164, "python-api"]], "Conan API Reference": [[165, "conan-api-reference"]], "Config API": [[166, "config-api"]], "Download API": [[167, "download-api"]], "Export API": [[168, "export-api"]], "Graph API": [[169, "graph-api"]], "Install API": [[170, "install-api"]], "List API": [[171, "list-api"]], "New API": [[172, "new-api"]], "Profiles API": [[173, "profiles-api"]], "Remotes API": [[174, "remotes-api"]], "Remove API": [[175, "remove-api"]], "Search API": [[176, "search-api"]], "Upload API": [[177, "upload-api"]], "Python requires": [[178, "python-requires"]], "Extending base classes": [[178, "extending-base-classes"]], "Reusing files": [[178, "reusing-files"]], "Testing python-requires": [[178, "testing-python-requires"]], "Effect in package_id": [[178, "effect-in-package-id"]], "Resolution of python_requires": [[178, "resolution-of-python-requires"]], "Recipe tools": [[179, "recipe-tools"]], "conan.tools.android": [[180, "conan-tools-android"]], "android_abi()": [[180, "android-abi"]], "conan.tools.apple": [[181, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[182, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[182, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[182, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[182, "conan-tools-apple-xcrun"]], "XcodeBuild": [[183, "xcodebuild"]], "XcodeDeps": [[184, "xcodedeps"]], "Additional variables defined": [[184, "additional-variables-defined"]], "Components support": [[184, "components-support"]], "Custom configurations": [[184, "custom-configurations"], [216, "custom-configurations"]], "XcodeToolchain": [[185, "xcodetoolchain"]], "conan.tools.build": [[186, "conan-tools-build"]], "Building": [[186, "building"]], "conan.tools.build.build_jobs()": [[186, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[186, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[186, "conan-tools-build-can-run"]], "Cppstd": [[186, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[186, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[186, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[186, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[186, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[186, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[186, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[187, "conan-tools-cmake"]], "CMake": [[188, "cmake"]], "cmake_layout": [[189, "cmake-layout"]], "Multi-setting/option cmake_layout": [[189, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[190, "cmakedeps"]], "Generated files": [[190, "generated-files"], [191, "generated-files"], [196, "generated-files"], [197, "generated-files"], [207, "generated-files"], [208, "generated-files"], [209, "generated-files"], [211, "generated-files"], [214, "generated-files"], [215, "generated-files"], [220, "generated-files"], [224, "generated-files"]], "Customization": [[190, "customization"], [191, "customization"], [207, "customization"], [208, "customization"], [209, "customization"], [211, "customization"], [214, "customization"], [220, "customization"], [223, "customization"], [224, "customization"], [225, "customization"], [227, "customization"]], "build_context_activated": [[190, "build-context-activated"], [211, "build-context-activated"], [214, "build-context-activated"]], "build_context_suffix": [[190, "build-context-suffix"], [211, "build-context-suffix"]], "build_context_build_modules": [[190, "build-context-build-modules"]], "check_components_exist": [[190, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[190, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[190, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[190, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[191, "cmaketoolchain"]], "preprocessor_definitions": [[191, "preprocessor-definitions"], [220, "preprocessor-definitions"]], "cache_variables": [[191, "cache-variables"]], "variables": [[191, "variables"]], "user_presets_path": [[191, "user-presets-path"]], "presets_build_environment, presets_run_environment": [[191, "presets-build-environment-presets-run-environment"]], "Extra compilation flags": [[191, "extra-compilation-flags"]], "presets_prefix": [[191, "presets-prefix"]], "Using a custom toolchain file": [[191, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[191, "extending-and-advanced-customization"]], "Customizing the content blocks": [[191, "customizing-the-content-blocks"]], "Cross building": [[191, "cross-building"]], "conan.tools.CppInfo": [[192, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[192, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[193, "conan-tools-env"]], "Environment": [[194, "environment"]], "Variable declaration": [[194, "variable-declaration"]], "Composition": [[194, "composition"]], "Obtaining environment variables": [[194, "obtaining-environment-variables"]], "Environment definition": [[194, "environment-definition"]], "EnvVars": [[195, "envvars"]], "Creating environment files": [[195, "creating-environment-files"]], "Running with environment files": [[195, "running-with-environment-files"]], "Applying the environment variables": [[195, "applying-the-environment-variables"]], "Iterating the variables": [[195, "iterating-the-variables"]], "VirtualBuildEnv": [[196, "virtualbuildenv"]], "VirtualRunEnv": [[197, "virtualrunenv"]], "conan.tools.files": [[198, "conan-tools-files"]], "conan.tools.files basic operations": [[199, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[199, "conan-tools-files-copy"]], "conan.tools.files.load()": [[199, "conan-tools-files-load"]], "conan.tools.files.save()": [[199, "conan-tools-files-save"]], "conan.tools.files.rename()": [[199, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[199, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[199, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[199, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[199, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[199, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[199, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[199, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[199, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[199, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[200, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[200, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[200, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[200, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[201, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[201, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[201, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[201, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[202, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[203, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[203, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[203, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[203, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[204, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[204, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[204, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[204, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[205, "conan-tools-gnu"]], "Autotools": [[206, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[206, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[206, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[206, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[207, "autotoolsdeps"]], "AutotoolsToolchain": [[208, "autotoolstoolchain"]], "Customizing the environment": [[208, "customizing-the-environment"], [226, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[208, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[209, "makedeps"]], "Flags": [[209, "flags"]], "PkgConfig": [[210, "pkgconfig"]], "PkgConfigDeps": [[211, "pkgconfigdeps"]], "Naming": [[211, "naming"], [214, "naming"]], "conan.tools.google": [[212, "conan-tools-google"]], "Bazel": [[213, "bazel"]], "BazelDeps": [[214, "bazeldeps"]], "BazelToolchain": [[215, "bazeltoolchain"]], "conan.tools.intel": [[216, "conan-tools-intel"]], "IntelCC": [[216, "intelcc"]], "conan.tools.layout": [[217, "conan-tools-layout"]], "Predefined layouts": [[217, "predefined-layouts"]], "basic_layout": [[217, "basic-layout"]], "conan.tools.meson": [[218, "conan-tools-meson"]], "Meson": [[219, "meson"]], "MesonToolchain": [[220, "mesontoolchain"]], "conan_meson_native.ini": [[220, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[220, "conan-meson-cross-ini"]], "Default directories": [[220, "default-directories"]], "project_options": [[220, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[220, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[220, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[220, "objective-c-arguments"]], "conan.tools.microsoft": [[221, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[222, "conan-tools-microsoft-visual"]], "check_min_vs": [[222, "check-min-vs"]], "msvc_runtime_flag": [[222, "msvc-runtime-flag"]], "is_msvc": [[222, "is-msvc"]], "is_msvc_static_runtime": [[222, "is-msvc-static-runtime"]], "msvs_toolset": [[222, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[222, "conan-tools-microsoft-subsystems"]], "unix_path": [[222, "unix-path"]], "MSBuild": [[223, "msbuild"]], "attributes": [[223, "attributes"]], "MSBuildDeps": [[224, "msbuilddeps"]], "Requirement traits support": [[224, "requirement-traits-support"]], "Configurations": [[224, "configurations"]], "Dependencies": [[224, "dependencies"]], "MSBuildToolchain": [[225, "msbuildtoolchain"]], "NMakeDeps": [[226, "nmakedeps"]], "NMakeToolchain": [[226, "nmaketoolchain"]], "constructor": [[226, "constructor"]], "VCVars": [[227, "vcvars"]], "vs_layout": [[228, "vs-layout"]], "conan.tools.scm": [[229, "conan-tools-scm"]], "Git": [[230, "git"]], "Version": [[231, "version"]], "conan.tools.scons": [[232, "conan-tools-scons"]], "SConsDeps": [[232, "sconsdeps"]], "conan.tools.system": [[233, "conan-tools-system"]], "conan.tools.system.package_manager": [[234, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[234, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[234, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[234, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[234, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[234, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[234, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[234, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[234, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[234, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[234, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[234, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[234, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[235, "tutorial"]], "Working with Conan repositories": [[236, "working-with-conan-repositories"]], "Table of contents": [[236, null], [242, null], [249, null], [256, null], [268, null]], "Contributing to Conan Center": [[237, "contributing-to-conan-center"]], "Setting up a Conan remote": [[238, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[239, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[239, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[239, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[240, "setting-up-a-conan-server"]], "Uploading Packages": [[241, "uploading-packages"]], "Consuming packages": [[242, "consuming-packages"]], "Build a simple CMake project using Conan": [[243, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[244, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[244, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[244, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[245, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[245, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[245, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[245, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[245, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[246, "introduction-to-versioning"]], "Version ranges": [[246, "version-ranges"], [272, "version-ranges"]], "Revisions": [[246, "revisions"], [271, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[247, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[247, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[247, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[247, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[248, "using-build-tools-as-conan-packages"]], "Creating packages": [[249, "creating-packages"]], "Add dependencies to packages": [[250, "add-dependencies-to-packages"]], "Build packages: the build() method": [[251, "build-packages-the-build-method"]], "Build and run tests for your project": [[251, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[251, "changes-introduced-in-the-recipe"], [254, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[251, "changes-introduced-in-the-library-sources"], [254, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[251, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[251, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[252, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[252, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[252, "c-libraries"]], "Header-only libraries": [[252, "header-only-libraries"]], "Create your first Conan package": [[253, "create-your-first-conan-package"]], "A note about the Conan cache": [[253, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[254, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[254, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[254, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[254, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[255, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[255, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[255, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[255, "using-the-conandata-yml-file"]], "Other types of packages": [[256, "other-types-of-packages"]], "Header-only packages": [[257, "header-only-packages"]], "Header-only library with tests": [[257, "header-only-library-with-tests"]], "Package prebuilt binaries": [[258, "package-prebuilt-binaries"]], "Locally building binaries": [[258, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[258, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[258, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[259, "tool-requires-packages"]], "A simple tool require recipe": [[259, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[259, "removing-settings-in-package-id"]], "Package files: the package() method": [[260, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[260, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[260, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[260, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[261, "preparing-the-build"]], "Testing Conan packages": [[262, "testing-conan-packages"]], "Developing packages locally": [[263, "developing-packages-locally"]], "Packages in editable mode": [[264, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[264, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[264, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[264, "working-with-editable-packages"]], "Building editable dependencies": [[264, "building-editable-dependencies"]], "Revert the editable mode": [[264, "revert-the-editable-mode"]], "Package Development Flow": [[265, "package-development-flow"]], "Understanding the Conan Package layout": [[266, "understanding-the-conan-package-layout"]], "cpp.package": [[266, "cpp-package"]], "cpp.source and cpp.build": [[266, "cpp-source-and-cpp-build"]], "Other important Conan features": [[267, "other-important-conan-features"]], "Packages lists": [[267, "packages-lists"]], "Removing unused packages from the cache": [[267, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[269, "dependencies-conflicts"]], "Resolving conflicts": [[269, "resolving-conflicts"]], "Overriding options": [[269, "overriding-options"]], "Multi-configuration lockfiles": [[270, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[270, "evolving-lockfiles"]], "Creating different revisions": [[271, "creating-different-revisions"]], "Using revisions": [[271, "using-revisions"]], "Uploading revisions": [[271, "uploading-revisions"]], "Package revisions": [[271, "package-revisions"]], "Semantic versioning": [[272, "semantic-versioning"]], "Range expressions": [[272, "range-expressions"]], "Versions": [[273, "versions"]], "Automating versions": [[273, "automating-versions"]], "Requiring the new versions": [[273, "requiring-the-new-versions"]], "What\u2019s new in Conan 2": [[274, "what-s-new-in-conan-2"]], "Conan 2 migration guide": [[274, "conan-2-migration-guide"]], "New graph model": [[274, "new-graph-model"]], "New public Python API": [[274, "new-public-python-api"]], "New build system integrations": [[274, "new-build-system-integrations"]], "New custom user commands": [[274, "new-custom-user-commands"]], "New CLI": [[274, "new-cli"]], "New deployers": [[274, "new-deployers"]], "New package_id": [[274, "new-package-id"]], "compatibility.py": [[274, "compatibility-py"]], "New lockfiles": [[274, "new-lockfiles"]], "New configuration and environment management": [[274, "new-configuration-and-environment-management"]], "Multi-revision cache": [[274, "multi-revision-cache"]], "New extensions plugins": [[274, "new-extensions-plugins"]], "Profile checker": [[274, "profile-checker"]], "Package immutability optimizations": [[274, "package-immutability-optimizations"]], "Package lists": [[274, "package-lists"]], "Metadata files": [[274, "metadata-files"]], "Third party backup sources": [[274, "third-party-backup-sources"]]}, "indexentries": {"append() (conf method)": [[135, "conans.model.conf.Conf.append"]], "define() (conf method)": [[135, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[135, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[135, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[135, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[135, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[165, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[166, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[166, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[166, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[167, "conan.api.subapi.download.DownloadAPI"]], "download_full() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.download_full"]], "package() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.package"]], "recipe() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.recipe"]], "exportapi (class in conan.api.subapi.export)": [[168, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[169, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[170, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[171, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[171, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[172, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[172, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[172, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[173, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[174, "conan.api.subapi.remotes.RemotesAPI"]], "add() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.add"]], "disable() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.disable"]], "enable() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.enable"]], "get() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.get"]], "list() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.list"]], "remove() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.remove"]], "rename() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.rename"]], "update() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.update"]], "user_login() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.user_login"]], "user_logout() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.user_logout"]], "removeapi (class in conan.api.subapi.remove)": [[175, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[176, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[177, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.prepare"]], "upload_full() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.upload_full"]], "android_abi() (in module conan.tools.android)": [[180, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[182, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[182, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[182, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[182, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[182, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[182, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[182, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[182, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[182, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[182, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[182, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[182, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[182, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[186, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[186, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[186, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[188, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[189, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[191, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[191, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[194, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[194, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[194, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[194, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[194, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[194, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[194, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[194, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[194, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[194, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[194, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[194, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[195, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[199, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[199, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[199, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[199, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[206, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[207, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[207, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[209, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[209, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[210, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[210, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[211, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[211, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[211, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[213, "conan.tools.google.Bazel"]], "build() (bazel method)": [[213, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[213, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[214, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[214, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[214, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[215, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[215, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[216, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[216, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[216, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[216, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[216, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[216, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[219, "conan.tools.meson.Meson"]], "build() (meson method)": [[219, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[219, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[219, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[219, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[220, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[220, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[222, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[223, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[223, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[223, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[224, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[225, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[225, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[227, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[227, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[228, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[230, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[230, "conan.tools.scm.git.Git.checkout"]], "checkout_from_conandata_coordinates() (git method)": [[230, "conan.tools.scm.git.Git.checkout_from_conandata_coordinates"]], "clone() (git method)": [[230, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[230, "conan.tools.scm.git.Git.commit_in_remote"]], "coordinates_to_conandata() (git method)": [[230, "conan.tools.scm.git.Git.coordinates_to_conandata"]], "fetch_commit() (git method)": [[230, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[230, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[230, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[230, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[230, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[230, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[230, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[230, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[231, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[234, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[234, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[234, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[234, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[234, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[234, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[234, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[234, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[234, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[234, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[234, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[234, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[234, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[234, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[234, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[234, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[234, "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/cmake/cmake_toolchain/use_package_config_cmake", "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/build_simple_meson_project", "examples/tools/meson/create_your_first_package", "examples/tools/meson/meson", "examples/tools/microsoft/msbuild", "examples/tools/microsoft/msbuild/create_your_first_package", "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/cmake/cmake_toolchain/use_package_config_cmake.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/build_simple_meson_project.rst", "examples/tools/meson/create_your_first_package.rst", "examples/tools/meson/meson.rst", "examples/tools/microsoft/msbuild.rst", "examples/tools/microsoft/msbuild/create_your_first_package.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", "CMakeToolchain: Using xxx-config.cmake files inside packages", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "Build a simple Meson project using Conan", "Create your first Conan package with Meson", "tools.meson", "tools.microsoft", "Create your first Conan package with Visual Studio/MSBuild", "Capturing Git scm information", "Conan 2 - 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"], "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, 50, 52, 54, 55, 56, 59, 60, 62, 67, 68, 74, 77, 78, 79, 84, 85, 88, 89, 90, 91, 97, 100, 103, 109, 110, 112, 116, 118, 120, 121, 122, 123, 124, 126, 127, 131, 132, 133, 135, 136, 140, 145, 146, 148, 150, 151, 153, 155, 156, 159, 160, 161, 162, 164, 179, 184, 185, 186, 190, 191, 192, 195, 196, 200, 202, 207, 208, 209, 212, 215, 217, 218, 220, 221, 224, 225, 226, 227, 231, 233, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 62, 65, 66, 67, 69, 70, 71, 72, 73, 74, 77, 78, 82, 83, 84, 85, 86, 88, 89, 90, 91, 94, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 109, 112, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 155, 156, 157, 159, 161, 162, 163, 170, 171, 175, 178, 179, 180, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 204, 205, 207, 209, 212, 214, 215, 217, 218, 221, 225, 231, 234, 239, 240, 242, 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, 272, 273, 274, 275], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 50, 52, 54, 55, 56, 59, 67, 85, 87, 90, 92, 93, 94, 97, 99, 100, 102, 103, 105, 106, 107, 115, 120, 149, 150, 151, 152, 153, 158, 159, 161, 170, 192, 215, 216, 235, 244, 245, 248, 249, 254, 255, 256, 263, 266], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 50, 54, 60, 62, 68, 69, 78, 82, 83, 84, 87, 88, 89, 90, 97, 99, 100, 101, 102, 105, 106, 107, 109, 115, 118, 120, 123, 124, 130, 131, 140, 141, 149, 150, 151, 164, 175, 178, 179, 191, 196, 200, 207, 209, 231, 235, 247, 248, 249, 251, 253, 268, 273, 275], "exist": [0, 1, 6, 7, 8, 21, 60, 62, 74, 77, 82, 84, 87, 88, 89, 90, 94, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 115, 116, 120, 122, 124, 125, 126, 127, 129, 131, 135, 137, 140, 148, 149, 150, 151, 153, 157, 159, 168, 170, 174, 175, 178, 183, 187, 191, 192, 195, 196, 200, 207, 209, 211, 221, 231, 242, 247, 253, 254, 259, 263, 270, 271, 272, 274, 275], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 52, 56, 59, 60, 69, 79, 82, 83, 88, 90, 99, 102, 107, 123, 134, 135, 138, 139, 145, 153, 157, 164, 185, 186, 192, 200, 203, 207, 231, 246, 249, 251, 252, 254, 255, 258, 263, 266, 270, 271, 272, 273, 274], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 62, 74, 82, 84, 86, 87, 88, 89, 90, 93, 94, 97, 99, 100, 102, 104, 106, 107, 110, 115, 116, 120, 126, 127, 135, 136, 150, 153, 156, 157, 159, 162, 164, 165, 175, 179, 183, 192, 195, 200, 202, 203, 205, 208, 209, 221, 236, 242, 248, 253, 254, 257, 258, 259, 261, 262, 265, 267, 271, 272, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 81, 82, 83, 84, 85, 88, 89, 90, 91, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 167, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 215, 216, 217, 218, 220, 221, 224, 225, 226, 227, 228, 231, 233, 235, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 54, 55, 60, 67, 74, 83, 88, 97, 107, 140, 153, 179, 185, 190, 217, 218, 225, 237, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 266, 267, 271, 274], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 59, 60, 61, 65, 66, 68, 69, 70, 71, 72, 73, 74, 76, 79, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 104, 105, 106, 107, 108, 111, 112, 113, 115, 116, 119, 124, 125, 128, 131, 134, 135, 136, 141, 146, 150, 151, 153, 156, 157, 159, 163, 165, 170, 172, 178, 179, 180, 182, 188, 194, 200, 206, 213, 218, 219, 222, 241, 242, 245, 246, 248, 249, 251, 253, 254, 255, 256, 261, 262, 265, 266, 273, 275], "tree": [0, 69, 151, 161, 191], "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, 53, 56, 57, 59, 60, 61, 63, 65, 66, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 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, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 170, 175, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 193, 195, 196, 197, 198, 200, 201, 202, 203, 205, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 235, 236, 237, 241, 242, 243, 247, 250, 251, 252, 253, 254, 255, 258, 259, 260, 262, 263, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275], "search": [0, 1, 31, 35, 52, 67, 78, 86, 103, 110, 118, 120, 148, 152, 156, 165, 183, 200, 207, 240, 242, 244, 246, 253, 255, 267, 275], "bar": [0, 118, 200, 209, 227], "desir": [0, 1, 4, 40, 49, 56, 59, 84, 91, 102, 109, 118, 120, 121, 135, 153, 161, 196, 197, 198, 233], "topic": [0, 1, 9, 74, 95, 100, 101, 159, 254], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 50, 52, 56, 59, 60, 62, 67, 74, 77, 78, 82, 83, 84, 85, 88, 89, 90, 91, 97, 99, 100, 102, 103, 105, 106, 107, 109, 111, 112, 113, 116, 118, 120, 123, 125, 126, 127, 129, 130, 131, 133, 135, 136, 137, 138, 139, 140, 141, 143, 148, 149, 150, 151, 152, 153, 154, 155, 157, 159, 168, 175, 178, 183, 184, 185, 186, 187, 190, 191, 192, 195, 196, 197, 198, 200, 201, 202, 204, 207, 208, 209, 211, 212, 217, 218, 221, 223, 225, 227, 231, 235, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 259, 260, 265, 266, 267, 268, 270, 271, 272, 274, 275], "think": [0, 42, 77], "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, 50, 52, 54, 55, 56, 59, 60, 61, 62, 63, 67, 68, 69, 72, 73, 74, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 231, 232, 233, 235, 236, 237, 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, 272, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 61, 62, 63, 67, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 113, 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, 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, 178, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 204, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 50, 56, 59, 60, 61, 67, 74, 77, 78, 82, 83, 86, 87, 88, 89, 90, 93, 94, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 115, 116, 118, 120, 123, 126, 131, 132, 133, 134, 135, 137, 138, 139, 143, 145, 146, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 162, 163, 164, 170, 174, 175, 183, 186, 189, 191, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 215, 217, 221, 224, 227, 228, 231, 232, 235, 243, 244, 245, 246, 247, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 270, 271, 272, 273, 275], "error": [0, 1, 6, 21, 31, 39, 40, 60, 62, 83, 87, 88, 89, 90, 93, 94, 97, 98, 99, 100, 101, 102, 106, 110, 115, 118, 120, 122, 131, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 153, 155, 162, 164, 170, 175, 191, 200, 202, 207, 221, 235, 243, 246, 251, 253, 265, 266, 269, 270, 271, 275], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 50, 52, 54, 55, 56, 59, 60, 62, 67, 70, 74, 78, 82, 84, 85, 90, 97, 102, 103, 109, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 131, 134, 135, 136, 137, 138, 139, 140, 141, 143, 145, 149, 154, 155, 161, 162, 163, 164, 170, 178, 179, 184, 186, 189, 191, 192, 197, 200, 204, 210, 215, 220, 221, 227, 231, 240, 244, 245, 246, 248, 251, 252, 253, 254, 255, 258, 265, 266, 267, 270, 271, 272, 273, 274, 275], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 52, 54, 55, 60, 62, 64, 65, 68, 70, 72, 73, 74, 77, 78, 79, 91, 97, 105, 110, 111, 116, 118, 120, 131, 150, 151, 157, 162, 163, 192, 218, 221, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 275], "open": [0, 4, 5, 8, 26, 29, 48, 55, 59, 60, 61, 67, 77, 120, 122, 145, 150, 154, 163, 200, 226, 231, 237, 239, 241, 244, 246, 265], "issu": [0, 1, 6, 8, 39, 40, 50, 61, 74, 77, 84, 118, 131, 132, 133, 150, 153, 157, 191, 254, 256, 271, 272], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 50, 60, 62, 65, 67, 69, 70, 72, 73, 78, 82, 83, 84, 88, 89, 91, 97, 100, 102, 103, 105, 106, 107, 108, 109, 110, 111, 116, 120, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 146, 148, 149, 150, 151, 153, 154, 155, 158, 159, 161, 162, 164, 170, 179, 183, 184, 185, 186, 187, 190, 192, 193, 196, 200, 204, 209, 210, 212, 215, 217, 218, 221, 224, 225, 228, 235, 239, 240, 242, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 261, 263, 265, 266, 267, 269, 270, 271, 272, 273, 275], "more": [1, 4, 6, 7, 8, 13, 18, 19, 27, 31, 36, 42, 45, 47, 52, 60, 62, 64, 67, 69, 74, 77, 79, 81, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 122, 124, 126, 127, 128, 132, 133, 134, 135, 136, 140, 142, 146, 148, 149, 150, 151, 153, 154, 156, 157, 158, 159, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 186, 187, 191, 192, 193, 197, 198, 200, 207, 210, 212, 214, 215, 216, 218, 220, 221, 225, 227, 238, 239, 243, 244, 247, 248, 249, 252, 253, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 268, 271, 272, 273, 275], "detail": [1, 8, 42, 50, 52, 62, 67, 69, 74, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 150, 153, 186, 200, 221, 224, 249, 253, 254, 256, 259, 261, 263, 267], "descript": [1, 95, 100, 101, 109, 131, 132, 162, 212, 254], "major": [1, 5, 35, 39, 40, 60, 74, 79, 102, 110, 120, 151, 179, 192, 239, 244, 270, 273, 275], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 50, 52, 60, 74, 76, 77, 78, 82, 83, 84, 85, 88, 90, 95, 97, 101, 105, 106, 107, 109, 110, 117, 118, 120, 123, 124, 126, 127, 128, 135, 136, 140, 149, 150, 151, 153, 154, 155, 157, 158, 159, 161, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 183, 190, 191, 192, 193, 196, 200, 207, 209, 210, 212, 214, 215, 216, 217, 221, 224, 227, 231, 235, 244, 246, 247, 248, 251, 253, 254, 256, 258, 259, 261, 262, 264, 265, 267, 269, 270, 271, 272, 274, 275], "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, 50, 52, 53, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 95, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 208, 209, 210, 212, 214, 215, 216, 220, 224, 225, 226, 227, 228, 231, 236, 242, 243, 246, 247, 248, 250, 251, 252, 256, 258, 259, 260, 262, 264, 265, 269, 270, 271, 272, 273, 274], "bring": [1, 63, 151, 256], "compar": [1, 153, 187, 232, 272, 273], "x": [1, 62, 74, 76, 89, 94, 120, 150, 153, 162, 191, 200, 203, 223, 254, 258, 271, 273, 275], "read": [1, 3, 4, 6, 8, 18, 19, 24, 31, 36, 42, 45, 47, 54, 55, 56, 59, 62, 67, 74, 78, 82, 84, 87, 88, 89, 90, 92, 94, 102, 103, 106, 110, 114, 115, 118, 120, 124, 125, 127, 130, 131, 133, 135, 136, 138, 139, 141, 145, 146, 150, 151, 157, 163, 179, 187, 189, 200, 204, 207, 209, 211, 217, 231, 238, 240, 242, 244, 253, 256, 260, 265, 266, 274, 275], "what": [1, 4, 5, 13, 24, 60, 61, 74, 79, 82, 96, 97, 99, 102, 103, 116, 120, 121, 155, 192, 195, 196, 203, 245, 247, 248, 249, 253, 254, 255, 258, 259, 262, 267, 270, 271, 272], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 52, 54, 55, 56, 59, 60, 61, 62, 64, 66, 67, 69, 74, 77, 79, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 106, 107, 109, 110, 111, 115, 116, 118, 120, 124, 125, 135, 136, 137, 143, 144, 145, 148, 150, 151, 152, 153, 156, 158, 159, 161, 164, 183, 185, 186, 187, 192, 202, 207, 209, 214, 215, 216, 217, 221, 225, 226, 231, 235, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 56, 59, 61, 62, 67, 74, 77, 78, 79, 82, 83, 84, 85, 86, 88, 102, 104, 105, 106, 107, 108, 110, 111, 120, 134, 135, 151, 156, 158, 159, 161, 163, 165, 167, 175, 179, 183, 185, 186, 190, 191, 192, 193, 195, 197, 198, 209, 217, 225, 226, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 262, 266, 267, 269, 270, 271, 272, 273], "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 61, 62, 67, 68, 69, 74, 90, 101, 117, 120, 124, 125, 126, 127, 128, 135, 136, 148, 149, 150, 151, 153, 154, 157, 162, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 187, 189, 193, 203, 210, 214, 215, 216, 236, 240, 245, 248, 255, 258, 263, 264, 265, 266, 267, 275], "implement": [1, 2, 7, 8, 41, 50, 74, 78, 83, 88, 94, 109, 118, 125, 131, 134, 140, 153, 157, 161, 164, 179, 180, 184, 192, 218, 224, 232, 239, 241, 254, 256, 258, 259, 268, 270, 275], "multi": [1, 47, 48, 50, 107, 136, 161, 185, 188, 189, 191, 225, 246, 248, 259, 265, 267, 269], "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 43, 45, 46, 48, 54, 55, 56, 65, 66, 68, 69, 73, 77, 78, 82, 86, 109, 110, 118, 131, 136, 146, 150, 151, 153, 156, 158, 159, 160, 161, 164, 165, 184, 186, 189, 190, 191, 192, 211, 212, 214, 216, 217, 225, 226, 241, 244, 246, 248, 249, 251, 252, 255, 259, 263, 265, 267, 275], "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 50, 54, 55, 56, 60, 61, 62, 65, 66, 67, 68, 70, 71, 72, 73, 74, 79, 80, 82, 84, 87, 89, 90, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 110, 115, 120, 122, 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 146, 147, 151, 153, 156, 158, 160, 161, 162, 179, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 207, 208, 209, 210, 211, 212, 214, 215, 216, 220, 221, 224, 225, 226, 227, 228, 231, 236, 240, 243, 244, 245, 246, 248, 250, 251, 252, 254, 256, 257, 258, 259, 262, 263, 266, 267, 274, 275], "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, 50, 53, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 77, 78, 79, 80, 82, 83, 85, 86, 88, 89, 92, 93, 94, 95, 96, 99, 100, 102, 103, 104, 105, 106, 107, 108, 110, 115, 119, 121, 123, 124, 127, 128, 129, 131, 133, 134, 135, 139, 140, 142, 143, 144, 145, 146, 150, 151, 153, 156, 158, 159, 160, 161, 162, 170, 174, 179, 180, 181, 183, 184, 185, 186, 188, 189, 190, 191, 193, 195, 196, 197, 198, 200, 204, 206, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 228, 231, 233, 235, 236, 238, 243, 247, 248, 250, 251, 253, 254, 255, 256, 257, 258, 260, 261, 263, 264, 268, 270, 271, 272, 273, 274], "xxxx": [1, 7, 50, 72, 84, 86, 89, 95, 120, 131, 138, 139, 192, 214, 216, 225, 275], "flag": [1, 49, 88, 89, 100, 126, 135, 136, 150, 153, 183, 184, 186, 191, 207, 208, 209, 212, 216, 220, 221, 223, 226, 227, 233, 253], "cmaketoolchain": [1, 16, 17, 18, 26, 27, 35, 38, 41, 42, 43, 46, 52, 60, 68, 73, 77, 84, 87, 89, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 131, 136, 146, 150, 151, 153, 180, 188, 189, 190, 191, 244, 245, 246, 247, 248, 249, 252, 254, 256, 258, 260, 262, 263, 266, 267, 275], "15654": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 52, 56, 59, 60, 67, 77, 84, 86, 88, 89, 104, 106, 107, 108, 109, 112, 118, 120, 135, 136, 150, 154, 159, 162, 163, 175, 184, 185, 189, 191, 192, 195, 200, 202, 207, 209, 210, 212, 214, 215, 216, 220, 221, 225, 227, 235, 236, 240, 245, 247, 248, 249, 250, 252, 253, 255, 260, 262, 263, 265, 267, 270, 271, 274], "abil": 1, "pass": [1, 4, 13, 26, 36, 39, 45, 49, 54, 55, 68, 84, 88, 89, 90, 97, 102, 109, 110, 118, 120, 127, 132, 133, 140, 145, 149, 150, 158, 159, 161, 167, 175, 183, 184, 185, 186, 189, 190, 192, 193, 202, 204, 207, 209, 210, 214, 217, 221, 224, 231, 235, 244, 252, 253, 254, 255, 256, 258, 262, 263, 265, 271, 275], "pattern": [1, 6, 7, 13, 31, 84, 87, 88, 89, 90, 91, 92, 97, 99, 100, 102, 103, 106, 108, 111, 112, 115, 116, 118, 120, 134, 135, 140, 145, 146, 147, 175, 178, 191, 200, 202, 225, 231, 232, 246, 253, 261, 268], "updat": [1, 4, 6, 8, 26, 39, 40, 63, 67, 74, 78, 87, 89, 90, 93, 94, 97, 99, 100, 105, 106, 115, 118, 120, 132, 136, 137, 141, 150, 151, 153, 157, 170, 175, 183, 193, 200, 209, 235, 247, 255, 269, 273, 274, 275], "15652": 1, "doc": [1, 8, 61, 62, 74, 77, 118, 157, 207, 240, 248, 249, 275], "here": [1, 4, 19, 27, 41, 42, 50, 61, 86, 97, 103, 120, 127, 131, 132, 133, 137, 153, 162, 179, 191, 192, 196, 200, 212, 215, 235, 246, 248, 251, 253, 254, 256, 259, 266, 267], "format": [1, 6, 7, 13, 52, 69, 76, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 110, 111, 112, 113, 115, 116, 117, 120, 125, 131, 136, 140, 141, 149, 153, 154, 158, 179, 193, 196, 200, 202, 210, 212, 218, 221, 226, 239, 252, 259, 260, 268, 275], "json": [1, 3, 4, 6, 13, 21, 47, 48, 60, 69, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 105, 107, 110, 111, 112, 113, 115, 116, 117, 131, 132, 140, 141, 147, 159, 175, 189, 190, 192, 259, 265, 266, 267, 268, 275], "formatt": [1, 45, 91, 100, 116, 156], "15651": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 60, 67, 70, 72, 73, 74, 77, 90, 102, 105, 106, 109, 120, 126, 127, 132, 134, 137, 150, 151, 157, 158, 159, 161, 163, 174, 175, 179, 183, 185, 186, 192, 195, 204, 207, 209, 216, 225, 226, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 260, 261, 262, 271, 275], "cross_build": [1, 89, 150, 221, 245, 263], "decid": [1, 82, 89, 118, 120, 124, 135, 138, 139, 150, 248, 252, 270, 272, 273], "whether": [1, 87, 89, 90, 93, 94, 99, 100, 102, 106, 118, 131, 141, 150, 185, 187, 223, 248, 252, 255, 262, 267, 275], "cross": [1, 11, 26, 42, 55, 56, 61, 62, 64, 74, 89, 122, 135, 136, 140, 150, 151, 187, 188, 191, 209, 212, 216, 219, 220, 235, 236, 243, 246, 263], "regardless": [1, 88, 89, 150, 253], "intern": [1, 50, 54, 78, 89, 118, 140, 151, 153, 154, 183, 184, 221, 224, 235, 245, 247, 258, 272], "mechan": [1, 7, 13, 60, 74, 77, 78, 84, 118, 120, 125, 131, 139, 140, 151, 154, 156, 161, 179, 193, 196, 231, 246, 247, 253, 269, 271, 272, 274, 275], "15616": 1, "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 52, 59, 60, 67, 71, 72, 73, 77, 81, 83, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 135, 136, 143, 144, 150, 152, 156, 157, 159, 161, 162, 174, 175, 185, 186, 187, 188, 189, 191, 192, 200, 202, 207, 209, 216, 217, 219, 224, 225, 226, 236, 239, 243, 248, 250, 252, 254, 256, 258, 260, 262, 269, 272, 273, 275], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 50, 52, 56, 59, 60, 61, 62, 67, 74, 78, 83, 85, 86, 87, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 112, 115, 120, 123, 128, 129, 130, 131, 133, 134, 138, 139, 149, 151, 154, 155, 156, 157, 158, 161, 162, 163, 164, 168, 170, 172, 174, 178, 186, 189, 192, 196, 200, 207, 214, 221, 226, 231, 236, 237, 242, 244, 246, 247, 248, 249, 250, 253, 255, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271, 272, 273, 274], "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 50, 52, 54, 59, 60, 62, 78, 85, 86, 87, 89, 90, 92, 93, 94, 97, 99, 100, 101, 103, 106, 107, 109, 114, 115, 118, 120, 130, 131, 132, 133, 134, 136, 137, 138, 139, 142, 148, 150, 151, 159, 161, 162, 163, 170, 174, 179, 180, 183, 184, 189, 191, 192, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 211, 214, 215, 216, 217, 218, 221, 223, 227, 228, 244, 246, 248, 249, 252, 254, 255, 258, 259, 260, 261, 263, 265, 266, 267, 275], "15613": 1, "order": [1, 4, 8, 13, 31, 36, 96, 102, 104, 105, 108, 118, 119, 120, 122, 135, 136, 150, 153, 154, 157, 161, 174, 175, 179, 192, 193, 196, 200, 209, 245, 247, 265, 271, 272, 273], "argument": [1, 6, 7, 10, 26, 29, 31, 35, 36, 47, 49, 68, 77, 78, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 128, 138, 139, 145, 149, 150, 155, 156, 157, 158, 160, 161, 163, 170, 174, 178, 184, 185, 189, 190, 191, 192, 193, 195, 196, 200, 207, 209, 214, 217, 218, 224, 231, 235, 245, 246, 248, 252, 253, 254, 256, 259, 265, 266, 268, 271, 273, 274], "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 61, 77, 78, 82, 84, 86, 89, 90, 101, 102, 104, 105, 106, 107, 110, 120, 121, 127, 131, 136, 137, 140, 141, 143, 146, 150, 151, 156, 159, 161, 165, 171, 185, 196, 225, 235, 243, 244, 245, 247, 249, 253, 268, 269, 270, 271, 272, 274], "15602": 1, "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 50, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 78, 79, 82, 84, 87, 88, 90, 92, 93, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 109, 112, 113, 114, 115, 118, 121, 122, 128, 131, 134, 136, 137, 138, 139, 146, 149, 150, 151, 153, 154, 157, 158, 161, 170, 175, 189, 191, 192, 193, 195, 196, 200, 202, 204, 209, 211, 212, 221, 233, 246, 247, 248, 250, 259, 261, 262, 269, 271, 274, 275], "reduc": [1, 78, 97, 98, 141], "exclus": [1, 35, 87, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 103, 106, 107, 112, 115, 116, 120, 121, 124, 136, 137, 140, 225], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 43, 45, 46, 47, 49, 52, 54, 55, 57, 58, 60, 62, 65, 67, 68, 69, 71, 72, 73, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 99, 100, 102, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 150, 151, 153, 155, 156, 157, 158, 159, 160, 161, 162, 168, 170, 171, 172, 175, 178, 179, 183, 185, 186, 189, 191, 192, 193, 195, 196, 198, 200, 203, 207, 209, 211, 212, 214, 215, 218, 220, 221, 225, 226, 231, 234, 236, 237, 238, 239, 240, 241, 244, 245, 247, 262, 269, 270, 271, 273, 274], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 55, 56, 60, 62, 67, 68, 72, 74, 78, 81, 82, 83, 86, 89, 94, 96, 97, 98, 100, 101, 105, 106, 109, 112, 116, 118, 120, 124, 126, 127, 132, 133, 135, 136, 137, 138, 139, 141, 145, 146, 150, 153, 154, 155, 156, 159, 160, 179, 183, 190, 191, 192, 193, 195, 204, 208, 209, 210, 217, 221, 224, 227, 231, 235, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 262, 265, 266, 267, 270, 272, 273, 274, 275], "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 50, 54, 56, 59, 60, 62, 69, 74, 77, 78, 80, 82, 84, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 102, 103, 106, 109, 112, 115, 120, 122, 125, 129, 130, 131, 133, 136, 140, 141, 144, 146, 147, 156, 157, 163, 170, 179, 181, 185, 189, 191, 193, 200, 206, 214, 220, 225, 244, 245, 246, 248, 249, 250, 252, 253, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 272, 275], "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, 50, 52, 54, 55, 56, 59, 60, 61, 65, 66, 67, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 146, 148, 149, 150, 151, 152, 153, 154, 156, 159, 160, 161, 163, 168, 170, 172, 173, 175, 178, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 235, 236, 237, 238, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 272, 273, 274, 275], "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, 51, 54, 55, 56, 59, 60, 61, 77, 78, 79, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 102, 103, 106, 109, 110, 115, 118, 119, 121, 122, 129, 130, 131, 133, 136, 143, 150, 151, 154, 162, 163, 170, 171, 178, 179, 189, 190, 191, 192, 196, 197, 200, 202, 204, 208, 209, 212, 218, 231, 236, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 260, 261, 262, 263, 264, 265, 269, 272, 274], "15573": 1, "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, 50, 52, 54, 56, 59, 60, 61, 62, 63, 65, 66, 72, 73, 74, 77, 78, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 134, 135, 136, 140, 143, 144, 151, 153, 154, 155, 162, 167, 170, 174, 179, 182, 184, 186, 187, 189, 190, 192, 197, 198, 202, 207, 209, 211, 214, 216, 220, 221, 222, 223, 224, 226, 228, 231, 234, 236, 237, 240, 243, 244, 245, 249, 250, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 269, 270, 272, 273, 274], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 52, 77, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 102, 103, 106, 108, 110, 111, 112, 113, 114, 115, 116, 118, 120, 124, 126, 127, 131, 133, 135, 136, 137, 145, 146, 150, 151, 152, 153, 161, 168, 178, 187, 189, 190, 191, 192, 196, 200, 201, 202, 207, 209, 210, 212, 215, 217, 220, 221, 227, 231, 242, 244, 245, 246, 247, 248, 256, 258, 273, 274], "cuda": [1, 89, 150, 192, 209], "toolkit": 1, "visual": [1, 28, 35, 43, 50, 58, 61, 63, 74, 76, 84, 89, 131, 136, 150, 153, 180, 189, 190, 191, 192, 209, 217, 218, 221, 222, 224, 225, 226, 228, 229, 244, 246, 248, 249, 254, 267], "studio": [1, 11, 25, 27, 28, 35, 43, 50, 58, 61, 63, 64, 74, 84, 89, 131, 136, 150, 153, 189, 190, 191, 192, 209, 217, 218, 221, 223, 224, 225, 226, 228, 229, 244, 246, 248, 249, 254, 267], "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 27, 29, 35, 37, 42, 43, 47, 48, 52, 54, 55, 56, 59, 60, 61, 63, 67, 72, 73, 74, 77, 78, 79, 80, 84, 87, 89, 90, 94, 97, 99, 100, 102, 106, 108, 109, 110, 115, 120, 122, 124, 131, 133, 134, 135, 136, 137, 146, 150, 151, 153, 158, 180, 190, 192, 197, 204, 218, 236, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 265, 266, 267, 275], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 27, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 50, 54, 55, 56, 59, 60, 65, 66, 68, 70, 71, 72, 73, 74, 78, 80, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 115, 116, 118, 121, 122, 123, 125, 127, 132, 133, 135, 136, 137, 140, 141, 150, 151, 153, 154, 155, 156, 157, 158, 161, 162, 163, 164, 171, 179, 180, 181, 185, 186, 188, 189, 190, 194, 195, 196, 200, 206, 207, 213, 217, 218, 219, 220, 222, 226, 227, 228, 231, 233, 239, 240, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 273, 275], "15572": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 46, 49, 52, 59, 60, 61, 62, 63, 65, 66, 70, 71, 72, 73, 74, 77, 82, 84, 86, 97, 100, 102, 106, 109, 118, 119, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 144, 147, 149, 151, 153, 156, 157, 159, 160, 163, 179, 180, 181, 183, 184, 185, 186, 189, 190, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 220, 221, 224, 225, 226, 227, 228, 233, 235, 236, 245, 247, 248, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 267, 271, 273, 274, 275], "valu": [1, 21, 26, 27, 39, 49, 77, 78, 82, 84, 87, 89, 90, 97, 99, 100, 102, 103, 106, 109, 110, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 131, 132, 133, 135, 136, 137, 138, 139, 140, 143, 144, 145, 146, 148, 149, 150, 151, 152, 155, 157, 159, 164, 167, 181, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 200, 202, 207, 208, 209, 216, 218, 220, 221, 223, 224, 225, 226, 227, 232, 235, 246, 248, 252, 253, 254, 255, 258, 260, 262, 263, 266, 267, 270, 272], "definit": [1, 17, 65, 67, 68, 70, 71, 74, 79, 84, 89, 94, 102, 109, 110, 111, 120, 127, 136, 140, 150, 151, 153, 156, 175, 186, 192, 194, 196, 197, 198, 208, 209, 221, 225, 226, 227, 231, 248, 262, 265, 267, 274], "higher": [1, 67, 84, 102, 136, 137, 145, 149, 231, 271, 273], "preced": [1, 120, 148, 180, 192, 195, 209, 212], "over": [1, 6, 8, 10, 76, 78, 84, 88, 89, 91, 102, 120, 132, 135, 140, 148, 150, 151, 155, 157, 158, 161, 174, 179, 184, 192, 202, 209, 211, 212, 231, 252, 255, 256, 261, 268, 270, 273, 275], "regular": [1, 41, 120, 131, 133, 136, 151, 155, 162, 179, 191, 202, 212, 225, 241, 243, 245, 258], "15571": 1, "displai": [1, 13, 67, 85, 86, 89, 96, 103, 120, 141, 158, 164, 254, 271], "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 52, 77, 83, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 145, 150, 162, 249, 251, 252, 253, 256, 260, 262, 265, 272, 275], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 50, 52, 60, 62, 74, 77, 78, 82, 83, 84, 85, 87, 88, 89, 90, 92, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 111, 115, 116, 118, 120, 121, 124, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 153, 154, 155, 159, 161, 163, 164, 175, 179, 181, 183, 185, 186, 187, 189, 191, 192, 196, 197, 198, 200, 202, 209, 212, 214, 215, 217, 220, 221, 223, 225, 226, 232, 235, 237, 240, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274, 275], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 50, 52, 54, 56, 59, 60, 65, 67, 72, 73, 78, 83, 86, 87, 91, 94, 102, 109, 110, 114, 118, 121, 122, 123, 124, 126, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 141, 142, 145, 154, 157, 158, 159, 161, 162, 163, 178, 179, 184, 189, 191, 192, 193, 196, 197, 198, 203, 207, 209, 214, 216, 217, 220, 224, 226, 227, 228, 231, 235, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 269, 270, 272, 275], "deactivate_conanvcvar": 1, "15557": 1, "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 50, 52, 56, 59, 60, 78, 82, 84, 102, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 150, 151, 153, 154, 156, 158, 159, 160, 161, 162, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 270, 271, 272, 274, 275], "info": [1, 6, 13, 24, 31, 36, 54, 56, 59, 60, 63, 77, 82, 83, 84, 85, 86, 89, 90, 96, 99, 101, 103, 106, 131, 135, 136, 137, 140, 141, 143, 144, 145, 150, 159, 162, 170, 179, 202, 221, 233, 235, 245, 253, 254, 258, 260, 271, 272], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 50, 54, 55, 62, 64, 67, 68, 72, 73, 77, 78, 79, 80, 85, 86, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 105, 106, 109, 110, 111, 116, 117, 119, 121, 122, 123, 124, 126, 127, 128, 131, 132, 133, 134, 140, 141, 142, 143, 146, 147, 148, 149, 151, 153, 154, 156, 157, 159, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 183, 185, 189, 192, 195, 198, 200, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 225, 231, 233, 236, 239, 242, 244, 245, 246, 248, 249, 250, 253, 254, 256, 258, 262, 263, 266, 267, 268, 272, 273, 275], "package_id": [1, 6, 7, 13, 31, 78, 80, 81, 84, 88, 89, 91, 95, 97, 99, 100, 103, 112, 116, 120, 121, 123, 127, 131, 137, 143, 144, 150, 156, 170, 246, 253, 257, 258, 270, 272], "serial": [1, 7, 120], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 52, 55, 60, 67, 69, 74, 78, 80, 86, 87, 88, 89, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 131, 135, 140, 150, 151, 155, 159, 161, 162, 179, 200, 202, 204, 211, 218, 221, 231, 244, 246, 248, 249, 251, 252, 255, 262, 263, 267, 272, 275], "forward": [1, 6, 45, 54, 55, 74, 179, 202, 270, 274], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 54, 56, 59, 61, 65, 67, 70, 72, 73, 77, 83, 84, 85, 86, 88, 91, 97, 101, 105, 107, 109, 112, 113, 116, 118, 120, 121, 125, 131, 132, 135, 136, 145, 146, 149, 150, 151, 152, 156, 157, 159, 165, 168, 170, 174, 175, 178, 186, 187, 189, 190, 191, 192, 196, 200, 202, 207, 209, 210, 212, 214, 216, 221, 224, 225, 226, 227, 231, 233, 235, 236, 242, 247, 254, 255, 258, 259, 265, 266, 271, 272, 274], "15553": 1, "log": [1, 6, 26, 60, 91, 111, 118, 145, 154, 156, 267, 275], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 50, 52, 54, 55, 62, 69, 74, 77, 78, 89, 102, 109, 110, 120, 139, 140, 150, 154, 180, 200, 230, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 274], "command": [1, 4, 7, 10, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 54, 56, 59, 61, 62, 65, 66, 71, 72, 73, 74, 76, 77, 78, 80, 83, 84, 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, 115, 116, 117, 118, 119, 120, 121, 122, 128, 129, 130, 131, 133, 134, 138, 139, 140, 143, 149, 151, 152, 153, 155, 156, 160, 162, 164, 166, 170, 173, 184, 185, 186, 189, 191, 192, 196, 207, 214, 215, 216, 217, 220, 224, 225, 226, 228, 231, 233, 235, 242, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 268, 271, 272, 273, 274], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 50, 52, 54, 55, 56, 59, 60, 62, 67, 68, 74, 78, 80, 84, 89, 90, 95, 99, 100, 106, 112, 116, 119, 120, 121, 122, 123, 124, 131, 133, 135, 136, 139, 142, 148, 150, 151, 153, 156, 158, 159, 161, 162, 186, 187, 189, 191, 192, 194, 195, 198, 207, 212, 214, 215, 216, 217, 220, 224, 225, 227, 228, 231, 235, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 271, 272, 274, 275], "verbos": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 136, 145, 150, 151, 155, 184, 189, 209, 220, 224, 267], "mode": [1, 17, 21, 74, 77, 89, 92, 103, 120, 131, 133, 140, 141, 150, 153, 217, 235, 236, 246, 264, 267, 275], "15514": 1, "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 50, 52, 67, 77, 78, 102, 106, 109, 110, 120, 123, 136, 145, 151, 153, 157, 164, 184, 185, 186, 190, 191, 192, 197, 198, 200, 209, 221, 224, 225, 226, 236, 243, 248, 251, 253, 254, 258, 259, 260, 262, 265, 266, 267], "vvv": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "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, 46, 47, 49, 52, 54, 55, 56, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 72, 73, 74, 77, 78, 80, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 112, 115, 116, 117, 118, 119, 120, 121, 122, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 174, 175, 178, 180, 183, 184, 185, 186, 188, 189, 190, 193, 194, 195, 206, 207, 211, 213, 214, 217, 218, 219, 220, 222, 224, 226, 228, 231, 233, 236, 240, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 262, 263, 265, 266, 267, 268, 271, 272, 273, 274], "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 59, 60, 62, 74, 78, 83, 88, 89, 102, 103, 109, 118, 120, 121, 128, 129, 130, 131, 133, 134, 140, 150, 156, 161, 179, 199, 203, 204, 242, 243, 250, 254, 255, 256, 258, 259, 260, 262, 264, 275], "15513": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 50, 54, 56, 59, 60, 74, 78, 81, 82, 84, 88, 89, 92, 94, 95, 100, 102, 103, 105, 107, 109, 110, 111, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 161, 164, 167, 174, 175, 179, 182, 184, 186, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 204, 207, 208, 209, 210, 211, 212, 215, 217, 218, 221, 225, 226, 227, 228, 231, 236, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 259, 260, 261, 262, 263, 265, 266, 267, 269, 270, 271, 272, 273, 274, 275], "python_requir": [1, 78, 95, 101, 105, 106, 107, 108, 121, 131, 132, 156, 170, 192, 218, 236, 247, 271, 273], "tested_reference_str": [1, 179, 260, 263], "explicit": [1, 41, 88, 102, 134, 149, 203, 227, 268, 269, 271, 274, 275], "test_packag": [1, 21, 27, 42, 50, 56, 59, 60, 78, 90, 94, 109, 110, 115, 121, 142, 170, 179, 250, 251, 253, 254, 255, 256, 258, 259, 260, 262, 263, 265, 266], "15485": 1, "presets_build": 1, "run_environ": 1, "modifi": [1, 3, 4, 6, 10, 17, 26, 27, 29, 48, 52, 67, 77, 78, 84, 88, 118, 120, 123, 124, 131, 136, 153, 155, 158, 162, 164, 185, 192, 193, 200, 208, 243, 247, 248, 252, 253, 254, 256, 261, 262, 270, 272, 273, 274, 275], "cmakepreset": [1, 43, 46, 68, 89, 131, 150, 189, 190, 192, 248, 265, 266, 267, 275], "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 61, 62, 65, 80, 84, 89, 100, 109, 110, 118, 120, 131, 136, 145, 148, 149, 150, 151, 154, 180, 189, 191, 192, 194, 197, 198, 208, 211, 217, 221, 222, 226, 228, 244, 245, 246, 248, 249, 250, 252, 258, 260, 262, 263, 266], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 50, 56, 59, 60, 61, 65, 72, 74, 78, 80, 84, 86, 87, 88, 94, 101, 102, 109, 110, 114, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 151, 156, 157, 160, 161, 162, 163, 175, 179, 183, 184, 185, 186, 189, 191, 192, 195, 196, 197, 198, 200, 203, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 234, 236, 243, 250, 251, 253, 254, 256, 258, 259, 260, 262, 263, 265, 266, 267, 270, 274], "15470": 1, "allow": [1, 3, 4, 6, 13, 49, 50, 55, 56, 59, 67, 72, 74, 78, 79, 84, 86, 87, 89, 90, 92, 97, 99, 100, 102, 103, 105, 106, 110, 111, 115, 118, 120, 121, 122, 123, 124, 129, 130, 133, 135, 136, 149, 150, 151, 153, 154, 155, 156, 157, 158, 164, 171, 175, 179, 190, 191, 192, 193, 195, 200, 207, 221, 223, 225, 226, 235, 244, 247, 248, 254, 256, 266, 268, 271, 273, 274, 275], "packg": 1, "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 54, 60, 74, 77, 80, 86, 87, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 112, 113, 115, 116, 118, 147, 149, 150, 151, 156, 165, 168, 170, 171, 172, 178, 200, 231, 236, 237, 240, 241, 242, 244, 246, 249, 250, 253, 259, 266, 273, 275], "limit": [1, 35, 50, 103, 112, 120, 136, 187, 196, 200, 221, 244, 275], "suppli": [1, 4, 5, 87, 88, 90, 97, 99, 100, 102, 104, 105, 106, 108, 115, 161, 275], "15464": 1, "initi": [1, 6, 60, 67, 121, 132, 136, 138, 139, 170, 221, 229, 274], "document": [1, 3, 4, 26, 27, 62, 69, 78, 79, 84, 91, 112, 120, 128, 131, 136, 141, 153, 156, 164, 179, 180, 192, 193, 200, 203, 217, 221, 239, 240, 248, 249, 253, 267, 275], "make": [1, 6, 8, 26, 27, 29, 38, 39, 40, 45, 50, 60, 62, 63, 65, 70, 74, 89, 94, 102, 103, 105, 120, 127, 129, 131, 134, 135, 138, 141, 145, 150, 151, 153, 156, 158, 163, 179, 186, 191, 195, 207, 209, 210, 221, 231, 246, 248, 251, 252, 253, 261, 264, 265, 267, 274, 275], "remotesapi": [1, 31, 165, 175], "publicli": [1, 4], "avail": [1, 3, 4, 8, 24, 26, 36, 52, 56, 67, 74, 76, 77, 89, 94, 99, 101, 103, 108, 109, 112, 118, 120, 125, 133, 137, 146, 150, 151, 162, 175, 179, 183, 187, 192, 234, 244, 247, 248, 253, 254, 258, 259, 260, 265, 266, 273, 275], "experiment": [1, 6, 7, 13, 31, 74, 89, 95, 101, 109, 116, 117, 120, 124, 126, 127, 128, 135, 136, 146, 149, 150, 151, 153, 154, 157, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 191, 192, 193, 210, 214, 215, 216, 217, 231, 275], "15462": 1, "support": [1, 8, 17, 26, 27, 47, 48, 49, 52, 61, 63, 64, 67, 68, 69, 70, 74, 77, 84, 100, 103, 109, 118, 124, 133, 136, 138, 139, 143, 146, 150, 151, 153, 155, 156, 157, 160, 161, 164, 175, 182, 187, 191, 209, 212, 217, 221, 223, 235, 243, 251, 256, 262, 265, 266, 267, 275], "vcvar": [1, 89, 131, 150, 153, 180, 222, 224, 226], "env": [1, 24, 26, 39, 40, 54, 78, 80, 89, 111, 136, 137, 142, 145, 150, 151, 155, 180, 189, 192, 195, 196, 197, 198, 209, 226, 227, 228, 233, 244, 246, 249, 260, 263, 266], "variabl": [1, 26, 35, 36, 43, 45, 46, 61, 65, 80, 82, 84, 89, 109, 118, 120, 131, 135, 136, 148, 149, 150, 151, 154, 182, 186, 189, 191, 193, 194, 197, 198, 208, 209, 210, 211, 212, 214, 216, 217, 220, 221, 224, 225, 226, 227, 228, 235, 245, 246, 248, 249, 252, 260, 261, 262, 263, 272, 273, 275], "powershel": [1, 89, 150, 196, 197, 198, 228, 249], "15461": 1, "exclud": [1, 39, 40, 87, 88, 89, 90, 97, 99, 100, 102, 106, 115, 120, 150, 200, 225, 231, 247, 273], "avoid": [1, 5, 6, 10, 50, 60, 62, 74, 78, 87, 89, 90, 94, 97, 99, 100, 101, 102, 106, 109, 112, 115, 118, 119, 120, 123, 124, 127, 131, 132, 137, 140, 150, 154, 155, 157, 163, 179, 191, 192, 196, 200, 207, 209, 218, 249, 252, 253, 258, 263, 265, 270, 271, 272, 273], "dirti": [1, 6, 60, 89, 120, 150, 231], "helper": [1, 18, 45, 54, 55, 56, 59, 65, 66, 68, 71, 72, 73, 74, 77, 89, 120, 122, 130, 131, 140, 141, 145, 150, 153, 154, 159, 184, 187, 189, 191, 192, 195, 196, 200, 206, 209, 211, 214, 216, 220, 223, 224, 231, 232, 258], "15457": 1, "core": [1, 3, 4, 10, 31, 45, 54, 61, 75, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 135, 145, 149, 151, 155, 168, 178, 179, 231, 273], "scm": [1, 11, 43, 80, 89, 102, 120, 139, 150, 180, 200, 231, 251, 256, 272, 274], "revision_mod": [1, 95, 100, 101, 272], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 50, 52, 56, 59, 60, 61, 68, 73, 74, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 135, 136, 137, 138, 139, 140, 141, 143, 146, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 168, 170, 172, 178, 179, 183, 187, 189, 190, 191, 192, 195, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 212, 214, 215, 216, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 235, 236, 237, 242, 244, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "python_package_id_mod": 1, "per": [1, 6, 72, 74, 84, 109, 122, 131, 134, 136, 140, 151, 178, 179, 185, 214, 215, 225], "effect": [1, 6, 8, 49, 77, 80, 81, 82, 102, 120, 131, 135, 140, 150, 156, 225, 235, 253, 271], "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 50, 56, 59, 60, 61, 68, 72, 73, 83, 86, 90, 110, 119, 121, 124, 131, 133, 136, 137, 144, 146, 151, 170, 171, 179, 185, 193, 195, 207, 210, 212, 215, 225, 233, 236, 246, 247, 248, 249, 250, 251, 254, 258, 259, 260, 263, 264, 265, 267, 270, 272, 274, 275], "15453": 1, "cmakeexecut": [1, 192], "preset": [1, 29, 47, 48, 68, 89, 122, 133, 150, 190, 192, 265, 266, 267], "15447": 1, "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 72, 78, 80, 82, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 122, 127, 131, 132, 135, 136, 145, 147, 153, 155, 161, 167, 174, 182, 190, 196, 197, 198, 207, 219, 222, 235, 241, 249, 252, 258, 275], "line": [1, 8, 10, 21, 26, 29, 31, 49, 60, 65, 66, 71, 72, 73, 74, 77, 78, 84, 87, 90, 97, 99, 100, 102, 106, 109, 110, 115, 118, 120, 122, 138, 139, 149, 150, 155, 158, 159, 160, 164, 184, 185, 189, 191, 192, 200, 207, 214, 215, 220, 224, 226, 228, 244, 246, 249, 251, 252, 254, 256, 261, 272, 273, 274, 275], "via": [1, 4, 7, 10, 13, 31, 38, 49, 50, 62, 68, 69, 74, 78, 82, 84, 89, 94, 120, 131, 133, 137, 150, 159, 161, 164, 179, 189, 191, 192, 193, 195, 238, 244, 245, 273, 275], "cli": [1, 10, 13, 31, 74, 95, 100, 150, 152, 155, 159, 189, 214, 240, 274], "15441": 1, "detect_api": [1, 150, 151], "detect_msvc_upd": [1, 151], "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, 50, 52, 55, 56, 59, 60, 61, 62, 63, 67, 69, 74, 77, 78, 79, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 116, 118, 121, 124, 125, 131, 132, 135, 137, 139, 140, 141, 143, 144, 146, 150, 151, 153, 154, 156, 157, 158, 160, 161, 164, 170, 179, 180, 183, 186, 187, 190, 191, 192, 195, 200, 203, 204, 207, 211, 212, 217, 221, 223, 226, 227, 228, 230, 231, 235, 236, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 275], "15435": 1, "job": [1, 7, 60, 78, 89, 150, 151, 187, 189, 220, 275], "buildpreset": [1, 48, 192], "15422": 1, "nest": [1, 77, 153, 200, 265], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 50, 56, 59, 60, 74, 77, 78, 82, 83, 84, 88, 89, 90, 91, 95, 101, 102, 103, 105, 107, 109, 110, 112, 113, 116, 118, 120, 122, 123, 124, 129, 130, 131, 132, 136, 138, 139, 140, 141, 145, 148, 150, 151, 153, 155, 156, 157, 159, 162, 179, 180, 186, 189, 190, 191, 192, 197, 200, 202, 205, 207, 210, 212, 214, 215, 217, 221, 225, 226, 232, 235, 240, 242, 244, 246, 247, 251, 253, 254, 258, 259, 260, 264, 265, 268, 270, 271, 272, 273, 274, 275], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 52, 56, 59, 60, 67, 68, 71, 72, 73, 78, 80, 81, 83, 85, 86, 87, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 106, 110, 112, 115, 116, 118, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 147, 148, 149, 150, 154, 156, 157, 159, 161, 164, 167, 174, 181, 183, 184, 185, 186, 187, 188, 189, 191, 192, 195, 196, 197, 198, 202, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 233, 235, 236, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271, 272], "yml": [1, 4, 7, 11, 23, 52, 60, 67, 77, 78, 80, 84, 89, 120, 129, 130, 131, 132, 140, 147, 151, 163, 200, 204, 231, 250], "15415": 1, "coordinates_to_conandata": [1, 231], "checkout_from_conandata_coordin": [1, 231], "simplifi": [1, 13, 107, 146, 253, 254, 275], "base": [1, 4, 8, 35, 36, 39, 42, 47, 54, 55, 62, 74, 83, 84, 87, 91, 100, 101, 102, 103, 106, 112, 116, 120, 131, 132, 134, 137, 151, 156, 159, 161, 168, 178, 181, 184, 186, 190, 192, 217, 221, 223, 224, 226, 244, 246, 252, 262, 275], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 60, 61, 74, 87, 94, 102, 114, 131, 136, 186, 191, 226, 236, 240, 252, 264, 271, 275], "15377": 1, "autotoolstoolchain": [1, 45, 65, 89, 150, 180, 195, 206, 207, 252], "automat": [1, 3, 6, 31, 41, 47, 62, 67, 74, 84, 87, 89, 90, 94, 97, 99, 100, 101, 102, 105, 106, 109, 115, 118, 120, 129, 136, 137, 140, 149, 150, 151, 153, 162, 174, 179, 183, 189, 190, 191, 192, 195, 196, 198, 203, 204, 207, 210, 211, 212, 214, 216, 217, 220, 226, 235, 238, 244, 246, 247, 249, 252, 253, 255, 256, 260, 263, 268, 269, 270, 271, 272, 273, 275], "inject": [1, 39, 40, 43, 46, 66, 67, 89, 120, 135, 136, 145, 149, 150, 151, 154, 156, 158, 179, 216, 227, 249, 252, 262], "f": [1, 31, 36, 39, 40, 60, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 109, 110, 111, 112, 113, 115, 116, 117, 120, 136, 140, 154, 160, 162, 163, 179, 192, 212, 227], "v": [1, 26, 48, 50, 59, 79, 82, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 125, 135, 146, 150, 153, 155, 179, 220, 221, 225, 226, 227, 231, 236, 243, 244, 246, 249, 254, 275], "15375": 1, "upload": [1, 3, 5, 7, 12, 29, 60, 69, 74, 77, 78, 84, 86, 89, 91, 93, 110, 111, 112, 118, 120, 129, 130, 150, 152, 156, 163, 165, 207, 236, 237, 238, 240, 247, 258, 259, 265, 268, 269, 275], "parallel": [1, 67, 78, 84, 89, 97, 116, 150, 155, 156, 158, 168, 178, 187, 192, 275], "faster": [1, 13, 84, 231, 247, 274], "15360": 1, "intel": [1, 42, 74, 80, 89, 150, 180, 223], "oneapi": [1, 89, 150, 153, 217], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 52, 55, 56, 59, 60, 61, 68, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 116, 120, 123, 125, 127, 131, 134, 135, 136, 137, 140, 144, 147, 150, 151, 157, 164, 172, 183, 184, 185, 186, 187, 189, 190, 191, 195, 197, 198, 204, 207, 208, 209, 210, 212, 214, 215, 216, 217, 220, 221, 223, 224, 225, 226, 227, 228, 233, 236, 243, 244, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 267, 275], "detect": [1, 6, 60, 74, 78, 89, 150, 151, 174, 187, 192, 211, 221, 244, 245, 246, 255], "improv": [1, 6, 74, 122, 275], "15358": 1, "progress": 1, "long": [1, 4, 7, 74, 77, 120, 133, 153, 179, 271, 273, 275], "15354": 1, "extension_properti": [1, 157], "attribut": [1, 19, 21, 48, 78, 80, 82, 84, 101, 119, 122, 124, 126, 127, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 145, 146, 157, 162, 179, 185, 190, 191, 192, 204, 215, 218, 222, 246, 248, 251, 254, 255, 256, 258, 261, 263, 266, 267, 274], "extens": [1, 4, 11, 31, 35, 36, 38, 61, 62, 74, 78, 80, 81, 82, 89, 102, 120, 157, 158, 159, 160, 161, 162, 163, 164, 187, 196, 200, 245, 253, 260, 266], "15348": 1, "compatibility_cppstd": [1, 120, 157], "compat": [1, 8, 24, 27, 45, 67, 74, 79, 80, 81, 83, 84, 87, 90, 91, 97, 99, 100, 102, 106, 115, 116, 120, 121, 135, 151, 153, 156, 162, 191, 192, 207, 212, 221, 246, 248, 250, 260], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 56, 59, 60, 61, 62, 67, 74, 78, 80, 84, 86, 87, 88, 90, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 109, 110, 114, 115, 118, 120, 125, 129, 131, 132, 133, 138, 139, 140, 141, 142, 143, 146, 151, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 170, 171, 179, 185, 186, 191, 197, 198, 204, 208, 209, 210, 212, 214, 215, 216, 217, 225, 226, 228, 233, 235, 236, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 272, 273, 274], "plugin": [1, 26, 50, 63, 74, 78, 80, 86, 89, 118, 125, 135, 145, 156, 157, 158, 163, 260], "disabl": [1, 50, 89, 90, 118, 120, 150, 152, 155, 157, 161, 175, 192, 202, 209, 258], "fallback": [1, 102, 153, 184, 275], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 50, 56, 59, 60, 61, 62, 70, 74, 77, 78, 82, 83, 84, 87, 88, 89, 90, 91, 94, 97, 98, 99, 100, 102, 103, 106, 107, 109, 110, 112, 115, 116, 118, 119, 122, 123, 124, 125, 127, 128, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 150, 151, 153, 154, 155, 156, 159, 179, 180, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 207, 208, 209, 214, 221, 226, 227, 231, 235, 236, 240, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 260, 262, 264, 265, 266, 267, 271, 272, 274, 275], "cppstd": [1, 24, 26, 27, 56, 59, 77, 82, 95, 100, 110, 120, 127, 135, 151, 153, 157, 164, 180, 186, 192, 209, 216, 227, 244, 245, 246, 253, 254, 258, 275], "get_commit": [1, 231], "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 61, 62, 69, 74, 77, 78, 89, 91, 102, 111, 116, 120, 140, 154, 156, 159, 162, 215, 231, 235, 236, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 52, 60, 77, 83, 84, 85, 87, 89, 90, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 115, 118, 120, 122, 124, 126, 127, 131, 132, 135, 136, 137, 140, 141, 145, 146, 149, 150, 151, 152, 174, 175, 183, 185, 187, 189, 190, 191, 192, 196, 197, 198, 200, 202, 204, 209, 211, 214, 216, 220, 221, 223, 225, 226, 231, 235, 246, 248, 249, 252, 253, 254, 256, 258, 262, 266, 270, 271, 273], "obtain": [1, 39, 40, 60, 85, 86, 88, 121, 135, 141, 151, 175, 183, 184, 189, 194, 196, 197, 198, 221, 224, 226, 231, 246, 274], "commit": [1, 19, 60, 69, 74, 78, 120, 133, 140, 200, 231, 251, 252, 255, 256, 262, 266, 267, 272, 274], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 50, 54, 55, 56, 59, 60, 62, 67, 77, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 109, 110, 114, 115, 118, 119, 121, 123, 128, 129, 130, 131, 134, 140, 148, 150, 151, 155, 156, 158, 159, 160, 161, 162, 163, 164, 173, 183, 189, 190, 191, 192, 195, 200, 202, 204, 205, 207, 209, 215, 218, 220, 221, 228, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 270, 271, 275], "15304": 1, "ensur": [1, 4, 8, 36, 42, 62, 67, 82, 90, 124, 153, 192, 200, 214, 217, 246, 248, 273], "edit": [1, 3, 14, 15, 21, 26, 29, 52, 62, 74, 77, 78, 86, 110, 111, 118, 120, 131, 133, 136, 140, 151, 153, 164, 179, 236, 239, 241, 244, 247, 264, 267, 272], "cascad": [1, 87, 90, 97, 99, 100, 102, 106, 115, 265], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 50, 52, 60, 61, 62, 63, 71, 74, 77, 78, 86, 91, 92, 102, 107, 109, 110, 111, 112, 116, 118, 120, 121, 129, 130, 131, 133, 140, 143, 144, 149, 151, 153, 157, 159, 162, 179, 187, 189, 191, 192, 196, 215, 218, 221, 231, 236, 241, 244, 245, 246, 248, 253, 254, 256, 259, 261, 264, 266, 267, 270, 275], "togeth": [1, 60, 71, 74, 88, 98, 110, 120, 129, 130, 140, 157, 178, 179, 189, 192, 220, 227, 247, 254, 268, 275], "15300": 1, "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 50, 52, 56, 59, 60, 62, 65, 66, 68, 69, 70, 71, 73, 74, 78, 79, 81, 82, 83, 84, 85, 86, 88, 89, 94, 97, 98, 99, 100, 102, 103, 106, 107, 108, 110, 116, 118, 120, 121, 122, 123, 124, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 144, 146, 150, 151, 153, 155, 156, 157, 159, 160, 161, 162, 179, 185, 186, 190, 191, 192, 196, 197, 198, 200, 204, 212, 217, 218, 223, 225, 226, 231, 235, 240, 243, 244, 245, 248, 249, 250, 253, 254, 255, 258, 259, 260, 262, 263, 265, 267, 268, 269, 270, 271, 273, 274, 275], "sort": [1, 97, 105, 107, 108, 136, 163, 193, 200, 271, 275], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 52, 54, 56, 59, 60, 61, 62, 64, 77, 78, 79, 80, 83, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 119, 121, 122, 123, 124, 125, 128, 131, 134, 135, 136, 137, 140, 141, 142, 143, 144, 150, 151, 152, 153, 156, 161, 168, 171, 179, 183, 186, 191, 200, 207, 212, 221, 236, 237, 238, 239, 240, 242, 244, 245, 246, 248, 249, 250, 252, 254, 255, 256, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 272, 275], "group": [1, 31, 89, 120, 275], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 59, 60, 78, 82, 83, 85, 86, 87, 88, 90, 91, 97, 99, 100, 102, 104, 105, 106, 107, 108, 110, 112, 115, 116, 120, 131, 135, 146, 153, 159, 170, 178, 179, 200, 236, 243, 244, 249, 253, 254, 255, 258, 260, 261, 266, 268, 269, 271], "15270": 1, "past": [1, 26, 79, 88, 103], "timestamp": [1, 13, 99, 103, 105, 107], "compact": [1, 88], "lock": [1, 8, 74, 86, 87, 90, 94, 97, 99, 100, 101, 102, 110, 115, 170, 179, 247, 271], "15262": 1, "fix": [1, 5, 8, 35, 74, 120, 140, 154, 179, 183, 204, 246, 247, 270], "guarante": [1, 4, 7, 60, 84, 107, 110, 135, 151, 179, 256, 269, 272], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 50, 55, 56, 59, 60, 67, 78, 82, 83, 84, 88, 89, 94, 101, 102, 109, 116, 120, 123, 124, 126, 127, 128, 132, 134, 135, 136, 137, 138, 139, 140, 142, 145, 146, 150, 151, 155, 158, 159, 162, 163, 178, 183, 186, 189, 192, 196, 197, 198, 207, 209, 211, 214, 220, 221, 225, 227, 231, 233, 235, 246, 248, 249, 252, 253, 254, 255, 258, 260, 263, 265, 266, 267, 275], "15678": 1, "solv": [1, 29, 60, 62, 78, 79, 137, 151, 156, 159, 191, 212, 270, 272], "platform_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 54, 56, 60, 62, 67, 74, 78, 80, 82, 84, 86, 87, 89, 90, 94, 97, 99, 100, 106, 115, 120, 124, 127, 136, 147, 150, 153, 155, 156, 157, 161, 165, 167, 170, 192, 195, 209, 216, 217, 220, 221, 223, 227, 243, 244, 246, 248, 249, 253, 258, 270, 271, 272, 273], "context": [1, 6, 13, 42, 78, 84, 87, 90, 94, 95, 97, 99, 100, 102, 106, 110, 115, 120, 124, 131, 136, 137, 140, 146, 150, 151, 161, 181, 191, 192, 195, 196, 197, 198, 200, 212, 215, 221, 223, 225, 236, 243, 246, 260], "discard": [1, 89, 137, 150], "platform_requir": 1, "15665": 1, "gcc": [1, 24, 39, 40, 45, 74, 78, 82, 84, 85, 87, 88, 90, 91, 94, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 120, 125, 135, 140, 144, 151, 153, 164, 172, 187, 202, 209, 245], "conda": 1, "15664": 1, "handl": [1, 6, 9, 60, 77, 118, 120, 136, 153, 195, 204, 236, 250, 252, 267], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 60, 61, 62, 67, 74, 78, 86, 88, 89, 93, 94, 96, 97, 100, 102, 103, 110, 112, 118, 120, 129, 130, 140, 151, 152, 154, 156, 163, 165, 170, 180, 199, 231, 237, 240, 242, 244, 247, 248, 249, 253, 256, 257, 260, 264, 266, 268, 270, 272, 275], "backup": [1, 7, 89, 118, 150, 178], "15601": 1, "relativ": 1, "15592": 1, "none": [1, 31, 36, 38, 49, 50, 82, 89, 95, 100, 101, 102, 120, 131, 133, 143, 145, 150, 151, 162, 166, 168, 170, 171, 174, 175, 178, 183, 184, 187, 189, 190, 191, 192, 195, 196, 200, 202, 204, 205, 207, 209, 210, 211, 214, 220, 221, 223, 224, 231, 235], "preprocessor_definit": 1, "map": [1, 83, 131, 136, 179, 184, 189, 192, 209, 221, 224, 227, 235, 259, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 50, 60, 72, 74, 78, 84, 86, 89, 91, 94, 96, 100, 102, 103, 104, 105, 108, 110, 111, 112, 116, 118, 120, 123, 124, 129, 131, 135, 137, 138, 139, 141, 143, 145, 150, 151, 153, 155, 157, 162, 167, 175, 179, 191, 192, 195, 200, 204, 223, 235, 247, 248, 254, 256, 261, 262, 264, 265, 266, 271, 272, 273, 274], "15545": 1, "text": [1, 103, 118, 119, 120, 139, 150, 151, 159, 179, 200, 274], "15538": 1, "rais": [1, 6, 21, 36, 60, 87, 89, 90, 93, 94, 97, 99, 100, 101, 102, 106, 115, 118, 120, 122, 131, 140, 141, 143, 144, 145, 150, 153, 162, 164, 175, 187, 191, 200, 201, 202, 223, 231, 235, 243, 251, 253, 270], "help": [1, 8, 31, 36, 45, 48, 50, 62, 65, 66, 70, 71, 72, 74, 77, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 159, 186, 195, 209, 217, 226, 248, 249, 260, 268, 269], "reachabl": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 67, 79, 82, 84, 87, 88, 89, 90, 91, 94, 97, 99, 100, 101, 102, 103, 105, 106, 107, 112, 115, 118, 120, 122, 123, 124, 125, 126, 131, 133, 134, 135, 136, 137, 138, 139, 140, 148, 150, 151, 153, 154, 156, 158, 160, 161, 162, 164, 170, 178, 179, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 197, 200, 202, 207, 221, 223, 224, 225, 226, 235, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 50, 54, 60, 61, 62, 74, 76, 77, 78, 79, 81, 82, 84, 86, 87, 89, 90, 92, 93, 94, 95, 97, 99, 100, 103, 106, 108, 109, 110, 114, 118, 121, 124, 129, 130, 131, 134, 135, 136, 137, 138, 139, 140, 147, 148, 149, 151, 152, 153, 154, 155, 156, 161, 162, 164, 173, 174, 175, 191, 192, 195, 200, 202, 204, 209, 212, 221, 225, 231, 232, 240, 241, 244, 246, 247, 249, 252, 253, 254, 255, 256, 258, 260, 261, 265, 266, 270, 273], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 52, 62, 67, 77, 82, 84, 90, 91, 97, 99, 103, 106, 107, 118, 120, 122, 123, 124, 125, 135, 136, 137, 138, 139, 140, 141, 150, 151, 153, 170, 179, 185, 190, 191, 192, 193, 200, 209, 217, 225, 227, 231, 233, 235, 239, 242, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 259, 260, 261, 265, 266, 267, 268, 270, 271, 272, 273, 274], "offlin": [1, 74], "15516": 1, "miss": [1, 5, 26, 35, 36, 42, 45, 54, 55, 82, 83, 84, 85, 87, 88, 90, 95, 96, 97, 99, 100, 102, 106, 115, 120, 141, 151, 162, 235, 244, 245, 246, 248, 249, 251, 252, 253, 255, 258, 259, 261, 262, 270, 272, 275], "stacktrac": 1, "metadata": [1, 2, 7, 61, 69, 88, 116, 119, 135, 168, 178, 254, 272], "15501": 1, "lockfil": [1, 8, 86, 87, 90, 93, 94, 97, 99, 100, 101, 104, 105, 106, 107, 108, 110, 115, 170, 179, 236, 243, 269], "intend": [1, 2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 63, 74, 78, 84, 88, 89, 102, 103, 120, 124, 128, 129, 130, 131, 142, 151, 162, 179, 189, 191, 192, 196, 214, 220, 231, 235, 246, 249, 252, 260, 271], "public": [1, 3, 4, 42, 50, 54, 60, 74, 78, 86, 101, 110, 118, 119, 156, 159, 180, 191, 193, 215, 221, 241, 261, 262], "usag": [1, 6, 27, 31, 35, 37, 39, 40, 41, 50, 67, 74, 78, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 123, 133, 136, 137, 149, 150, 151, 153, 155, 161, 193, 200, 202, 204, 207, 211, 218, 227, 247, 260, 265], "15499": 1, "check_typ": 1, "int": [1, 29, 42, 45, 54, 55, 187, 204, 244, 246, 258, 263], "bool": [1, 152, 187, 214, 220, 221, 223], "15378": 1, "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 50, 55, 56, 65, 82, 84, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 115, 116, 120, 122, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 143, 144, 150, 151, 153, 160, 178, 179, 181, 185, 186, 191, 192, 197, 198, 200, 208, 209, 210, 211, 212, 215, 216, 217, 225, 226, 227, 228, 233, 234, 255, 259, 265, 273, 274], "entri": [1, 61, 67, 87, 89, 90, 94, 97, 99, 100, 102, 106, 115, 120, 131, 149, 154, 183, 190, 191, 192, 202, 204, 217, 273], "machin": [1, 6, 29, 62, 84, 94, 110, 118, 120, 128, 153, 155, 187, 191, 207, 212, 220, 221, 225, 235, 237, 242, 245, 246, 263, 272], "mesontoolchain": [1, 55, 56, 71, 89, 150, 180, 219, 220], "due": [1, 85, 120, 267], "pkgconfig": [1, 56, 89, 150, 180, 206, 221], "being": [1, 6, 8, 10, 13, 31, 50, 74, 78, 82, 83, 84, 85, 87, 90, 97, 99, 100, 102, 105, 106, 115, 120, 124, 129, 130, 131, 133, 136, 137, 138, 139, 140, 153, 155, 157, 162, 163, 170, 179, 183, 189, 190, 200, 214, 215, 220, 246, 254, 259, 263, 270, 274, 275], "deprec": [1, 74, 89, 95, 97, 145, 150, 153, 179, 203, 209, 221], "sinc": [1, 47, 48, 67, 79, 100, 192, 207, 235, 242, 265, 266, 267, 272], "meson": [1, 11, 43, 61, 63, 74, 78, 80, 89, 109, 150, 151, 180, 244, 252, 254], "15369": 1, "explain": [1, 5, 56, 59, 60, 67, 74, 77, 82, 85, 96, 140, 150, 151, 153, 186, 193, 203, 235, 237, 243, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 259, 261, 262, 263, 264, 267, 269, 271, 274], "show": [1, 21, 31, 39, 40, 42, 47, 48, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 124, 150, 151, 218, 231, 243, 246, 248, 250, 254, 256, 262, 264, 265, 266, 267], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 50, 62, 63, 68, 69, 74, 77, 78, 79, 82, 83, 84, 85, 86, 87, 89, 90, 93, 94, 97, 99, 100, 101, 102, 103, 106, 107, 109, 115, 120, 121, 122, 123, 124, 126, 127, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 160, 162, 175, 179, 185, 191, 192, 193, 195, 200, 202, 207, 208, 209, 211, 212, 216, 217, 218, 221, 227, 231, 235, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 50, 52, 54, 55, 56, 59, 60, 62, 65, 67, 68, 69, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 92, 93, 94, 95, 97, 99, 100, 101, 104, 105, 106, 107, 108, 109, 110, 118, 119, 121, 124, 125, 131, 132, 133, 135, 136, 143, 144, 150, 151, 152, 153, 154, 156, 159, 160, 161, 162, 170, 185, 187, 189, 191, 192, 197, 198, 200, 208, 210, 211, 212, 215, 217, 221, 226, 227, 228, 233, 235, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 257, 258, 262, 263, 265, 266, 267, 269, 270, 271, 272, 273, 275], "15355": 1, "did": [1, 47, 88, 179, 245, 246, 249, 251, 254, 256, 267, 274], "match": [1, 4, 10, 17, 26, 31, 35, 45, 54, 62, 82, 84, 86, 87, 88, 89, 90, 91, 96, 97, 99, 100, 102, 103, 106, 111, 112, 115, 116, 118, 120, 124, 135, 136, 140, 145, 149, 150, 151, 153, 154, 164, 175, 187, 191, 200, 201, 202, 204, 224, 227, 244, 246, 247, 248, 249, 253, 254, 260, 267, 271], "15353": 1, "upload_polici": [1, 95], "skip": [1, 4, 36, 89, 90, 91, 94, 95, 100, 120, 122, 145, 168, 178, 183, 191, 192, 231, 237, 245, 252, 253, 258, 263], "15336": 1, "accept": [1, 5, 7, 93, 101, 102, 103, 106, 111, 113, 120, 145, 148, 151, 153, 184, 189, 192, 200, 204, 212, 217, 220, 224, 235], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 50, 52, 54, 56, 59, 60, 67, 74, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 90, 91, 97, 98, 99, 100, 101, 102, 103, 106, 109, 111, 112, 115, 116, 119, 120, 123, 124, 125, 127, 128, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 145, 146, 150, 151, 153, 155, 158, 159, 161, 162, 163, 170, 171, 175, 179, 180, 185, 186, 187, 189, 190, 191, 192, 193, 197, 198, 200, 202, 207, 208, 209, 211, 212, 215, 216, 221, 225, 233, 235, 243, 245, 246, 247, 249, 250, 252, 254, 255, 256, 257, 259, 260, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "15312": 1, "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 52, 56, 59, 60, 69, 77, 82, 84, 85, 95, 99, 100, 101, 102, 103, 110, 120, 123, 127, 135, 136, 144, 151, 153, 157, 164, 184, 185, 186, 189, 190, 191, 192, 195, 197, 198, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 228, 233, 244, 245, 246, 247, 248, 252, 253, 254, 256, 258, 259, 260, 263, 265, 267, 272], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 50, 52, 56, 59, 61, 63, 69, 74, 77, 79, 83, 85, 89, 95, 99, 100, 102, 103, 106, 109, 110, 120, 123, 133, 135, 136, 140, 150, 151, 153, 157, 161, 164, 179, 184, 185, 186, 189, 190, 191, 192, 197, 198, 202, 208, 209, 217, 221, 224, 225, 226, 231, 236, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273], "system": [1, 5, 7, 8, 27, 35, 39, 40, 42, 45, 50, 52, 54, 55, 56, 59, 60, 61, 63, 65, 67, 68, 72, 77, 80, 84, 89, 102, 110, 117, 118, 120, 121, 122, 124, 131, 134, 136, 137, 140, 145, 147, 148, 150, 151, 154, 156, 160, 161, 162, 174, 180, 181, 183, 184, 185, 186, 189, 191, 192, 193, 195, 196, 200, 208, 209, 211, 225, 244, 245, 246, 248, 249, 250, 253, 254, 255, 259, 261, 262, 265, 266, 271, 272], "14780": 1, "bugfix": [1, 8, 74], "msbuilddep": [1, 59, 72, 89, 131, 150, 180, 222], "compon": [1, 14, 15, 20, 131, 133, 182, 189, 191, 193, 210, 211, 212, 215, 225, 250], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 50, 52, 54, 55, 56, 59, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 115, 121, 124, 127, 129, 132, 135, 136, 137, 140, 141, 143, 146, 150, 151, 158, 160, 161, 162, 170, 171, 174, 179, 183, 185, 186, 190, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 210, 212, 215, 216, 217, 220, 221, 222, 227, 233, 235, 236, 240, 243, 244, 245, 247, 248, 249, 250, 252, 253, 254, 259, 260, 262, 263, 266, 267, 268, 269, 271, 272, 273, 274, 275], "15626": 1, "tool_requir": [1, 11, 27, 35, 37, 39, 40, 56, 78, 83, 84, 90, 94, 97, 99, 100, 102, 106, 109, 110, 121, 131, 135, 136, 137, 140, 179, 191, 192, 197, 208, 212, 215, 225, 245, 246, 247, 248, 249, 260, 263, 273], "themselv": [1, 8, 109, 179, 253], "15575": 1, "scope": [1, 120, 133, 145, 146, 150, 151, 192, 195, 196, 197, 198, 217, 223, 228], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 52, 56, 59, 60, 77, 78, 84, 85, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 106, 107, 110, 112, 115, 116, 120, 123, 126, 127, 130, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 154, 162, 163, 164, 172, 179, 183, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 200, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 228, 233, 240, 244, 245, 246, 247, 248, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270], "microsoft": [1, 11, 43, 72, 80, 89, 120, 131, 136, 150, 151, 153, 180, 189, 192, 207, 217, 224, 225, 226, 227, 228], "15568": 1, "wrong": [1, 96, 99, 134, 140], "propag": [1, 8, 14, 20, 50, 79, 120, 124, 136, 137, 146, 195, 212, 250, 258, 270], "visibl": [1, 39, 40, 79, 83, 89, 95, 118, 124, 150, 192, 215], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 52, 59, 60, 77, 84, 85, 89, 95, 97, 99, 100, 101, 103, 110, 112, 118, 120, 124, 126, 127, 131, 132, 134, 136, 137, 145, 150, 151, 152, 157, 161, 170, 171, 175, 178, 183, 185, 187, 189, 191, 192, 197, 198, 200, 202, 204, 209, 211, 220, 221, 223, 225, 231, 232, 235, 248, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 270, 273], "header": [1, 6, 17, 35, 39, 40, 42, 50, 78, 79, 83, 84, 85, 95, 120, 124, 133, 134, 135, 136, 142, 143, 154, 183, 191, 193, 202, 225, 250, 254, 255, 257, 259, 260, 261, 265, 267, 275], "15564": 1, "store": [1, 4, 6, 13, 60, 67, 69, 74, 82, 88, 89, 102, 109, 110, 118, 120, 136, 149, 150, 160, 162, 192, 200, 204, 207, 231, 236, 237, 242, 244, 246, 250, 253, 254, 255, 259, 265, 267, 271, 274, 275], "temporari": [1, 6, 7, 24, 78, 88, 120, 134, 137, 200, 202, 253, 261, 266, 270], "insid": [1, 6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 43, 46, 78, 83, 85, 89, 103, 109, 120, 124, 133, 136, 148, 150, 153, 159, 160, 162, 183, 192, 196, 200, 205, 218, 235, 241, 248, 250, 253, 254, 261, 265, 267, 271, 275], "storage_path": [1, 89], "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 50, 52, 54, 55, 56, 59, 60, 62, 74, 77, 81, 82, 83, 84, 88, 91, 92, 94, 101, 102, 105, 107, 108, 109, 112, 116, 118, 120, 122, 126, 127, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 143, 145, 146, 149, 150, 151, 153, 154, 158, 159, 161, 162, 179, 184, 185, 186, 190, 191, 192, 193, 196, 197, 198, 200, 207, 209, 211, 212, 215, 225, 228, 231, 235, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 267, 268, 270, 271, 272, 273, 274, 275], "clean": [1, 6, 7, 30, 32, 60, 62, 87, 90, 94, 97, 99, 100, 102, 106, 107, 115, 120, 200, 214, 259, 265, 271, 272], "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 68, 70, 73, 74, 77, 82, 83, 84, 86, 87, 88, 89, 90, 91, 95, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 118, 120, 122, 123, 124, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 148, 150, 151, 153, 154, 155, 156, 160, 162, 163, 179, 181, 183, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 200, 207, 208, 209, 210, 212, 215, 216, 217, 221, 225, 226, 227, 228, 233, 235, 237, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 266, 267, 269, 270, 271, 272, 273, 274, 275], "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 77, 83, 84, 99, 102, 120, 134, 136, 153, 156, 183, 191, 193, 207, 211, 217, 221, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 271], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 52, 54, 55, 59, 60, 62, 67, 73, 74, 77, 78, 79, 83, 84, 85, 88, 89, 91, 94, 107, 109, 110, 111, 118, 120, 122, 124, 126, 127, 131, 132, 135, 136, 141, 146, 151, 153, 158, 159, 160, 162, 174, 175, 178, 179, 184, 185, 186, 190, 191, 192, 196, 200, 202, 207, 209, 218, 221, 224, 225, 226, 235, 236, 237, 238, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 269, 271, 273, 274], "correctli": [1, 17, 18, 24, 29, 42, 50, 56, 67, 78, 90, 107, 142, 191, 192, 193, 200, 207, 246, 248, 250, 254, 258, 259, 263], "15505": 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, 50, 52, 54, 56, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 78, 80, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 117, 118, 119, 120, 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, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 168, 170, 175, 179, 180, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 236, 238, 240, 241, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "export": [1, 5, 6, 7, 10, 16, 38, 50, 60, 78, 86, 88, 90, 95, 105, 110, 121, 130, 131, 132, 133, 134, 138, 139, 140, 156, 162, 163, 165, 179, 200, 204, 231, 251, 254, 255, 256, 259, 262, 264, 265, 267, 272, 274], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 54, 55, 56, 59, 60, 62, 63, 69, 83, 85, 88, 97, 99, 100, 120, 161, 163, 179, 185, 191, 215, 217, 240, 242, 244, 245, 246, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 263, 265, 266, 267, 270, 271, 272, 273, 274, 275], "return": [1, 6, 26, 29, 31, 42, 45, 54, 55, 82, 85, 86, 88, 89, 96, 97, 98, 101, 103, 110, 117, 118, 120, 125, 131, 145, 151, 157, 158, 159, 167, 170, 172, 174, 175, 179, 181, 183, 184, 187, 191, 192, 193, 195, 196, 197, 198, 200, 208, 209, 217, 223, 224, 227, 231, 235, 244, 246, 248, 258, 260, 263, 272], "statu": [1, 38, 49, 145, 231], "after": [1, 6, 10, 24, 26, 36, 42, 45, 62, 63, 67, 74, 102, 124, 126, 131, 136, 142, 143, 150, 159, 162, 186, 189, 191, 192, 196, 197, 198, 207, 216, 221, 226, 233, 243, 244, 246, 248, 249, 250, 252, 254, 258, 261, 263, 265, 266, 267, 275], "15504": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 52, 55, 56, 59, 60, 62, 68, 74, 77, 82, 83, 88, 89, 100, 101, 102, 103, 105, 108, 109, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 131, 135, 136, 140, 141, 143, 145, 149, 150, 154, 155, 157, 159, 161, 185, 186, 190, 191, 192, 195, 197, 198, 202, 209, 210, 212, 214, 215, 217, 221, 224, 225, 226, 227, 231, 233, 235, 240, 244, 248, 254, 255, 256, 259, 260, 263, 268, 270, 273, 274], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 50, 52, 56, 59, 60, 62, 74, 77, 78, 82, 83, 84, 85, 88, 89, 90, 91, 98, 99, 100, 102, 106, 112, 120, 121, 123, 124, 125, 131, 133, 135, 137, 138, 139, 140, 145, 146, 150, 151, 153, 155, 157, 158, 159, 161, 162, 163, 179, 183, 185, 186, 187, 189, 191, 193, 200, 207, 209, 212, 215, 218, 221, 225, 226, 231, 235, 242, 244, 245, 246, 247, 248, 249, 253, 254, 255, 256, 258, 259, 260, 261, 263, 266, 267, 269, 270, 271, 272, 273, 274, 275], "behavior": [1, 8, 47, 74, 78, 82, 84, 98, 105, 106, 107, 120, 123, 126, 127, 131, 135, 136, 146, 150, 155, 157, 158, 162, 187, 191, 212, 215, 221, 231, 235, 256, 275], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 50, 52, 54, 55, 57, 58, 60, 61, 67, 69, 73, 74, 77, 78, 79, 82, 83, 84, 86, 88, 93, 94, 95, 100, 102, 103, 104, 105, 107, 108, 109, 110, 120, 121, 122, 123, 124, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 146, 150, 151, 152, 153, 156, 159, 160, 161, 162, 166, 170, 179, 185, 186, 189, 191, 192, 193, 194, 197, 198, 200, 202, 211, 212, 214, 215, 216, 217, 221, 226, 227, 228, 231, 233, 236, 237, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 50, 52, 56, 59, 62, 74, 78, 86, 89, 90, 91, 94, 95, 100, 103, 107, 110, 118, 120, 121, 122, 123, 124, 131, 135, 146, 150, 156, 170, 189, 192, 204, 214, 220, 225, 231, 236, 241, 245, 250, 251, 254, 255, 256, 257, 259, 260, 262, 265, 266, 271, 275], "fail": [1, 4, 6, 21, 50, 60, 62, 77, 83, 87, 90, 97, 99, 100, 102, 106, 110, 115, 120, 122, 141, 143, 155, 157, 158, 161, 170, 175, 189, 223, 235, 253, 258, 259, 265, 270, 271], "calcul": [1, 136, 197, 198, 204, 209, 227, 253, 258], "valid": [1, 6, 8, 10, 56, 59, 77, 78, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 131, 144, 150, 153, 154, 157, 164, 170, 187, 192, 202, 209, 210, 212, 221, 223, 226, 243, 251, 254, 258, 259, 262, 263, 266, 270, 271, 273], "apple_min_version_flag": [1, 221], "15465": 1, "subset": [1, 84, 127, 135, 153, 192], "build_id": [1, 13, 95, 100, 121], "15439": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 52, 54, 55, 60, 62, 74, 77, 78, 84, 88, 89, 100, 110, 112, 118, 120, 135, 140, 141, 149, 150, 151, 154, 162, 172, 175, 178, 181, 183, 187, 189, 190, 191, 193, 196, 199, 204, 207, 212, 215, 217, 221, 223, 224, 227, 231, 233, 235, 244, 246, 247, 252, 256, 258, 259, 260, 265, 266, 267, 270, 272, 275], "conan_login_username_remot": 1, "15388": 1, "don": [1, 5, 10, 13, 24, 31, 39, 40, 45, 67, 77, 83, 99, 102, 103, 111, 119, 120, 140, 149, 151, 159, 179, 191, 193, 244, 245, 246, 247, 258, 259, 261, 265, 268], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 50, 56, 59, 60, 62, 67, 74, 77, 78, 79, 82, 83, 84, 88, 89, 94, 97, 98, 99, 100, 102, 103, 105, 106, 107, 111, 112, 118, 119, 120, 124, 126, 127, 131, 134, 135, 136, 137, 140, 143, 144, 149, 151, 153, 157, 159, 162, 178, 179, 180, 187, 189, 190, 191, 192, 193, 196, 200, 201, 202, 209, 216, 218, 221, 225, 231, 244, 245, 246, 247, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 268, 270, 271, 272, 275], "take": [1, 6, 21, 29, 30, 60, 85, 89, 90, 97, 107, 112, 116, 118, 120, 131, 138, 139, 142, 148, 149, 150, 153, 184, 185, 190, 191, 192, 195, 209, 212, 225, 232, 235, 245, 246, 248, 253, 254, 260, 262, 263, 268, 275], "consider": [1, 7, 46], "15349": 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, 50, 52, 54, 56, 59, 60, 62, 69, 78, 83, 84, 86, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 109, 110, 111, 113, 114, 118, 121, 124, 131, 132, 133, 135, 136, 138, 139, 140, 141, 143, 144, 146, 149, 150, 151, 152, 153, 155, 156, 158, 160, 161, 162, 174, 175, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 207, 208, 209, 210, 211, 216, 217, 221, 224, 225, 226, 228, 231, 233, 235, 240, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 267, 270, 271, 272, 273, 274, 275], "15337": 1, "get_url_and_commit": [1, 60, 231], "15271": 1, "direct": [1, 36, 95, 102, 118, 120, 124, 131, 136, 161, 185, 191, 192, 197, 225, 270], "host": [1, 8, 13, 24, 30, 35, 42, 74, 87, 89, 90, 94, 95, 97, 99, 100, 102, 106, 110, 115, 120, 124, 131, 136, 137, 140, 150, 151, 161, 170, 174, 181, 187, 191, 192, 193, 198, 202, 209, 212, 217, 221, 223, 225, 227, 235, 236, 239, 240, 243, 246, 260], "shouldn": [1, 6, 35, 39, 40, 60, 62, 78, 79, 84, 112, 120, 124, 127, 134, 136, 180, 225, 231, 247, 258, 272], "non": [1, 50, 74, 78, 82, 88, 89, 107, 120, 134, 150, 187, 198, 243, 251, 273, 275], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 54, 55, 56, 59, 69, 74, 79, 82, 85, 87, 89, 90, 94, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 118, 120, 127, 135, 136, 140, 141, 147, 150, 151, 157, 183, 186, 190, 191, 192, 193, 196, 204, 209, 216, 217, 220, 225, 226, 227, 228, 239, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 262, 266, 268, 272, 273, 275], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 52, 54, 55, 56, 59, 60, 62, 67, 74, 77, 78, 79, 82, 83, 84, 85, 89, 95, 100, 101, 102, 109, 120, 121, 123, 124, 127, 131, 132, 133, 134, 135, 137, 140, 141, 142, 143, 146, 147, 150, 151, 154, 159, 183, 185, 186, 191, 192, 193, 196, 200, 206, 211, 212, 215, 217, 225, 236, 243, 244, 245, 248, 249, 250, 251, 254, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 271, 274, 275], "artifact": [1, 6, 7, 13, 29, 56, 69, 74, 78, 83, 88, 89, 91, 102, 112, 116, 120, 121, 123, 128, 133, 134, 135, 137, 150, 161, 163, 178, 192, 239, 240, 254, 259, 261, 265, 266, 267, 272, 275], "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, 50, 59, 60, 65, 67, 68, 69, 70, 72, 73, 74, 77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 162, 164, 170, 171, 172, 175, 179, 180, 181, 183, 184, 185, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 233, 235, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "imag": [1, 67, 74, 85, 101, 109, 136, 240], "time": [1, 6, 8, 10, 24, 26, 42, 54, 60, 67, 74, 78, 79, 85, 94, 103, 110, 112, 118, 120, 123, 124, 128, 129, 130, 131, 132, 133, 136, 137, 151, 156, 163, 179, 189, 191, 192, 197, 198, 202, 207, 212, 244, 247, 248, 249, 253, 256, 259, 260, 261, 264, 265, 267, 268, 269, 270, 272, 273, 275], "resourc": [1, 8, 61, 100, 136, 243, 272], "15128": 1, "save": [1, 2, 6, 31, 39, 40, 54, 60, 61, 74, 94, 104, 110, 118, 120, 123, 130, 150, 151, 160, 191, 192, 196, 199, 202, 212, 221], "subfold": [1, 7, 14, 15, 17, 19, 89, 133, 161, 162, 183, 190, 200, 204, 207, 240, 256, 259, 267], "tgz": [1, 7, 88, 140, 163, 178, 200, 202, 244, 249, 259], "doesn": [1, 6, 7, 35, 49, 50, 56, 59, 60, 77, 78, 84, 94, 97, 100, 106, 107, 118, 120, 124, 126, 127, 131, 135, 137, 143, 144, 149, 153, 157, 162, 178, 179, 187, 190, 192, 196, 200, 201, 202, 218, 225, 231, 246, 247, 253, 254, 256, 258, 260, 263, 270, 271, 272, 275], "15409": 1, "libcxx": [1, 24, 26, 27, 31, 77, 95, 100, 110, 120, 127, 135, 147, 151, 186, 192, 209, 217, 221, 244, 245, 246, 253, 254], "cc": [1, 42, 54, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 183, 209, 215, 217, 221, 227, 245, 252, 258], "cxx": [1, 19, 21, 27, 42, 89, 150, 153, 183, 209, 217, 221, 227, 245, 252, 253, 254, 255, 258, 261, 262, 263, 266, 267], "var": [1, 39, 40, 78, 89, 111, 118, 137, 150, 151, 155, 191, 192, 195, 196, 197, 198, 208, 217, 227], "15418": 1, "winsdk_vers": [1, 89, 150, 192, 226, 228], "bug": [1, 8, 61, 74], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 67, 191, 244, 249, 252, 255, 261, 262, 263], "15373": 1, "trait": [1, 37, 39, 78, 79, 82, 120, 124, 270, 275], "15357": 1, "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 50, 54, 55, 56, 59, 62, 63, 67, 69, 74, 77, 78, 79, 82, 83, 84, 85, 88, 89, 90, 95, 100, 102, 103, 104, 105, 112, 120, 124, 131, 133, 134, 135, 136, 137, 147, 153, 161, 178, 179, 185, 186, 190, 191, 192, 193, 200, 208, 209, 210, 211, 212, 215, 217, 221, 225, 226, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273, 274, 275], "thru": 1, "15356": 1, "item": [1, 4, 36, 74, 84, 89, 102, 104, 108, 112, 131, 135, 150, 153, 155, 160, 192, 196, 273], "dump": [1, 159, 195], "reproduc": [1, 4, 6, 60, 74, 110, 120, 123, 179, 200, 231, 243, 247, 259, 269, 271, 272, 274, 275], "independ": [1, 21, 79, 84, 118, 129, 130, 135, 140, 161, 193, 267, 275], "were": [1, 6, 24, 29, 50, 60, 94, 127, 149, 161, 175, 215, 244, 246, 252, 255, 261, 270, 273, 275], "declar": [1, 14, 15, 21, 47, 52, 56, 74, 82, 88, 120, 125, 126, 127, 131, 133, 135, 136, 137, 151, 153, 155, 156, 159, 160, 179, 185, 186, 187, 189, 190, 191, 192, 194, 196, 212, 215, 221, 225, 227, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 267, 270, 275], "revert": [1, 74, 155], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 50, 54, 56, 59, 67, 74, 77, 81, 83, 84, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 105, 106, 109, 110, 112, 113, 115, 116, 118, 120, 128, 132, 133, 135, 136, 140, 141, 146, 149, 150, 151, 152, 153, 155, 157, 164, 170, 174, 175, 178, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 195, 196, 200, 202, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 224, 225, 226, 227, 231, 235, 240, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 258, 260, 261, 262, 265, 267, 268, 270, 271, 272, 273, 275], "source_buildenv": 1, "15319": 1, "15284": 1, "ctest": [1, 189, 252], "launch": [1, 21, 118, 145, 149, 184, 217, 240, 241, 250, 252], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 50, 62, 67, 72, 78, 86, 92, 94, 97, 99, 100, 102, 105, 106, 110, 122, 131, 137, 151, 153, 160, 184, 189, 200, 204, 214, 221, 226, 244, 247, 248, 259, 260, 265, 266, 270, 274], "instead": [1, 4, 5, 8, 19, 35, 60, 62, 67, 72, 74, 78, 84, 88, 89, 92, 97, 99, 100, 102, 106, 109, 112, 118, 120, 131, 135, 136, 145, 150, 153, 175, 179, 184, 189, 191, 192, 196, 225, 231, 246, 247, 248, 249, 251, 252, 254, 255, 256, 262, 265, 266, 267, 270, 271, 273, 274], "target": [1, 8, 17, 18, 19, 21, 27, 42, 50, 54, 60, 67, 74, 78, 89, 102, 109, 120, 122, 135, 153, 161, 181, 184, 187, 189, 207, 214, 215, 216, 217, 220, 221, 224, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 261, 262, 263, 266, 267, 272, 275], "run_test": [1, 122, 189], "15282": 1, "track": [1, 6, 69, 74, 124, 247, 272], "syntax": [1, 31, 72, 73, 77, 102, 109, 120, 124, 131, 137, 149, 157, 167, 179, 186, 191, 192, 196, 210, 212, 226, 244, 247, 254, 270, 274], "host_vers": [1, 42], "15274": 1, "given": [1, 6, 8, 31, 36, 42, 82, 83, 84, 87, 88, 89, 90, 92, 97, 99, 100, 102, 105, 106, 107, 108, 115, 126, 135, 136, 143, 145, 151, 154, 155, 157, 170, 174, 175, 192, 193, 196, 200, 202, 204, 209, 215, 221, 223, 231, 247, 268, 271, 272, 274, 275], "15272": 1, "pkglist": [1, 6, 13, 91, 93, 112, 116, 268], "15266": 1, "conan_log_level": [1, 155], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 60, 62, 78, 82, 105, 106, 108, 130, 136, 137, 140, 145, 149, 151, 191, 193, 195, 200, 217, 221, 231, 254, 263, 265, 269, 275], "global": [1, 3, 4, 7, 10, 42, 62, 77, 80, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 125, 131, 135, 147, 151, 155, 156, 162, 167, 179, 192, 193, 211, 212, 215, 225, 252, 258, 275], "level": [1, 13, 16, 18, 21, 27, 29, 67, 74, 77, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 121, 125, 130, 135, 141, 145, 150, 153, 154, 155, 179, 184, 191, 202, 212, 215, 267, 275], "15263": 1, "xxx": [1, 6, 13, 43, 46, 91, 136, 138, 139, 150, 151, 189, 191, 192, 195, 221], "request": [1, 31, 61, 74, 77, 89, 99, 102, 111, 112, 118, 120, 125, 149, 150, 155, 162, 238], "15257": 1, "oper": [1, 6, 8, 49, 62, 63, 68, 69, 74, 84, 88, 102, 110, 112, 119, 122, 128, 147, 151, 154, 162, 175, 180, 186, 192, 195, 199, 231, 235, 237, 244, 245, 246, 253, 254, 256, 259, 264, 268, 271, 273, 275], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 61, 67, 74, 78, 80, 82, 84, 86, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 104, 105, 106, 109, 110, 114, 115, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 150, 151, 153, 154, 157, 158, 160, 161, 162, 163, 167, 170, 171, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 236, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 50, 60, 68, 73, 102, 120, 131, 136, 146, 161, 180, 188, 189, 192, 244, 245, 247, 248, 249, 251, 252, 254, 255, 258, 263, 266, 275], "conandep": [1, 59, 185, 210, 225, 233], "aggreg": [1, 24, 54, 107, 110, 136, 174, 180, 185, 186, 196, 208, 225, 244, 249, 266], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 50, 52, 54, 60, 61, 62, 65, 66, 67, 68, 69, 71, 73, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 97, 99, 100, 101, 102, 103, 105, 106, 107, 110, 111, 112, 113, 115, 116, 118, 120, 123, 127, 128, 129, 130, 131, 133, 135, 136, 138, 139, 140, 146, 148, 149, 150, 151, 153, 155, 158, 159, 160, 161, 162, 167, 170, 174, 175, 178, 179, 180, 183, 184, 185, 186, 191, 192, 193, 196, 197, 198, 200, 202, 204, 208, 209, 210, 211, 212, 214, 215, 216, 217, 221, 225, 226, 228, 233, 235, 236, 239, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 260, 262, 263, 265, 266, 267, 268, 270, 272, 275], "style": [1, 87, 90, 97, 99, 100, 102, 106, 111, 115, 183, 200], "15207": 1, "15192": 1, "warn": [1, 24, 54, 60, 67, 77, 83, 89, 110, 112, 120, 138, 139, 145, 151, 162, 200, 221, 231, 253, 275], "about": [1, 4, 6, 18, 19, 21, 24, 31, 37, 42, 45, 47, 52, 54, 55, 56, 59, 60, 67, 68, 69, 73, 74, 78, 79, 80, 82, 84, 86, 87, 90, 92, 94, 96, 100, 102, 106, 109, 110, 114, 115, 117, 120, 121, 122, 124, 126, 127, 131, 132, 133, 135, 136, 140, 141, 143, 146, 147, 151, 153, 155, 159, 164, 192, 206, 212, 218, 221, 233, 238, 240, 243, 244, 246, 248, 250, 252, 253, 255, 256, 258, 262, 263, 265, 266, 269, 272, 273, 275], "potenti": [1, 5, 40, 62, 91, 123, 137, 138, 139, 178, 192, 196, 272], "migrat": [1, 74, 120, 223, 248], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 50, 60, 62, 77, 78, 84, 94, 97, 102, 105, 107, 112, 118, 120, 122, 124, 128, 129, 131, 135, 136, 137, 138, 139, 140, 150, 151, 153, 154, 157, 158, 161, 163, 179, 190, 192, 193, 196, 207, 215, 231, 244, 245, 246, 247, 252, 255, 258, 260, 261, 270, 271, 272, 273, 274], "print": [1, 4, 26, 39, 40, 45, 49, 54, 76, 83, 100, 103, 109, 112, 120, 145, 155, 159, 163, 164, 211, 221, 251, 260, 262], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 50, 67, 74, 78, 84, 85, 88, 89, 102, 120, 131, 134, 135, 149, 150, 151, 154, 161, 163, 185, 186, 192, 196, 214, 215, 225, 226, 244, 248, 249, 259, 260, 264, 265, 268, 271, 272, 274, 275], "15174": 1, "deploi": [1, 30, 33, 54, 60, 87, 100, 102, 121, 135, 161, 171, 244, 249, 260, 266], "deploy": [1, 6, 11, 30, 35, 78, 80, 87, 88, 89, 91, 100, 128, 140, 150, 156, 196, 221], "15172": 1, "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 60, 88, 118, 119, 120, 124, 127, 131, 140, 153, 161, 179, 200, 202, 208, 211, 223, 225, 262], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 54, 55, 60, 61, 62, 78, 88, 89, 109, 118, 119, 130, 133, 151, 156, 162, 163, 179, 180, 200, 204, 212, 215, 221, 226, 244, 246, 247, 248, 254, 256, 263, 264, 266, 267, 272], "settings_us": [1, 11, 23, 77, 84, 147], "configapi": [1, 165, 167], "15151": 1, "builtin": [1, 11, 30, 74, 89, 150, 153], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 56, 59, 61, 62, 64, 67, 68, 69, 72, 73, 74, 77, 84, 109, 116, 122, 131, 136, 142, 153, 160, 163, 181, 238, 253, 254, 263, 271], "15150": 1, "warnings_as_error": [1, 89, 145, 150], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 52, 111, 150, 154, 175, 202, 260, 273, 275], "ftp_download": [1, 199], "commun": [1, 3, 8, 77, 89, 118, 136, 150, 153, 228, 239, 241], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "redefin": [1, 102, 151], "replac": [1, 19, 35, 49, 52, 77, 89, 120, 151, 155, 167, 179, 192, 196, 200, 261], "zlibng": [1, 151], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 74, 77, 83, 85, 88, 89, 91, 95, 97, 99, 100, 102, 103, 106, 112, 113, 116, 120, 131, 136, 137, 146, 150, 151, 152, 160, 185, 191, 197, 198, 210, 212, 215, 225, 228, 233, 243, 244, 245, 246, 247, 248, 249, 254], "conflict": [1, 39, 40, 62, 78, 102, 119, 120, 124, 137, 151, 170, 191, 195, 212, 221, 236, 258, 269], "altern": [1, 60, 74, 90, 94, 96, 99, 120, 138, 139, 151, 179, 196, 231, 259], "wrap": [1, 122, 145, 151, 196, 217, 221, 228, 275], "anoth": [1, 7, 13, 35, 41, 52, 83, 120, 123, 124, 131, 141, 151, 153, 159, 191, 195, 207, 215, 235, 237, 242, 244, 245, 252, 253, 255, 259, 261, 262, 265, 272], "15136": 1, "stderr": [1, 74, 145, 189, 275], "captur": [1, 6, 11, 43, 90, 106, 140, 197, 198, 200, 231, 235, 245, 247, 248, 249, 252, 256, 271], "15121": 1, "platform": [1, 8, 17, 39, 40, 55, 61, 62, 63, 71, 72, 77, 78, 84, 88, 99, 110, 126, 129, 130, 131, 134, 136, 140, 149, 150, 151, 153, 183, 192, 221, 223, 224, 225, 226, 235, 243, 244, 245, 248, 252, 263, 265, 272], "14871": 1, "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 50, 90, 95, 100, 133, 185, 191, 192, 193, 198, 200, 209, 210, 211, 212, 215, 248, 254, 255, 256, 258, 259, 260, 267], "13994": 1, "15297": 1, "separ": [1, 21, 60, 86, 90, 112, 118, 120, 123, 133, 150, 151, 155, 190, 191, 195, 196, 221, 241, 249, 255, 267, 273], "15296": 1, "rang": [1, 8, 9, 74, 78, 82, 84, 87, 89, 90, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 115, 120, 135, 137, 146, 150, 151, 153, 179, 236, 243, 248, 254, 269, 271, 274], "escap": [1, 111, 155], "report": [1, 6, 13, 61, 62, 74, 89, 99, 102, 118, 141, 150, 153, 171, 235], "involv": [1, 265, 266], "15222": 1, "hard": [1, 153], "set_nam": [1, 101, 121, 131], "set_vers": [1, 101, 120, 121, 131, 179, 231, 274], "mutat": 1, "15211": 1, "stdout": [1, 74, 101, 103, 109, 117, 120, 145, 189, 275], "15170": 1, "cmake_policy_default_cmp0091": 1, "unus": [1, 87, 90, 94, 97, 99, 100, 102, 106, 107, 115, 236, 271], "15127": 1, "system_tool": [1, 249], "favor": [1, 120], "align": [1, 7, 153], "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, 50, 52, 54, 55, 56, 59, 60, 62, 67, 69, 74, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 90, 97, 99, 100, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 118, 120, 124, 127, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 143, 145, 146, 149, 150, 151, 153, 154, 155, 159, 160, 162, 170, 179, 183, 185, 186, 191, 192, 200, 202, 207, 209, 212, 215, 217, 218, 221, 225, 226, 235, 237, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "least": [1, 3, 87, 90, 97, 99, 100, 102, 104, 105, 106, 115, 120, 137, 231, 247, 251, 258, 262, 268], "is_dirti": [1, 231], "sure": [1, 8, 24, 29, 38, 42, 50, 62, 103, 131, 134, 141, 145, 163, 179, 200, 221, 274], "process": [1, 5, 7, 26, 54, 56, 60, 62, 67, 74, 78, 84, 95, 105, 107, 109, 118, 120, 121, 122, 127, 136, 151, 155, 159, 161, 162, 178, 192, 197, 221, 242, 246, 247, 248, 250, 254, 259, 261, 271, 274, 275], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 59, 60, 62, 68, 70, 71, 72, 73, 74, 77, 78, 82, 84, 88, 89, 94, 102, 105, 109, 111, 118, 120, 121, 128, 129, 130, 131, 133, 135, 137, 138, 139, 140, 143, 144, 148, 150, 151, 157, 164, 178, 179, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 235, 242, 244, 245, 246, 248, 249, 251, 252, 254, 260, 265, 267, 271], "whole": [1, 6, 10, 17, 74, 82, 84, 88, 102, 120, 143, 178, 179, 191, 192, 196, 211], "repo": [1, 4, 5, 6, 16, 60, 62, 69, 74, 109, 110, 120, 162, 231, 267, 274], "similarli": [1, 151, 198, 240, 273], "15289": 1, "clear": [1, 111, 120, 135, 136, 143, 195, 248, 253, 258, 271], "15285": 1, "restor": [1, 2, 61, 196, 197, 198, 246, 247, 249], "portabl": [1, 74, 120], "across": [1, 8, 55, 150, 156, 157, 244], "window": [1, 8, 13, 17, 26, 27, 29, 35, 39, 40, 42, 48, 55, 56, 59, 62, 63, 74, 78, 84, 85, 88, 89, 91, 103, 106, 107, 112, 116, 120, 123, 126, 131, 134, 136, 140, 143, 150, 151, 153, 157, 164, 172, 196, 198, 200, 208, 209, 217, 221, 235, 240, 241, 244, 246, 248, 249, 252, 253, 254, 255, 256, 259, 260, 265, 267, 272, 275], "oss": [1, 107, 136, 153, 272], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 50, 55, 60, 62, 67, 74, 77, 78, 82, 83, 84, 87, 88, 89, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 105, 106, 108, 112, 115, 116, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 145, 149, 150, 151, 153, 154, 155, 159, 161, 175, 179, 187, 191, 192, 195, 200, 207, 221, 231, 235, 242, 244, 245, 246, 247, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 265, 267, 268, 270, 271, 272, 274, 275], "absolut": [1, 35, 36, 49, 89, 109, 131, 148, 150, 151, 161, 173, 191, 192, 200, 202, 204, 205, 261], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 52, 68, 74, 84, 85, 89, 123, 126, 135, 147, 150, 151, 183, 184, 186, 187, 192, 209, 217, 221, 224, 235, 244, 245, 246, 248, 259, 263, 271], "ignor": [1, 6, 29, 54, 78, 128, 138, 139, 155, 189, 204, 205, 231, 235, 271], "toolchain": [1, 26, 27, 45, 46, 56, 59, 65, 66, 68, 72, 73, 84, 89, 122, 131, 133, 150, 151, 153, 186, 189, 207, 209, 216, 221, 226, 244, 245, 246, 248, 249, 250, 253, 254, 260, 262, 266], "15215": 1, "html": [1, 45, 62, 77, 100, 159, 248, 275], "mislead": 1, "node": [1, 13, 95, 97, 141, 170], "15196": 1, "15185": 1, "nmakedep": [1, 180, 193, 222], "quot": [1, 103, 111], "15140": 1, "lru": [1, 103, 112, 268], "data": [1, 6, 8, 84, 118, 120, 123, 130, 131, 132, 133, 136, 147, 187, 191, 200, 212, 219, 241, 256, 275], "15135": 1, "package_metadata_fold": [1, 6], "15126": 1, "pyinstal": [1, 62], "broken": [1, 5, 69, 74, 97, 133, 140, 205, 261, 272], "python": [1, 8, 31, 52, 60, 62, 65, 72, 74, 78, 80, 82, 87, 89, 104, 105, 108, 117, 118, 132, 145, 150, 151, 156, 158, 159, 160, 162, 164, 170, 189, 192, 196, 207, 209, 212, 214, 221, 224, 227, 248], "useless": [1, 132, 191], "distutil": 1, "15116": 1, "download_cach": [1, 4, 89], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 50, 54, 55, 62, 65, 66, 67, 69, 70, 71, 72, 78, 79, 82, 84, 86, 89, 102, 104, 109, 110, 111, 116, 120, 121, 126, 127, 135, 136, 140, 141, 150, 151, 152, 153, 161, 175, 179, 181, 185, 192, 193, 195, 196, 200, 208, 217, 221, 223, 231, 234, 239, 243, 244, 245, 248, 250, 254, 260, 268, 269, 271, 272, 273, 274], "autotool": [1, 11, 43, 61, 63, 74, 89, 109, 131, 150, 180, 183, 193, 195, 196, 206, 208, 209, 244, 252, 254], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 50, 54, 55, 56, 59, 67, 72, 74, 77, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 91, 95, 96, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 112, 115, 116, 118, 120, 122, 123, 124, 127, 131, 133, 134, 135, 136, 137, 140, 143, 146, 150, 151, 154, 156, 157, 158, 159, 161, 164, 175, 179, 183, 185, 187, 189, 190, 191, 192, 193, 195, 197, 198, 200, 202, 207, 208, 209, 211, 215, 217, 220, 224, 225, 226, 227, 233, 235, 244, 245, 246, 247, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 270, 271, 272, 273, 274, 275], "simultan": [1, 191, 265, 270], "databas": [1, 89, 150, 235], "connect": [1, 54, 77, 89, 100, 111, 118, 150, 175, 240], "15029": 1, "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 50, 54, 55, 56, 59, 60, 62, 65, 66, 67, 70, 76, 77, 78, 83, 84, 86, 87, 88, 89, 90, 93, 97, 99, 100, 101, 102, 103, 105, 106, 109, 112, 115, 117, 118, 120, 122, 124, 127, 129, 130, 133, 134, 136, 137, 140, 144, 145, 148, 149, 150, 151, 153, 154, 156, 158, 161, 162, 163, 167, 178, 179, 183, 184, 189, 191, 192, 195, 200, 202, 207, 209, 211, 214, 215, 216, 217, 218, 220, 221, 224, 225, 227, 235, 244, 246, 247, 248, 250, 253, 254, 255, 259, 265, 266, 268, 270, 273, 275], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 60, 65, 66, 69, 70, 71, 73, 74, 77, 78, 79, 82, 83, 84, 88, 90, 91, 94, 96, 100, 101, 102, 104, 105, 107, 118, 120, 122, 124, 125, 127, 131, 133, 136, 137, 140, 141, 146, 149, 150, 151, 153, 154, 155, 159, 161, 162, 170, 175, 179, 181, 183, 186, 189, 192, 200, 205, 214, 218, 221, 226, 231, 235, 242, 246, 247, 248, 250, 253, 254, 255, 256, 258, 259, 260, 267, 268, 270, 271, 272, 273, 275], "15013": 1, "better": [1, 5, 6, 24, 27, 31, 36, 60, 68, 86, 102, 107, 120, 122, 135, 138, 139, 154, 196, 241, 259, 260, 270, 271, 275], "ux": [1, 113, 147], "15011": 1, "15007": 1, "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 89, 90, 109, 120, 135, 138, 139, 145, 150, 189, 204, 209, 214, 216, 221, 226, 227, 231, 251, 258, 262], "14966": 1, "load": [1, 16, 41, 45, 54, 60, 66, 102, 120, 129, 130, 132, 138, 139, 150, 151, 162, 173, 174, 179, 192, 199, 202, 207, 215, 217, 233, 246, 248, 274], "ci": [1, 2, 4, 5, 6, 7, 8, 60, 69, 78, 97, 99, 110, 120, 122, 150, 153, 154, 155, 271, 275], "workflow": [1, 60, 162, 266], "move": [1, 7, 35, 74, 78, 140, 179, 200, 254, 256, 261, 266, 267, 270, 271, 272, 274], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 60, 74, 77, 80, 81, 82, 96, 97, 100, 102, 103, 104, 106, 110, 120, 121, 127, 131, 135, 137, 140, 143, 151, 153, 164, 170, 174, 179, 197, 198, 208, 209, 242, 244, 246, 247, 249, 253, 254, 263, 272], "intersect": [1, 10], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 72, 73, 74, 78, 87, 90, 91, 97, 99, 100, 102, 106, 115, 118, 120, 131, 133, 135, 151, 154, 161, 179, 185, 189, 191, 192, 193, 197, 207, 209, 218, 221, 225, 235, 236, 237, 240, 243, 250, 265, 267, 271, 273, 275], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 62, 63, 77, 85, 95, 100, 103, 110, 151, 153, 183, 206, 217, 221, 235, 244, 246, 248, 249, 252, 254, 255, 259, 265, 267], "14858": 1, "pkgconfigdep": [1, 45, 55, 56, 65, 71, 136, 180, 206, 221, 252], "listen": [1, 118, 211, 214, 241], "system_package_vers": [1, 191, 212], "properti": [1, 21, 42, 50, 59, 71, 72, 95, 100, 120, 131, 133, 137, 167, 183, 192, 208, 217, 221, 225, 226, 234, 250, 261, 262, 266], "14808": 1, "shorthand": 1, "14727": 1, "control": [1, 4, 5, 49, 60, 74, 77, 82, 90, 120, 133, 139, 153, 155, 185, 192, 225, 259, 271, 273, 275], "14054": 1, "overwrit": [1, 7, 24, 82, 87, 90, 94, 97, 99, 100, 102, 106, 109, 110, 115, 120, 140, 179, 195, 212], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 54, 56, 59, 80, 119, 121, 131, 134, 136, 140, 180, 189, 190, 192, 204, 209, 215, 221, 229, 236, 243, 245, 254, 256, 258, 259, 260, 263, 264, 265, 266], "nor": [1, 36, 74, 128, 132, 140, 141, 178, 235], "15058": 1, "astra": 1, "elbru": [1, 153], "altlinux": 1, "distribut": [1, 7, 35, 45, 60, 62, 74, 110, 140, 153, 164, 235, 241], "apt": [1, 62, 89, 121, 141, 150, 234], "systempackagemanag": 1, "15051": 1, "linux": [1, 8, 26, 27, 35, 44, 48, 55, 62, 63, 74, 84, 85, 89, 91, 99, 103, 106, 107, 141, 143, 150, 151, 153, 187, 202, 217, 235, 244, 245, 246, 248, 249, 252, 255, 259, 265, 267, 272], "mint": [1, 62], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 52, 60, 62, 64, 65, 67, 68, 69, 70, 72, 73, 74, 77, 78, 82, 89, 90, 94, 99, 100, 101, 102, 105, 110, 111, 116, 118, 120, 122, 133, 135, 136, 140, 141, 143, 144, 150, 151, 153, 155, 156, 157, 159, 162, 164, 170, 171, 175, 178, 186, 187, 191, 196, 200, 201, 202, 207, 215, 217, 218, 221, 223, 231, 235, 239, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 268, 271, 272, 275], "server": [1, 4, 5, 6, 7, 8, 13, 29, 54, 60, 61, 69, 74, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 102, 106, 109, 110, 111, 112, 115, 116, 120, 129, 130, 135, 149, 150, 154, 155, 163, 170, 175, 178, 202, 207, 236, 239, 240, 242, 244, 247, 256, 258, 268, 272, 275], "even": [1, 4, 6, 35, 36, 47, 50, 52, 62, 63, 74, 77, 78, 83, 85, 91, 102, 107, 111, 116, 120, 122, 124, 127, 131, 137, 138, 139, 140, 141, 150, 151, 152, 153, 158, 161, 162, 175, 179, 200, 218, 225, 231, 242, 245, 247, 248, 252, 253, 254, 258, 269, 270, 271, 272, 273, 274], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 89, 102, 140, 154, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272], "15023": 1, "appl": [1, 24, 42, 73, 74, 77, 80, 85, 89, 95, 100, 103, 110, 150, 151, 153, 180, 184, 185, 186, 190, 192, 207, 209, 219, 244, 246, 254], "15015": 1, "extraflag": 1, "prioriti": [1, 102, 108, 120, 127, 136, 137, 138, 139, 149, 150, 151, 155, 174, 195, 231, 270], "15005": 1, "color": [1, 31, 120, 251, 252, 255, 262, 263], "15002": 1, "sqlite3": [1, 131], "unsupport": [1, 256], "less": [1, 6, 35, 56, 59, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 150, 274], "than": [1, 8, 50, 56, 59, 60, 67, 74, 77, 82, 84, 89, 90, 91, 98, 102, 105, 112, 116, 120, 123, 125, 126, 132, 135, 136, 138, 139, 144, 145, 150, 153, 154, 161, 179, 186, 187, 191, 192, 209, 212, 226, 227, 235, 244, 247, 253, 257, 263, 272, 273, 275], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 59, 60, 74, 78, 79, 84, 102, 108, 109, 120, 123, 124, 129, 131, 135, 137, 138, 139, 140, 146, 151, 153, 154, 162, 180, 187, 189, 190, 192, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 220, 221, 223, 224, 225, 226, 227, 228, 229, 235, 244, 246, 247, 248, 258, 259, 268, 270, 272, 273, 275], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 60, 67, 78, 82, 83, 102, 120, 123, 124, 150, 151, 179, 192, 209, 215, 221, 255, 265, 266, 275], "forc": [1, 6, 31, 36, 41, 78, 87, 89, 90, 95, 97, 99, 100, 102, 106, 108, 109, 110, 111, 115, 116, 118, 120, 124, 149, 150, 151, 153, 155, 175, 178, 192, 209, 217, 244, 247, 265, 270, 271, 272], "rebuild": [1, 5, 83, 120, 259, 265, 275], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 62, 74, 78, 79, 81, 82, 84, 89, 102, 108, 120, 121, 127, 136, 137, 145, 150, 151, 153, 161, 204, 212, 218, 243, 246, 262, 264, 265, 266, 268, 273, 274, 275], "previou": [1, 2, 6, 7, 13, 56, 59, 74, 82, 99, 102, 103, 105, 107, 153, 159, 175, 185, 190, 191, 192, 195, 221, 226, 235, 242, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 273, 274], "still": [1, 5, 29, 39, 40, 50, 60, 62, 105, 112, 120, 123, 124, 127, 135, 136, 153, 170, 178, 231, 258, 265, 272, 273, 275], "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, 50, 52, 53, 56, 57, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 82, 84, 89, 90, 109, 118, 120, 121, 133, 136, 150, 161, 179, 184, 185, 186, 190, 207, 210, 214, 215, 216, 217, 218, 221, 225, 226, 229, 236, 237, 239, 240, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 271, 273, 275], "14938": 1, "affect": [1, 5, 6, 10, 62, 82, 84, 85, 97, 102, 120, 126, 127, 135, 137, 151, 153, 179, 186, 189, 191, 192, 200, 212, 214, 215, 216, 220, 221, 224, 225, 226, 227, 228, 234, 245, 248, 250, 252, 253, 255, 258, 265, 267], "14932": 1, "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 50, 54, 55, 56, 59, 60, 61, 63, 74, 77, 78, 82, 83, 84, 85, 86, 87, 90, 91, 94, 95, 97, 99, 100, 103, 104, 105, 106, 109, 110, 115, 118, 120, 121, 122, 128, 131, 133, 134, 137, 138, 139, 140, 141, 143, 144, 146, 150, 151, 153, 156, 158, 160, 161, 162, 163, 164, 165, 170, 183, 184, 185, 186, 189, 190, 192, 197, 198, 207, 208, 209, 211, 214, 215, 216, 217, 220, 221, 225, 226, 228, 233, 235, 241, 242, 244, 245, 246, 247, 248, 249, 250, 253, 254, 255, 256, 258, 259, 260, 262, 265, 267, 270, 271, 273, 274, 275], "fill_cpp_info": [1, 211], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 50, 54, 55, 56, 59, 60, 74, 79, 82, 84, 100, 106, 120, 131, 136, 151, 153, 155, 179, 190, 218, 239, 240, 241, 244, 251, 252, 266, 272, 273, 274, 275], "noisi": 1, "quiet": [1, 89, 145, 150, 184, 189, 220, 224], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 27, 29, 35, 36, 39, 40, 49, 50, 52, 56, 60, 62, 67, 73, 74, 77, 78, 82, 84, 89, 90, 94, 97, 100, 102, 103, 105, 107, 109, 112, 116, 120, 121, 122, 124, 129, 130, 131, 132, 134, 135, 136, 140, 141, 143, 144, 146, 149, 150, 151, 153, 154, 171, 178, 181, 191, 192, 193, 197, 198, 200, 221, 227, 231, 233, 244, 246, 248, 249, 253, 254, 255, 256, 258, 259, 263, 266, 268, 270, 271, 272, 273, 274, 275], "buildinfo": 1, "14886": 1, "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 50, 52, 56, 62, 63, 69, 74, 78, 84, 88, 90, 91, 99, 102, 106, 109, 112, 116, 118, 120, 124, 131, 135, 136, 137, 140, 142, 143, 144, 145, 149, 150, 151, 153, 154, 155, 157, 160, 162, 164, 171, 174, 179, 183, 185, 191, 195, 196, 197, 209, 211, 221, 225, 231, 235, 239, 240, 246, 247, 248, 252, 253, 254, 256, 259, 260, 263, 266, 268, 271, 272, 275], "14852": 1, "min": [1, 100, 186, 221], "xro": [1, 153], "simul": [1, 50], "14776": 1, "unnecessari": [1, 60, 123], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 60, 82, 84, 86, 88, 94, 100, 102, 105, 107, 109, 120, 122, 123, 124, 125, 130, 131, 132, 133, 135, 136, 137, 139, 140, 141, 143, 149, 150, 151, 153, 158, 160, 161, 174, 179, 191, 192, 193, 196, 200, 209, 218, 220, 225, 242, 245, 246, 248, 252, 254, 256, 258, 259, 261, 262, 267, 270, 271, 272, 273, 274], "transit": [1, 13, 36, 50, 78, 90, 91, 102, 124, 131, 137, 151, 179, 185, 191, 197, 208, 225, 243, 265], "15082": 1, "15042": 1, "download_sourc": [1, 36, 89, 140, 150], "15004": 1, "incorrectli": 1, "xcconfig": [1, 73, 185, 186], "14898": 1, "export_sourc": [1, 7, 16, 18, 60, 88, 120, 121, 129, 131, 133, 204], "been": [1, 4, 6, 8, 13, 26, 50, 62, 63, 69, 74, 78, 79, 82, 88, 90, 94, 98, 102, 103, 112, 127, 131, 136, 137, 140, 142, 143, 144, 151, 153, 171, 179, 185, 191, 197, 246, 247, 253, 254, 255, 265, 266, 268, 272, 275], "14850": 1, "properli": [1, 101, 150, 254, 263], "candid": 1, "14846": 1, "end": [1, 4, 74, 77, 78, 124, 137, 150, 151, 161, 162, 192, 196, 220, 246, 255, 263, 272, 273], "activ": [1, 8, 29, 35, 41, 49, 60, 62, 67, 74, 84, 89, 120, 131, 136, 145, 150, 153, 155, 156, 185, 189, 191, 192, 195, 197, 198, 212, 215, 225, 227, 228, 245, 246, 249, 260], "pre": [1, 9, 45, 54, 60, 62, 74, 77, 86, 89, 94, 110, 120, 140, 149, 150, 156, 162, 196, 218, 248, 250, 257, 266, 267, 273], "resolut": [1, 79, 129, 156], "full": [1, 5, 6, 24, 36, 39, 40, 52, 65, 69, 70, 72, 73, 74, 83, 84, 88, 90, 94, 97, 102, 103, 105, 109, 120, 125, 131, 135, 141, 146, 153, 157, 161, 163, 165, 170, 179, 191, 192, 195, 211, 217, 231, 253, 261, 265, 274], "14814": 1, "lower": [1, 218, 247, 259, 273], "bound": [1, 273], "upper": [1, 273], "newer": [1, 8, 74, 87, 90, 97, 99, 100, 102, 104, 105, 106, 108, 115, 120, 153, 170, 260, 273, 274], "clang": [1, 24, 26, 27, 42, 45, 74, 77, 84, 85, 89, 95, 100, 103, 110, 112, 117, 144, 150, 151, 153, 164, 183, 190, 192, 204, 221, 244, 246, 254], "introduc": [1, 29, 52, 79, 81, 118, 140, 243, 253, 258, 266, 267, 269, 270, 271, 272, 273, 274, 275], "14837": 1, "14781": 1, "dry": [1, 112, 116], "14760": 1, "host_tool": 1, "package_manag": [1, 89, 120, 136, 141, 150, 180, 234], "indic": [1, 4, 26, 67, 77, 89, 90, 94, 137, 150, 152, 189, 195, 200, 214, 215, 228, 246, 248, 260, 270], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 54, 55, 62, 74, 77, 83, 99, 100, 102, 106, 111, 120, 129, 130, 132, 140, 143, 151, 153, 155, 164, 170, 179, 183, 190, 192, 217, 235, 242, 244, 246, 249, 252, 253, 255, 259, 262, 263, 266, 270, 271, 274], "14819": 1, "set_properti": [1, 17, 21, 41, 50, 136, 212, 215, 255], "14813": 1, "minor": [1, 74, 82, 83, 120, 151, 153, 179, 270, 273, 275], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 84, 135, 183, 260], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 43, 45, 48, 52, 54, 55, 57, 58, 60, 62, 67, 81, 83, 89, 90, 102, 104, 105, 107, 108, 120, 123, 134, 135, 138, 139, 150, 151, 154, 155, 157, 162, 163, 164, 174, 185, 186, 192, 197, 198, 202, 204, 209, 217, 220, 226, 231, 235, 236, 237, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274], "found": [1, 4, 21, 26, 27, 39, 40, 49, 50, 54, 62, 87, 90, 93, 94, 97, 99, 100, 101, 102, 106, 110, 115, 133, 136, 141, 142, 148, 151, 154, 157, 161, 175, 189, 191, 192, 200, 207, 218, 221, 244, 246, 249, 258, 267, 271], "14800": 1, "reus": [1, 29, 41, 74, 120, 121, 131, 132, 134, 136, 140, 156, 237, 244, 254, 255, 263, 268], "session": [1, 62], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 54, 61, 67, 82, 89, 118, 124, 148, 150, 161, 236, 237, 242, 246, 252, 255, 258], "14795": 1, "rel": [1, 5, 18, 35, 36, 67, 85, 97, 109, 118, 120, 121, 122, 133, 136, 138, 139, 148, 151, 161, 162, 183, 191, 192, 195, 200, 204, 205, 261, 266, 267, 270, 272], "partial": [1, 83, 87, 90, 93, 94, 97, 99, 100, 101, 102, 105, 106, 107, 108, 115, 151, 271, 275], "directori": [1, 26, 27, 35, 36, 38, 47, 62, 102, 109, 118, 120, 129, 130, 131, 133, 136, 138, 139, 140, 148, 150, 151, 152, 159, 191, 200, 204, 205, 215, 218, 231, 246, 248, 252, 258, 259, 264, 265, 266], "14782": 1, "14743": 1, "arg": [1, 31, 89, 97, 122, 155, 159, 207, 214, 217, 228, 231, 235, 274], "cmd": [1, 26, 120, 136, 142, 151, 158, 196, 207, 224, 231, 241, 263], "14737": 1, "block": [1, 52, 275], "interfac": [1, 6, 60, 67, 74, 83, 118, 156, 157, 193], "select": [1, 21, 26, 67, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 110, 111, 112, 113, 115, 116, 117, 120, 181, 190, 192, 200, 217, 224, 240, 250, 261, 268], "kei": [1, 60, 89, 109, 118, 120, 131, 136, 150, 154, 159, 192, 204, 209, 221, 226, 227, 231, 240, 256, 264, 265], "14731": 1, "larg": [1, 6, 10, 118, 120, 135, 151, 196, 264, 274], "14716": 1, "14692": 1, "cl": [1, 74, 227], "14682": 1, "transform": [1, 155, 200, 221], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 50, 52, 54, 56, 59, 67, 74, 79, 83, 89, 136, 142, 150, 151, 153, 190, 192, 209, 218, 221, 227, 240, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 265, 266, 272], "ld": [1, 54, 100, 209, 221, 245], "blank": [1, 118, 195, 221], "string": [1, 6, 26, 42, 45, 52, 55, 84, 89, 103, 109, 118, 120, 135, 138, 139, 145, 150, 151, 152, 178, 189, 190, 192, 195, 196, 200, 204, 209, 212, 216, 221, 244, 245, 252, 254, 274, 275], "14676": 1, "nobara": 1, "distro": [1, 62, 150, 153, 235], "dnf": [1, 89, 150, 234], "14668": 1, "b_vscrt": [1, 221], "14664": 1, "regex": [1, 84, 120, 135, 191], "14621": 1, "makedep": [1, 70, 180, 206], "tweak": [1, 192], "14605": 1, "jinja": [1, 49, 149, 150, 151, 154, 196], "templat": [1, 26, 47, 49, 74, 85, 86, 100, 110, 120, 147, 151, 154, 173, 190, 192, 196], "14578": 1, "14532": 1, "14740": 1, "conanapi": [1, 31, 159, 165, 166], "init": [1, 60, 121, 131, 179, 274], "failur": [1, 74, 89, 150, 202], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 54, 74, 78, 89, 91, 94, 97, 102, 107, 109, 110, 111, 116, 120, 126, 127, 132, 150, 151, 168, 170, 175, 178, 181, 185, 191, 192, 200, 209, 212, 235, 236, 237, 242, 246, 248, 249, 251, 252, 253, 254, 257, 260, 261, 263, 267, 270, 272, 274, 275], "duplic": [1, 39, 40, 54, 111, 136], "alias": [1, 120, 179, 191, 212], "14644": 1, "regress": [1, 74], "win_bash": [1, 89, 95, 150], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 52, 59, 60, 74, 77, 78, 79, 82, 83, 84, 85, 89, 95, 99, 100, 101, 103, 106, 109, 110, 112, 120, 124, 127, 131, 134, 136, 137, 138, 146, 151, 153, 156, 160, 179, 185, 186, 189, 190, 191, 192, 196, 206, 209, 212, 216, 221, 225, 235, 236, 237, 242, 243, 244, 245, 248, 252, 253, 254, 255, 256, 262, 268, 270, 275], "test_requir": [1, 78, 121, 131, 137, 245, 248, 252, 258, 260, 273], "diamond": [1, 120, 270], "14721": 1, "crash": [1, 6, 78, 270], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 97, 98, 110, 118, 120, 127, 128, 140, 151, 153, 158, 163, 187, 191, 192, 196, 200, 202, 221, 223, 224, 231, 242, 246, 263, 270], "chain": [1, 5, 145, 275], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 50, 55, 56, 60, 62, 66, 74, 78, 82, 88, 89, 90, 94, 97, 98, 101, 102, 103, 105, 106, 111, 112, 118, 120, 122, 127, 129, 130, 131, 133, 134, 135, 136, 137, 140, 141, 143, 150, 153, 155, 156, 159, 160, 161, 178, 179, 183, 185, 186, 191, 192, 193, 197, 198, 200, 209, 210, 212, 221, 225, 227, 231, 235, 238, 244, 245, 246, 247, 248, 249, 250, 253, 254, 255, 258, 260, 261, 265, 266, 268, 269, 270, 271, 272, 275], "14673": 1, "cpu": [1, 8, 89, 150, 153, 187, 216, 224], "nativ": [1, 26, 27, 50, 55, 72, 78, 89, 150, 179, 187, 215, 220, 221, 228], "arm64": [1, 26, 42, 153, 181, 184, 224], "14667": 1, "ones": [1, 6, 10, 30, 31, 42, 43, 46, 66, 74, 78, 82, 86, 88, 89, 97, 99, 112, 120, 125, 137, 141, 150, 151, 153, 161, 162, 167, 175, 181, 191, 192, 195, 196, 200, 205, 212, 217, 223, 224, 225, 242, 247, 261, 266, 267, 271, 272, 273, 274], "14643": 1, "unnecessarili": [1, 84], "decor": [1, 156], "sequenc": [1, 45, 96, 118], "14642": 1, "14622": 1, "patch_us": [1, 204], "conandata": [1, 4, 52, 60, 67, 78, 120, 129, 130, 131, 132, 140, 163, 200, 204, 231, 250], "patch": [1, 6, 19, 43, 51, 74, 78, 82, 83, 88, 120, 122, 130, 140, 151, 153, 179, 180, 183, 199, 207, 250, 256, 273, 275], "apply_conandata_patch": [1, 130, 140, 199], "14576": 1, "xcode": [1, 61, 63, 87, 89, 90, 94, 97, 99, 100, 102, 106, 110, 115, 150, 184, 185, 186, 189, 190, 217, 221], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 63, 69, 74, 77, 89, 95, 100, 101, 120, 152, 153, 159, 183, 184, 221, 238, 239, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "tvo": [1, 153, 183], "watcho": [1, 153, 183, 221], "14538": 1, "incorrect": [1, 74], "conancent": [1, 2, 13, 29, 50, 60, 61, 74, 77, 83, 85, 95, 99, 100, 103, 113, 120, 136, 150, 152, 238, 244, 247, 249], "web": [1, 4, 6, 62, 120, 153, 239, 240], "url": [1, 3, 4, 60, 88, 89, 95, 100, 101, 109, 111, 118, 131, 140, 150, 152, 154, 162, 175, 200, 202, 231, 240, 241, 251, 252, 254, 255, 256, 259, 262], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 59, 60, 74, 78, 84, 109, 118, 120, 136, 146, 151, 162, 179, 185, 195, 196, 225, 247, 265, 271], "14529": 1, "rrev": [1, 31, 95, 103], "rrev_timestamp": [1, 95], "prev_timestamp": [1, 95], "14526": 1, "resolv": [1, 8, 10, 87, 88, 89, 90, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 108, 115, 118, 124, 150, 151, 174, 196, 200, 247, 269, 271, 272, 273], "14510": 1, "verifi": [1, 5, 50, 52, 56, 78, 88, 89, 144, 150, 152, 156, 163, 202, 256, 259, 263, 275], "14508": 1, "visiono": [1, 153, 183], "14504": 1, "unknown": [1, 82, 95, 100, 145], "14493": 1, "skip_binari": [1, 36, 89, 150], "14466": 1, "symlink": [1, 89, 150, 161, 180, 199, 200, 250], "14461": 1, "14413": 1, "cli_arg": [1, 189], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 77, 80, 111, 118, 147, 154, 231, 240], "14392": 1, "apk": [1, 89, 150, 234], "alpin": [1, 235], "14382": 1, "msvc": [1, 50, 56, 59, 85, 89, 103, 120, 136, 150, 151, 164, 209, 223, 226, 248], "invok": [1, 42, 45, 89, 102, 150, 151, 161, 171, 183, 225, 234, 245, 246, 249, 251, 252, 256, 261, 263, 266], "within": [1, 89, 118, 120, 128, 151, 183, 193, 200, 248, 273], "prompt": [1, 31, 155, 192, 224, 227, 228], "where": [1, 4, 8, 19, 21, 31, 42, 45, 52, 55, 62, 74, 84, 88, 89, 101, 102, 118, 120, 122, 131, 133, 136, 148, 150, 151, 152, 153, 159, 179, 184, 191, 192, 193, 195, 196, 200, 202, 207, 209, 214, 215, 217, 218, 220, 221, 224, 231, 240, 244, 245, 246, 248, 253, 254, 255, 256, 267, 272], "point": [1, 4, 8, 29, 35, 39, 40, 60, 61, 67, 74, 84, 89, 100, 102, 107, 109, 120, 131, 151, 161, 162, 170, 183, 192, 200, 205, 207, 231, 245, 247, 259, 261, 267, 270, 275], "14364": 1, "14358": 1, "14347": 1, "default_build_opt": 1, "14340": 1, "channel": [1, 5, 61, 74, 77, 87, 90, 92, 93, 94, 95, 97, 99, 100, 103, 106, 114, 118, 131, 151, 247], "14338": 1, "makefil": [1, 45, 61, 63, 74, 189, 190, 207, 209, 210, 227, 248], "14133": 1, "14594": 1, "v2": [1, 153, 162, 187, 241], "readi": [1, 30, 54, 55, 77, 151, 209, 218, 244, 254], "center": [1, 5, 8, 60, 67, 74, 77, 95, 100, 101, 152, 153, 156, 236, 237, 244, 249], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 54, 56, 59, 61, 78, 83, 84, 100, 120, 124, 133, 136, 137, 142, 157, 185, 191, 192, 193, 200, 212, 221, 226, 227, 240, 243, 245, 252, 253, 254, 255, 258, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "14593": 1, "inspect": [1, 6, 7, 36, 67, 86, 88, 110, 170, 227], "14572": 1, "hyphen": [1, 212, 215], "14561": 1, "user_toolchain": [1, 49, 89, 150, 192], "14556": 1, "boolean": [1, 89, 120, 131, 150, 175, 191, 192, 214, 216, 221, 275], "14530": 1, "14511": 1, "14491": 1, "14444": 1, "conf_info": [1, 95, 131, 133, 150, 192, 255, 262], "14442": 1, "msbuildtoolchain": [1, 59, 72, 89, 120, 136, 150, 180, 222], "resourcecompil": [1, 226], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 62, 74, 77, 78, 82, 83, 84, 90, 91, 97, 98, 102, 103, 104, 105, 107, 108, 109, 110, 116, 120, 122, 131, 133, 135, 140, 141, 145, 150, 151, 153, 157, 159, 170, 174, 179, 192, 193, 209, 221, 231, 246, 248, 249, 253, 255, 256, 261, 266, 272, 275], "14376": 1, "processor": [1, 153, 187, 221], "armv8": [1, 26, 27, 42, 45, 84, 100, 110, 120, 136, 151, 153, 181, 187, 221, 235, 248, 259, 263], "aarch64": [1, 100, 153, 235], "14362": 1, "mandat": [1, 195], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 50, 54, 56, 60, 67, 74, 81, 102, 103, 107, 120, 122, 123, 124, 127, 128, 129, 130, 132, 133, 134, 135, 136, 140, 151, 153, 174, 191, 193, 200, 209, 212, 220, 237, 244, 249, 251, 254, 260, 263, 264, 266, 269, 270, 273, 275], "14342": 1, "default_opt": [1, 42, 52, 60, 84, 95, 101, 127, 132, 185, 189, 192, 221, 225, 252, 253, 254, 256, 262, 270], "xcrun": [1, 180, 182], "14326": 1, "abspath": 1, "14183": 1, "14555": 1, "except": [1, 26, 31, 39, 40, 49, 82, 84, 89, 118, 120, 124, 125, 127, 133, 140, 145, 146, 150, 151, 153, 155, 175, 179, 187, 189, 200, 231, 235, 244, 248, 253, 270], "vtrace": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "14522": 1, "confirm": [1, 31, 112, 116], "interact": [1, 89, 111, 149, 150, 155], "14512": 1, "filter": [1, 6, 89, 100, 112, 120, 131, 143, 159, 178, 200, 271], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 50, 62, 72, 74, 77, 78, 83, 84, 89, 91, 102, 107, 108, 109, 112, 118, 120, 122, 123, 124, 135, 137, 140, 146, 153, 155, 158, 162, 164, 179, 185, 191, 202, 207, 225, 232, 235, 240, 242, 244, 245, 246, 249, 252, 253, 256, 260, 261, 262, 263, 265, 271, 274, 275], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 52, 60, 67, 78, 84, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 122, 123, 129, 130, 134, 137, 140, 144, 162, 171, 179, 200, 202, 238, 240, 258, 265, 266, 272], "14478": 1, "14443": 1, "14441": 1, "14410": 1, "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 50, 52, 56, 59, 65, 78, 89, 120, 122, 123, 131, 134, 136, 137, 139, 150, 158, 162, 164, 191, 192, 195, 196, 197, 198, 207, 208, 209, 216, 217, 221, 226, 227, 228, 240, 245, 246, 254, 262, 263, 271], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "outsid": [1, 8, 60, 74, 82, 118, 120, 135, 148, 205], "scm_folder": [1, 120], "14330": 1, "trace": [1, 145, 259], "14322": 1, "flush": 1, "stream": [1, 74, 189], "write": [1, 4, 27, 45, 54, 74, 78, 79, 102, 109, 118, 123, 133, 156, 163, 179, 191, 192, 200, 209, 248, 254, 256, 262, 266], "14310": 1, "sign": [1, 80, 118, 156], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 60, 88, 192, 259, 265, 266, 267], "inherit": [1, 48, 78, 132, 179, 192, 248], "typo": 1, "14325": 1, "conanpreset": [1, 48, 192], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50, 54, 55, 56, 59, 60, 65, 66, 70, 74, 82, 83, 84, 85, 87, 89, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 104, 105, 106, 107, 109, 113, 114, 115, 118, 120, 121, 123, 127, 131, 132, 133, 136, 137, 148, 150, 153, 155, 156, 161, 163, 164, 167, 175, 179, 183, 185, 191, 192, 193, 197, 198, 204, 208, 209, 210, 212, 215, 216, 217, 221, 225, 226, 231, 233, 244, 245, 247, 251, 254, 258, 259, 260, 262, 263, 265, 266, 267, 271, 273, 274, 275], "14296": 1, "prefix": [1, 100, 112, 120, 151, 159, 192, 209, 210, 211, 212, 215, 216, 221, 253, 261], "param": [1, 31, 159, 171, 178, 189, 195, 220], "unix": [1, 151, 189, 190, 200, 248], "14295": 1, "invalid": [1, 6, 100, 118, 121, 143, 144, 187, 191, 270], "loglevel": 1, "14289": 1, "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 52, 54, 55, 56, 59, 60, 67, 83, 84, 85, 88, 97, 100, 102, 103, 107, 124, 135, 150, 151, 158, 159, 164, 185, 191, 215, 225, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274], "pkg_config_custom_cont": [1, 212], "pc": [1, 45, 55, 210, 211, 212], "14233": 1, "dict": [1, 89, 120, 131, 136, 150, 159, 172, 192, 209, 212, 221, 226, 227], "object": [1, 6, 19, 21, 27, 42, 45, 95, 100, 118, 120, 131, 132, 133, 134, 135, 136, 145, 157, 158, 159, 161, 162, 170, 175, 178, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 220, 223, 224, 225, 226, 227, 228, 229, 235, 245, 246, 252, 253, 254, 255, 258, 263, 266, 267], "fix_apple_shared_install_nam": [1, 180, 182, 207], "otool": [1, 183, 207], "install_name_tool": [1, 183, 207], "program": [1, 29, 45, 54, 55, 89, 132, 150, 207, 228, 244, 246], "14195": 1, "fpic": [1, 42, 52, 60, 77, 84, 85, 95, 100, 101, 103, 120, 126, 127, 189, 192, 209, 216, 221, 252, 253, 254, 256, 262], "header_onli": [1, 84, 120, 127, 135, 258], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 50, 59, 63, 67, 68, 73, 77, 82, 83, 84, 85, 89, 95, 100, 120, 122, 123, 135, 136, 141, 150, 151, 153, 179, 183, 185, 191, 192, 225, 226, 243, 248, 250, 258, 259, 260, 265, 275], "type": [1, 6, 37, 68, 74, 83, 89, 93, 98, 110, 120, 135, 136, 147, 161, 179, 189, 191, 192, 197, 198, 212, 219, 236, 239, 240, 246, 247, 248, 249, 250, 252, 253, 275], "cmake_package_version_compat": 1, "anynewervers": [1, 191], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 74, 77, 161, 247, 275], "won": [1, 4, 29, 39, 40, 50, 74, 105, 112, 118, 120, 151, 153, 159, 191, 200, 221, 245, 253, 261, 265], "14261": 1, "permit": [1, 273], "empti": [1, 4, 6, 89, 90, 111, 112, 120, 136, 150, 151, 159, 170, 178, 209, 212, 215, 225, 258, 259, 270, 271, 274], "14254": 1, "rm_safe": [1, 42, 84, 120, 126, 127, 135, 253], "never": [1, 74, 78, 82, 83, 87, 90, 94, 97, 99, 100, 102, 103, 106, 115, 120, 146, 171, 235, 247, 253, 259], "14238": 1, "gnu": [1, 45, 65, 70, 80, 84, 89, 100, 150, 153, 180, 187, 195, 196, 202, 207, 208, 209, 210, 211, 212, 216, 245], "make_program": [1, 89, 150], "14223": 1, "package_typ": [1, 38, 42, 95, 100, 101, 132, 135, 143, 160, 179, 260, 275], "lib": [1, 17, 21, 26, 35, 42, 50, 59, 88, 95, 99, 100, 118, 120, 124, 131, 133, 134, 136, 153, 183, 191, 192, 193, 200, 208, 209, 210, 211, 212, 215, 227, 233, 245, 253, 254, 255, 256, 258, 259, 261, 267, 275], "14215": 1, "clarif": [1, 74], "shown": [1, 4, 36, 100, 101, 125, 221], "queri": [1, 88, 89, 91, 100, 103, 112, 113, 116, 172], "14199": 1, "enabl": [1, 8, 10, 67, 77, 89, 120, 150, 152, 175, 187, 192, 200, 209, 235, 258, 273], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 50, 52, 55, 60, 62, 67, 74, 77, 78, 83, 88, 89, 109, 120, 121, 131, 136, 140, 141, 143, 150, 153, 154, 156, 179, 184, 190, 191, 192, 193, 202, 212, 217, 225, 231, 235, 244, 246, 247, 248, 250, 251, 253, 254, 256, 258, 262, 263, 265, 266, 267, 268, 269, 271, 272, 274], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 60, 63, 66, 74, 78, 83, 90, 109, 118, 120, 124, 130, 134, 138, 139, 142, 145, 146, 150, 151, 154, 156, 157, 159, 161, 162, 163, 164, 179, 181, 187, 190, 191, 196, 200, 204, 207, 215, 221, 248, 252, 254, 255, 256, 258, 261, 270, 271, 275], "14177": 1, "xcodedep": [1, 73, 180, 182, 186], "14168": 1, "respect": [1, 31, 36, 77, 107, 120, 151, 155, 156, 192, 195, 221, 245, 270, 272], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 50, 56, 59, 67, 92, 102, 109, 110, 118, 120, 131, 133, 134, 136, 138, 139, 150, 151, 152, 153, 155, 156, 157, 158, 161, 163, 164, 174, 183, 184, 185, 189, 191, 192, 200, 207, 209, 218, 227, 244, 245, 246, 248, 249, 254, 255, 256, 259, 260, 261, 267, 272], "14164": 1, "runner": [1, 26], "13985": 1, "leak": [1, 60, 154], "cmake_find_library_suffix": 1, "14253": 1, "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 67, 69, 74, 77, 78, 79, 80, 81, 86, 89, 102, 110, 112, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 135, 147, 150, 151, 155, 156, 157, 158, 162, 164, 166, 179, 180, 182, 188, 190, 195, 204, 206, 213, 219, 222, 250, 253, 255, 261, 262, 267], "14227": 1, "14190": 1, "osx": [1, 35, 62, 74, 131, 136, 192, 246], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 153], "cmake_generator_platform": [1, 153, 192], "14114": 1, "cppinfo": [1, 21, 80, 120, 131, 136, 180, 191, 255], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 59, 76, 83, 84, 87, 88, 89, 90, 94, 97, 99, 100, 102, 103, 104, 106, 107, 109, 110, 112, 115, 120, 123, 131, 132, 133, 134, 136, 138, 139, 145, 150, 151, 153, 155, 161, 179, 183, 185, 186, 187, 191, 195, 215, 231, 239, 242, 244, 246, 248, 249, 255, 259, 260, 261, 263, 265, 267, 270, 271, 274, 275], "summari": [1, 4, 8, 82, 217, 255], "delet": [1, 31, 42, 62, 78, 112, 118, 120, 127, 253], "thing": [1, 13, 18, 21, 29, 50, 67, 68, 74, 77, 78, 102, 107, 120, 135, 171, 179, 180, 192, 196, 207, 244, 246, 248, 250, 252, 254, 255, 260, 261, 262, 267, 275], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 68, 74, 77, 79, 120, 218, 237, 242, 243, 245, 246, 252, 254, 258, 260, 263, 264, 265, 271, 275], "14011": 1, "express": [1, 42, 49, 84, 108, 120, 133, 145, 146, 151, 192, 247, 269, 275], "14004": 1, "equival": [1, 60, 88, 89, 102, 103, 106, 113, 120, 122, 124, 129, 130, 136, 137, 146, 153, 175, 179, 189, 193, 195, 231, 245, 246, 247, 248, 254, 255, 266, 267, 271], "14002": 1, "13999": 1, "small": [1, 60, 74, 118, 129, 200, 241, 254, 259, 263, 270, 271], "13989": 1, "packageslist": [1, 168], "input": [1, 8, 59, 78, 82, 84, 89, 91, 93, 98, 100, 102, 103, 104, 105, 106, 108, 109, 112, 116, 135, 140, 149, 150, 155, 200, 221, 226, 246, 248, 258, 268, 272], "13928": 1, "associ": [1, 3, 6, 109, 111, 112, 151, 153, 192, 247, 275], "13918": 1, "13757": 1, "split": [1, 151], "two": [1, 6, 18, 45, 52, 74, 83, 84, 88, 93, 118, 120, 123, 124, 151, 160, 161, 179, 187, 192, 195, 204, 209, 225, 226, 235, 243, 244, 246, 252, 253, 258, 265, 267, 271], "13729": 1, "bindir": [1, 18, 39, 40, 95, 100, 136, 142, 190, 192, 209, 212, 218, 221, 255, 258, 260, 263], "13623": 1, "autopackag": [1, 180, 199], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 62, 74, 102, 111, 118, 120, 134, 153, 195, 273], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 62, 74, 77, 101, 117, 124, 126, 127, 128, 135, 149, 151, 153, 154, 161, 163, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 193, 210, 214, 215, 216, 217, 223], "subsystem": [1, 89, 120, 136, 150, 153, 180, 196, 222], "msys2": [1, 89, 150, 153, 235, 243], "14061": 1, "intermedi": [1, 102], "aggregated_compon": [1, 193], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 60, 62, 74, 83, 85, 87, 88, 90, 91, 97, 99, 100, 102, 103, 106, 108, 109, 110, 112, 115, 116, 120, 153, 159, 197, 198, 231, 240, 244, 247, 261, 269, 271, 272, 273, 274, 275], "14110": 1, "doubl": [1, 29, 111, 191, 240, 253], "setup": [1, 7, 41, 50, 55, 60, 220, 237], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 50, 200, 254], "14106": 1, "overlap": [1, 221], "14095": 1, "freebsd": [1, 8, 62, 74, 151, 153, 235], "14065": 1, "through": [1, 24, 94, 109, 120, 152, 162, 192, 220, 236, 242, 252, 254, 263], "root": [1, 10, 16, 18, 19, 27, 36, 38, 56, 59, 87, 89, 92, 94, 95, 100, 102, 133, 136, 150, 151, 153, 159, 161, 170, 171, 191, 209, 215, 217, 218, 244, 245, 247, 249, 253, 254, 259], "14051": 1, "irrespect": [1, 120, 135, 138, 139, 141, 225, 231, 248, 254], "problem": [1, 4, 6, 8, 74, 124, 241, 246, 263], "parent": [1, 120, 133, 148, 200, 256], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 60, 62, 74, 77, 95, 100, 101, 111, 156, 175, 183, 238], "libdir": [1, 17, 21, 95, 100, 131, 133, 136, 190, 192, 193, 200, 209, 211, 212, 218, 221, 255, 258, 259, 260, 267], "includedir": [1, 17, 21, 95, 100, 131, 133, 136, 190, 192, 193, 209, 211, 212, 221, 225, 255, 259, 267], "cmake_program": [1, 89, 150, 189, 192], "13940": 1, "str": [1, 17, 31, 36, 120, 135, 161, 168, 172, 175, 185, 196, 200, 217, 218, 220, 221, 223, 224, 225, 228, 248, 252, 259, 267], "13964": 1, "layer": [1, 153, 159, 254, 275], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 54, 56, 59, 60, 61, 74, 77, 78, 83, 84, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 106, 110, 112, 114, 115, 118, 120, 122, 131, 133, 136, 138, 139, 140, 151, 161, 162, 170, 174, 186, 200, 202, 207, 211, 217, 218, 226, 231, 236, 237, 240, 242, 244, 245, 246, 248, 249, 252, 253, 254, 255, 257, 258, 261, 265, 266, 267, 272, 273, 274, 275], "13944": 1, "unzip": [1, 6, 19, 27, 62, 120, 140, 199, 202, 240, 256, 266], "13937": 1, "13929": 1, "13967": 1, "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 52, 59, 89, 95, 100, 101, 133, 134, 140, 171, 192, 200, 204, 207, 220, 248, 252, 258, 259, 261], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 54, 56, 60, 74, 90, 100, 102, 103, 105, 107, 112, 120, 131, 135, 136, 138, 139, 140, 143, 151, 153, 161, 162, 178, 192, 235, 239, 240, 248, 255, 259, 262, 265, 267, 275], "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, 50, 52, 54, 55, 60, 62, 69, 74, 77, 89, 95, 100, 101, 109, 118, 120, 140, 150, 152, 154, 159, 162, 202, 204, 226, 238, 240, 241, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 61, 62, 69, 74, 89, 95, 100, 101, 118, 120, 131, 140, 153, 156, 159, 162, 204, 238, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 69, 74, 89, 95, 100, 101, 118, 120, 140, 151, 159, 162, 204, 226, 238, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "pull": [1, 74, 77, 204, 238, 271], "13898": 1, "overrid": [1, 39, 40, 78, 87, 89, 90, 94, 95, 97, 99, 100, 102, 106, 115, 118, 120, 124, 150, 151, 189, 192, 235, 246, 269], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 56, 59, 62, 67, 74, 84, 88, 89, 91, 100, 103, 108, 111, 116, 118, 120, 131, 133, 135, 136, 146, 150, 151, 153, 157, 158, 161, 189, 192, 196, 197, 198, 200, 218, 221, 225, 228, 235, 242, 246, 248, 249, 250, 254, 256, 259, 260, 267, 273], "13923": 1, "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 54, 60, 67, 118, 120, 126, 127, 151, 189, 207, 217, 248, 250, 253, 259, 262, 265, 266], "13833": 1, "relocat": [1, 29, 35, 206, 261], "build_polici": [1, 94, 95, 259], "debugg": 1, "13810": 1, "possible_valu": [1, 120], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 50, 56, 59, 60, 62, 74, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 112, 115, 116, 120, 122, 123, 124, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 153, 154, 156, 157, 158, 159, 163, 167, 170, 178, 179, 181, 185, 187, 189, 191, 193, 195, 196, 217, 221, 225, 232, 235, 246, 247, 252, 253, 256, 264, 265, 267, 268, 270, 271, 272, 273, 274, 275], "13796": 1, "optim": [1, 74, 94, 120, 123, 258], "hit": [1, 196, 241], "13771": 1, "sh": [1, 35, 39, 40, 45, 54, 89, 131, 150, 153, 195, 196, 197, 198, 208, 209, 217, 227, 240, 245, 246, 248, 249, 252, 260, 266, 267], "shell": [1, 35, 39, 40, 42, 62, 65, 89, 120, 145, 150, 195, 196, 200, 208, 209, 217], "13764": 1, "13748": 1, "auto": [1, 42, 77, 78, 89, 110, 150, 151, 153, 244], "home": [1, 4, 26, 27, 31, 60, 61, 77, 109, 110, 118, 120, 136, 148, 150, 152, 153, 155, 159, 173, 175, 210, 244, 245, 246, 254], "13746": 1, "render": [1, 21, 103, 109, 147, 149, 150, 154], "profile_nam": [1, 151], "13721": 1, "13718": 1, "understand": [1, 24, 31, 36, 47, 65, 70, 77, 81, 99, 107, 120, 146, 150, 161, 208, 209, 227, 236, 243, 254, 264], "13716": 1, "13712": 1, "skip_warn": [1, 89, 145, 150], "silenc": 1, "13706": 1, "info_invalid": [1, 95, 100], "13688": 1, "13680": 1, "mono": [1, 120], "13562": 1, "demonstr": [1, 248], "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 78], "field": [1, 50, 86, 90, 97, 100, 101, 103, 110, 113, 119, 120, 131, 133, 136, 149, 152, 153, 154, 162, 183, 192, 204, 207, 212, 231, 275], "13870": 1, "compiler_execut": [1, 89, 150, 151, 192, 209, 221, 227, 244], "13867": 1, "13857": 1, "suffix": [1, 159, 191, 212], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 175, 191, 199, 212], "d": [1, 7, 13, 27, 47, 56, 59, 83, 87, 88, 100, 102, 109, 118, 120, 132, 151, 179, 190, 192, 210, 240, 254, 259, 272], "13740": 1, "omit": [1, 21, 120, 150, 267], "l": [1, 87, 88, 90, 91, 93, 94, 97, 99, 100, 101, 102, 106, 112, 115, 116, 207, 208, 210, 212, 231], "libpath": [1, 233], "13704": 1, "13855": 1, "out": [1, 26, 29, 31, 36, 54, 55, 60, 74, 76, 84, 87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 115, 118, 131, 217, 221, 252, 256, 267, 271], "13853": 1, "13846": 1, "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 96, 97, 104, 193, 238, 267, 271, 275], "alia": [1, 109, 191, 207], "13763": 1, "dep": [1, 21, 36, 41, 54, 83, 99, 131, 143, 151, 160, 161, 185, 189, 191, 193, 215, 225, 227, 248, 252, 254], "13762": 1, "cmake_system_nam": [1, 89, 150, 192], "baremet": [1, 153], "13739": 1, "deactiv": [1, 49, 162, 192, 197, 198, 246, 273], "13707": 1, "13597": 1, "extend": [1, 43, 46, 77, 80, 81, 90, 97, 106, 121, 132, 156, 162, 188, 271, 273, 275], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 89, 131, 150, 192, 195, 196, 197, 198, 208, 209, 217, 221, 226, 227, 228, 240, 246, 248, 249], "13607": 1, "preliminari": 1, "dev": [1, 141, 153, 235], "premake5": 1, "13390": 1, "old": [1, 30, 32, 120, 153, 167, 268, 271], "login": [1, 86, 118, 149, 175, 202, 240], "13671": 1, "msg": [1, 145, 159], "13668": 1, "correct": [1, 40, 42, 77, 78, 82, 120, 133, 134, 136, 138, 139, 163, 183, 185, 191, 192, 196, 200, 220, 227, 245, 246, 255, 256, 259, 261, 265], "origin": [1, 4, 6, 8, 13, 24, 60, 62, 89, 102, 120, 124, 134, 149, 153, 195, 196, 221, 231, 247, 256, 259, 275], "13667": 1, "13661": 1, "respond": [1, 74], "forbidden": [1, 75, 105, 107, 124], "13626": 1, "13622": 1, "direct_deploi": [1, 102, 275], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 52, 72, 88, 91, 95, 100, 103, 111, 112, 116, 150, 210, 224, 240, 252, 253, 255, 256, 258, 259, 261, 267], "had": [1, 13, 56, 59, 60, 94, 120, 124, 248, 253, 256, 265, 267, 270], "13662": 1, "13657": 1, "close": [1, 94, 120, 200], "13631": 1, "13618": 1, "full_deploi": [1, 35, 102, 275], "collis": [1, 119, 191, 207, 209], "13610": 1, "13601": 1, "temp": [1, 88], "everyth": [1, 5, 13, 19, 42, 60, 62, 69, 74, 77, 88, 107, 112, 124, 133, 151, 180, 231, 248, 265], "13581": 1, "dictionari": [1, 89, 97, 120, 131, 136, 150, 159, 189, 192, 200, 202], "semant": [1, 120, 153, 254, 269], "13571": 1, "sdk": [1, 26, 35, 89, 150, 153, 183, 184, 186, 209, 221], "13531": 1, "13526": 1, "13505": 1, "legaci": [1, 123, 150, 192, 223], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 50, 118, 120, 136, 150, 244, 245, 252, 262, 272], "third": [1, 2, 14, 15, 52, 60, 61, 100, 120, 140, 154, 202, 231, 259, 266, 267], "parti": [1, 2, 14, 15, 52, 60, 61, 100, 120, 140, 154, 231, 259, 266, 267], "13461": 1, "android": [1, 8, 11, 25, 61, 63, 74, 80, 89, 120, 136, 150, 153, 180, 192, 219, 245], "cmake_legacy_toolchain": [1, 89, 150, 192], "android_use_legacy_toolchain_fil": [1, 89, 150, 192], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 50, 52, 56, 59, 60, 62, 66, 67, 68, 72, 73, 74, 76, 77, 78, 82, 83, 84, 85, 86, 88, 89, 90, 91, 97, 99, 100, 102, 105, 107, 108, 109, 110, 112, 113, 116, 120, 122, 123, 124, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 150, 151, 153, 155, 156, 157, 159, 162, 178, 179, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 204, 207, 208, 209, 210, 211, 214, 215, 216, 221, 223, 224, 225, 226, 227, 231, 232, 233, 235, 239, 240, 241, 244, 246, 247, 248, 252, 253, 254, 256, 258, 259, 260, 263, 265, 268, 270, 271, 272, 273, 274, 275], "cflag": [1, 45, 89, 95, 100, 136, 150, 151, 186, 192, 208, 209, 212, 216, 221, 226, 227], "cxxflag": [1, 49, 84, 89, 95, 100, 136, 150, 186, 192, 193, 208, 209, 216, 221, 226, 227, 233], "prevent": [1, 118, 120, 192], "13459": 1, "13458": 1, "authent": [1, 3, 60, 77, 110, 111, 149, 152, 154, 155, 175, 202, 239, 240], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 52, 60, 62, 68, 77, 82, 86, 88, 89, 90, 99, 103, 118, 120, 122, 131, 133, 134, 151, 153, 154, 155, 156, 160, 179, 192, 211, 218, 225, 231, 240, 242, 244, 246, 248, 251, 252, 253, 256, 258, 264, 265, 270, 272, 273, 275], "python_requires_extend": [1, 78, 132, 179], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 52, 88, 90, 118, 143, 145, 163, 215, 217, 231, 242, 246, 258, 259, 261, 265, 270, 272], "mydep": [1, 82, 131, 227], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 89, 150, 217, 221], "vs2022": 1, "rather": [1, 8, 50, 82, 89, 135, 150, 153, 209, 227, 257, 267], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 156, 158, 275], "paramet": [1, 31, 54, 66, 86, 136, 156, 161, 170, 172, 175, 181, 183, 184, 187, 189, 190, 191, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 220, 221, 223, 224, 225, 226, 228, 229, 231, 235, 254], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 50, 56, 60, 62, 63, 67, 74, 82, 85, 88, 97, 103, 105, 106, 120, 127, 134, 135, 136, 137, 141, 150, 151, 153, 163, 179, 187, 191, 192, 212, 217, 246, 247, 249, 253, 258, 259, 260, 261, 265, 266, 267, 270, 271, 272, 273], "13544": 1, "subcommand": [1, 96, 104, 159, 275], "underscor": [1, 254], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 89, 133, 150, 190, 192], "13488": 1, "composit": [1, 132, 153, 194], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 189, 207, 258], "autoreconf": [1, 207, 209, 252], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 50, 52, 60, 74, 78, 82, 84, 102, 109, 118, 119, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 144, 151, 153, 156, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 181, 183, 184, 185, 186, 189, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 224, 225, 226, 227, 228, 231, 232, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 266, 267, 270, 271, 272, 273, 274], "mirror": [1, 4, 202], "That": [1, 8, 13, 17, 24, 38, 66, 78, 102, 120, 140, 155, 157, 164, 185, 191, 196, 212, 217, 226, 245, 246, 247, 258, 262, 271, 274, 275], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 109, 110, 150, 151], "inclus": [1, 225], "13336": 1, "13324": 1, "version_rang": [1, 10, 89, 120, 150, 273], "resolve_prereleas": [1, 10, 89, 120, 150, 273], "prereleas": [1, 10, 273], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 77, 95, 100, 110, 151, 153, 192, 221, 244, 246, 254], "13359": 1, "vswhere": [1, 89, 150], "13355": 1, "convers": [1, 79, 86], "13323": 1, "13230": 1, "msbuild": [1, 43, 50, 58, 63, 72, 74, 89, 109, 136, 150, 151, 153, 180, 189, 222, 225, 226, 228, 254], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 74, 124, 131, 135, 149, 174, 266, 273], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 95, 100, 136, 193, 210, 211], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 120, 136, 151, 180, 192, 194, 195, 196, 245, 246, 249, 255, 260], "instanti": [1, 50, 120, 131, 185, 186, 191, 192, 193, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 227, 228, 233], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 153], "13326": 1, "insecur": [1, 89, 111], "ssl": [1, 89, 111, 136, 150, 152, 175, 202, 215], "13270": 1, "conanignor": [1, 89], "13269": 1, "traceback": 1, "vv": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 74, 118], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 74, 154, 155, 202], "13285": 1, "unexpect": [1, 77, 78, 145, 221, 271], "13282": 1, "runtime_typ": [1, 56, 59, 153, 164, 209], "reli": [1, 4, 50, 74, 78, 103, 138, 139, 212, 244, 259, 261], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 50, 54, 55, 61, 67, 68, 78, 80, 85, 87, 88, 92, 97, 99, 100, 102, 106, 109, 110, 120, 130, 134, 138, 139, 151, 160, 163, 171, 179, 185, 186, 189, 190, 191, 192, 197, 198, 200, 208, 209, 210, 212, 215, 216, 217, 218, 225, 226, 228, 233, 236, 243, 244, 245, 249, 251, 252, 253, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273, 274, 275], "pars": [1, 31, 74, 103, 150, 151, 156, 211, 231, 232, 256], "13266": 1, "unifi": [1, 6, 153], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 74, 78, 84, 88, 89, 91, 97, 102, 103, 105, 112, 120, 122, 126, 127, 129, 131, 135, 136, 137, 140, 141, 150, 179, 191, 193, 244, 247, 255, 270, 272, 273, 274], "state": [1, 7, 137, 175, 179, 192, 221, 247], "13211": 1, "13207": 1, "readm": [1, 162, 202, 266], "13186": 1, "13298": 1, "certain": [1, 62, 102, 108, 112, 131, 136, 150, 151, 153, 162, 225, 247, 253, 255, 262], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 62, 107, 259], "drive": [1, 56, 59], "13248": 1, "13191": 1, "gnu17": [1, 42, 95, 100, 110, 151, 153, 187, 244], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 61, 68, 71, 74, 78, 86, 89, 102, 106, 107, 110, 118, 120, 121, 123, 127, 131, 133, 134, 135, 136, 142, 150, 151, 153, 155, 156, 163, 183, 184, 191, 192, 193, 195, 197, 198, 208, 209, 212, 221, 225, 228, 239, 240, 243, 244, 253, 256, 258, 259, 262, 267, 272, 274, 275], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 67, 74, 76, 78, 100, 105, 107, 109, 118, 120, 128, 154, 162, 180, 192, 193, 199, 202, 218, 243, 244, 250, 252, 258, 271, 272], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 50, 52, 54, 55, 56, 59, 60, 61, 67, 69, 90, 91, 100, 102, 107, 117, 120, 132, 134, 153, 159, 180, 185, 186, 191, 204, 214, 226, 244, 246, 248, 249, 252, 254, 256, 258, 263, 266, 267, 272, 273, 275], "13117": 1, "13112": 1, "13110": 1, "13109": 1, "assign": [1, 78, 82, 120, 126, 135, 138, 139, 190, 191, 192, 211, 221, 231, 253, 260], "13099": 1, "ui": [1, 31, 239, 240], "13093": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 153, 275], "presets_prefix": 1, "prepend": [1, 136, 150, 151, 195, 196, 211], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 56, 59, 65, 68, 70, 72, 73, 74, 79, 81, 82, 84, 85, 86, 89, 90, 91, 95, 101, 103, 106, 110, 111, 116, 117, 118, 120, 124, 126, 127, 128, 131, 135, 137, 146, 147, 148, 149, 150, 153, 154, 155, 157, 159, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 186, 192, 193, 195, 200, 207, 209, 210, 212, 214, 215, 216, 220, 221, 226, 236, 237, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 273, 274], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 52, 54, 57, 58, 60, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 77, 78, 79, 84, 88, 90, 100, 109, 110, 119, 120, 121, 122, 126, 127, 129, 130, 131, 132, 135, 136, 140, 145, 150, 151, 153, 156, 159, 160, 161, 162, 163, 164, 179, 181, 184, 185, 186, 187, 190, 192, 200, 207, 209, 215, 216, 217, 218, 220, 221, 225, 227, 231, 233, 235, 236, 237, 242, 243, 244, 246, 248, 249, 250, 253, 256, 258, 259, 261, 262, 263, 264, 265, 266, 268, 275], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 60, 62, 74, 77, 78, 79, 81, 84, 85, 100, 109, 110, 119, 120, 122, 123, 131, 140, 150, 151, 153, 156, 159, 160, 161, 162, 179, 181, 191, 192, 218, 231, 237, 239, 250, 254, 259, 263, 265, 267, 275], "10166": 1, "13084": 1, "hash": [1, 81, 85, 95, 100, 101, 120, 140, 179, 202, 246, 247, 253, 255, 256, 272, 275], "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, 67, 78, 89, 150, 155, 271, 275], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 78, 111, 120, 128, 136, 145, 149, 152, 153, 158, 175, 233, 246, 254, 255, 263, 270, 271], "12913": 1, "system_requir": [1, 95, 100, 121, 131, 235], "12912": 1, "tar": [1, 4, 8, 120, 200, 202], "pax": 1, "python3": [1, 62, 118], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 50, 78, 94, 120, 121, 133, 162, 179, 185, 191, 192, 193, 195, 200, 209, 211, 212, 215, 236, 250, 254, 256, 258, 259, 260, 267], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 82, 84, 85, 88, 90, 94, 99, 102, 104, 106, 108, 118, 119, 120, 122, 123, 124, 125, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 146, 151, 153, 160, 161, 162, 170, 179, 184, 185, 187, 190, 191, 192, 195, 196, 207, 209, 217, 221, 223, 226, 235, 237, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274, 275], "perform": [1, 4, 69, 88, 89, 102, 105, 107, 110, 111, 112, 116, 118, 120, 150, 155, 162, 175, 178, 183, 200, 216, 231, 235, 239, 240, 248, 264, 266, 275], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 74, 120, 192, 244, 246, 248, 249, 260, 265], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 103], "12801": 1, "prev": [1, 13, 31, 95, 97, 100, 103], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 89, 150, 209], "12881": 1, "ref": [1, 13, 19, 40, 45, 52, 77, 92, 95, 97, 100, 118, 120, 131, 134, 141, 143, 146, 158, 160, 163, 168, 171, 256, 265, 266, 267], "12722": 1, "12699": 1, "required_conan_vers": [1, 89, 150], "between": [1, 7, 13, 27, 52, 82, 89, 99, 102, 120, 125, 131, 135, 136, 150, 179, 202, 239, 243, 245, 265, 270, 275], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 82, 154, 192, 239, 248], "12666": 1, "12636": 1, "conaninfo": [1, 24, 85, 88, 244, 249, 253, 261], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 191], "12578": 1, "12525": 1, "api": [1, 6, 27, 69, 74, 78, 80, 120, 151, 156, 159, 162, 239, 240, 248], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 260], "12351": 1, "12379": 1, "reciperefer": [1, 168, 170], "equal": [1, 88, 109, 120, 140, 157, 195, 273], "12506": 1, "compress": [1, 6, 55, 62, 89, 95, 100, 150, 178, 200, 202, 244, 245, 246, 248, 249], "uncompress": [1, 55, 62, 244, 246, 248, 249], "12378": 1, "12475": 1, "proper": [1, 7, 136, 207, 209, 219, 245], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 60, 62, 63, 67, 72, 77, 84, 85, 86, 91, 96, 97, 102, 104, 107, 120, 123, 150, 151, 159, 179, 185, 191, 192, 215, 231, 235, 239, 240, 244, 246, 252, 254, 256, 261, 263, 266, 268, 269, 270, 273, 275], "loos": 1, "12502": 1, "produc": [1, 77, 78, 84, 88, 89, 102, 104, 105, 107, 120, 123, 131, 133, 136, 150, 153, 179, 191, 192, 197, 198, 200, 256, 270], "drop": [1, 50, 102, 151], "compat_app": 1, "12484": 1, "transitive_head": [1, 95, 275], "12508": 1, "transitive_lib": [1, 95, 275], "static": [1, 8, 19, 21, 27, 38, 52, 59, 79, 82, 83, 84, 85, 95, 100, 106, 120, 127, 134, 136, 137, 153, 172, 174, 185, 190, 209, 225, 236, 243, 244, 248, 252, 253, 254, 255, 267, 270, 275], "uncommit": [1, 120], "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 231], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 126, 127, 140, 150, 153], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 52, 82, 84, 109, 120, 121, 124, 145, 150, 151, 179, 191, 195, 207, 212, 246, 248, 273], "char": [1, 29, 42, 55, 204, 244], "12053": 1, "12032": 1, "clicolor_forc": [1, 155], "12028": 1, "12050": 1, "output_fold": [1, 36, 87, 92, 94, 102, 161, 171], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 80, 147], "11675": 1, "11672": 1, "max": [1, 89, 150, 153], "11610": 1, "post_build_fail": 1, "hook": [1, 74, 78, 80, 89, 156], "11593": 1, "pre_gener": [1, 162], "post_gener": [1, 162], "cover": [1, 69, 133, 153, 237, 243, 260, 264], "around": [1, 8, 65, 66, 71, 72, 73, 74, 184, 189, 207, 214, 224, 235, 250], "brought": 1, "back": [1, 2, 10, 18, 56, 59, 61, 74, 82, 89, 108, 150, 274], "11575": 1, "11522": 1, "model": [1, 17, 21, 61, 74, 77, 79, 80, 85, 118, 119, 125, 131, 135, 136, 137, 141, 153, 157, 243, 250, 253, 254], "relationship": [1, 120, 275], "linkag": [1, 246], "autom": [1, 5, 13, 26, 74, 103, 120, 140, 141, 155, 226, 269, 271, 275], "flexibl": [1, 56, 59, 120, 146, 236, 243, 273, 275], "power": [1, 13, 74, 102, 156, 159, 192, 243, 275], "transpar": [1, 4, 11, 37, 56, 68, 244, 265, 275], "pythonapi": 1, "cleaner": [1, 275], "structur": [1, 6, 18, 42, 45, 52, 54, 55, 56, 59, 78, 97, 101, 102, 103, 117, 120, 136, 148, 151, 156, 170, 190, 215, 244, 248, 249, 254, 255, 256, 258, 259, 267, 270, 275], "account": [1, 6, 29, 82, 118, 120, 131, 134, 153, 179, 184, 190, 192, 195, 232, 245, 253, 260, 262, 268, 275], "simpler": [1, 5, 6, 41, 113, 131, 137], "immut": [1, 6, 19, 78, 82, 140, 154, 247, 251, 252, 255, 256, 262, 266, 272], "tutori": [2, 10, 21, 27, 29, 42, 47, 52, 54, 55, 56, 59, 61, 68, 74, 87, 90, 92, 94, 102, 105, 106, 107, 111, 114, 115, 116, 120, 122, 124, 126, 127, 131, 133, 134, 135, 136, 140, 142, 143, 218, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 274, 275], "aim": [2, 74, 95, 124, 146, 150, 153, 215, 262], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 50, 54, 55, 60, 61, 69, 74, 78, 87, 88, 94, 102, 103, 114, 118, 120, 122, 128, 133, 136, 138, 139, 140, 150, 153, 155, 161, 164, 181, 186, 191, 217, 218, 226, 228, 236, 239, 240, 241, 244, 245, 249, 252, 259, 265, 271], "engin": [2, 21, 108, 150, 270, 271], "administr": [2, 3, 240], "architect": 2, "adopt": 2, "design": [2, 18, 74, 132, 153, 248, 267, 275], "product": [2, 5, 6, 35, 61, 74, 78, 90, 107, 110, 124, 128, 135, 267], "team": [2, 5, 8, 50, 55, 74, 77, 82, 108, 109, 110, 118, 120, 153, 239, 240, 241, 244, 259], "plan": [2, 97, 131, 136], "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, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 69, 78, 79, 82, 83, 84, 85, 88, 97, 99, 102, 103, 106, 107, 108, 109, 118, 120, 123, 125, 127, 132, 133, 135, 136, 137, 138, 139, 140, 141, 143, 144, 150, 151, 153, 170, 179, 185, 187, 190, 191, 192, 193, 196, 212, 215, 217, 218, 225, 231, 235, 237, 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, 270, 271, 272, 273, 274], "ll": [3, 4, 31, 45, 54, 55, 67, 100, 151, 159, 192, 217, 226, 228, 244, 266], "free": [3, 4, 74, 95, 100, 118, 239, 240, 241], "tab": [3, 67], "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, 50, 52, 54, 55, 56, 59, 60, 61, 64, 67, 68, 69, 71, 74, 77, 78, 79, 82, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 108, 110, 115, 116, 118, 120, 123, 124, 125, 126, 127, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 146, 148, 149, 150, 151, 153, 157, 158, 159, 161, 162, 163, 164, 171, 183, 184, 185, 186, 190, 191, 192, 193, 196, 197, 200, 204, 210, 211, 212, 215, 218, 221, 223, 224, 225, 231, 235, 236, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 273, 274, 275], "imagin": [3, 10, 99, 191, 215, 248, 253, 261], "give": [3, 4, 8, 74, 86, 99, 110, 117, 197, 198], "upload_url": [3, 4, 89, 150], "myteam": [3, 4, 150], "myorg": [3, 4, 150], "next": [3, 26, 29, 45, 74, 85, 107, 120, 209, 225, 231, 245, 251, 252, 253, 260, 274], "anonym": [3, 118, 149, 154, 155], "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, 50, 52, 54, 60, 62, 67, 69, 77, 83, 84, 85, 86, 89, 90, 91, 97, 101, 102, 103, 106, 110, 112, 116, 117, 118, 120, 124, 126, 127, 128, 134, 135, 136, 140, 142, 148, 149, 150, 151, 153, 154, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 191, 192, 193, 200, 207, 209, 210, 212, 214, 215, 216, 220, 221, 226, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 274], "offici": [3, 31, 101, 156, 159, 217, 237, 275], "guid": [3, 4, 61, 236], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 52, 54, 56, 59, 60, 64, 67, 68, 74, 77, 79, 80, 81, 82, 84, 90, 94, 97, 103, 106, 107, 111, 116, 119, 120, 133, 137, 148, 150, 151, 152, 153, 156, 161, 179, 191, 215, 218, 234, 236, 237, 238, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "token": [3, 60, 118, 149, 154, 231], "live": [3, 13, 19, 120, 140, 146, 225, 275], "source_credenti": [3, 4, 80, 147], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 52, 62, 69, 88, 91, 109, 120, 131, 143, 146, 150, 151, 153, 160, 162, 164, 179, 185, 186, 195, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 228, 245, 247, 254, 255, 265, 270, 271], "last": [3, 7, 103, 137, 153, 174, 175, 216, 226, 268, 273, 275], "permiss": [3, 4, 62, 74, 78, 200, 239, 240], "feel": [3, 136], "accord": [3, 45, 67, 68, 84, 140, 151, 184, 191, 192, 228, 255, 273], "With": [3, 4, 7, 17, 21, 35, 36, 50, 62, 67, 74, 149, 151, 153, 204, 217, 246, 252, 260, 265], "common": [4, 6, 8, 13, 17, 18, 27, 35, 52, 77, 78, 84, 88, 89, 103, 120, 129, 130, 131, 135, 136, 139, 153, 156, 158, 159, 179, 184, 218, 224, 231, 235, 246, 247, 254, 261, 268, 269], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 60, 74, 75, 82, 84, 88, 90, 103, 105, 107, 109, 110, 118, 122, 123, 124, 127, 128, 129, 130, 131, 132, 134, 136, 137, 140, 143, 146, 151, 154, 179, 221, 236, 245, 247, 249, 251, 252, 255, 256, 260, 262, 266, 270, 271, 272, 273, 274], "canon": [4, 191], "page": [4, 27, 61, 120, 240], "keep": [4, 6, 18, 26, 60, 69, 78, 107, 108, 132, 153, 162, 179, 190, 191, 192, 200, 244, 247, 248, 259, 260, 268, 274, 275], "record": 4, "traceabl": [4, 6, 74, 260, 269, 274, 275], "purpos": [4, 7, 62, 78, 120, 127, 129, 131, 132, 150, 154, 156, 231, 235, 236, 237, 242, 260, 267, 271, 274, 275], "howev": [4, 5, 21, 35, 39, 40, 62, 63, 69, 97, 100, 118, 123, 146, 150, 153, 162, 191, 247, 248, 249, 253, 256, 270, 271, 272, 274], "often": [4, 29, 133, 273], "term": [4, 7, 254], "futur": [4, 7, 36, 60, 70, 77, 78, 79, 97, 109, 110, 120, 151, 157, 158, 161, 163, 179, 203, 248, 256], "mai": [4, 8, 19, 21, 26, 62, 74, 77, 91, 117, 120, 122, 126, 127, 136, 153, 185, 191, 192, 232, 241, 243, 246, 248, 249, 255, 256, 262], "encount": [4, 120], "thu": [4, 8, 78, 118, 120, 123, 129, 130, 207, 210, 275], "retriev": [4, 6, 7, 8, 60, 78, 88, 91, 100, 118, 120, 125, 202, 231, 244, 246, 249, 250, 251, 254, 256, 259, 272], "addition": [4, 8, 100, 124, 137, 145, 150, 191, 212], "alongsid": [4, 215, 236], "infrastructur": [4, 6], "trigger": [4, 145, 275], "sha256": [4, 120, 201, 202, 256], "signatur": [4, 161, 163, 164, 201], "few": [4, 36, 84, 155, 156, 158, 179, 260], "download_url": [4, 89, 150], "repres": [4, 6, 78, 82, 84, 85, 120, 191, 192, 193, 196, 221, 235, 246, 272, 275], "fetch": [4, 6, 62, 74, 86, 88, 101, 140, 231, 246], "either": [4, 8, 36, 109, 118, 120, 122, 131, 135, 136, 137, 145, 155, 163, 174, 178, 181, 195, 247, 273], "present": [4, 13, 36, 45, 50, 77, 79, 88, 89, 101, 102, 120, 137, 153, 155, 178, 187, 249], "prefer": [4, 47, 48, 62, 67, 82, 97, 154, 184, 192, 209, 231, 259, 265, 266, 267, 273], "ahead": [4, 10], "Being": [4, 179], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 50, 52, 56, 60, 62, 74, 77, 78, 79, 82, 84, 88, 90, 97, 99, 102, 103, 105, 106, 107, 109, 118, 120, 123, 127, 130, 131, 133, 134, 135, 136, 139, 140, 141, 150, 151, 153, 170, 181, 195, 209, 221, 225, 226, 241, 246, 254, 259, 260, 265, 266, 270, 274], "exclude_url": [4, 88, 89, 150], "start": [4, 5, 6, 17, 29, 45, 54, 55, 60, 62, 78, 97, 109, 119, 120, 135, 136, 151, 153, 154, 159, 162, 170, 200, 202, 212, 217, 221, 240, 241, 244, 254, 265, 266, 267, 270, 271, 272, 274, 275], "begin": [4, 74, 89, 150, 151, 243, 250], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 50, 67, 74, 78, 84, 85, 107, 118, 120, 127, 130, 131, 133, 135, 136, 140, 146, 149, 150, 151, 153, 159, 164, 181, 183, 192, 211, 217, 231, 244, 246, 247, 265, 266, 267, 271, 272, 274], "A": [4, 6, 13, 47, 52, 56, 59, 69, 74, 84, 88, 89, 91, 95, 99, 100, 103, 106, 107, 112, 116, 118, 120, 124, 126, 128, 135, 137, 139, 140, 141, 145, 150, 151, 158, 162, 170, 175, 178, 179, 189, 192, 195, 200, 202, 206, 223, 226, 235, 240, 244, 247, 250, 252, 253, 255, 257, 258, 259, 263, 265, 268, 271, 273, 275], "put": [4, 6, 17, 29, 36, 62, 88, 89, 94, 109, 120, 131, 133, 136, 140, 149, 150, 151, 156, 163, 196, 215, 216, 218, 254, 260, 263, 267, 268, 272], "its": [4, 13, 24, 29, 31, 36, 39, 40, 50, 59, 60, 62, 63, 74, 77, 81, 83, 84, 85, 86, 87, 88, 90, 91, 97, 101, 102, 110, 112, 120, 123, 131, 135, 136, 137, 140, 142, 149, 150, 151, 159, 161, 162, 179, 191, 192, 195, 207, 226, 243, 245, 247, 248, 254, 263, 265, 267, 268, 271], "strongli": [4, 8, 62, 82, 120, 123, 154, 221, 256], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 54, 55, 60, 63, 74, 78, 82, 84, 89, 97, 102, 103, 107, 110, 118, 120, 123, 128, 129, 134, 135, 137, 138, 140, 150, 151, 155, 162, 179, 191, 203, 235, 239, 240, 241, 249, 252, 254, 259, 265, 271, 273], "below": [4, 5, 6, 8, 67, 74, 82, 84, 85, 88, 125, 137, 140, 148, 150, 183, 185, 186, 192, 200, 209, 212, 215, 253], "relev": [4, 21, 56, 59, 61, 65, 66, 70, 71, 72, 73, 84, 150, 251, 252, 253, 255, 256, 260, 262, 263, 271], "els": [4, 6, 17, 26, 31, 39, 40, 52, 74, 118, 120, 134, 135, 136, 140, 151, 178, 187, 235, 246, 248, 251, 252, 255, 260, 262], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 52, 54, 62, 66, 74, 77, 89, 95, 97, 102, 109, 118, 120, 123, 125, 131, 133, 135, 136, 146, 151, 152, 153, 159, 161, 185, 186, 191, 192, 204, 209, 216, 221, 233, 235, 245, 248, 253, 254, 255, 256, 259, 260, 265, 271, 272, 273], "blob": [4, 69, 275], "belong": [4, 88, 91, 103, 107, 120, 178, 180, 191, 200, 212, 245, 254, 260, 263, 275], "artifactori": [4, 13, 63, 74, 118, 156, 239, 241], "describ": [4, 5, 6, 8, 10, 45, 55, 81, 83, 86, 98, 120, 131, 133, 139, 149, 187, 192, 193, 221, 267, 274], "approach": [4, 6, 8, 13, 29, 41, 50, 60, 74, 77, 78, 79, 82, 84, 102, 120, 133, 134, 135, 136, 137, 138, 140, 151, 153, 159, 179, 189, 191, 203, 231, 245, 252, 259, 260, 271, 274], "deal": [4, 9, 79, 123, 135], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 52, 54, 59, 60, 74, 83, 84, 85, 88, 91, 100, 106, 109, 112, 118, 120, 131, 132, 135, 137, 146, 150, 153, 163, 179, 185, 186, 189, 191, 192, 196, 197, 200, 215, 225, 235, 246, 255, 256, 261, 262, 265, 267, 270, 271, 272, 274, 275], "travers": [4, 148], "until": [4, 8, 67, 78, 148, 149, 154, 157, 254], "client": [4, 7, 13, 31, 50, 67, 74, 77, 86, 89, 110, 117, 118, 120, 149, 162, 240, 241, 246, 254], "regard": [4, 74, 79, 106, 153, 162, 200, 261], "capabl": [4, 7, 101, 102, 151, 192, 248, 275], "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, 50, 52, 54, 55, 56, 59, 60, 69, 74, 76, 77, 79, 82, 83, 85, 88, 89, 90, 91, 95, 97, 98, 99, 100, 102, 103, 105, 106, 107, 108, 109, 112, 113, 116, 117, 118, 120, 124, 131, 132, 135, 136, 137, 139, 140, 143, 144, 146, 150, 151, 152, 153, 160, 161, 162, 179, 185, 187, 189, 190, 191, 192, 195, 197, 198, 200, 202, 204, 207, 210, 212, 215, 221, 223, 225, 226, 227, 228, 231, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 273, 274, 275], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 52, 60, 62, 67, 74, 77, 83, 84, 85, 90, 97, 102, 103, 105, 106, 107, 109, 117, 118, 120, 124, 131, 141, 146, 151, 153, 179, 184, 185, 191, 192, 197, 202, 212, 215, 217, 244, 245, 247, 248, 249, 252, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 271, 273, 274, 275], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 62, 77, 89, 95, 100, 110, 155, 210, 244, 246, 252, 253, 254, 255, 256, 258, 261], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 50, 52, 54, 55, 56, 59, 83, 88, 120, 128, 133, 134, 191, 200, 215, 244, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272], "net": [4, 89, 95, 100, 118, 150], "fossil": 4, "gz": [4, 120, 200, 202], "madler": 4, "v1": [4, 187], "newli": 4, "therefor": [4, 8, 67, 123, 200, 235, 258], "dure": [4, 8, 26, 56, 60, 67, 79, 120, 127, 137, 189, 221, 254, 266, 273], "address": [4, 8, 135, 153, 269], "scenario": [4, 7, 40, 41, 42, 60, 62, 84, 120, 122, 123, 136, 137, 151, 157, 248, 259, 275], "ce": [4, 74, 239], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 53, 56, 57, 59, 60, 66, 71, 74, 77, 78, 90, 97, 109, 118, 120, 121, 122, 124, 132, 137, 146, 159, 162, 179, 214, 215, 216, 218, 236, 239, 241, 243, 246, 248, 250, 254, 256, 257, 258, 262, 265, 266, 273, 274], "suffici": [4, 118], "instruct": [4, 62, 67, 77, 121, 134, 153, 246], "author": [4, 6, 8, 50, 60, 95, 132, 154, 254], "agent": [4, 60, 97], "done": [5, 6, 36, 38, 50, 52, 74, 77, 78, 81, 97, 105, 107, 112, 118, 122, 123, 124, 131, 136, 137, 139, 140, 149, 151, 153, 155, 160, 161, 162, 171, 179, 183, 191, 192, 196, 197, 198, 207, 238, 245, 247, 248, 252, 254, 255, 263, 265, 266, 267, 268, 273, 274, 275], "much": [5, 6, 78, 122, 129, 140, 179, 254, 266, 275], "fulli": [5, 35, 60, 74, 105, 107, 120, 137, 138, 139, 161, 185, 186, 192, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 227, 228, 233, 265, 275], "fork": [5, 8, 120], "maintain": [5, 8, 18, 74, 97, 105, 120, 135, 146, 151, 162, 212, 247, 268], "pr": [5, 42, 49, 56, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 151, 215, 217, 245], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 54, 55, 60, 62, 63, 67, 74, 76, 77, 79, 83, 85, 88, 89, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 112, 113, 116, 117, 118, 120, 124, 129, 131, 132, 134, 136, 137, 139, 143, 146, 150, 151, 152, 153, 160, 163, 179, 185, 191, 197, 198, 202, 203, 207, 210, 212, 215, 223, 225, 228, 244, 245, 246, 247, 248, 249, 251, 254, 258, 259, 265, 270, 271, 272, 273, 274], "13": [5, 6, 13, 24, 35, 42, 83, 85, 88, 91, 99, 100, 102, 103, 106, 110, 112, 113, 116, 117, 124, 146, 151, 153, 160, 210, 244, 247, 251], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 59, 60, 74, 84, 89, 90, 91, 103, 112, 120, 121, 124, 127, 129, 130, 133, 134, 135, 137, 150, 151, 153, 179, 237, 239, 251, 252, 253, 254, 255, 256, 262, 263, 266, 267, 272, 274], "mostli": [5, 31, 45, 120, 137, 153, 162, 235], "proprietari": [5, 74, 154, 211], "idea": [5, 131, 150, 271, 275], "further": [5, 82, 120, 124, 153, 192, 275], "soon": [5, 63, 74, 275], "straightforward": [5, 81, 90, 102, 131, 264, 270], "mani": [5, 6, 45, 49, 50, 60, 62, 69, 74, 77, 78, 79, 84, 105, 109, 131, 151, 179, 196, 242, 265, 268, 271, 275], "advantag": [5, 62, 160, 186, 226, 248], "mitig": [5, 50, 196], "risk": [5, 50, 60, 77, 150, 273], "befor": [5, 6, 7, 10, 26, 45, 54, 55, 60, 116, 120, 122, 126, 131, 133, 140, 143, 151, 161, 162, 179, 196, 200, 209, 214, 217, 221, 227, 231, 235, 245, 246, 248, 249, 252, 253, 256, 260, 267, 271, 275], "No": [5, 24, 50, 120, 127, 246, 258, 274], "central": [5, 74, 237], "outag": 5, "adapt": [5, 81, 109, 110, 120], "perfectli": [5, 50, 77, 146], "minut": [5, 103, 112], "week": [5, 103, 112, 268], "appli": [5, 8, 49, 50, 52, 78, 79, 84, 86, 87, 88, 90, 94, 97, 99, 100, 102, 105, 106, 107, 110, 115, 118, 120, 122, 123, 127, 130, 131, 136, 140, 150, 151, 153, 185, 192, 194, 204, 217, 245, 246, 247, 249, 250, 252, 253, 258, 259, 262, 270, 273, 275], "wouldn": [5, 50, 62, 67, 120, 189], "elimin": [5, 265], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 54, 156], "diff": [5, 52, 99, 103, 204], "trim": [5, 106], "fire": [5, 97, 140, 179, 267], "effici": [5, 35, 55, 74, 82, 120, 135, 225, 244, 275], "thank": [5, 26, 39, 40, 45, 55, 84, 156, 159, 259], "secondari": [5, 74], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 60, 67, 69, 78, 97, 109, 124, 126, 127, 132, 135, 136, 149, 151, 160, 161, 191, 193, 200, 207, 217, 226, 237, 240, 241, 243, 244, 245, 247, 248, 250, 253, 254, 255, 261, 263, 269, 270, 273, 274], "good": [5, 19, 60, 74, 75, 82, 107, 109, 118, 120, 122, 124, 125, 131, 132, 136, 137, 150, 170, 226, 228, 239, 251, 252, 255, 262, 266, 270, 271, 274], "subject": [6, 7, 13, 31, 74, 95, 101, 117, 124, 126, 127, 128, 135, 149, 151, 153, 154, 157, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 191, 193, 210, 214, 215, 216, 217], "stabil": [6, 7, 13, 31, 69, 74, 101, 103, 110, 117, 124, 126, 127, 128, 135, 148, 149, 151, 153, 154, 157, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 193, 200, 210, 214, 215, 216, 268], "typic": [6, 8, 13, 27, 39, 40, 50, 59, 60, 62, 67, 77, 84, 120, 126, 129, 130, 131, 133, 136, 137, 151, 154, 163, 183, 184, 190, 191, 193, 196, 212, 218, 224, 229, 235, 245, 246, 248, 252, 253, 255, 258, 259, 260, 265, 266, 268, 275], "compos": [6, 102, 136, 150, 151, 167, 174, 184, 192, 195, 231, 258], "But": [6, 7, 13, 29, 39, 40, 50, 60, 74, 84, 94, 103, 108, 120, 123, 131, 142, 144, 145, 151, 159, 163, 191, 212, 215, 245, 247, 248, 254, 258, 260, 270, 271, 272], "normal": [6, 35, 42, 71, 77, 112, 120, 128, 159, 162, 195, 265, 273], "consumpt": [6, 21, 74, 121, 146, 248], "complianc": [6, 123, 275], "technic": [6, 120], "busi": [6, 275], "reason": [6, 8, 41, 50, 60, 77, 78, 90, 94, 107, 140, 154, 260, 267, 270, 272], "suit": [6, 146, 151, 218, 252, 258], "heavi": [6, 29, 74, 120, 122, 158], "pdb": [6, 29], "coverag": [6, 191, 275], "sanit": 6, "analysi": [6, 89, 150], "exact": [6, 47, 48, 78, 82, 88, 105, 107, 112, 120, 123, 151, 175, 186, 200, 226, 231, 247, 254, 265, 266, 267, 272, 274], "relat": [6, 45, 62, 71, 79, 120, 131, 150, 175, 186, 192, 200, 212, 221, 248, 253, 254, 266, 275], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 50, 60, 62, 67, 74, 76, 77, 84, 89, 97, 102, 109, 112, 118, 120, 122, 129, 133, 134, 135, 143, 144, 150, 155, 162, 179, 191, 192, 195, 218, 235, 239, 240, 248, 252, 253, 255, 259, 260, 265, 269, 270, 272, 275], "regul": 6, "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 60, 77, 85, 90, 112, 122, 129, 130, 131, 134, 135, 136, 149, 154, 155, 159, 196, 244, 247, 249, 253, 254, 258, 265, 267, 270, 271, 273, 275], "lot": [6, 8, 262, 273, 275], "impact": [6, 8], "experi": [6, 120, 122, 241, 273, 275], "cost": [6, 78], "furthermor": [6, 54, 78, 275], "append": [6, 26, 49, 62, 89, 118, 120, 136, 138, 139, 150, 151, 157, 163, 189, 191, 192, 195, 196, 200, 208, 209, 210, 226, 227, 260], "highlight": [6, 26, 145, 195, 215, 256], "probabl": [6, 31, 192, 218, 225, 247], "scan": [6, 205], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 55, 56, 59, 60, 63, 67, 74, 76, 79, 82, 83, 88, 91, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 117, 118, 120, 124, 131, 132, 135, 137, 140, 141, 143, 144, 146, 151, 153, 160, 161, 179, 189, 190, 191, 192, 195, 197, 198, 200, 202, 204, 207, 212, 215, 221, 223, 225, 226, 227, 228, 235, 241, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 273, 274, 275], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 54, 56, 59, 60, 82, 84, 102, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 164, 179, 181, 183, 184, 185, 186, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 274], "Or": [6, 89, 122, 131, 151, 192, 211, 227, 233], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 52, 60, 89, 146, 150, 180, 188, 192, 218, 245, 248, 254, 256, 258, 260, 263, 265, 266, 267], "mybuild": [6, 120], "recipe_fold": [6, 16, 18, 60, 95, 100, 129, 130, 131, 132, 138, 139], "dst": [6, 17, 38, 59, 120, 128, 200, 261], "join": [6, 16, 17, 18, 19, 36, 39, 40, 52, 59, 77, 120, 130, 132, 133, 134, 136, 138, 139, 142, 151, 162, 163, 179, 191, 192, 195, 200, 218, 248, 252, 258, 259, 260, 261, 263, 267], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 54, 55, 63, 65, 66, 70, 71, 72, 73, 74, 78, 84, 86, 90, 103, 104, 106, 120, 125, 134, 135, 137, 138, 147, 150, 157, 179, 190, 192, 193, 200, 218, 227, 235, 236, 244, 251, 260, 263, 264, 266, 270, 271], "mylog": 6, "build_fold": [6, 17, 59, 78, 95, 100, 101, 131, 133, 134, 162, 190, 200, 215, 220, 258, 259, 260, 261], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 50, 56, 59, 62, 67, 79, 82, 84, 88, 97, 98, 100, 102, 105, 107, 109, 112, 118, 120, 122, 132, 135, 136, 140, 142, 145, 146, 151, 153, 161, 163, 179, 185, 191, 192, 206, 221, 235, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 261, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "clutter": [6, 218], "accross": [6, 82], "sai": [6, 13, 16, 18, 38, 41, 52, 84, 88, 99, 102, 107, 120, 150, 151, 185, 225, 253, 267], "no_copy_sourc": [6, 122, 258], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 54, 59, 74, 77, 83, 84, 85, 88, 97, 98, 103, 108, 109, 120, 140, 151, 153, 154, 161, 179, 181, 186, 191, 192, 196, 215, 235, 244, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 264, 265, 267, 270, 271, 272, 274, 275], "post_export": [6, 162], "post_sourc": [6, 162], "post_build": [6, 156, 162], "similar": [6, 8, 18, 56, 59, 62, 69, 74, 91, 94, 107, 116, 118, 120, 133, 141, 151, 159, 179, 191, 193, 195, 231, 244, 251, 253, 256, 258, 267, 273], "To": [6, 24, 26, 29, 31, 36, 55, 60, 62, 67, 68, 77, 103, 107, 110, 112, 120, 124, 132, 133, 140, 145, 150, 151, 154, 157, 162, 185, 190, 191, 192, 197, 198, 200, 207, 208, 209, 218, 244, 246, 248, 249, 255, 256, 265, 267, 271, 273, 274], "achiev": [6, 8, 39, 60, 78, 122, 135, 161, 186, 191, 200, 226, 243, 248, 254, 258, 271, 274, 275], "didn": [6, 47, 50, 60, 77, 83, 254, 258], "far": [6, 246, 247, 248, 251, 253, 265, 275], "r": [6, 13, 31, 35, 60, 69, 77, 83, 85, 87, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 112, 113, 115, 116, 231, 240, 242, 247, 268, 272], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 258], "By": [6, 21, 41, 48, 56, 74, 77, 82, 87, 88, 89, 90, 94, 97, 99, 100, 102, 103, 106, 110, 115, 116, 118, 120, 136, 149, 150, 155, 179, 191, 192, 195, 207, 209, 210, 212, 214, 221, 231, 235, 271, 272], "situat": [6, 13, 35, 39, 40, 84, 105, 112, 120, 122, 134, 135, 139, 151, 179, 191, 212, 269, 270], "sometim": [6, 7, 29, 52, 77, 90, 120, 141, 247, 252, 256, 258, 264], "mix": [6, 84, 179], "recov": [6, 60, 200], "previous": [6, 13, 24, 31, 36, 62, 102, 107, 149, 151, 153, 192, 195, 217, 249, 256, 259, 270], "under": [6, 8, 36, 65, 70, 72, 73, 74, 85, 118, 120, 133, 135, 151, 159, 162, 204, 221, 231, 235, 241, 244, 254, 259, 264, 273], "collect": [6, 36, 100, 102, 131, 136, 140, 200, 210, 253, 262], "recal": [6, 50, 105, 107, 112, 124, 127, 151, 155, 185, 189, 192], "At": [6, 10, 21, 26, 67, 74, 78, 107, 120, 131, 153, 200, 208, 216, 217], "moment": [6, 7, 35, 78, 118, 120, 131, 136, 153, 208, 216], "addit": [6, 8, 62, 63, 89, 90, 104, 120, 137, 150, 151, 153, 175, 182, 192, 200, 202, 209, 221, 226, 227, 228, 248, 249, 255], "quit": [6, 150, 179, 241], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 78, 102, 107, 120, 124, 129, 130, 132, 134, 140, 146, 185, 186, 243, 252, 253, 271, 273], "metatada": 6, "best": [6, 7, 13, 35, 60, 82, 84, 88, 90, 103, 105, 110, 122, 123, 124, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 140, 143, 151, 154, 174, 179, 249, 260, 270, 272, 274], "mandatori": [6, 36, 50, 56, 59, 84, 105, 109, 120, 158, 161, 179, 254], "frequent": [6, 8, 200], "excepcion": 6, "decompress": [6, 200, 202, 244, 249, 264], "consid": [6, 7, 8, 21, 45, 74, 82, 83, 84, 88, 97, 120, 123, 125, 157, 185, 187, 192, 221, 248, 272], "zip": [6, 8, 19, 52, 89, 110, 116, 120, 140, 154, 200, 202, 239, 240, 250, 266], "yourself": [6, 56, 59], "categori": [6, 245], "illustr": [6, 83, 274], "later": [6, 7, 13, 26, 67, 69, 90, 97, 98, 100, 120, 123, 127, 130, 136, 145, 151, 175, 200, 231, 237, 242, 247, 248, 252, 253, 259, 269, 271], "necessarili": [6, 120, 271], "ton": 6, "assum": [6, 29, 35, 56, 67, 74, 78, 82, 83, 88, 91, 99, 103, 112, 116, 120, 132, 136, 141, 151, 153, 155, 157, 185, 191, 215, 225, 244, 246, 248, 249, 274], "stage": [6, 26, 62, 90, 94, 153, 162], "applic": [6, 8, 27, 38, 45, 48, 54, 55, 56, 59, 62, 74, 77, 83, 84, 100, 120, 124, 135, 137, 143, 191, 192, 198, 200, 212, 225, 236, 241, 243, 244, 249, 250, 254, 257, 258, 260, 263, 265, 270, 275], "cp": [6, 35, 60], "todo": [6, 170], "hear": 6, "feedback": [6, 74, 79, 273], "continu": [7, 74, 78, 79, 105, 118, 238, 267, 271], "conveni": [7, 13, 69, 103, 109, 120, 140, 141, 151, 161, 164, 179, 191, 195, 197, 198, 247, 260, 263], "recent": [7, 21, 103, 112, 268], "transfer": [7, 8, 50, 118, 275], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 103], "b": [7, 21, 24, 29, 42, 52, 62, 87, 88, 90, 94, 97, 99, 100, 102, 106, 110, 115, 140, 150, 204, 210, 215, 245, 252, 253, 255, 256, 258, 261, 267], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "well": [7, 60, 74, 76, 94, 103, 117, 120, 133, 153, 189, 191, 192, 212, 221, 254, 275], "pkg773791b8c97aa": 7, "substitut": [7, 155, 235], "storag": [7, 74, 88, 118, 150, 156, 202, 241, 272], "transitori": 7, "strategi": [7, 8, 60, 135, 140, 266, 275], "proof": 7, "stabl": [7, 62, 103, 109, 110, 120, 150, 151], "expect": [7, 10, 42, 45, 60, 78, 94, 99, 102, 120, 122, 140, 150, 153, 201, 218, 254, 256, 266, 272], "fantast": 8, "1500": 8, "contribut": [8, 74, 196, 204, 236, 237], "great": [8, 62, 74, 77, 240, 275], "knowledg": [8, 61, 74, 77], "wide": [8, 62, 84, 246, 248, 249, 254], "variant": [8, 70], "On": [8, 45, 56, 59, 84, 118, 141, 153, 217, 241, 244, 245, 246, 254], "top": [8, 137, 151, 231], "contributor": [8, 74], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 91, 120, 192, 246], "snapshot": [8, 247, 271], "contrari": 8, "e": [8, 42, 62, 74, 77, 88, 91, 92, 95, 97, 99, 100, 102, 103, 106, 109, 112, 116, 118, 120, 124, 150, 151, 152, 153, 183, 187, 189, 192, 200, 207, 209, 210, 212, 215, 221, 225, 226, 235, 255, 256, 275], "g": [8, 35, 42, 47, 48, 77, 87, 88, 91, 92, 97, 99, 100, 102, 103, 106, 109, 112, 116, 118, 120, 150, 151, 152, 153, 160, 171, 183, 187, 189, 192, 197, 200, 207, 209, 210, 212, 215, 221, 225, 226, 235, 244, 245, 246, 248, 249, 256, 265, 266, 267], "opencv": [8, 118, 141, 158], "greater": 8, "remain": [8, 118, 120, 155, 185, 195, 221], "older": [8, 74, 105, 108, 272, 273, 274], "push": [8, 60, 74, 231], "ecosystem": [8, 79, 84, 217], "hand": [8, 74, 84, 106, 122, 141], "combin": [8, 87, 90, 97, 99, 100, 102, 106, 108, 110, 115, 134, 140, 274], "mean": [8, 13, 29, 31, 35, 39, 40, 50, 62, 67, 74, 77, 78, 82, 83, 84, 88, 91, 99, 100, 101, 102, 103, 112, 116, 120, 122, 124, 127, 131, 135, 136, 140, 143, 146, 151, 153, 155, 157, 158, 170, 178, 179, 185, 191, 195, 196, 200, 207, 209, 218, 235, 246, 247, 258, 262, 264, 267, 270, 271, 272, 273], "languag": [8, 38, 42, 45, 49, 54, 55, 74, 186, 244], "pip": [8, 60, 118, 241], "pypi": [8, 62], "npm": 8, "cargo": 8, "discourag": [8, 88, 120, 154, 179, 221, 256], "unconstrain": 8, "manner": [8, 265], "guidelin": [8, 61, 62, 74, 75, 180], "seri": [8, 120, 264], "highli": [8, 24, 31, 36, 45, 54, 55], "mention": [8, 95, 100, 135, 137, 151, 185, 191, 209, 216, 221, 227, 252, 262, 267, 275], "earlier": [8, 74, 273], "caus": [8, 78, 120, 124, 137, 143, 191, 212, 254, 256, 270, 271, 272], "solver": 8, "actual": [8, 13, 19, 39, 40, 74, 77, 84, 94, 112, 116, 122, 131, 137, 141, 151, 153, 178, 196, 197, 198, 200, 235, 242, 247, 267, 270, 271, 274], "4": [8, 10, 21, 26, 48, 54, 77, 82, 83, 100, 103, 107, 117, 118, 120, 125, 131, 135, 141, 146, 150, 151, 153, 179, 192, 215, 245, 248, 251, 258, 268, 274], "5": [8, 10, 67, 77, 82, 89, 97, 102, 105, 106, 107, 108, 120, 124, 131, 135, 151, 153, 164, 202, 225, 247, 271, 273, 274], "greatli": [8, 275], "encourag": [8, 74, 120, 254, 266], "consist": [8, 18, 82, 84, 89, 90, 270, 271, 274, 275], "rust": 8, "technologi": [8, 153], "upstream": [8, 60, 120, 124, 131, 137, 178, 191, 265, 270], "period": [8, 268], "downtim": 8, "schedul": 8, "effort": [8, 131, 275], "made": [8, 56, 88, 275], "unschedul": 8, "rare": [8, 122, 136, 138], "treat": [8, 89, 137, 150, 153, 200], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 118, 153, 239, 241], "strong": [8, 74, 84, 151], "uptim": 8, "protect": [8, 62, 119, 153], "transient": 8, "network": [8, 21, 89, 118, 147], "extern": [8, 19, 26, 49, 62, 250, 254, 256, 259, 261, 272], "These": [8, 21, 31, 45, 72, 74, 82, 89, 90, 102, 118, 129, 130, 131, 133, 145, 147, 150, 151, 154, 155, 159, 175, 190, 192, 193, 207, 208, 212, 221, 245, 246, 248, 253, 254, 258, 259, 263, 267, 271, 275], "industri": [8, 79], "financ": 8, "robot": 8, "embed": [8, 74, 82, 83, 120, 137, 153], "stronger": 8, "licens": [8, 36, 55, 74, 95, 100, 101, 102, 109, 129, 130, 131, 132, 134, 162, 239, 244, 250, 254, 262, 266, 272], "medic": 8, "automot": 8, "advis": [8, 138, 139, 151], "instanc": [8, 31, 42, 67, 95, 100, 118, 120, 124, 133, 134, 135, 150, 151, 159, 181, 183, 187, 191, 192, 195, 196, 197, 198, 209, 217, 221, 223, 224, 225, 228, 231, 255, 263], "backport": [8, 204, 275], "suitabl": [8, 153], "review": [8, 67, 257, 258, 260, 267], "tight": 8, "subsect": 8, "come": [10, 56, 59, 62, 131, 151, 159, 187, 192, 212, 221, 240, 246, 259, 275], "glanc": 10, "becom": [10, 62, 84, 129, 130, 179, 272, 275], "unfeas": 10, "benefit": 10, "interest": [10, 13, 74, 88, 90], "pick": [10, 247], "action": [10, 31, 54, 60, 67, 118, 247, 255], "summar": [10, 79, 275], "libpng": [10, 97, 101, 185], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 64, 68, 69, 74, 78, 85, 140, 247, 254, 266, 270], "invoc": [10, 13, 36, 65, 66, 71, 72, 73, 78, 122, 145, 156, 158, 183, 184, 185, 186, 189, 192, 197, 207, 214, 215, 224, 226], "8": [10, 77, 82, 102, 113, 120, 125, 131, 151, 153, 184, 197, 198, 200, 204, 221, 225, 226, 228, 247, 251, 252, 253, 262, 263, 273], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 54, 62, 74, 77, 82, 103, 117, 118, 125, 140, 143, 153, 185, 204, 211, 245, 247, 248, 249], "40": [10, 103, 272], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 52, 77, 82, 89, 106, 124, 125, 131, 146, 150, 151, 153, 202, 245, 273], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 74, 83, 85, 91, 102, 120, 131, 146, 212, 215], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 103, 259], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 83, 85, 100, 103, 124, 153], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 52, 54, 55, 67, 94, 97, 108, 129, 137, 146, 192, 218, 225, 242, 244, 257, 258, 260, 263, 265, 267, 270, 273], "usual": [10, 62, 120, 137, 142, 151, 156, 161, 185, 195, 265, 267, 271], "behaviour": [10, 118, 151, 191, 235, 253, 254, 255], "googl": [11, 42, 43, 54, 66, 80, 89, 150, 180, 204, 214, 215, 216], "ndk": [11, 25, 26, 64, 120, 136, 181, 192, 221, 245], "macro": [11, 37, 45], "modul": [11, 37, 45, 62, 69, 118, 120, 131, 132, 151, 156, 160, 179, 191, 215], "concaten": [13, 91, 116], "11": [13, 24, 55, 77, 85, 88, 89, 95, 99, 102, 103, 112, 113, 120, 131, 137, 146, 150, 151, 152, 153, 160, 185, 191, 197, 198, 204, 207, 212, 215, 225, 228, 244, 245, 246, 247, 248, 249, 251, 252, 258, 262, 263, 266, 273], "sent": 13, "12": [13, 21, 24, 26, 27, 95, 103, 112, 113, 146, 151, 153, 187, 204, 212, 221, 241, 247, 258, 259, 272], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 106], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 103], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 52, 56, 59, 60, 62, 73, 77, 84, 85, 88, 89, 91, 95, 99, 100, 101, 103, 110, 112, 116, 120, 123, 126, 127, 132, 135, 136, 141, 144, 150, 151, 153, 161, 164, 172, 181, 183, 184, 185, 186, 189, 191, 192, 195, 197, 198, 207, 208, 209, 210, 212, 214, 215, 216, 217, 221, 224, 225, 226, 227, 228, 233, 235, 244, 245, 246, 247, 248, 252, 254, 256, 258, 259, 260, 263, 271, 272], "x86_64": [13, 24, 26, 27, 35, 42, 56, 59, 77, 84, 85, 95, 99, 103, 110, 126, 133, 141, 151, 153, 161, 164, 184, 185, 187, 192, 197, 198, 235, 244, 245, 246, 248, 249, 252, 254, 259, 260, 263, 266, 271, 272], "singl": [13, 26, 47, 48, 50, 74, 82, 86, 91, 97, 107, 110, 120, 157, 162, 175, 185, 189, 190, 191, 192, 193, 197, 198, 200, 221, 225, 248, 256, 259, 267, 275], "almost": [13, 82, 86], "myremot": [13, 91, 112, 116, 118, 149, 268, 272], "slow": 13, "promot": 13, "magnitud": 13, "dedupl": 13, "One": [13, 74, 77, 120, 160, 186, 192, 200, 221, 226, 245, 252], "mypkg": [13, 50, 84, 88, 102, 109, 120, 138, 140, 141, 151, 160, 191, 195, 215], "cmake_lib": [13, 27, 83, 88, 109, 190, 254, 259, 272], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 88, 272], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 84, 95, 97, 101, 153], "known": [13, 50, 153, 202, 247, 258, 275], "destruct": 13, "natur": [13, 84, 270, 272], "cannot": [13, 27, 42, 60, 78, 84, 87, 90, 97, 99, 100, 102, 104, 105, 106, 115, 120, 121, 122, 123, 132, 140, 144, 146, 150, 155, 159, 179, 187, 191, 192, 193, 246, 254, 258, 259, 264, 270, 271], "OR": [13, 26, 88, 91, 103, 112, 116, 172, 227, 273], "leav": [13, 26, 84, 98, 112, 118, 131, 150, 153, 268], "subproject": [14, 15, 133, 267], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 244, 245, 246, 247, 248, 249, 251, 252, 253, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 83, 191, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 275], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 50, 67, 68, 78, 88, 109, 120, 134, 189, 190, 191, 192, 218, 244, 248, 249, 251, 252, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 272, 275], "h": [16, 17, 18, 21, 26, 31, 42, 45, 50, 54, 55, 56, 59, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 134, 159, 200, 244, 245, 246, 251, 252, 253, 254, 255, 258, 259, 261, 262, 263, 265, 266, 267], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 52, 130, 204], "cmake_fil": 16, "real": [17, 26, 60, 74, 79, 116, 136, 143, 200, 270, 274, 275], "editable_compon": 17, "greet": [17, 159, 221], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 50, 52, 54, 56, 59, 60, 83, 100, 103, 109, 120, 131, 159, 179, 189, 190, 191, 192, 214, 221, 242, 251, 252, 253, 254, 255, 256, 259, 261, 262, 263, 265, 266, 267, 272], "bye": [17, 18, 159, 265, 272], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 52, 56, 59, 60, 78, 129, 130, 179, 192, 231, 254, 256, 258, 260, 267, 272, 274], "src_folder": [17, 19, 190, 218, 266], "dir": [17, 19, 21, 27, 89, 109, 120, 136, 151, 193, 210, 217, 231, 252, 253, 254, 255, 258, 263, 266, 267], "bt": [17, 90], "package_fold": [17, 38, 39, 40, 41, 59, 95, 100, 101, 119, 128, 131, 133, 134, 136, 162, 183, 185, 192, 195, 200, 207, 210, 212, 220, 258, 259, 260, 261], "keep_path": [17, 59, 134, 200, 259, 260, 261], "cmake_file_nam": [17, 136, 191], "myg": 17, "cmake_target_nam": [17, 21, 136, 191, 255], "mygreet": 17, "myhello": [17, 255], "myby": 17, "beyond": 17, "filenam": [17, 48, 50, 87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 115, 151, 161, 163, 196, 200, 202, 220], "besid": [17, 31, 48, 60, 70, 102, 150, 151, 153, 156, 185, 191, 193, 244, 253, 255, 256, 262, 266], "app": [17, 26, 38, 55, 73, 83, 84, 89, 107, 118, 131, 137, 150, 184, 186, 187, 189, 191, 192, 195, 207, 208, 209, 210, 212, 214, 215, 216, 217, 221, 224, 226, 233, 240, 244, 273, 274], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 50, 67, 109, 191, 244, 249, 252, 255, 262, 263], "add_execut": [17, 21, 50, 67, 191, 244, 249, 252, 255, 263], "target_link_librari": [17, 21, 26, 42, 50, 67, 191, 244, 249, 252, 255, 262, 263], "adio": 17, "multiple_subproject": 18, "sibl": [18, 120], "myhead": [18, 202], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 89, 118, 120, 244, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 263, 266, 267], "world": [18, 27, 47, 48, 50, 52, 54, 56, 59, 60, 74, 79, 83, 120, 159, 192, 214, 251, 252, 254, 255, 256, 259, 262, 263, 265, 266, 272], "fine": [18, 19, 42, 107, 118, 120, 241, 254], "principl": [18, 270, 271], "must": [18, 59, 60, 62, 66, 78, 88, 104, 105, 107, 118, 120, 126, 127, 129, 130, 135, 140, 150, 151, 157, 158, 159, 163, 168, 175, 189, 191, 200, 204, 207, 209, 211, 231, 244, 247, 248, 249, 254, 255, 271], "third_party_librari": 19, "whose": [19, 86, 87, 90, 97, 99, 100, 102, 106, 115, 140, 151], "mypatch": 19, "sour": 19, "libhello": [19, 27, 52, 251, 252, 253, 255, 256, 259, 261, 262, 263, 266], "archiv": [19, 52, 88, 89, 140, 183, 200, 211, 256, 266], "head": [19, 52, 140, 231, 251, 252, 255, 256, 262, 266, 272], "strip_root": [19, 52, 200, 202, 256, 266], "awar": [19, 39, 40, 62, 68, 91, 97, 110, 126, 127, 148, 231, 251, 252, 253, 255, 256, 259, 262, 266, 275], "branch": [19, 62, 78, 139, 140, 231, 250, 251, 252, 255, 262, 266, 269, 272, 274], "tag": [19, 62, 78, 89, 120, 139, 140, 145, 150, 231, 251, 252, 254, 255, 256, 262, 266, 272, 274], "patch_fil": [19, 52, 204], "7kb": [19, 256, 266], "50": [19, 21, 27, 252, 253, 254, 255, 258, 263, 266, 267], "cmakefil": [19, 21, 27, 252, 253, 254, 255, 258, 263, 266, 267], "libcrypto": [21, 136], "libssl": [21, 136], "abstract": [21, 49, 50, 65, 72, 73, 78, 84, 184, 189, 207, 214, 224, 255], "rest": [21, 74, 84, 97, 108, 150, 151, 200, 203, 212, 239, 240], "game": [21, 109, 270, 271], "algorithm": [21, 202], "ai": [21, 109], "coupl": [21, 29, 123, 244, 252, 255, 263], "package_nam": [21, 109, 146, 185, 235, 240], "component_nam": [21, 191, 193, 215], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 67, 89, 110, 150, 153, 191, 235, 244, 246, 247, 248, 249, 252, 255, 261, 262, 263], "packagetest": [21, 252, 255, 263], "barbarian": [21, 100, 110], "d6e361d329116": 21, "j16": [21, 255], "25": [21, 35, 83, 84, 151, 153, 252, 255, 260, 272], "37": [21, 185], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 252, 255], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 270], "NOT": [21, 26, 120, 140, 179, 191, 232, 252], "stack": 21, "incomplet": [21, 105, 108, 153], "occur": [21, 145, 202], "22": [21, 83, 85, 103, 151, 153, 245, 247, 248, 249, 258, 259], "conanexcept": [21, 36, 60, 201, 202], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 153, 183, 184], "7": [24, 54, 60, 77, 82, 89, 125, 151, 153, 273], "cortexa15t2hf": 24, "rc": [24, 54, 66, 89, 150, 192, 214, 216, 227], "rewrit": [24, 106], "sub": [24, 104, 111, 120, 151, 159, 200, 266], "conan_hom": [24, 36, 78, 100, 110, 148, 150, 151, 152, 153, 160, 161, 162], "myuser": [24, 29, 42, 60, 120, 149, 151, 154], "pkgconan": [24, 151, 220], "gnu98": [24, 153], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 89, 150, 151, 153, 209, 217, 245], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 215], "right": [24, 26, 63, 78, 102, 122, 179, 191, 265, 266, 271, 273], "2023": [24, 79, 83, 85, 103, 272], "02": [24, 85, 103, 207, 272], "16": [24, 89, 103, 146, 150, 151, 153], "06": [24, 247, 248], "42": [24, 84, 89, 103, 120, 179], "10": [24, 45, 54, 60, 89, 103, 117, 150, 151, 153, 221, 247], "utc": [24, 56, 59, 83, 85, 103, 247, 254, 258, 259, 272], "wizard": 26, "myconanappl": 26, "minimum": [26, 120, 141, 221, 254, 262], "suggest": [26, 74, 120, 127], "21": [26, 27, 103, 117, 124, 153, 192, 221], "rememb": [26, 36, 118, 217, 248], "api_level": [26, 27, 153, 221], "standard": [26, 27, 35, 50, 74, 120, 123, 133, 147, 150, 151, 181, 186, 191, 192, 221, 225, 226, 231, 244, 245, 251, 253, 258, 262, 266, 273], "choic": [26, 153, 261], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 52, 79, 209, 216, 252, 262, 272], "zlibvers": [26, 55, 244], "newstringutf": 26, "c_str": 26, "prepar": [26, 78, 116, 122, 131, 143, 178, 236, 245, 250, 254, 266, 275], "my_conan_app": 26, "view": [26, 29, 67, 103, 120, 125, 135, 157, 253], "task": [26, 60, 78, 140, 155, 156, 175, 259, 271, 275], "conaninstal": 26, "element": [26, 31, 78, 97, 98, 112, 225, 226], "conanexecut": 26, "builddir": [26, 38, 41, 50, 95, 100, 136, 191], "mkdir": [26, 60, 83, 199, 259, 272], "armv7": [26, 27, 153, 181, 184, 235], "x86": [26, 27, 88, 89, 91, 103, 112, 116, 150, 153, 172, 187, 200, 224, 228, 235, 271], "n": [26, 36, 42, 45, 52, 54, 55, 153, 163, 190, 224, 231, 244, 246, 251, 252, 262, 272], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 88, 145, 155], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 83, 126, 153, 187, 217, 228, 245, 259, 271], "defaultconfig": 26, "adjust": [26, 27, 133, 183, 191, 192, 209, 210, 212, 253], "focu": [26, 262], "proil": 26, "_static": [26, 27, 153], "14": [26, 27, 56, 59, 77, 100, 103, 109, 110, 120, 151, 153, 164, 212, 228, 244, 245, 246, 254, 258, 262], "ndk_path": [26, 27, 89, 120, 136, 150, 192, 221], "luism": [26, 258, 260], "7075529": 26, "bin": [26, 27, 35, 39, 40, 54, 95, 100, 136, 151, 183, 192, 209, 210, 212, 215, 240, 245, 258, 260, 261], "android31": [26, 27], "llvm": [26, 27, 153], "prebuilt": [26, 27, 83, 99, 250, 257, 266], "darwin": [26, 27, 54, 100, 110, 151], "_share": [26, 27, 153], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 208, 209], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 189, 191, 192, 244, 245, 246, 248, 249, 254, 259, 265, 266, 267], "respons": [26, 39, 40, 50, 56, 59, 62, 68, 77, 89, 94, 102, 119, 120, 122, 127, 136, 138, 139, 150, 162, 200, 204, 221, 231, 254], "android_abi": [26, 180, 192], "exit": [26, 31, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 143], "prematur": 26, "essenti": [26, 45, 74, 151, 152], "absent": 26, "cmake_build_typ": [26, 191, 192], "endif": [26, 52, 246, 251, 252, 255, 262], "strequal": [26, 252], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 50, 89, 131, 150, 189, 191, 192, 244, 245, 246, 248, 249, 254, 259, 265, 266, 267], "elseif": 26, "v8a": [26, 181], "armeabi": [26, 181], "v7a": [26, 181], "Not": [26, 78, 95, 100, 120, 127, 131, 150, 158, 244, 249, 256, 270], "add_librari": [26, 42, 50, 255, 261, 262], "virtual": [26, 62, 74, 118, 151, 246, 249, 253], "devic": [26, 27], "pair": [26, 118], "qr": 26, "click": [26, 29, 67, 212, 240], "brew": [27, 62, 89, 150, 234], "usr": [27, 118, 151, 211, 245], "choos": [27, 120, 191, 207, 235, 244, 262], "fit": [27, 79, 86, 187, 271], "balanc": [27, 82], "mingw": [27, 153, 243, 249], "ninja": [27, 56, 78, 84, 89, 102, 108, 124, 131, 145, 150, 189, 192, 221, 249, 260], "provis": 27, "w": [27, 145, 163], "r23b": 27, "unless": [27, 74, 88, 102, 112, 116, 118, 120, 129, 130, 150, 155, 204, 225, 244, 268], "know": [27, 31, 50, 82, 90, 94, 120, 144, 153, 159, 191, 207, 246, 253, 255, 260, 267, 274], "bare": [29, 74, 254], "symbol": [29, 67, 79, 148, 183, 192], "box": [29, 267], "consuming_packag": [29, 244, 245, 246, 247, 248, 249], "simple_cmake_project": [29, 244], "finish": [29, 54], "successfulli": [29, 54, 68, 245, 255, 263, 265], "23": [29, 47, 48, 90, 102, 106, 124, 146, 153, 192, 258, 259, 260, 265, 266, 267, 272], "compressor": [29, 35, 55, 191, 244, 245, 246, 248, 249], "sln": [29, 59, 72, 224], "solut": [29, 59, 72, 74, 78, 118, 133, 137, 225, 226, 239, 241, 270], "startup": 29, "breakpoint": 29, "void": [29, 42, 52, 55, 244, 246, 251, 262, 272], "deflateinit": [29, 55, 244], "defstream": [29, 55, 244], "z_best_compress": [29, 55, 244], "deflat": [29, 55, 244], "z_finish": [29, 55, 244], "f5": 29, "stop": [29, 102, 192], "Into": 29, "navig": [29, 67, 240], "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, 244], "inspir": 30, "agnost": [30, 33, 50, 56, 102, 161], "enough": [31, 50, 60, 62, 78, 94, 124, 131, 135, 150, 151, 155, 193, 248, 261, 270], "cmd_clean": 31, "your_conan_hom": [31, 159, 267], "Will": [31, 39, 40, 87, 90, 91, 97, 99, 100, 102, 106, 108, 112, 115, 120, 131, 140, 164, 183, 186, 191, 192, 196, 221, 235], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 159, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178], "conanoutput": [31, 159], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "add_argu": [31, 159], "store_tru": 31, "parse_arg": [31, 159], "request_boolean": 31, "non_interact": [31, 89, 149, 150, 155], "output_remot": 31, "writeln": 31, "fg": [31, 251, 262], "all_rrev": 31, "recipe_revis": [31, 82, 120, 247], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 82], "latest_prev": 31, "argpars": [31, 159], "argumentpars": [31, 159], "visit": [31, 84, 86, 107, 118, 122, 240], "websit": [31, 159], "proce": [31, 42, 246], "translat": [31, 67, 72, 73, 77, 136, 186, 192, 209, 221, 225, 226, 248, 254, 255], "bg": 31, "font": 31, "foreground": 31, "background": [31, 155], "apart": [31, 54, 215], "predefin": [31, 47, 86, 109, 124, 146, 180, 192, 265, 267], "success": [31, 120, 145], "remoteregistri": 31, "searchapi": [31, 165, 177], "listapi": [31, 165, 172], "removeapi": [31, 165, 176], "deserv": [31, 150], "especi": [31, 62, 120, 150, 259, 264, 275], "attent": [31, 150, 261], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 62], "elsewher": [35, 50, 120, 139], "place": [35, 36, 42, 50, 59, 77, 84, 100, 116, 120, 122, 124, 136, 148, 160, 162, 179, 195, 200, 248, 254, 259, 260, 261, 273], "conanbuild": [35, 45, 54, 131, 136, 151, 189, 195, 196, 197, 207, 209, 228, 245, 248, 249, 260, 266], "17": [35, 56, 59, 67, 83, 89, 103, 117, 150, 151, 153, 216, 254, 258, 259], "2022": [35, 67, 79, 103, 117, 153, 247, 258, 259], "big": [35, 118, 129, 153], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 189, 191, 244, 245, 246, 248, 249, 259, 265, 266, 267], "fact": [35, 50, 118, 253], "ticket": 35, "manual": [35, 45, 59, 67, 88, 104, 105, 107, 118, 131, 137, 271, 274], "cwd": [36, 102, 109, 138, 139, 145, 161, 174], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 109, 122, 225], "dependencies_sourc": 36, "preprocess": 36, "accomplish": [36, 192], "source_deploi": 36, "kwarg": [36, 158, 161, 163, 204, 235], "robust": [36, 158], "dependency_sourc": 36, "iter": [36, 102, 107, 157, 161, 163, 192, 194], "said": [36, 253, 271], "advanc": [37, 39, 40, 67, 74, 79, 120, 137, 151, 188, 193, 231, 239, 240, 271, 275], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 90, 105, 106, 107, 108, 121, 131, 137, 151, 191, 212, 215, 245, 247, 248, 260, 271], "different_opt": 39, "myoption": [39, 120, 123, 143], "echo": [39, 40, 158, 179, 260], "off": [39, 40, 63, 68, 160, 192, 216, 252, 266], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 60, 78, 118, 120, 135, 136, 140, 179, 192, 248, 254, 263, 268], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 163, 192, 196], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 54, 120, 152, 179, 191, 207, 215, 217, 244, 252, 255, 263], "anyth": [39, 40, 56, 74, 78, 198, 235, 245, 259, 260, 263, 272, 275], "identifi": [39, 40, 69, 81, 83, 85, 112, 120, 121, 246, 253, 260, 267, 273], "construct": [39, 40], "Of": [39, 40, 74, 270], "cours": [39, 40, 270], "invis": [39, 40], "exactli": [39, 40, 50, 74, 82, 131, 133, 135, 157, 235, 260], "disambigu": [39, 40, 150, 191, 212], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 120, 179], "cmake_build_modul": [41, 191], "tc": [41, 48, 56, 59, 120, 131, 153, 186, 189, 192, 208, 209, 216, 221, 226, 227, 233, 252, 254, 256, 260, 262, 266], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 50, 136, 191], "build_context": [41, 191, 223], "behav": [42, 207, 246], "protobuf": [42, 120, 124, 136, 191, 212], "perhap": 42, "pb": 42, "nonetheless": [42, 258], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 120, 121, 127, 131, 250, 253, 254, 256], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 50, 261, 262], "build_interfac": [42, 50], "cmake_current_source_dir": 42, "cmake_current_binary_dir": [42, 50], "install_interfac": [42, 50], "set_target_properti": [42, 50, 255, 261, 262], "public_head": [42, 50, 261, 262], "iostream": [42, 120, 262], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 150], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 52, 262, 272], "alloc": [42, 215], "shutdownprotobuflibrari": 42, "simpli": [42, 66, 151, 217, 218, 265], "argc": [42, 204], "argv": [42, 204], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 100, 106], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 95, 103], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 67, 88, 252, 258], "notic": [42, 50, 67, 89, 120, 152, 159, 209, 212, 214, 215, 220, 221, 246, 251, 252, 253, 262], "arm": [42, 84, 153, 224, 245, 248], "mach": 42, "64": [42, 153, 187, 217, 228, 245, 271], "bit": [42, 50, 52, 60, 126, 136, 151, 153, 159, 187, 200, 228, 245, 254, 259, 263, 274], "arbitrari": [43, 46, 50, 67, 74, 105, 107, 135, 156, 273], "bazel": [43, 53, 61, 63, 89, 109, 150, 180, 213, 215, 216, 244], "popular": [45, 54, 55, 63, 70, 74, 153, 235, 244], "fmt": [45, 54, 106, 251, 252, 253, 262, 263], "mac": [45, 187, 263], "string_formatt": [45, 54], "ac": 45, "www": [45, 100, 101, 118, 120, 275], "org": [45, 62, 100, 101, 120, 150, 202], "softwar": [45, 100, 217, 235, 275], "autoconf": 45, "60": [45, 54], "html_node": 45, "configure_002eac": 45, "_": [45, 78, 120, 151, 155, 160, 180, 186, 212, 225, 259], "cstdlib": [45, 54], "exit_success": [45, 54, 55, 244, 246], "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, 118, 200], "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, 56], "vari": [45, 62, 78, 84], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 209], "conanbuildenv": [45, 197, 260, 266], "conanrun": [45, 54, 136, 142, 151, 189, 196, 198, 246, 263, 266], "conanrunenv": [45, 198, 266], "deactivate_conanbuild": [45, 197, 245, 248, 249, 266], "deactivate_conanrun": [45, 246, 266, 267], "_fmt": 45, "run_exampl": 45, "u": [45, 74, 77, 87, 90, 97, 99, 100, 102, 106, 115, 124, 248, 256], "ldflag": [45, 120, 136, 150, 151, 208, 209, 221, 227], "pkg_config_path": [45, 209, 211, 221], "m4": 45, "second": [45, 60, 83, 89, 118, 120, 134, 150, 185, 202, 253, 260], "cmake_ex": [47, 83, 109], "foo": [47, 48, 49, 91, 118, 120, 133, 191, 192, 196, 200, 209, 211, 227], "correspond": [47, 67, 120, 192, 197, 198, 209, 212, 223, 246, 253, 255], "binarydir": 47, "everytim": [47, 48, 245, 265, 266, 267], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 192], "displaynam": 48, "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 81, 124], "appconan": 49, "myvar1": [49, 151, 195], "my_user_var1": 49, "myvar": [49, 120, 136, 151, 179, 192, 195, 221, 260], "myprofil": [49, 56, 102, 110, 151], "profile_dir": [49, 151], "evalu": [49, 82, 101, 102, 104, 106, 110, 118, 120, 129, 131, 137, 143, 150, 154, 170, 248, 271], "myvalue1": [49, 195], "system_nam": [49, 89, 150, 192], "usabl": [50, 153], "aren": 50, "fair": [50, 79], "vendor": [50, 94, 154], "happili": 50, "pkg_config_fil": 50, "pkgrecip": [50, 273, 274], "three": [50, 120, 133, 150, 186, 195, 226, 235], "mylib": [50, 120, 124, 151, 192, 209, 275], "project_source_dir": 50, "cmake_install_includedir": [50, 192], "mypkgconfig": 50, "namespac": [50, 78, 191, 207, 209, 252], "destin": [50, 128, 129, 130, 200, 202, 225, 254], "cmake_install_prefix": [50, 192, 261], "_m_x64": [50, 56, 59], "runtim": [50, 56, 59, 74, 79, 120, 124, 136, 151, 153, 164, 195, 198, 207, 209, 221, 223, 226, 227, 246, 263], "multithreadeddl": [50, 56, 59], "_msc_ver1939": [50, 56, 59], "_msvc_lang201402": [50, 56, 59], "__cplusplus199711": [50, 59, 254, 256, 259], "switch": [50, 136, 164, 185, 225, 226], "viceversa": 50, "inconveni": [50, 265], "trivial": 50, "transtiv": 50, "simplest": [52, 122, 256, 261, 274], "hellorecip": [52, 60, 251, 252, 253, 254, 255, 256, 259, 262, 266, 272], "friend": [52, 252], "rule": [52, 82, 88, 118, 119, 120, 135, 154, 156, 157, 209, 212, 215, 268, 270, 273], "ifdef": [52, 246, 251, 262, 272], "ndebug": [52, 209, 246, 251, 262, 272], "hello_patch": 52, "conan_data": [52, 60, 129, 131, 204, 256], "complex": [52, 79, 120, 132, 151, 179, 200, 223, 273], "bazeltoolchain": [54, 66, 109, 180, 213, 214], "workspac": [54, 66, 92, 215, 260], "demo": [54, 60, 79, 118], "charg": [54, 134], "bzl": [54, 66, 215], "load_conan_depend": [54, 215], "rules_cc": [54, 215], "cc_binari": 54, "bazeldep": [54, 66, 109, 180, 213], "bazel_layout": [54, 146, 215], "conan_bzl": [54, 66, 214, 216], "franchuti": [54, 95], "bazelrc": [54, 89, 150, 214, 216], "38": [54, 100, 259], "272": 54, "lc": 54, "date": 54, "elaps": 54, "180": [54, 153], "critic": [54, 88, 254, 272], "68": [54, 99, 103], "sandbox": 54, "total": [54, 102, 146, 150, 153, 196, 252, 258], "simple_meson_project": 55, "stdlib": [55, 153, 192, 209, 244, 246], "stdio": [55, 244], "buffer_in": [55, 244], "256": [55, 202, 244], "mit": [55, 74, 109, 120, 132, 239, 244, 272], "easili": [55, 60, 77, 84, 118, 122, 123, 136, 140, 154, 161, 192, 193, 244, 252, 274, 275], "buffer_out": [55, 244], "z_stream": [55, 244], "zalloc": [55, 244], "z_null": [55, 244], "zfree": [55, 244], "opaqu": [55, 244], "avail_in": [55, 244], "uint": [55, 244], "strlen": [55, 244], "bytef": [55, 244], "avail_out": [55, 244], "sizeof": [55, 244], "next_out": [55, 244], "deflateend": [55, 244], "printf": [55, 244, 246], "size": [55, 79, 196, 244, 246, 248, 249, 268], "lu": [55, 244], "conan_meson_": 55, "ini": [55, 56, 71, 220, 244], "conan_meson_n": [55, 56, 220], "233": [55, 244, 246, 248, 249], "147": [55, 244, 246, 248, 249], "haven": [56, 59, 67, 82, 98, 255, 265, 268], "familiar": [56, 59], "concept": [56, 59, 76, 83, 243, 253, 267, 269, 271], "creation": [56, 59, 74, 78, 121, 153, 162, 231, 247], "meson_lib": [56, 109], "vcxproj": [56, 59], "basic_layout": [56, 180], "briefli": [56, 59, 150, 237, 253, 254], "parametr": [56, 59, 109], "conan_meson_cross": [56, 220], "testhello": 56, "__cplusplus201402": 56, "856c535669f78da11502a119b7d8a6c9": [56, 59], "2024": [56, 59, 254], "03": [56, 59, 153, 247, 254, 272], "04": [56, 59, 103, 153, 254], "52": [56, 59, 83, 85, 254], "39": [56, 59, 103, 247, 254, 259], "c13a22a41ecd72caf9e556f68b406569547e0861": [56, 59], "dynam": [56, 59, 85, 103, 120, 121, 138, 139, 151, 153, 162, 164, 179, 221, 245, 246, 248, 274, 275], "193": [56, 59, 85, 153], "msbuild_lib": [59, 109], "test_hello": [59, 252, 255], "vs_layout": [59, 146, 180, 218, 222], "conantoolchain": [59, 186, 226], "prop": [59, 72, 131, 191, 225, 226], "sheet": [59, 61, 75], "receiv": [59, 60, 77, 84, 104, 124, 157, 158, 159, 162, 163, 164, 193, 221, 231, 254, 260, 268, 273], "act": [59, 159], "accordingli": [59, 120], "importgroup": 59, "label": [59, 74, 95, 100, 101, 214, 215, 226], "propertysheet": 59, "x64": [59, 84, 133, 153, 224], "pragmat": 60, "someon": [60, 271], "coordin": [60, 140, 200, 231], "who": [60, 273], "tri": [60, 99, 164, 244, 247], "capture_scm": 60, "update_conandata": [60, 199], "scm_url": 60, "scm_commit": 60, "checkout": [60, 62, 77, 78, 231, 251, 252, 255, 256, 262, 272], "myfold": [60, 102, 200], "m": [60, 62, 89, 91, 103, 112, 116, 150, 189, 197, 198, 211, 224, 225, 228, 252, 258, 274], "wip": 60, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 60, "buildabl": 60, "techniqu": 60, "imposs": [60, 83, 84, 151, 270, 271], "squash": 60, "19": [60, 77, 103, 153, 259], "xdf": [60, 265], "gitignor": [60, 231], "anywai": [60, 120], "encod": [60, 154, 200, 226, 272], "password": [60, 111, 118, 149, 154, 155, 175, 202, 240], "repeat": [60, 74, 120, 190, 197, 198, 259, 268], "consequ": [60, 97], "orthogon": [60, 156, 162, 275], "ssh": [60, 154], "actor": 60, "ubuntu": [60, 74, 153, 235, 245], "v3": [60, 153, 249], "secret": [60, 118, 154, 155], "ssh_private_kei": 60, "v4": [60, 153], "webfactori": 60, "v0": [60, 241], "privat": [60, 74, 77, 78, 118, 132, 136, 150, 154, 179, 180, 239, 240, 241, 254, 262], "care": [60, 84], "riski": 60, "disclos": 60, "welcom": 61, "decentr": 61, "blog": [61, 67, 76, 248, 275], "social": 61, "mail": 61, "tracker": [61, 74], "question": [61, 74], "tabl": 61, "introduct": [61, 63, 107, 137, 147, 156, 236, 240, 243, 248, 251, 259, 271, 275], "devop": 61, "clion": [61, 63, 192], "jfrog": [61, 63, 74, 79, 240], "cheat": [61, 75], "faq": [61, 74, 75, 120, 272], "video": [61, 74, 75, 270], "changelog": 61, "solari": [62, 74, 235], "suno": [62, 74, 153], "modern": [62, 77, 131, 204, 262, 275], "carefulli": 62, "sudo": [62, 89, 120, 136, 150, 235], "virtualenv": [62, 89, 150, 196, 197, 198, 228, 249], "virtualenvwrapp": 62, "readthedoc": 62, "en": [62, 77, 200, 275], "venv": 62, "restart": [62, 67], "logout": [62, 86, 175], "termin": [62, 74, 89, 103, 150, 158], "upgrad": [62, 191, 270, 275], "inconsist": 62, "somehow": 62, "userhom": 62, "attempt": [62, 67, 78, 89, 131, 140, 150, 153, 202], "yield": 62, "xyz": 62, "mark": [62, 67, 143], "interfer": 62, "pep": 62, "668": 62, "isol": [62, 78, 266, 271, 273], "isn": [62, 67], "debian": [62, 74, 153, 202, 235], "ensurepath": 62, "number": [62, 69, 74, 89, 116, 135, 150, 153, 187, 190, 202, 204, 223, 224, 235, 258, 259, 273, 274, 275], "gatekeep": 62, "quarantin": 62, "browser": 62, "curl": [62, 67], "wget": 62, "util": [62, 67, 77, 85, 93, 116, 120, 140, 183, 192, 196, 200, 207, 235, 245, 261], "interpret": [62, 150, 179, 245], "conan_src": 62, "develop2": 62, "beta": [62, 120, 273], "matter": [62, 102, 144, 150, 155, 205, 259, 270, 275], "seamless": 63, "shelf": [63, 68, 160], "though": [63, 90, 103, 118, 120, 134, 150, 241, 247, 273], "yet": [63, 67, 82, 95, 99, 100, 131, 133, 159, 170, 208, 255], "resum": 63, "enhanc": 63, "autotoolsdep": [65, 180, 206], "wrapper": [65, 66, 71, 72, 73, 80, 145, 156, 183, 184, 189, 191, 202, 207, 214, 224, 231, 235, 254], "jetbrain": 67, "marketplac": 67, "brows": 67, "conan_provid": 67, "cmake_project_top_level_includ": 67, "bear": [67, 252], "mind": [67, 244, 252, 263], "24": [67, 102, 151, 153, 207, 241, 259], "button": [67, 240], "appear": [67, 159, 161, 240, 266], "bottom": 67, "toolbar": 67, "wheel": 67, "checkbox": 67, "sequenti": [67, 74], "uncheck": 67, "disappear": 67, "libcurl": 67, "internet": [67, 100, 154, 259, 275], "along": [67, 68, 88, 120, 191, 253], "ey": 67, "icon": 67, "snippet": 67, "project_nam": [67, 191, 244, 249], "cmake_cxx_standard": [67, 192], "reload": [67, 118], "recollect": [69, 140], "down": [69, 82, 83, 252, 258, 272], "segment": 69, "histori": 69, "servic": [69, 238], "offer": [69, 120, 151], "dedic": [69, 74, 90, 111, 116, 124, 248, 272], "sf": [69, 89], "art": 69, "tf": [69, 83, 89, 90, 94, 252, 253, 261], "create_releas": 69, "mybuildname_releas": 69, "my_artifactori": 69, "mybuildname_aggreg": 69, "readme_build_info": 69, "md": [69, 120, 129, 130, 226, 266, 275], "bsd": 70, "maketoolchain": 70, "myproject": [72, 224, 248], "xcodebuild": [73, 180, 182, 185], "xcodetoolchain": [73, 180, 182, 185], "xcodeproj": [73, 184], "mobil": 74, "metal": 74, "scon": [74, 80, 180], "acceler": 74, "matur": [74, 120], "polici": [74, 77, 120, 179, 191, 192, 259, 268], "creator": [74, 77, 86, 110, 159, 247], "thousand": [74, 79], "compani": [74, 79, 120, 162, 239, 240], "high": [74, 108, 130, 202], "consol": [74, 145, 221, 228, 231, 246], "logic": [74, 78, 121, 126, 127, 131, 135, 140, 153, 157, 160, 185, 186, 192, 218, 248, 268, 271, 273], "webui": [74, 240], "protocol": [74, 120], "ldap": [74, 118], "topologi": 74, "conan_serv": [74, 118, 241], "boost": [74, 102, 136, 146, 150, 158, 191], "poco": [74, 131, 140, 146], "signific": 74, "truth": [74, 79], "redhat": 74, "archlinux": 74, "raspbian": [74, 235], "desktop": 74, "likewis": [74, 124, 127, 135, 136, 140, 271, 273, 274], "onward": 74, "goal": [74, 123, 135, 142], "evolv": [74, 153, 179, 247, 269], "backward": [74, 97], "incompat": [74, 124, 153, 179, 265], "disrupt": [74, 271], "preview": [74, 103, 125, 148, 157, 161, 163, 191, 200, 268], "year": [74, 79, 275], "life": [74, 79, 274], "eol": 74, "tomtom": 74, "audi": 74, "rti": 74, "continent": 74, "plex": 74, "electrolux": 74, "merced": 74, "benz": 74, "amaz": 74, "5k": 74, "star": 74, "count": 74, "300": 74, "cpplang": [74, 77], "slack": [74, 77], "discuss": [74, 150, 170], "discord": 74, "plai": [74, 120, 187], "exercis": 74, "narr": 74, "explan": [74, 81, 99, 106, 120, 135, 153], "conduct": 74, "thread": [74, 89, 116, 150, 153], "bad": [74, 140, 221, 256, 272], "confer": [74, 79], "talk": [74, 79], "evolut": [74, 271], "troubleshoot": 75, "handi": [76, 120, 190, 256], "pdf": 76, "png": [76, 101, 109], "post": [76, 156, 162, 248, 261, 275], "goe": [76, 271], "behind": [77, 118], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [77, 103, 254, 266], "gnu11": [77, 153, 246, 254], "precompil": [77, 88, 102, 120, 134, 136, 215, 236, 259], "mayb": [77, 191, 253, 261], "influenc": [77, 120, 246], "overcom": 77, "agre": 77, "spell": [77, 153], "submit": [77, 131, 238], "Such": [77, 78, 247, 275], "httpconnect": 77, "debuglevel": 77, "netrc": 77, "honor": 77, "crlf": [77, 78, 272], "lf": [77, 272], "gitattribut": 77, "gitconfig": 77, "editor": 77, "notepad": 77, "playground": 78, "colleagu": 78, "kept": 78, "kind": [78, 107, 118, 129, 130, 153, 154, 155, 162, 240, 259, 273], "unit": [78, 122, 135, 142, 252, 254, 263], "among": [78, 82, 120, 134, 136, 153, 200, 226, 247, 248], "convert": [78, 109, 136, 183, 205, 253, 261], "flat": [78, 179, 200], "strictli": [78, 94, 120, 124, 136, 209, 248, 254, 270], "extrem": [78, 273], "complic": [78, 120, 137], "workaround": [78, 137, 270], "Its": [78, 109, 120, 137, 157, 235], "whenev": [78, 120, 129, 137, 140, 151, 187, 252], "abus": [78, 132, 260], "entrant": 78, "undefin": [78, 84, 105, 107, 164, 200, 254, 256], "indirect": [78, 137], "reserv": [78, 84, 119, 192], "_conan": [78, 118, 119], "sens": [78, 94, 105, 127, 138, 151, 153, 231, 246, 253], "rewritten": 78, "checksum": [78, 85, 88, 120, 180, 199, 202, 272], "educ": 79, "outdat": 79, "accu": 79, "diego": 79, "rodriguez": 79, "losada": 79, "cppcon": 79, "watch": [79, 275], "grow": [79, 275], "lesson": [79, 275], "challeng": [79, 155], "trend": 79, "ten": 79, "largest": 79, "why": [79, 96, 99, 253, 258, 260], "lui": 79, "caro": 79, "campo": 79, "quick": 79, "overview": [79, 120], "intrins": [79, 129], "visibilitybinari": 79, "half": 79, "battl": 79, "meet": 79, "onlin": 79, "book": 79, "chri": 79, "mcarthur": 79, "fall": [82, 274], "ill": 82, "form": [82, 88, 91, 99, 103, 109, 112, 116, 118, 120, 124, 129, 130, 136, 140, 142, 235, 247, 248, 254, 272, 273], "taken": [82, 120, 134, 153, 179, 192], "eras": [82, 135], "del": [82, 126, 135, 144, 253, 254, 256, 260], "gcc5": 82, "lost": [82, 97], "default_xxx": 82, "default_build_mod": [82, 89, 150], "default_embed_mod": [82, 89, 150], "full_mod": [82, 83, 89, 120, 150, 275], "default_non_embed_mod": [82, 89, 150], "minor_mod": [82, 83, 89, 120, 137, 150, 179, 275], "default_python_mod": [82, 89, 150, 179], "default_unknown_mod": [82, 89, 150], "semver_mod": [82, 89, 120, 150], "confus": [82, 273], "safeti": 82, "emb": [82, 231], "package_id_xxxx_mod": 82, "package_id_embed_mod": [82, 120], "package_id_non_embed_mod": [82, 120], "package_id_unknown_mod": [82, 120], "patch_mod": [82, 120, 179], "package_id_": 82, "non_emb": 82, "_mode": 82, "package_id_mod": [82, 95, 120, 253, 275], "differenti": [82, 153, 245], "expand": [82, 85, 127, 135, 148], "major_mod": [82, 120], "inlin": [83, 85, 258], "pure": [83, 136, 186, 192, 209, 216, 221, 226, 227, 259], "linker": [83, 89, 100, 136, 150, 186, 192, 207, 209, 216, 221, 226, 227, 245, 246], "8879e931d726a8aad7f372e28470faa1": [83, 85], "09": [83, 85, 103, 247], "54": [83, 85], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [83, 85], "z": [83, 84, 85, 99, 120, 179, 210, 254], "quickli": [83, 94, 259], "632e236936211ac2293ec33339ce582b": 83, "34": [83, 258, 272], "3ca530d20914cf632eb00efbccc564da48190314": 83, "d125304fb1fb088d5b92d4f8135f4dff": 83, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": [83, 254], "bump": [83, 179, 247, 275], "moon": [83, 159], "1c90e8b8306c359b103da31faeee824c": 83, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 83, "rebuilt": [83, 270, 272], "wil": 83, "49": [83, 103], "embed_mod": 83, "new_subset": 84, "subvalue1": 84, "subvalue2": 84, "new_root_set": 84, "value1": [84, 120, 151], "value2": [84, 120, 151], "implictli": 84, "explicilti": 84, "implicitli": [84, 120, 153, 179], "build_test": [84, 90, 120, 192, 252], "option2": [84, 120], "option1": [84, 120], "wherebi": 84, "therebi": 84, "comment": [84, 103, 109, 148, 153, 157, 164, 191, 263, 270], "tune": [84, 254], "realli": [84, 90, 127, 153, 265, 270, 274], "retri": [84, 89, 149, 150, 200, 202], "spirit": 84, "myconf": [84, 120, 133, 135, 136, 150, 151], "myitem": [84, 135], "settings_build": [84, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 131, 260], "outcom": [84, 216], "irrelev": [84, 146], "reflect": [84, 183, 247], "97d5730b529b4224045fe7090592d4c1": [85, 103], "08": [85, 103, 272], "51": [85, 103, 273], "57": [85, 103], "d62dff20d86436b9c58ddc0162499d197be9de1": [85, 97, 103], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [85, 103], "sha1": [85, 201, 202, 245], "cat": [85, 105, 106, 107, 108, 208, 246, 271], "compilerruntim": 85, "compilerruntime_typ": 85, "sha1sum": [85, 201], "386": 85, "seen": [85, 181, 247, 270, 274], "worthi": 86, "core_conf": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "deployer_fold": [87, 100, 102], "nr": [87, 90, 92, 93, 94, 97, 99, 100, 101, 102, 106, 115], "profile_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 170], "profile_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 170], "profile_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "settings_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "settings_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "lockfile_out": [87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 115], "lockfile_overrid": [87, 90, 94, 97, 99, 100, 102, 106, 115], "posit": [87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 103, 104, 106, 109, 111, 112, 113, 114, 115, 116, 175], "vquiet": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "verror": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vwarn": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 145], "vnotic": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 145], "vstatu": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vverbos": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vdebug": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "disallow": [87, 90, 97, 99, 100, 102, 106, 115], "fnmatch": [87, 89, 90, 97, 99, 100, 102, 106, 111, 115, 120, 200, 231], "wildcard": [87, 90, 91, 97, 99, 100, 101, 102, 103, 106, 111, 113, 115, 175, 200], "satisfi": [87, 90, 97, 99, 100, 102, 106, 115, 151, 247], "with_qt": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "cdc0d9d0e8f554d3df2388c535137d77": 88, "5cb229164ec1d245": 88, "conanmanifest": [88, 163, 244, 249], "liter": [88, 109, 151, 179], "ident": [88, 120, 135, 179, 242, 246], "1cae77d6250c23b7": 88, "al": 88, "eventu": [88, 191], "extract": [88, 128, 136, 149, 200, 211, 256, 261], "package_queri": [88, 91, 103, 112, 116], "AND": [88, 91, 103, 112, 116, 172], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 88, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 88, "verify_ssl": [89, 152], "target_fold": 89, "origin2": 89, "target2": 89, "submodul": 89, "conan_config": [89, 185, 186], "recurs": [89, 148, 200], "deduc": [89, 120, 190, 196, 198, 202, 203, 227, 274], "verif": [89, 150, 202], "certif": [89, 118, 152, 202], "my_set": 89, "retry_wait": [89, 150, 202], "wait": [89, 150, 202], "gzip": [89, 150, 200], "compresslevel": [89, 150], "cacert_path": [89, 118, 150], "cacert": [89, 118, 150], "clean_system_proxi": [89, 150], "proxi": [89, 118, 150], "client_cert": [89, 150], "tupl": [89, 120, 132, 150, 151, 200, 202, 231], "cert": [89, 150], "max_retri": [89, 150], "maximum": [89, 118, 120, 150, 187, 224, 254, 262], "no_proxy_match": [89, 150], "timeout": [89, 150], "allow_uppercase_pkg_nam": [89, 150], "temporarili": [89, 150, 151, 155], "uppercas": [89, 150, 155], "default_build_profil": [89, 150, 155], "default_profil": [89, 150, 155], "cmake_android_ndk": [89, 150], "enable_arc": [89, 150, 192], "arc": [89, 150, 192], "enable_bitcod": [89, 150, 192], "bitcod": [89, 150, 192], "enable_vis": [89, 150, 192], "sdk_path": [89, 150, 183, 184, 192, 221], "can_run": [89, 122, 142, 150, 263], "objc": [89, 150, 192, 221], "objcxx": [89, 150], "fortran": [89, 150, 192, 209], "asm": [89, 150, 153, 192, 227], "hip": [89, 150, 192], "ispc": [89, 150, 192], "exelinkflag": [89, 95, 100, 136, 150, 186, 192, 209, 216, 221, 226, 227], "cmake_exe_linker_flags_init": [89, 150, 192], "jx": [89, 150], "mp": [89, 150, 192], "linker_script": [89, 150, 192, 209, 216, 221], "sharedlinkflag": [89, 95, 100, 136, 150, 186, 192, 209, 216, 221, 226, 227], "cmake_shared_linker_flags_init": [89, 150, 192], "skip_test": [89, 122, 150, 192, 214, 252, 258], "sysroot": [89, 95, 100, 150, 183, 192, 209, 221], "find_package_prefer_config": [89, 150], "cmake_find_package_prefer_config": [89, 150, 192], "presets_environ": [89, 150, 192], "wether": [89, 150], "system_processor": [89, 150, 192], "cmake_system_processor": [89, 150, 192], "system_vers": [89, 150, 192], "cmake_system_vers": [89, 150, 192], "toolchain_fil": [89, 150, 151, 192], "toolset_arch": [89, 150, 192], "toolset": [89, 150, 153, 192, 217, 223], "cmake_generator_toolset": [89, 150, 192], "toolset_cuda": [89, 150, 192], "install_strip": [89, 150, 189], "strip": [89, 97, 150, 183, 189, 200, 204, 221, 231, 245], "launcher": [89, 150, 196, 197, 198, 208, 209, 228, 260, 263], "define_libcxx11_abi": [89, 150], "glibcxx_use_cxx11_abi": [89, 150], "host_triplet": [89, 150], "pkg_config": [89, 150, 211, 212, 221], "bazelrc_path": [89, 150, 214], "rcpath1": [89, 150, 214], "config1": [89, 150, 214], "installation_path": [89, 150, 217, 228], "setvars_arg": [89, 150, 217], "onto": [89, 150], "setvar": [89, 150, 217], "backend": [89, 118, 150, 221], "vs2010": [89, 150, 221], "vs2012": [89, 150], "vs2013": [89, 150], "vs2015": [89, 150, 221], "vs2017": [89, 150, 217, 221], "extra_machine_fil": [89, 150, 220], "bash": [89, 120, 150, 228, 241], "msy": [89, 150, 153, 241], "cygwin": [89, 150, 153], "wsl": [89, 150, 153], "sfu": [89, 150], "2019": [89, 150, 153, 217, 228, 248], "max_cpu_count": [89, 136, 150, 151, 189, 224], "vs_version": [89, 150, 151, 153], "exclude_code_analysi": [89, 150, 225], "suppress": [89, 150, 192], "compile_opt": [89, 120, 136, 150, 226], "sudo_askpass": [89, 150, 235], "yum": [89, 150, 234], "pacman": [89, 150, 234], "choco": [89, 150, 235], "zypper": [89, 150, 234], "pkgutil": [89, 150, 234], "30": [89, 97, 103, 259], "test_fold": [90, 94, 252], "serv": [90, 118, 240, 246], "misus": 90, "mutual": [91, 102, 112, 116], "packagelist": [91, 116], "pgkg": 91, "resid": [92, 110], "my_project": [92, 97, 99, 100, 102, 106], "variou": [93, 137, 153, 266], "sb": 94, "this_pkg": 94, "slower": [94, 129], "y": [94, 99, 120, 254], "binary_remot": 95, "invalid_build": [95, 100], "homepag": [95, 100, 101, 131], "win_bash_run": 95, "options_descript": 95, "options_definit": [95, 101], "generators_fold": [95, 100, 101, 131, 191, 192, 225], "srcdir": [95, 100, 136], "resdir": [95, 100, 136, 192, 209, 221, 248], "frameworkdir": [95, 100, 136], "framework": [95, 100, 124, 136, 137, 212, 225, 233, 245, 252, 260], "ffa77daf83a57094149707928bdce823": [95, 103], "1440f4f447208c8e6808936b4c6ff282": 95, "dc0e384f0551386cd76dc29cc964c95": [95, 99], "1703667991": 95, "3458598": 95, "1703668372": 95, "8517942": 95, "massiv": [95, 100], "spiffi": [95, 100], "delic": [95, 100], "unobtrus": [95, 100], "unencumb": [95, 100], "patent": [95, 100], "zlib774aa77541f8b": 95, "resolved_rang": 95, "replaced_requir": 95, "closest": [96, 99], "annot": 97, "doesnt": 97, "preserv": 97, "absenc": 97, "order_bi": 97, "06023034579559bb64357db3a53f88a4": 97, "54b9c3efd9ddd25eb6a8cbf01860b499": 97, "build_arg": 97, "ed8593b3f837c6c9aa766f231c917a5b": 97, "60778dfa43503cdcda3636d15124c19bf6546ae3": 97, "ad092d2e4aebcd9d48a5b1f3fd51ba9a": 97, "firstli": 97, "purpous": 97, "pref": [97, 118, 131, 168], "closest_binari": 99, "1692672717": [99, 103], "b647c43bfefae3f830561ca202b6cfd935b56205": 99, "package_filt": [100, 159], "df": 100, "dot": [100, 159, 273], "myproject_fold": 100, "binutil": 100, "0dc90586530d3e194d01d17cb70d9461": 100, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 100, "cci": 100, "degrad": 100, "gpl": 100, "assembl": 100, "objcopi": 100, "objdump": 100, "multilib": 100, "target_arch": 100, "target_o": 100, "target_triplet": 100, "with_libquadmath": 100, "binut53bd9b3ee9490": 100, "416618fa04d433c6bd94279ed2e93638": 100, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 100, "866f53e31e2d9b04d49d0bb18606e88": 100, "zlibbcf9063fcc882": 100, "digraph": 100, "vi": 100, "j": [100, 120, 153, 220], "css": 100, "cloudfar": 100, "cdnj": 100, "cloudflar": 100, "ajax": 100, "info_graph": 100, "basi": [100, 109], "neon": 101, "msa": 101, "sse": 101, "vsx": 101, "api_prefix": 101, "graphic": [101, 248], "redirect": [101, 103, 117, 118, 145, 155, 189, 265, 275], "deployer_packag": 102, "recomput": 102, "myconan": [102, 120], "bzip2": [102, 131, 197, 198, 225, 228], "compound": 102, "left": [102, 118, 254, 267, 273], "highest": 102, "myprofile3": 102, "myprofile1": [102, 151], "myprofile2": [102, 151], "minim": [102, 109, 187, 263], "immedi": [102, 136, 142, 150, 151, 225, 263], "uniqu": [102, 120, 122, 135, 150, 246, 253, 258, 272], "strict": [102, 105, 107, 151, 200, 271, 275], "newpkg": 102, "gb": 103, "graph_binari": 103, "gr": 103, "graph_recip": 103, "5d": [103, 112], "dai": [103, 112], "4w": [103, 112, 268], "hour": [103, 112], "26": [103, 248], "mycompani": 103, "20": [103, 151, 153, 164, 197, 251], "lite": 103, "shortest": 103, "46": 103, "53": [103, 117], "placehold": [103, 116, 195, 196], "8b23adc7acd6f1d6e220338a78e3a19": 103, "ce3665ce19f82598aa0f7ac0b71ee966": 103, "31ee767cb2828e539c42913a471e821a": 103, "05": [103, 247], "d77ee68739fcbe5bf37b8a4690eea6ea": 103, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 103, "implicit": [103, 204, 271], "e4e1703f72ed07c15d73a555ec3a2fa1": 103, "07": [103, 117], "45": [103, 247, 258, 273], "fdb823f07bc228621617c6397210a5c6c4c8807b": 103, "4834a9b0d050d7cf58c3ab391fe32e25": 103, "33": [103, 258, 259], "31": [103, 124, 272], "6a6451bbfcb0e591333827e9784d7dfa": 103, "29": [103, 247, 272], "67bb089d9d968cbc4ef69e657a03de84": 103, "47": [103, 247], "36": [103, 259], "5e196dbea832f1efee1e70e058a7eead": 103, "26475a416fa5b61cb962041623748d73": 103, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [103, 254], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 103, "human": 103, "zli": 103, "b58eeddfe2fd25ac3a105f72836b3360": 103, "01": [103, 207, 272], "d9b1e9044ee265092e81db7028ae10e0": 103, "192": [103, 118, 153, 164, 223], "denomin": 103, "deviat": [103, 120], "mypytool": 105, "manipul": [105, 107, 140, 200, 261], "moreov": 105, "scratch": [106, 264, 265], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 106, "1675126491": 106, "773": 106, "5f184bc602682bcea668356d75e7563b": 106, "1676913225": 106, "027": [106, 275], "733": 106, "e747928f85b03f48aaf227ff897d9634": 106, "1675126490": 106, "952": 106, "lock1": 107, "lock2": 107, "consolid": 107, "diverg": 107, "simplic": 107, "pkgb": 107, "app1": 107, "pkgawin": 107, "pkganix": 107, "gone": [107, 252, 263], "nix": [107, 200], "math": [108, 109, 137, 200, 270], "85d927a4a067a531b1a9c7619522c015": 108, "1702683583": 108, "3411012": 108, "fd2b006646a54397c16a1478ac4111ac": 108, "3544693": 108, "mytool": [108, 215], "othertool": 108, "downgrad": 108, "unlock": 108, "meson_ex": 109, "msbuild_ex": 109, "bazel_lib": 109, "bazel_ex": 109, "autotools_lib": 109, "autotools_ex": 109, "aid": 109, "boilerpl": [109, 120], "requires1": 109, "requires2": 109, "tool_requires1": 109, "tool_requires2": 109, "magic": 109, "mygam": 109, "mytempl": 109, "full_path": 109, "conan_vers": [109, 150], "brack": 109, "not_templ": 109, "image2": 109, "guess": [110, 151, 174, 244], "Be": [110, 126, 127, 148, 231, 253], "carlosz": 110, "ios_bas": 110, "ios_simul": 110, "clang_15": 110, "package_set": 110, "build_env": 110, "registri": [111, 240], "usernam": [111, 118, 151, 155, 175], "ap": 111, "allowed_packag": [111, 175], "insert": [111, 175], "conan_login_": 111, "expos": [111, 118, 131, 151, 231], "new_nam": [111, 175], "keyword": [112, 158, 204, 207], "intact": 112, "smell": [112, 272], "manifest": [116, 120, 262], "sys_vers": 117, "1316": 117, "mainli": [118, 241], "pro": [118, 239, 241], "conan_server_hom": 118, "server_dir": 118, "server_directori": 118, "prior": [118, 162], "hot": 118, "relaunch": 118, "jwt_secret": 118, "ijkhyoiouinmxcrtytrr": 118, "jwt_expire_minut": 118, "120": 118, "ssl_enabl": 118, "port": [118, 241], "9300": [118, 241], "public_port": 118, "host_nam": 118, "localhost": [118, 202, 240, 241], "authorize_timeout": 118, "1800": 118, "disk_storage_path": 118, "disk_authorize_timeout": 118, "updown_secret": 118, "hjhjujkjkjkjkluyyuuyhj": 118, "write_permiss": 118, "lasot": 118, "default_us": 118, "default_user2": 118, "read_permiss": 118, "jwt": 118, "random": [118, 191], "safe": [118, 120, 140, 187], "anytim": 118, "amount": 118, "ip": [118, 202], "domain": 118, "168": 118, "docker": [118, 240], "9999": 118, "p9300": 118, "traffic": 118, "somedir": [118, 211], "crt": 118, "pem": [118, 150], "reject": 118, "regist": 118, "plain": [118, 120], "premis": 118, "firewal": 118, "trust": 118, "sysadmin": 118, "restrict": [118, 120, 153], "comma": [118, 120], "allowed_user1": 118, "allowed_user2": 118, "packagea": 118, "john": [118, 120], "peter": 118, "custom_authent": 118, "authenticator_nam": 118, "collabor": [118, 167], "htpasswd": 118, "schiffner": 118, "uilianri": 118, "my_authent": 118, "get_class": 118, "myauthent": 118, "valid_us": 118, "plain_password": 118, "factori": 118, "custom_author": 118, "authorizer_nam": 118, "my_author": 118, "authenticationexcept": 118, "forbiddenexcept": 118, "myauthor": 118, "_check_conan": 118, "deni": [118, 200], "_check_packag": 118, "_check": 118, "check_read_conan": 118, "check_write_conan": 118, "check_delete_conan": 118, "check_read_packag": 118, "check_write_packag": 118, "check_delete_packag": 118, "conform": 118, "check_": 118, "conanfilerefer": 118, "meanwhil": 118, "_packag": 118, "packagerefer": 118, "443": 118, "server_nam": 118, "myservernam": 118, "mydomain": 118, "proxy_pass": 118, "ssl_certif": 118, "ssl_certificate_kei": 118, "mod_wsgi": 118, "apache2": 118, "site": [118, 120], "0_conan": 118, "virtualhost": 118, "80": 118, "wsgiscriptalia": 118, "dist": 118, "server_launch": 118, "wsgicallableobject": 118, "wsgipassauthor": 118, "grant": 118, "srv": 118, "helloconan": [119, 120, 183, 207, 259], "varieti": 119, "member": [119, 120, 131, 179], "_my_data": 119, "_my_help": 119, "lowercas": [120, 254, 273], "101": 120, "charact": [120, 155, 195, 196, 254], "shorter": [120, 196], "z0": 120, "9_": 120, "alphanumer": [120, 254], "ing": 120, "pkgname": [120, 225, 247], "pre1": [120, 254, 273], "build2": [120, 254], "pkgversion": 120, "programmat": 120, "mychannel": 120, "short": [120, 254], "incred": 120, "spdx": 120, "peopl": 120, "smith": 120, "protocinstallerconan": 120, "protoc_instal": 120, "buffer": 120, "rpc": 120, "eigenconan": 120, "eigen": 120, "tuxfamili": 120, "mylibconan": 120, "otherlib": 120, "otherus": 120, "bracket": [120, 273], "alpha": [120, 273], "tool_a": 120, "tool_b": 120, "gtest": [120, 124, 131, 137, 146, 225, 245, 252, 258, 263], "downstream": [120, 124, 136, 137, 179, 191, 270], "other_test_tool": 120, "pyreq": [120, 132, 160, 179], "myconanfilebas": [120, 132], "utilsbas": 120, "tmp": [120, 192, 200, 252, 253, 255, 256, 258, 261], "got": [120, 260, 266, 271], "shutil": [120, 140], "emul": [120, 153, 226, 271], "mistak": 120, "yaml": 120, "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 120, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 120, "opt": [120, 196, 216, 217, 273, 275], "7zip": [120, 146, 151], "7z": 120, "determin": [120, 137, 151, 195, 246], "gnu20": [120, 153], "get_saf": [120, 126, 127, 218, 248], "compiler_vers": [120, 151, 187], "feasibl": [120, 136], "is_android": 120, "option3": 120, "option4": 120, "comparison": [120, 239, 273], "encapsul": 120, "zwave": 120, "reference_pattern": 120, "option_nam": 120, "condition": [120, 122, 123, 127, 131, 140, 225, 226, 248, 250, 255, 262], "otherpkg": 120, "some_opt": 120, "overridden": [120, 179, 202], "123": [120, 151, 179], "conaninvalidconfigur": [120, 143, 144, 187, 248, 270], "word": [120, 132, 153, 272], "freez": 120, "overriden": [120, 202], "234": [120, 179], "particularli": [120, 133, 135], "explanatori": 120, "reference_conanfile_methods_package_id": 120, "package_id_python_mod": 120, "semver": [120, 232, 273, 275], "modif": [120, 135, 153, 192, 195, 247, 272, 275], "unrelated_mod": 120, "ever": 120, "pocotimerconan": 120, "foorecip": 120, "myrecip": 120, "methodconan": 120, "export_fold": [120, 129], "codebas": 120, "androidndk": [120, 136], "define_path": [120, 133, 136, 195], "fill": [120, 162, 178, 211], "append_path": [120, 136, 195], "runtime_var": 120, "flag3": [120, 136], "flag1": [120, 136, 150, 151, 216], "flag2": [120, 136, 150, 151], "expandattributedsourc": [120, 136], "unset": [120, 136, 150, 151, 153, 195, 208], "flag0": [120, 136], "pop": [120, 221, 246], "friendli": 120, "emit": 120, "taskflow": 120, "odr": [120, 137], "violat": [120, 137], "libressl": 120, "boringssl": 120, "libav": 120, "ffmpeg": [120, 158], "mariadb": 120, "mysql": 120, "libjpeg": 120, "9d": 120, "turbo": 120, "libjpegturbo": 120, "openbla": 120, "cbla": 120, "lapack": 120, "redund": 120, "myconsum": [120, 260], "my_android_ndk": 120, "var1": [120, 151], "green": 120, "neutral": 120, "white": [120, 155], "yellow": 120, "red": 120, "distinct": 120, "tend": 120, "auto_shared_fp": 120, "auto_header_onli": 120, "parenthes": 120, "extensions_properti": 120, "abi": [120, 153, 181, 245], "validate_build": 121, "mybuildsystem": 122, "interrupt": 122, "lift": 122, "info_build": 123, "myvalu": [123, 192, 195, 221], "fullsourc": 123, "theori": [124, 248], "parameter": 124, "ran": [124, 141, 161, 252, 258], "nutshel": [124, 209], "mylibrecip": 124, "myapprecip": 124, "myapp": [124, 275], "gettext": 124, "libgettext": 124, "constrain": [126, 253], "sse2": 126, "with_sse2": 126, "elif": 127, "deploy_fold": [128, 171, 195], "myfil": [130, 179, 200, 275], "export_conandata_patch": [130, 199], "conanvcvar": [131, 192, 221, 226, 227, 228], "repetit": [131, 136], "mygener": [131, 160], "mygen": [131, 160], "dylib": [131, 136, 183, 200, 207, 246, 253, 261], "dll": [131, 134, 136, 196, 246, 261], "xxxdir": 131, "indirectli": 131, "buildenv_info": [131, 133, 195, 197, 255, 260], "runenv_info": [131, 133, 195, 197, 198, 255, 260], "is_build_context": 131, "fashion": 131, "pcre": 131, "44": 131, "expat": 131, "35": [131, 259, 272], "1k": 131, "criteria": 131, "direct_host": 131, "direct_build": 131, "heavili": 131, "mycomp": 131, "mylicens": 132, "overwritten": [132, 136, 140], "baseconan": 132, "derivedconan": 132, "deriv": [132, 140], "uncondition": 132, "datafil": 132, "my": [132, 133, 136, 151, 153, 162, 179, 202, 209, 221], "awesom": 132, "me": 132, "__init__": [132, 160, 162, 184, 227], "constructor": [132, 193, 204, 207, 209, 222, 231, 235], "subdirectori": 133, "classic": [133, 153, 217, 257], "hopefulli": 133, "release64": 133, "stub": 133, "my_includ": 133, "sayconan": [133, 267], "mydata_path": 133, "obvious": 133, "mydata_path2": 133, "my_conf_fold": 133, "creating_packages_package_method": 134, "relax": [135, 271], "assumpt": [135, 248, 271], "couldn": 135, "disadvantag": [135, 274], "lose": 135, "although": [135, 196, 263], "predict": 135, "obj": 136, "preprocessor": [136, 186, 192, 209, 221, 226, 227], "property_nam": 136, "property_valu": 136, "xml": [136, 226], "pkg_config_nam": [136, 212], "zmq": 136, "zmq_static": 136, "ws2_32": 136, "get_properti": 136, "crypto": [136, 212, 215], "define_crypto": 136, "headers_ssl": 136, "obj_ext": 136, "prepend_path": [136, 195], "mypath": [136, 195, 260], "myarmarch": 136, "otherarch": 136, "my_android_arch": 136, "myrunpath": 136, "mypkghom": 136, "ti": 136, "former": [136, 271], "virtualrunenv": [136, 151, 180, 192, 194, 195, 196, 246, 255, 260], "transmit": [136, 275], "exceptionhandl": [136, 150], "async": [136, 150, 204], "bundl": [136, 240], "android_ndk": 136, "albeit": 136, "adequ": 136, "claus": 137, "catch2": [137, 252], "seem": 137, "ambigu": [137, 275], "priorit": [138, 139, 193, 200, 270, 271], "tarbal": [140, 231, 239, 272], "check_sha1": [140, 199], "pococonan": 140, "zip_nam": 140, "pocoproject": 140, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 140, "unlink": 140, "bypass": 140, "appar": 140, "problemat": [140, 273], "destroi": [140, 153, 164], "lead": [140, 248], "frozen": 140, "realiz": [141, 247, 271], "gtk": 141, "undesir": 141, "libgtk": 141, "pkg1": [141, 191, 235], "pkg2": [141, 191, 235], "prove": [142, 263], "succe": [143, 235], "cfc18fcc7a50ead278a7c1820be74e56": 143, "warn_tag": 145, "custom_tag": 145, "ignore_error": 145, "appropri": 145, "unnot": 145, "ninja_stdout": 145, "stringio": 145, "pin": [146, 247, 272, 274], "revision1": 146, "70": 146, "revision2": 146, "00": [146, 207, 272], "inde": 146, "aka": [147, 183], "project1": [148, 225], "project2": [148, 225], "unauthor": 149, "ask": [149, 155], "conan_login_usernam": [149, 155], "conan_login_username_": [149, 155], "conan_password": [149, 155], "conan_password_": [149, 155], "admin": [149, 240], "emptiv": 149, "getenv": [149, 151, 154, 196], "mytk": [149, 154], "mytoken": [149, 154], "whatev": [150, 151, 159, 217], "heaviest": 150, "dowload": 150, "danielm": 150, "my_conan_storage_fold": 150, "recurr": 150, "my_download_cach": 150, "confvar": [150, 151], "hint": [150, 151], "yyi": [150, 151], "ins": 150, "zzz": [150, 151], "everywher": [150, 151], "discret": 150, "establish": 150, "packagenam": [150, 191], "orgnam": 150, "_must_": 150, "cpu_count": 150, "myconf1": 150, "detect_o": [150, 151], "myconf2": 150, "detect_arch": [150, 151], "conan_home_fold": 150, "eval": 150, "integ": [150, 175, 232], "unmodifi": 150, "rid": [150, 151], "f1": 150, "f2": 150, "f0": 150, "pai": [150, 261], "tl": [150, 152, 202], "constitut": 150, "implic": [150, 253], "tool1": 151, "tool4": 151, "environmentvar1": 151, "dlib": 151, "ab": 151, "relpath": 151, "my_pkg_opt": 151, "myvalue12": 151, "mypath1": [151, 195], "path11": 151, "path12": 151, "comp": [151, 212], "chanel": 151, "ration": 151, "kitwar": 151, "3488ec5c2829b44387152a6c4b013767": 151, "20496b332552131b67fb99bf425f95f64d0d0818": 151, "profile_var": 151, "my_build_typ": 151, "referenc": [151, 191, 202], "loop": 151, "meant": [151, 254, 263], "judici": 151, "compiler_ex": 151, "detect_default_compil": 151, "default_msvc_runtim": 151, "default_compiler_vers": 151, "default_cppstd": 151, "detect_libcxx": 151, "v143": [151, 153], "gnu14": [151, 153, 209, 245], "default_msvc_ide_vers": 151, "digit": [151, 153, 273, 275], "zlib_clang_profil": 151, "my_var": [151, 260], "statement": 151, "gcc_49": 151, "my_remote_nam": 152, "windowsstor": 153, "windowsc": 153, "ios_vers": 153, "iphoneo": [153, 221], "iphonesimul": 153, "watchsimul": 153, "appletvo": 153, "appletvsimul": 153, "xrsimul": 153, "catalyst": 153, "aix": 153, "arduino": 153, "board": 153, "emscripten": 153, "neutrino": 153, "vxwork": 153, "ppc32be": 153, "ppc32": [153, 187, 235], "ppc64le": [153, 235], "ppc64": [153, 187], "armv4": 153, "armv4i": 153, "armv5el": [153, 181], "armv5hf": [153, 181], "armv6": [153, 181], "armv7hf": [153, 181, 235, 245], "armv7k": 153, "armv8_32": 153, "sparc": [153, 187, 192], "sparcv9": [153, 187], "mip": 153, "mips64": 153, "avr": 153, "s390": 153, "s390x": [153, 235], "wasm": 153, "sh4le": 153, "e2k": 153, "v5": 153, "v6": [153, 181], "v7": 153, "xtensalx6": 153, "xtensalx106": 153, "xtensalx7": 153, "sun": 153, "posix": 153, "libcstd": 153, "libstdcxx": 153, "libstlport": 153, "win32": 153, "dwarf2": 153, "sjlj": 153, "seh": 153, "98": 153, "gnu23": 153, "170": 153, "190": 153, "191": 153, "v110_xp": 153, "v120_xp": 153, "v140_xp": 153, "v141_xp": 153, "runtime_vers": 153, "v140": 153, "v141": 153, "v142": 153, "2021": [153, 217], "icx": [153, 217], "dpcpp": [153, 217], "gnu03": 153, "gpp": 153, "ne": 153, "accp": 153, "acpp": 153, "ecpp": 153, "mcst": 153, "lcc": 153, "relwithdebinfo": 153, "minsizerel": 153, "hardwar": 153, "microprocessor": 153, "microcontrol": 153, "famili": 153, "2015": 153, "2017": [153, 217, 244, 246, 248, 249], "finer": 153, "1913": 153, "dpc": [153, 217], "suppos": 153, "311": 153, "brief": [153, 240, 243], "arch_build": 153, "arch_target": 153, "powerpc": [153, 235], "endian": 153, "littl": [153, 159], "soft": 153, "float": 153, "swift": 153, "a6": 153, "a6x": 153, "chip": 153, "iphon": 153, "5c": 153, "ipad": 153, "k": 153, "aarch32": 153, "ilp32": 153, "a12": 153, "chipset": 153, "xr": [153, 200], "scalabl": [153, 239, 240], "microsystem": 153, "interlock": 153, "pipelin": [153, 155], "formerli": 153, "atmel": 153, "microchip": 153, "390": 153, "ibm": 153, "javascript": 153, "low": 153, "assembli": 153, "byte": [153, 200], "hitachi": 153, "superh": 153, "2000": 153, "512": 153, "vliw": 153, "2cm": 153, "2c": 153, "moscow": 153, "4c": 153, "8c": 153, "8c1": 153, "1c": 153, "1ck": 153, "8c2": 153, "8cb": 153, "2c3": 153, "12c": 153, "16c": 153, "32c": 153, "xtensa": 153, "lx6": 153, "dpu": 153, "esp32": 153, "esp8266": 153, "lx7": 153, "s2": 153, "s3": 153, "_glibcxx_use_cxx11_abi": [153, 192, 209], "wise": 153, "cento": [153, 235], "rogu": 153, "wave": 153, "stlport": 153, "apach": 153, "dinkum": 153, "abridg": 153, "rhel6": 153, "cache_vari": 153, "some_centos_flag": 153, "anymor": 153, "myo": 153, "mycompil": 153, "my_custom_compil": 153, "sync": [153, 204], "tarballnam": 154, "bearer": 154, "mypassword": 154, "hardcod": [154, 263, 273], "difficult": [154, 179, 252, 274], "remote_nam": [155, 175], "unauthent": 155, "unattend": 155, "stuck": 155, "autodetect": [155, 192], "tty": 155, "no_color": 155, "conan_color_dark": 155, "scheme": [155, 273, 275], "light": 155, "dark": 155, "mypythoncod": [156, 268], "altogeth": [156, 159, 192], "pre_build": [156, 162], "complement": 156, "qualiti": [156, 162], "facilit": [156, 161], "variat": [157, 270], "intercept": 158, "commmand": 158, "startswith": 158, "caller": 158, "heavy_pkg": 158, "qt": 158, "abseil": 158, "_commands_": 159, "cmd_": 159, "your_command_nam": 159, "cmd_hello": 159, "cmd_bye": 159, "topic_nam": 159, "topic1": 159, "topic2": 159, "cmd_command": 159, "output_json": 159, "parser": 159, "hello_moon": 159, "subpars": 159, "narg": 159, "mygroup": 159, "mycommand": 159, "mycommand_mysubcommand": 159, "add_my_common_arg": 159, "chose": 159, "format_graph_html": 159, "format_graph_info": 159, "field_filt": 159, "format_graph_json": 159, "format_graph_dot": 159, "graph_info": 159, "deps_graph": [159, 171], "command_subcommand": 159, "child": 159, "arg1": [159, 189, 217], "arg2": [159, 189, 217], "arg3": 159, "_conanfil": 160, "deps_info": 160, "repeatedli": [161, 275], "my_custom_deploy": 161, "hook_exampl": 162, "pre_export": 162, "field_valu": 162, "getattr": 162, "abort": 162, "hook_": 162, "replace_in_fil": [162, 199, 252], "post_packag": 162, "isdir": 162, "custom_modul": 162, "hook_print": 162, "my_print": 162, "hook_ful": 162, "pre_sourc": 162, "pre_packag": 162, "pre_package_info": 162, "post_package_info": 162, "artifacts_fold": 163, "signature_fold": 163, "conan_packag": [163, 244, 249], "written": [163, 255, 275], "twice": 163, "conan_sourc": 163, "signer": 163, "asc": 163, "listdir": 163, "isfil": 163, "profile_plugin": 164, "ordereddict": [164, 193], "profilesapi": [165, 174], "installapi": [165, 171], "graphapi": [165, 170], "exportapi": [165, 169], "newapi": [165, 173], "uploadapi": [165, 178], "downloadapi": [165, 168], "cache_fold": 166, "global_conf": 167, "settings_yml": 167, "pkgrefer": [168, 172], "download_ful": 168, "package_list": [168, 178], "load_root_test_conanfil": 170, "tested_refer": 170, "tested_python_requir": 170, "recipe_consum": 170, "load_graph": 170, "root_nod": 170, "check_upd": 170, "load_root_nod": 170, "analyze_binari": 170, "build_mod": 170, "build_modes_test": 170, "tested_graph": 170, "buildmod": 170, "install_binari": 171, "intal": 171, "install_system_requir": 171, "only_info": 171, "install_sourc": 171, "install_consum": 171, "deploy_packag": 171, "filter_packages_configur": 172, "pkg_configur": 172, "pkgconfigur": 172, "get_templ": 173, "template_fold": 173, "get_home_templ": 173, "template_nam": 173, "get_default_host": 174, "get_default_build": 174, "get_profil": 174, "get_path": 174, "sin": 174, "alphabet": [174, 273], "contact": 175, "user_xxx": 175, "only_en": 175, "user_login": 175, "user_logout": 175, "check_upstream": 178, "enabled_remot": 178, "upload_data": 178, "upload_ful": 178, "check_integr": 178, "dry_run": 178, "get_backup_sourc": 178, "mybas": 179, "cool": 179, "super": [179, 209], "pyreq_path": 179, "myfile_path": 179, "mynumb": 179, "gradual": 179, "hierarchi": 179, "is_apple_o": [180, 182], "to_apple_arch": [180, 182], "envvar": [180, 194, 195, 197, 198], "intelcc": 180, "nmaketoolchain": [180, 222], "sconsdep": 180, "armv5": 181, "lc_id_dylib": [183, 207], "lc_load_dylib": [183, 207], "rpath": [183, 192, 207, 246], "lc_rpath": [183, 207], "outlin": 183, "libnam": 183, "my_execut": 183, "add_rpath": 183, "executable_path": 183, "use_settings_target": 183, "ranlib": 183, "lipo": 183, "codesign": 183, "isysroot": [183, 221], "sdk_platform_path": 183, "sdk_platform_vers": 183, "libtool": 183, "alltarget": 184, "i386": [184, 221], "sdkroot": 184, "ios8": 184, "skd": 184, "conan_libpng": 185, "conan_libpng_libpng": 185, "conan_libpng_libpng_debug_x86_64": 185, "conan_libpng_libpng_release_x86_64": 185, "conan_zlib": [185, 225], "conan_zlib_zlib": 185, "conan_zlib_zlib_debug_x86_64": 185, "conan_zlib_zlib_release_x86_64": 185, "system_header_search_path": 185, "gcc_preprocessor_definit": 185, "other_cflag": 185, "other_cplusplusflag": 185, "framework_search_path": 185, "library_search_path": 185, "other_ldflag": 185, "conan_libpng_debug_x86_64": 185, "package_root_": 185, "releaseshar": [185, 191, 225, 262], "mycustomconfig": [185, 225], "conantoolchain_release_x86_64": 186, "conantoolchain_debug_x86_64": 186, "conan_global_flag": 186, "conantoolchain_": [186, 226], "_x86_64": 186, "clang_cxx_librari": 186, "clang_cxx_language_standard": 186, "macosx_deployment_target": 186, "mmacosx": 186, "_cpu_count": 187, "cgroup": 187, "skip_x64_x86": 187, "m1": [187, 221, 263], "gnu_extens": 187, "cppstd_default": 187, "dxxx": 189, "dvar": 189, "build_tool_arg": 189, "barg1": 189, "barg2": 189, "underli": 189, "diagnost": 189, "dcmake_verbose_makefil": 189, "maxcpucount": 189, "cmake_gener": 190, "shared_fals": 190, "shared_tru": 190, "chosen": [190, 217], "cmake_prefix_path": [191, 192], "cmake_module_path": [191, 192], "findxxx": 191, "conandeps_legaci": 191, "cmake_binary_dir": 191, "enumer": 191, "overal": 191, "releasedshar": 191, "my_tool": [191, 212, 215], "collid": [191, 212, 275], "capnproto": [191, 212], "_build": [191, 212], "81": 191, "fakecomp": 191, "cmake_module_file_nam": 191, "cmake_module_target_nam": 191, "dep_nam": [191, 248], "get_cmake_package_nam": 191, "module_mod": 191, "get_find_mod": 191, "cmake_target_alias": 191, "rout": 191, "cmake_set_interface_link_directori": 191, "pragma": 191, "nosonam": 191, "sonam": 191, "cmake_config_version_compat": 191, "samemajorvers": 191, "sameminorvers": 191, "exactvers": 191, "configvers": 191, "myfilenam": [191, 202], "myfooalia": 191, "mycompon": [191, 212, 215], "varcompon": 191, "myfilenameconfig": 191, "findmyfilenam": 191, "zlibconan": 191, "alter": 191, "colon": 191, "new_component_target_nam": 191, "buildir": 191, "popul": [191, 245], "cmake_map_imported_config_": 191, "dcmake_map_imported_config_coverag": 191, "myvar_valu": 192, "mydefin": [192, 221], "mydef_valu": [192, 221], "cmake_path": 192, "cmake_position_independent_cod": 192, "nmake": [192, 193, 227], "easier": [192, 275], "schema": [192, 200, 226], "testpreset": 192, "jon": 192, "mydef": [192, 221], "myconfigdef": 192, "mydebugvalu": 192, "myreleasevalu": 192, "novalue_def": 192, "add_compile_definit": 192, "cachevari": 192, "foo2": 192, "ON": [192, 245, 266], "myconfigvar": 192, "sentenc": 192, "buildenv": [192, 195, 217, 245], "my_build_var": 192, "my_buildvar_value_overridden": 192, "runenv": [192, 195], "my_run_var": 192, "my_runvar_set_in_gener": 192, "my_env_var": 192, "my_env_var_valu": 192, "save_script": [192, 196], "other_env": 192, "compose_env": [192, 195], "extra_cxxflag": [192, 209, 227], "extra_cflag": [192, 209, 227], "extra_sharedlinkflag": 192, "extra_exelinkflag": 192, "clash": 192, "filepath": 192, "mytoolchainpackag": 192, "mytoolchain": 192, "mytoolrequir": 192, "toolchain1": 192, "toolchain2": 192, "yyyi": 192, "ninclud": 192, "generic_system": 192, "cmake_c_compil": 192, "cmake_cxx_compil": 192, "android_system": 192, "android_platform": 192, "android_stl": 192, "android_ndk_path": 192, "apple_system": 192, "cmake_osx_architectur": 192, "cmake_osx_sysroot": 192, "arch_flag": [192, 209], "m32": 192, "m64": 192, "vs_runtim": 192, "cmake_msvc_runtime_librari": 192, "cmake_cxx_extens": 192, "cmake_flags_init": 192, "cmake_xxx_flag": 192, "conan_xxx": 192, "cmake_cxx_flags_init": 192, "conan_cxx_flag": 192, "try_compil": 192, "in_try_compil": 192, "find_path": 192, "cmake_skip_rpath": 192, "skip_rpath": 192, "build_shared_lib": [192, 255, 266], "output_dir": 192, "cmake_install_xxx": 192, "cmake_install_bindir": 192, "cmake_install_sbindir": 192, "cmake_install_libexecdir": 192, "cmake_install_libdir": 192, "cmake_install_oldincludedir": 192, "cmake_install_datarootdir": 192, "mybin": [192, 209], "myinclud": [192, 209], "myre": [192, 209], "block_nam": 192, "new_tmp": 192, "other_toolset": 192, "generic_block": 192, "methodtyp": 192, "mygenericblock": 192, "helloworld": 192, "myblock": 192, "mynewblock": 192, "64bit": [192, 271], "32bit": [192, 271], "ppc": 192, "r23c": 192, "cmake_c_flags_init": 192, "add_definit": 192, "cmake_xcode_attribute_enable_bitcod": 192, "cmake_xcode_attribute_clang_enable_objc_arc": 192, "cmake_xcode_attribute_gcc_symbols_private_extern": 192, "cmake_sysroot": 192, "cmp0149": 192, "cmake_rc_compil": 192, "cmake_objc_compil": 192, "objcpp": [192, 221], "cmake_objcxx_compil": 192, "cmake_cuda_compil": 192, "cmake_fortran_compil": 192, "cmake_asm_compil": 192, "cmake_hip_compil": 192, "cmake_ispc_compil": 192, "collaps": 193, "aggregated_cpp_info": 193, "topological_sort": 193, "revers": 193, "dep_cppinfo": 193, "get_sorted_compon": 193, "fewer": 193, "other_cppinfo": 193, "myvar2": 195, "myvalue2": 195, "myvar3": 195, "myvalue3": 195, "myvar4": 195, "mypath2": 195, "mypath3": 195, "env1": [195, 196], "env2": 195, "prevail": [195, 270], "autootoolsdep": 195, "mypkg_data_dir": 195, "datadir": [195, 212, 221], "filesystem": [195, 202], "deploy_base_fold": 195, "my_env_fil": 196, "ps1": [196, 197, 198, 228, 249], "var2": 196, "variable_refer": 196, "penv": 196, "32k": 196, "2048": 196, "closer": 196, "varnam": 196, "ld_library_path": [197, 198, 246, 255, 260], "deactivate_conanbuildenv": [197, 245, 248, 249, 252], "accumul": [197, 198, 208, 233], "auto_gener": [197, 198], "dyld_library_path": [198, 246], "dyld_framework_path": [198, 246], "deactivate_conanrunenv": 198, "rm": 199, "rmdir": 199, "chdir": 199, "trim_conandata": 199, "collect_lib": 199, "check_md5": 199, "check_sha256": 199, "absolute_to_relative_symlink": [199, 261], "remove_external_symlink": 199, "remove_broken_symlink": 199, "ignore_cas": 200, "insensit": 200, "utf": [200, 226], "otherfil": 200, "robocopi": 200, "abe2h9f": 200, "file_path": [200, 201], "mydir": 200, "newdir": 200, "do_someth": 200, "tzb2": 200, "bz2": 200, "txz": 200, "xz": 200, "keep_permiss": [200, 202], "bigfil": 200, "danger": 200, "inter": 200, "libmylib": [200, 207], "stare": 200, "libmath": 200, "other_libdir": 200, "rwxr": 200, "lrwxr": 200, "md5sum": 201, "sha256sum": 201, "md5": 202, "ftp": 202, "impli": [202, 272, 275], "httpbasic": 202, "sha": 202, "someurl": 202, "somefil": 202, "e5d695597e9fa520209d1b41edad2a27": 202, "ia64": 202, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 202, "base_path": 204, "patch_str": 204, "fuzz": 204, "fuzzi": 204, "0001": 204, "buildflatbuff": 204, "0002": 204, "patch_typ": 204, "patch_sourc": 204, "flatbuff": 204, "5650": 204, "patch_descript": 204, "misc": 204, "1232": 204, "1292": 204, "g_test_add_func": 204, "paus": 204, "cancel": 204, "do_pause_cancel_test": 204, "g_test_add_data_func": 204, "steal": 204, "gint_to_point": 204, "do_stealing_test": 204, "length": 204, "do_response_informational_content_length_test": 204, "ret": 204, "g_test_run": 204, "0003": 204, "base_fold": 205, "configure_arg": 207, "make_arg": 207, "_conanbuild": [207, 209], "destdir": 207, "unix_path": [207, 222], "install_nam": 207, "cmdsize": 207, "48": 207, "offset": 207, "stamp": 207, "jan": 207, "1970": 207, "loader": 207, "wl": [207, 211], "conanautotoolsdep": 208, "undesired_valu": 208, "seamlessli": 209, "precalcul": 209, "my_argu": 209, "sbindir": [209, 221], "oldincludedir": 209, "datarootdir": 209, "he": 209, "extra_defin": [209, 227], "extra_ldflag": [209, 227], "gcc_cxx11_abi": 209, "build_type_flag": 209, "sysroot_flag": 209, "apple_arch_flag": [209, 221], "apple_isysroot_flag": [209, 221], "msvc_runtime_flag": [209, 222], "myflag": 209, "update_configure_arg": 209, "updated_flag": 209, "update_make_arg": 209, "update_autoreconf_arg": 209, "xxxxxx_arg": 209, "prune": [209, 271], "gold": [209, 221], "lld": [209, 221], "nvcc": 209, "fc": 209, "mk": 210, "conan_dep": 210, "conan_name_zlib": 210, "conan_version_zlib": 210, "conan_reference_zlib": 210, "conan_root_zlib": 210, "zlib273508b343e8c": 210, "conan_include_dirs_zlib": 210, "conan_include_dir_flag": 210, "conan_lib_dirs_zlib": 210, "conan_lib_dir_flag": 210, "conan_bin_dirs_zlib": 210, "conan_bin_dir_flag": 210, "conan_libs_zlib": 210, "conan_lib_flag": 210, "conan_include_dir": 210, "conan_lib_dir": 210, "conan_bin_dir": 210, "conan_lib": [210, 267], "conan_define_flag": 210, "conan_system_lib_flag": 210, "lz": [210, 212], "libastr": 211, "_use_libastr": 211, "astral": 211, "linkflag": [211, 233], "tmp_dir": 211, "is_system": 211, "rt": 211, "your_us": 212, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 212, "pkg_config_alias": 212, "xxxxx": [212, 216, 221], "freeform": 212, "component_vers": 212, "custom_cont": 212, "mynam": 212, "componentnam": 212, "alias1": 212, "alias2": 212, "rcpath": 214, "bz": [214, 215], "fresh": 214, "new_local_repositori": 215, "build_fil": 215, "cc_import": 215, "cc_librari": 215, "z_precompil": 215, "static_librari": 215, "libz": [215, 246], "hdr": 215, "glob": 215, "filegroup": 215, "zlib_binari": 215, "bazel_target_nam": 215, "bazel_repository_nam": 215, "my_target": 215, "my_repo": 215, "cxxopt": 216, "dynamic_mod": 216, "compilation_mod": 216, "force_p": 216, "copt": 216, "flagn": 216, "conlyopt": 216, "linkopt": 216, "dbg": 216, "crosstool_top": 216, "icpx": 217, "conanintelsetvar": 217, "intelprofil": 217, "ms_toolset": 217, "batch": 217, "argn": 217, "intel64": 217, "ia32": 217, "ia": 217, "mysrcfold": 218, "reconfigur": 220, "dprefix": 220, "n_job": 220, "55": [221, 247], "default_librari": 221, "buildtyp": 221, "libexecdir": 221, "localedir": 221, "mandir": 221, "infodir": 221, "wrap_mod": 221, "nofallback": 221, "cpp_arg": 221, "c_arg": 221, "c_link_arg": 221, "cpp_link_arg": 221, "conan_meson_xxxx": 221, "with_msg": 221, "hi": 221, "everyon": 221, "contrast": 221, "packageopt": 221, "upon": 221, "mio": 221, "ios_host_profil": 221, "objc_arg": 221, "objc_link_arg": 221, "objcpp_arg": 221, "objcpp_link_arg": 221, "android_host_profil": 221, "c_ld": 221, "cc_ld": 221, "cpp_ld": 221, "cxx_ld": 221, "as_": 221, "AS": [221, 227], "windr": 221, "macosx": 221, "objcflag": 221, "objcxxflag": 221, "check_min_v": 222, "is_msvc": 222, "is_msvc_static_runtim": 222, "msvs_toolset": 222, "raise_invalid": 223, "visualstudio": 223, "worth": 223, "mt": [223, 226], "neither": 223, "myreleas": 224, "myplatform": 224, "conan_zlib_vars_release_x64": 225, "conanzlibxxxx": 225, "conanzlibincludedir": 225, "conanzliblib": 225, "conan_zlib_vars_debug_x64": 225, "conanzlib": 225, "conan_zlib_release_x64": 225, "conan_zlib_debug_x64": 225, "conan_bzip": 225, "bzip": 225, "conan_bzip2": 225, "conan_pkgname_compname_vars_release_x64": 225, "compnam": 225, "conan_pkgname_compname_release_x64": 225, "conan_pkgname_compnam": 225, "conan_pkgnam": 225, "conan_pkgname_vars_release_x64": 225, "gather": [225, 273], "catch": 225, "executablepath": 225, "binarydirectori": 225, "custombuild": 225, "caexcludepath": 225, "uncondit": 225, "conan_": 225, "_var": 225, "conantoolchain_release_x86": 226, "mtd": 226, "mdd": 226, "clcompil": 226, "windowstargetplatformvers": 226, "additionalopt": 226, "preprocessordefinit": 226, "vcvarsal": [226, 228], "includeextern": 226, "xmln": 226, "2003": 226, "itemdefinitiongroup": 226, "propertygroup": 226, "conannmakedep": 227, "_link_": 227, "conannmaketoolchain": 227, "my_flag": 227, "env_var": 227, "cl_env_var": 227, "winsdk": 228, "thin": [231, 254], "repourl": 231, "children": 231, "hidden_output": 231, "rev": 231, "get_remote_url": 231, "commit_in_remot": 231, "occurr": 231, "get_repo_root": 231, "toplevel": 231, "fetch_commit": 231, "qualifi": [232, 273], "sconscript_conandep": 233, "cpppath": 233, "binpath": 233, "frameworkpath": 233, "cppdefin": 233, "ccflag": 233, "shlinkflag": 233, "sconscript": 233, "mergeflag": 233, "chocolatei": 234, "libgl": 235, "libglvnd": 235, "devel": 235, "mesa": 235, "linuxmint": 235, "pidora": 235, "scientif": 235, "xenserv": 235, "amazon": 235, "oracl": 235, "amzn": 235, "almalinux": 235, "rocki": 235, "fedora": 235, "rhel": 235, "mageia": 235, "manjaro": 235, "opensus": 235, "sle": 235, "host_packag": 235, "install_substitut": 235, "packages_substitut": 235, "pkg3": 235, "_arch_nam": 235, "multiarch": 235, "arch_nam": 235, "libxcb": 235, "util0": 235, "packages_altern": 235, "amd64": 235, "conan_arch_set": 235, "apt_arch_set": 235, "86": 235, "armv7hl": 235, "lib32": 235, "c3i": 238, "profession": 239, "matrix": [239, 270, 271], "8081": 240, "8082": 240, "bintrai": 240, "jdk": 240, "dialog": 240, "bottl": 241, "wsgirefserv": 241, "ctrl": 241, "my_local_serv": 242, "lan": 242, "easiest": 244, "conan_export": 244, "f1fadf0d3b196dc0332750354ad8ab7b": [244, 249], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 244, "dd7bf2a1ab4eb5d1943598c09b616121": 244, "raspberri": 245, "pi": 245, "someprofil": 245, "gnueabihf": 245, "compressorrecip": [245, 247, 248], "identif": 245, "elf": 245, "lsb": 245, "eabi5": 245, "sysv": 245, "armhf": 245, "buildid": 245, "2a216076864a1b1f30211debf297ac37a9195196": 245, "different_configur": 246, "anywher": 246, "tutorial_us": 246, "zlib1": 246, "reinstal": 246, "dyld": 246, "41259": 246, "wonder": 246, "answer": 246, "li": [246, 273], "factor": 246, "breakdown": 246, "approxim": [247, 273], "87a7211557b6690ef5bf7fc599dd8349": 247, "f305019023c2db74d1001c5afa5cf362": 247, "82202701ea360c0863f1db5008067122": 247, "bd533fb124387a214816ab72c8d1df28": 247, "59": 247, "58": 247, "3b9e037ae1c615d045a06c67d88491a": 247, "chronolog": 247, "tediou": [247, 265, 274], "occas": 247, "4524fcdd41f33e8df88ece6e755a5dcc": 247, "1650538915": 247, "154": 247, "stai": 247, "conanfile_pi": 248, "neater": 248, "base64": 248, "auxiliari": 248, "v8": 248, "asset": 248, "dear": 248, "imgui": 248, "bind": 248, "clarifi": 248, "cmake_vers": 249, "3e3d8f3a848b2a60afafbe7a0955085a": 249, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 249, "48bc7191ec1ee467f1e951033d7d41b2": 249, "f2f48d9745706caf77ea883a5855538256e7f2d4": 249, "6c519070f013da19afd56b52c465b596": 249, "scaffold": 250, "walkthrough": 250, "peculiar": 250, "fanci": 251, "colour": [251, 262], "creating_packag": [251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263], "add_requir": 251, "check_max_cppstd": [251, 262], "check_min_cppstd": [251, 258, 262], "require_fmt": 251, "crimson": [251, 262], "emphasi": [251, 262], "bold": [251, 262], "__x86_64__": [251, 254, 256, 259, 266], "__cplusplu": 251, "201103": 251, "__gnuc__": 251, "__gnuc_minor__": 251, "__clang_major__": 251, "__clang_minor__": 251, "__apple_build_version__": 251, "13160021": 251, "build_method": 252, "with_test": 252, "with_fmt": [252, 253, 262], "novelti": 252, "compose_messag": 252, "add_subdirectori": 252, "googletest": [252, 258], "gtest_main": [252, 258], "hellotest": 252, "composemessag": 252, "expect_eq": 252, "c51d80ef47661865": 252, "3ad4c6873a47059c": 252, "tear": [252, 258], "82b6c0c858e739929f74f59c25c187b927d514f3": 252, "particular": 252, "uncommon": 252, "configure_options_set": 253, "met": 253, "ng": 253, "738feca714b7251063cc51448da0cf4811424e7c": 253, "7fe7f5af0ef27552": 253, "3bd9faedc711cbb4fdf10b295268246": 253, "e6b11fb0cb64e3777f8d62f4543cd6b3": 253, "5c497cbb5421cbda": 253, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 253, "19a2e552db727a2b": 253, "67b887a0805c2a535b58be404529c1f": 253, "c7796386fcad5369": 253, "depict": 253, "diagram": 253, "intuit": 253, "2a899fd0da3125064bf9328b8db681cd82899d56": 253, "f0d1385f4f90ae465341c15740552d7": 253, "8a55286c6595f662": 253, "601209640bd378c906638a8de90070f7": 253, "d1b3f3666400710fec06446a697f9eeddd1235aa": 253, "24a2edf207deeed4151bd87bca4af51c": 253, "concret": 254, "email": 254, "constraint": [254, 271, 275], "completitud": 254, "leverag": 254, "dcbfe21e5250264b26595d151796be70": 254, "__gnuc__4": [254, 256, 259, 266], "__gnuc_minor__2": [254, 256, 259, 266], "__clang_major__13": [254, 256, 259], "__clang_minor__1": [254, 256, 259], "__apple_build_version__13160021": [254, 256, 259], "6679492451b5d0750f14f9024fdbf84e19d2941b": 254, "customis": 254, "breakag": [254, 256], "package_inform": 255, "output_nam": 255, "a311fcf8a63f3206": 255, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [255, 261, 263], "44d78a68b16b25c5e6d7e8884b8f58b8": 255, "a8cb81b31dc10d96": 255, "handle_sourc": 256, "mutabl": 256, "0fcb5ffd11025446": 256, "update_sourc": 256, "369786d0fb355069": 256, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 256, "saw": [257, 258, 271], "other_packag": [258, 259, 260], "sumconan": 258, "sum": 258, "8d9f1fb3655adcb348befcd8374c5292": 258, "pid": [258, 259], "header_only_gtest": 258, "test_sum": 258, "9bf83ef65d5ff0d6": 258, "sumtest": 258, "basicsum": 258, "lack": 258, "3rd": 259, "circumst": 259, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 259, "deep": 259, "local_include_fold": 259, "local_lib_fold": 259, "prebuilt_binari": 259, "vendor_hello_librari": 259, "_o": 259, "_arch": 259, "9c7634dfe0369907f569c4e583f9bc50": 259, "522dcea5982a3f8a5b624c16477e47195da2f84f": 259, "63fead0844576fc02943e16909f08fcdddd6f44b": 259, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [259, 260], "28": 259, "a0cd51c51fe9010370187244af885b0efcc5b69b": 259, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 259, "dcf68e932572755309a5f69f3cee1bede410e907": 259, "somewher": 259, "prebuilt_remote_binari": 259, "base_url": 259, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 259, "secure_scannerrecip": 260, "secure_scann": 260, "scanner": 260, "secure_scannertestconan": 260, "my_consum": 260, "enviorn": 260, "overwrot": 260, "package_method": 261, "predetermin": 261, "b5857f2e70d1b2fd": 261, "bf7f5b9a3bb2c957742be4be216dfcbb": 261, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [261, 263], "47b4c4c61c8616e5": 261, "222db0532bba7cbc": 261, "50f91e204d09b64b24b29df3b87a2f3a": 261, "96ed9fb1f78bc96708b1abf4841523b0": 261, "21ec37b931782de8": 261, "preparing_the_build": 262, "optional_fmt": 262, "target_compile_definit": 262, "using_fmt": 262, "endl": 262, "debugshar": 262, "testing_packag": 263, "hellotestconan": 263, "cd132b054cf999f31bd2fd2424053ddc": 263, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 263, "1d9bb4c015de50bcb4a338c07229b3bc": 263, "4ff3fd65a1d37b52436bf62ea6eaac04": 263, "d136b3379fdb29bdfe31404b916b29e1": 263, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 263, "ee8cbd2bf32d1c89e553bdd9d5606127": 263, "costli": 264, "entir": 264, "depth": 264, "developing_packag": [265, 266, 267], "editable_packag": 265, "fledg": 265, "perspect": 265, "increment": 265, "trial": 266, "phase": 266, "local_package_development_flow": 266, "ve": 266, "cmakedeps_macro": 266, "f09ef573c22f3919ba26ee91ae444eaa": 266, "__cplusplus201103": 266, "__clang_major__14": 266, "__apple_build_version__14000029": 266, "po": 266, "examin": 267, "package_layout": 267, "sayb3ea744527a91": 267, "say830097e941e10": 267, "libsai": 267, "say8938ceae216fc": 267, "say_say_releas": 267, "local_fold": 267, "expir": 268, "increas": [268, 269], "oppos": [268, 275], "intent": 268, "intro": [270, 271], "credit": 270, "videogam": 270, "0fe4e6890766f7b8e21f764f0049aec7": 270, "d639998c2e55cf36d261ab319801c322": 270, "905c3f0babc520684c84127378fefdd0": [270, 271], "converg": 270, "mathemat": 271, "sound32": 271, "sound": 271, "1675278126": 271, "0552447": 271, "83d4b7bf607b3b60a6546f8b58b5cdd7": 271, "1675278904": 271, "0791488": 271, "1675278900": 271, "0103245": 271, "enforc": 271, "paramount": 271, "1675278901": 271, "7527816": 271, "harm": 271, "1675294635": 271, "6049662": 271, "1675294637": 271, "9775107": 271, "2475ece651f666f42c155623228c75d2": 272, "2b547b7f20f5541c16d0b5cbcf207502": 272, "licenc": 272, "1d674b4349d2b1ea06aa6419f5f99dd9": 272, "chat": 272, "17b45a168519b8e0ed178d822b7ad8c8": 272, "12f87e1b8a881da6b19cc7f229e16c76": 272, "ago": 272, "determinist": 272, "subsequ": 272, "8b8c3deef5ef47a8009d4afaebfe952": 272, "8e8d380347e6d067240c4c00132d42b1": 272, "c347faaedc1e7e3282d3bfed31700019": 272, "wast": 272, "apprecip": [273, 274], "newest": 273, "hold": 273, "letter": [273, 275], "becam": 273, "evid": 273, "demand": 273, "entiti": 273, "numer": 273, "tild": 273, "caret": 273, "include_prereleas": 273, "henc": 273, "fast": 274, "blown": 274, "intervent": 274, "excit": 275, "youtub": 275, "kkgglzm5ou": 275, "tribe": 275, "026": 275, "requirements_trait": 275, "modular": 275, "subapi": 275, "redesign": 275, "send": 275, "thorough": 275, "mydeploi": 275, "meaning": 275, "mylib_a": 275, "mylib_b": 275, "034": 275, "new_lockfil": 275, "enviro": 275, "shorten": 275, "short_path": 275, "incredibuild": 275, "sigstor": 275, "accur": 275, "bulk": 275, "teh": 275}, "objects": {"conan.api.conan_api": [[166, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[167, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[167, 1, 1, "", "global_conf"], [167, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[168, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.download.DownloadAPI": [[168, 2, 1, "", "download_full"], [168, 2, 1, "", "package"], [168, 2, 1, "", "recipe"]], "conan.api.subapi.export": [[169, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[170, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[170, 2, 1, "", "analyze_binaries"], [170, 2, 1, "", "load_graph"], [170, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[171, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[171, 2, 1, "", "install_binaries"], [171, 2, 1, "", "install_consumer"], [171, 2, 1, "", "install_sources"], [171, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[172, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[172, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[173, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[173, 2, 1, "", "get_home_template"], [173, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[174, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[174, 2, 1, "", "detect"], [174, 2, 1, "", "get_default_build"], [174, 2, 1, "", "get_default_host"], [174, 2, 1, "", "get_path"], [174, 2, 1, "", "get_profile"], [174, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[175, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[175, 2, 1, "", "add"], [175, 2, 1, "", "disable"], [175, 2, 1, "", "enable"], [175, 2, 1, "", "get"], [175, 2, 1, "", "list"], [175, 2, 1, "", "remove"], [175, 2, 1, "", "rename"], [175, 2, 1, "", "update"], [175, 2, 1, "", "user_login"], [175, 2, 1, "", "user_logout"]], "conan.api.subapi.remove": [[176, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[177, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[178, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[178, 2, 1, "", "check_upstream"], [178, 2, 1, "", "get_backup_sources"], [178, 2, 1, "", "prepare"], [178, 2, 1, "", "upload_full"]], "conan.tools.android": [[181, 3, 1, "", "android_abi"]], "conan.tools.apple": [[183, 0, 1, "", "XCRun"], [183, 3, 1, "", "fix_apple_shared_install_name"], [183, 3, 1, "", "is_apple_os"], [183, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[183, 1, 1, "", "ar"], [183, 1, 1, "", "cc"], [183, 1, 1, "", "cxx"], [183, 2, 1, "", "find"], [183, 1, 1, "", "install_name_tool"], [183, 1, 1, "", "libtool"], [183, 1, 1, "", "otool"], [183, 1, 1, "", "ranlib"], [183, 1, 1, "", "sdk_path"], [183, 1, 1, "", "sdk_platform_path"], [183, 1, 1, "", "sdk_platform_version"], [183, 1, 1, "", "sdk_version"], [183, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[184, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[184, 2, 1, "", "__init__"], [184, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[187, 3, 1, "", "check_max_cppstd"], [187, 3, 1, "", "check_min_cppstd"], [187, 3, 1, "", "default_cppstd"], [187, 3, 1, "", "supported_cppstd"], [187, 3, 1, "", "valid_max_cppstd"], [187, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[187, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[187, 3, 1, "", "can_run"], [187, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[189, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[189, 2, 1, "", "build"], [189, 2, 1, "", "configure"], [189, 2, 1, "", "ctest"], [189, 2, 1, "", "install"], [189, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[191, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[191, 2, 1, "", "generate"], [191, 2, 1, "", "get_cmake_package_name"], [191, 2, 1, "", "get_find_mode"], [191, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[190, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[192, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[192, 2, 1, "", "generate"]], "conan.tools.env.environment": [[196, 0, 1, "", "EnvVars"], [195, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[196, 2, 1, "", "apply"], [196, 2, 1, "", "get"], [196, 2, 1, "", "items"], [196, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[195, 2, 1, "", "append"], [195, 2, 1, "", "append_path"], [195, 2, 1, "", "compose_env"], [195, 2, 1, "", "define"], [195, 2, 1, "", "deploy_base_folder"], [195, 2, 1, "", "dumps"], [195, 2, 1, "", "prepend"], [195, 2, 1, "", "prepend_path"], [195, 2, 1, "", "remove"], [195, 2, 1, "", "unset"], [195, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[197, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[197, 2, 1, "", "environment"], [197, 2, 1, "", "generate"], [197, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[198, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[198, 2, 1, "", "environment"], [198, 2, 1, "", "generate"], [198, 2, 1, "", "vars"]], "conan.tools.files": [[200, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[200, 3, 1, "", "trim_conandata"], [200, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[200, 3, 1, "", "copy"]], "conan.tools.files.files": [[200, 3, 1, "", "chdir"], [201, 3, 1, "", "check_md5"], [201, 3, 1, "", "check_sha1"], [201, 3, 1, "", "check_sha256"], [202, 3, 1, "", "download"], [202, 3, 1, "", "ftp_download"], [202, 3, 1, "", "get"], [200, 3, 1, "", "load"], [200, 3, 1, "", "mkdir"], [200, 3, 1, "", "rename"], [200, 3, 1, "", "replace_in_file"], [200, 3, 1, "", "rm"], [200, 3, 1, "", "rmdir"], [200, 3, 1, "", "save"], [200, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[204, 3, 1, "", "apply_conandata_patches"], [204, 3, 1, "", "export_conandata_patches"], [204, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[205, 3, 1, "", "absolute_to_relative_symlinks"], [205, 3, 1, "", "remove_broken_symlinks"], [205, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[210, 0, 1, "", "MakeDeps"], [211, 0, 1, "", "PkgConfig"], [212, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[210, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[211, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[212, 1, 1, "", "content"], [212, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[207, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[207, 2, 1, "", "autoreconf"], [207, 2, 1, "", "configure"], [207, 2, 1, "", "install"], [207, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[208, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[208, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[209, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[209, 2, 1, "", "update_autoreconf_args"], [209, 2, 1, "", "update_configure_args"], [209, 2, 1, "", "update_make_args"]], "conan.tools.google": [[214, 0, 1, "", "Bazel"], [215, 0, 1, "", "BazelDeps"], [216, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[214, 2, 1, "", "build"], [214, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[215, 4, 1, "", "build_context_activated"], [215, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[216, 4, 1, "", "compilation_mode"], [216, 4, 1, "", "compiler"], [216, 4, 1, "", "conlyopt"], [216, 4, 1, "", "copt"], [216, 4, 1, "", "cppstd"], [216, 4, 1, "", "cpu"], [216, 4, 1, "", "crosstool_top"], [216, 4, 1, "", "cxxopt"], [216, 4, 1, "", "dynamic_mode"], [216, 4, 1, "", "force_pic"], [216, 2, 1, "", "generate"], [216, 4, 1, "", "linkopt"]], "conan.tools.intel": [[217, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[217, 4, 1, "", "arch"], [217, 1, 1, "", "command"], [217, 2, 1, "", "generate"], [217, 1, 1, "", "installation_path"], [217, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[220, 0, 1, "", "Meson"], [221, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[220, 2, 1, "", "build"], [220, 2, 1, "", "configure"], [220, 2, 1, "", "install"], [220, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[221, 4, 1, "", "apple_arch_flag"], [221, 4, 1, "", "apple_isysroot_flag"], [221, 4, 1, "", "apple_min_version_flag"], [221, 4, 1, "", "ar"], [221, 4, 1, "", "as_"], [221, 4, 1, "", "c"], [221, 4, 1, "", "c_args"], [221, 4, 1, "", "c_ld"], [221, 4, 1, "", "c_link_args"], [221, 4, 1, "", "cpp"], [221, 4, 1, "", "cpp_args"], [221, 4, 1, "", "cpp_ld"], [221, 4, 1, "", "cpp_link_args"], [221, 4, 1, "", "cross_build"], [221, 2, 1, "", "generate"], [221, 4, 1, "", "ld"], [221, 4, 1, "", "objc"], [221, 4, 1, "", "objc_args"], [221, 4, 1, "", "objc_link_args"], [221, 4, 1, "", "objcpp"], [221, 4, 1, "", "objcpp_args"], [221, 4, 1, "", "objcpp_link_args"], [221, 4, 1, "", "pkg_config_path"], [221, 4, 1, "", "pkgconfig"], [221, 4, 1, "", "preprocessor_definitions"], [221, 4, 1, "", "project_options"], [221, 4, 1, "", "properties"], [221, 4, 1, "", "strip"], [221, 4, 1, "", "windres"]], "conan.tools.microsoft": [[224, 0, 1, "", "MSBuild"], [225, 0, 1, "", "MSBuildDeps"], [226, 0, 1, "", "MSBuildToolchain"], [228, 0, 1, "", "VCVars"], [223, 3, 1, "", "unix_path"], [229, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[224, 2, 1, "", "build"], [224, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[225, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[226, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[228, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[223, 3, 1, "", "check_min_vs"], [223, 3, 1, "", "is_msvc"], [223, 3, 1, "", "is_msvc_static_runtime"], [223, 3, 1, "", "msvc_runtime_flag"], [223, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[232, 0, 1, "", "Version"]], "conan.tools.scm.git": [[231, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[231, 2, 1, "", "checkout"], [231, 2, 1, "", "checkout_from_conandata_coordinates"], [231, 2, 1, "", "clone"], [231, 2, 1, "", "commit_in_remote"], [231, 2, 1, "", "coordinates_to_conandata"], [231, 2, 1, "", "fetch_commit"], [231, 2, 1, "", "get_commit"], [231, 2, 1, "", "get_remote_url"], [231, 2, 1, "", "get_repo_root"], [231, 2, 1, "", "get_url_and_commit"], [231, 2, 1, "", "included_files"], [231, 2, 1, "", "is_dirty"], [231, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[235, 0, 1, "", "Apk"], [235, 0, 1, "", "Apt"], [235, 0, 1, "", "Brew"], [235, 0, 1, "", "Chocolatey"], [235, 0, 1, "", "PacMan"], [235, 0, 1, "", "Pkg"], [235, 0, 1, "", "PkgUtil"], [235, 0, 1, "", "Yum"], [235, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conans.model.conf.Conf": [[136, 2, 1, "", "append"], [136, 2, 1, "", "define"], [136, 2, 1, "", "prepend"], [136, 2, 1, "", "remove"], [136, 2, 1, "", "unset"], [136, 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, 61, 275], "1": [1, 265], "0": [1, 265], "15": 1, "feb": 1, "2024": 1, "17": 1, "10": 1, "jan": 1, "16": 1, "21": 1, "dec": 1, "2023": 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, "22": 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, 275], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 56, 59, 62, 90, 106, 118, 196, 240, 250, 254, 272], "an": [3, 248], "artifactori": [3, 69, 240], "backup": [3, 4, 88, 275], "repo": [3, 240], "your": [3, 5, 24, 36, 47, 48, 56, 59, 118, 245, 252, 254], "sourc": [3, 4, 29, 36, 52, 62, 74, 114, 120, 140, 252, 255, 256, 266, 267, 275], "back": 4, "up": [4, 239, 241], "third": [4, 19, 275], "parti": [4, 19, 275], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 54, 55, 56, 59, 61, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 160, 166, 181, 182, 183, 187, 188, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 207, 213, 217, 218, 219, 221, 222, 223, 230, 233, 234, 235, 237, 238, 239, 240, 241, 244, 245, 249, 253, 254, 255, 261, 263, 266, 267, 268, 275], "configur": [4, 22, 23, 67, 84, 118, 127, 133, 147, 150, 161, 185, 191, 217, 225, 235, 246, 248, 253, 255, 271, 275], "overview": 4, "usag": 4, "set": [4, 24, 77, 82, 84, 102, 111, 120, 151, 153, 190, 239, 241, 246, 253, 255, 260], "necessari": 4, "config": [4, 50, 89, 167], "run": [4, 31, 36, 118, 137, 145, 196, 240, 252], "normal": 4, "upload": [4, 6, 13, 88, 116, 178, 242, 272], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 50, 56, 59, 61, 74, 77, 103, 120, 134, 163, 235, 242, 243, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 272, 275], "repositori": [4, 237, 256], "host": [5, 245], "own": [5, 118], "conancent": [5, 8], "binari": [5, 74, 81, 82, 84, 120, 157, 253, 259], "updat": [5, 62, 102, 111], "from": [5, 7, 13, 29, 36, 62, 82, 145, 162, 191, 248, 256, 268], "upstream": 5, "manag": [6, 60, 61, 74, 209, 235, 261, 275], "metadata": [6, 91, 120, 275], "file": [6, 23, 50, 51, 147, 150, 179, 191, 192, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 208, 209, 210, 212, 215, 216, 221, 225, 256, 261, 275], "recip": [6, 31, 43, 82, 103, 145, 180, 252, 253, 255, 260], "hook": [6, 162], "ad": [6, 135, 153], "command": [6, 12, 31, 32, 69, 86, 145, 158, 159, 275], "download": [6, 13, 91, 150, 168, 202, 259], "remov": [6, 13, 92, 108, 111, 112, 176, 260, 268], "test_packag": 6, "save": [7, 88, 200], "restor": [7, 88], "cach": [7, 88, 140, 150, 254, 268, 275], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 50, 52, 54, 55, 62, 67, 90, 118, 160, 191, 192, 207, 221, 240, 244, 245, 246, 248, 249, 256, 261, 265, 272], "product": 8, "environ": [8, 22, 133, 155, 195, 196, 209, 227, 255, 275], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 82, 84, 109, 118, 153, 159, 160, 161, 185, 191, 192, 193, 208, 209, 210, 212, 215, 217, 221, 224, 225, 226, 227, 228, 275], "version": [9, 10, 39, 40, 82, 102, 117, 120, 232, 247, 269, 273, 274], "handl": [10, 256], "rang": [10, 247, 273], "pre": [10, 259], "releas": [10, 246], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 109], "list": [13, 89, 92, 103, 110, 111, 172, 268, 275], "them": 13, "one": 13, "remot": [13, 111, 152, 155, 175, 239, 256], "differ": [13, 39, 40, 77, 246, 272], "build": [13, 25, 26, 27, 29, 45, 47, 52, 54, 55, 69, 74, 84, 87, 90, 97, 98, 120, 122, 136, 137, 187, 192, 207, 221, 244, 245, 246, 249, 252, 259, 262, 265, 266, 267, 275], "conanfil": [14, 15, 16, 20, 26, 102, 119, 146, 248], "method": [14, 52, 82, 121, 235, 248, 252, 255, 261], "layout": [15, 16, 18, 19, 120, 133, 146, 218, 248, 267], "declar": [16, 18, 19, 195], "when": [16, 18, 19, 207], "i": [16, 85, 207], "insid": [16, 41, 50], "subfold": 16, "compon": [17, 21, 136, 185, 255], "edit": [17, 92, 240, 265], "we": 18, "have": 18, "multipl": [18, 21, 246, 255], "subproject": 18, "librari": [19, 21, 136, 153, 207, 246, 252, 253, 255, 258], "package_info": [20, 136, 255], "defin": [21, 185, 255], "provid": [21, 120, 255], "propag": [22, 255], "inform": [22, 60, 82, 120, 135, 136, 150, 193, 255], "consum": [22, 82, 120, 191, 243, 255], "settings_us": [24, 153], "yml": [24, 153, 256], "locat": [24, 31, 36, 159], "new": [24, 26, 109, 153, 173, 274, 275], "cross": [25, 27, 84, 192, 221, 245], "integr": [26, 63, 88, 275], "android": [26, 27, 64, 181, 221], "studio": [26, 29, 59, 72], "project": [26, 45, 47, 54, 55, 191, 244, 252], "introduc": [26, 246, 252, 255], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 82, 83, 120, 131, 225, 246, 251, 255, 265, 270], "txt": [26, 146, 248], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 50, 68, 188, 189, 191, 244, 261], "cmakelist": 26, "applic": [26, 245, 246], "ndk": 27, "develop": [28, 35, 264, 266], "tool": [28, 39, 40, 43, 44, 46, 51, 52, 53, 57, 58, 150, 180, 181, 182, 183, 187, 188, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 213, 217, 218, 219, 222, 223, 230, 233, 234, 235, 249, 260, 261], "flow": [28, 266], "debug": [29, 246], "step": [29, 261], "visual": [29, 59, 72, 223], "extens": [30, 69, 156, 275], "clean": [31, 88], "old": 31, "revis": [31, 77, 103, 247, 272, 275], "code": [31, 36, 252], "tour": [31, 36], "parser": 31, "user": [31, 102, 111, 120, 150, 275], "input": 31, "output": [31, 90, 93, 103, 120, 145], "public": [31, 275], "api": [31, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 275], "builtin": 33, "deploy": [33, 34, 36, 102, 161, 275], "agnost": 35, "deploi": [35, 36, 128], "copi": [36, 200, 248, 261], "all": [36, 74], "graph": [37, 95, 96, 97, 98, 99, 100, 103, 170, 275], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 90, 102, 120, 137, 141, 146, 179, 225, 248, 260, 274], "option": [39, 82, 84, 102, 120, 146, 151, 190, 221, 246, 253, 255, 270], "modul": [41, 162], "tool_requir": [41, 42, 120, 124, 146, 151], "transpar": 41, "autotool": [44, 45, 65, 207], "simpl": [45, 54, 55, 244, 260], "linux": [45, 77], "maco": [45, 207], "cmaketoolchain": [47, 48, 49, 50, 192], "cmakepreset": [47, 48], "gener": [47, 48, 69, 102, 120, 131, 146, 160, 191, 192, 193, 197, 198, 208, 209, 210, 212, 215, 216, 221, 225, 248, 255], "toolchain": [47, 192], "extend": [48, 84, 179, 192], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 133, 155, 185, 192, 195, 196], "xxx": 50, "import": [50, 162, 191, 268], "consider": 50, "patch": [52, 204, 252], "replace_in_fil": [52, 200], "apply_conandata_patch": [52, 204], "googl": [53, 213], "bazel": [54, 66, 214], "meson": [55, 56, 57, 71, 219, 220, 221], "first": [56, 59, 254], "microsoft": [58, 222, 223], "msbuild": [59, 224], "captur": 60, "git": [60, 231, 256], "scm": [60, 230], "credenti": [60, 149], "c": [61, 153, 221, 240, 253], "document": [61, 74], "instal": [62, 67, 69, 89, 102, 171, 191, 261, 266], "pip": 62, "recommend": 62, "known": 62, "issu": 62, "pipx": 62, "system": [62, 74, 141, 153, 234, 235, 252, 275], "self": [62, 131, 133, 267], "contain": 62, "execut": 62, "android_logo": 64, "autotools_logo": 65, "bazel_logo": 66, "clion_logo": 67, "clion": 67, "introduct": [67, 74, 150, 151, 179, 247], "plugin": [67, 82, 164, 275], "cmake_logo": 68, "jfrog_logo": 69, "jfrog": 69, "info": [69, 95, 100, 120], "how": [69, 85, 207, 235, 245], "gnu_make_logo": 70, "makefil": 70, "meson_logo": 71, "visual_studio_logo": 72, "xcode_logo": 73, "xcode": 73, "open": 74, "decentr": 74, "platform": 74, "compil": [74, 153, 192, 245], "stabl": 74, "commun": [74, 240], "navig": 74, "knowledg": 75, "cheat": 76, "sheet": 76, "faq": 77, "troubleshoot": 77, "error": [77, 248], "miss": 77, "prebuilt": [77, 259], "invalid": 77, "authenticationexcept": 77, "obtain": [77, 195], "window": 77, "core": [78, 150], "guidelin": 78, "good": 78, "practic": 78, "forbidden": 78, "video": 79, "refer": [80, 103, 120, 166, 184, 189, 190, 191, 192, 195, 196, 197, 198, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 224, 225, 226, 228, 235], "The": [81, 82, 83], "model": [81, 84, 120, 245, 255, 275], "compat": [82, 125, 157, 253, 275], "erasur": [82, 135], "package_id": [82, 83, 85, 135, 179, 260, 275], "py": [82, 119, 248, 275], "global": [82, 150, 160], "default": [82, 137, 221], "mode": [82, 83, 265], "effect": [83, 179], "non": [83, 248], "emb": [83, 120], "v": [84, 248], "conf": [84, 102, 120, 150, 151, 184, 186, 189, 192, 202, 209, 211, 214, 216, 217, 220, 221, 224, 225, 226, 227, 228], "target": [84, 191], "comput": 85, "formatt": [86, 95, 159], "path": [88, 102, 110], "check": 88, "home": 89, "show": [89, 110], "add": [92, 105, 111, 153, 251], "export": [93, 94, 120, 129, 169, 266], "format": [93, 103], "pkg": [94, 235, 266], "json": [95, 103, 149, 152, 154], "order": [97, 98], "merg": [98, 107], "explain": 99, "inspect": 101, "profil": [102, 110, 151, 164, 174, 245, 275], "name": [102, 120, 159, 212, 215], "channel": [102, 120], "lockfil": [102, 247, 271, 275], "id": [103, 246, 253], "artifact": 103, "html": 103, "compact": 103, "lock": [104, 105, 106, 107, 108], "templat": [109, 150], "detect": 110, "auth": 111, "disabl": [111, 191], "enabl": 111, "login": [111, 155], "logout": 111, "renam": [111, 200], "search": [113, 177], "test": [115, 137, 142, 179, 252, 258, 263], "server": [118, 241], "paramet": [118, 159], "permiss": 118, "authent": 118, "author": [118, 120], "ssl": 118, "nginx": 118, "subdirectori": 118, "apach": 118, "attribut": [120, 209, 212, 221, 224, 226, 227], "descript": [120, 150], "licens": [120, 261], "topic": 120, "homepag": 120, "url": 120, "build_requir": [120, 124], "test_requir": [120, 124, 146], "python_requir": [120, 160, 179, 268], "python_requires_extend": 120, "exports_sourc": 120, "conan_data": 120, "source_buildenv": 120, "package_typ": [120, 137], "default_opt": 120, "default_build_opt": 120, "options_descript": 120, "package_id_": 120, "non_emb": 120, "python": [120, 165, 179, 275], "unknown": 120, "_mode": 120, "build_polici": 120, "win_bash": 120, "win_bash_run": 120, "folder": [120, 133, 267], "source_fold": 120, "export_sources_fold": 120, "build_fold": 120, "package_fold": 120, "recipe_fold": 120, "recipe_metadata_fold": 120, "package_metadata_fold": 120, "no_copy_sourc": 120, "cpp": [120, 133, 267], "cpp_info": [120, 131, 136], "buildenv_info": [120, 136], "runenv_info": [120, 136], "conf_info": [120, 136], "deprec": [120, 151], "other": [120, 257, 268], "content": [120, 192, 237, 243, 250, 257, 269], "revision_mod": 120, "upload_polici": 120, "required_conan_vers": 120, "implement": [120, 126, 127, 135], "alia": 120, "extension_properti": 120, "build_id": 123, "host_vers": 124, "config_opt": 126, "avail": [126, 127, 135, 235], "automat": [126, 127, 135], "auto_shared_fp": [126, 127], "export_sourc": 130, "interfac": [131, 162], "iter": [131, 196], "init": 132, "auto_header_onli": 135, "partial": 135, "properti": [136, 191, 212, 214, 215, 235, 255], "trait": [137, 225], "header": [137, 253, 258], "lib": 137, "visibl": 137, "transitive_head": 137, "transitive_lib": 137, "package_id_mod": 137, "forc": [137, 140], "overrid": [137, 270], "direct": 137, "infer": 137, "each": 137, "kind": 137, "set_nam": 138, "set_vers": 139, "retriev": 140, "system_requir": 141, "collect": 141, "valid": [143, 248], "validate_build": 144, "text": 145, "conanrc": 148, "storage_path": 150, "download_cach": 150, "data": [150, 221], "type": [150, 221, 257], "oper": [150, 153, 200], "pattern": [150, 151], "about": [150, 207, 254], "built": [150, 161, 207, 259], "network": 150, "client": 150, "certif": 150, "ux": 150, "skip": 150, "warn": 150, "section": 151, "system_tool": 151, "buildenv": 151, "runenv": 151, "replace_requir": 151, "replace_tool_requir": 151, "platform_requir": 151, "platform_tool_requir": 151, "render": 151, "includ": 151, "msvc": 153, "intel": [153, 217], "cc": 153, "architectur": 153, "standard": 153, "aka": 153, "libcxx": 153, "sub": 153, "valu": 153, "source_credenti": 154, "conan_hom": 155, "conan_default_profil": 155, "termin": 155, "color": 155, "log": 155, "wrapper": [158, 275], "scope": 159, "decor": 159, "conan_command": 159, "group": 159, "none": 159, "conan_subcommand": 159, "argument": [159, 221], "definit": [159, 195], "pars": 159, "full_deploi": 161, "direct_deploi": 161, "structur": 162, "storag": 162, "activ": 162, "share": [162, 207, 246], "offici": 162, "sign": [163, 275], "base": 179, "class": 179, "reus": 179, "resolut": 179, "android_abi": 181, "appl": [182, 183, 221], "fix_apple_shared_install_nam": 183, "is_apple_o": 183, "to_apple_arch": 183, "xcrun": 183, "xcodebuild": 184, "xcodedep": 185, "addit": 185, "support": [185, 225, 248], "xcodetoolchain": 186, "build_job": 187, "cross_build": 187, "can_run": 187, "cppstd": 187, "check_min_cppstd": 187, "check_max_cppstd": 187, "valid_min_cppstd": 187, "valid_max_cppstd": 187, "default_cppstd": 187, "supported_cppstd": 187, "cmake_layout": 190, "multi": [190, 271, 275], "cmakedep": 191, "build_context_activ": [191, 212, 215], "build_context_suffix": [191, 212], "build_context_build_modul": 191, "check_components_exist": 191, "overwrit": 191, "side": 191, "set_properti": 191, "For": 191, "map": 191, "": [191, 275], "preprocessor_definit": [192, 221], "cache_vari": 192, "user_presets_path": 192, "presets_build_environ": 192, "presets_run_environ": 192, "extra": 192, "flag": [192, 210], "presets_prefix": 192, "advanc": 192, "block": 192, "cppinfo": 193, "aggreg": 193, "env": 194, "composit": 195, "envvar": 196, "appli": 196, "virtualbuildenv": 197, "virtualrunenv": 198, "basic": 200, "load": 200, "rm": 200, "mkdir": 200, "rmdir": 200, "chdir": 200, "unzip": 200, "update_conandata": 200, "trim_conandata": 200, "collect_lib": 200, "checksum": 201, "check_md5": 201, "check_sha1": 201, "check_sha256": 201, "get": 202, "ftp_download": 202, "autopackag": 203, "export_conandata_patch": 204, "symlink": [205, 261], "absolute_to_relative_symlink": 205, "remove_external_symlink": 205, "remove_broken_symlink": 205, "gnu": 206, "A": [207, 254, 260], "note": [207, 254], "relocat": 207, "helper": 207, "why": 207, "thi": 207, "problem": 207, "address": 207, "autotoolsdep": 208, "autotoolstoolchain": 209, "configure_arg": 209, "make_arg": 209, "autoreconf_arg": 209, "makedep": 210, "pkgconfig": 211, "pkgconfigdep": 212, "bazeldep": 215, "bazeltoolchain": 216, "intelcc": 217, "predefin": 218, "basic_layout": 218, "mesontoolchain": 221, "conan_meson_n": 221, "ini": 221, "conan_meson_cross": 221, "directori": 221, "project_opt": 221, "proper": 221, "object": 221, "check_min_v": 223, "msvc_runtime_flag": 223, "is_msvc": 223, "is_msvc_static_runtim": 223, "msvs_toolset": 223, "subsystem": 223, "unix_path": 223, "msbuilddep": 225, "msbuildtoolchain": 226, "nmakedep": 227, "nmaketoolchain": 227, "constructor": 227, "vcvar": 228, "vs_layout": 229, "scon": 233, "sconsdep": 233, "package_manag": 235, "affect": 235, "ar": 235, "invok": 235, "apk": 235, "apt": 235, "yum": 235, "dnf": 235, "pacman": 235, "zypper": 235, "brew": 235, "pkgutil": 235, "chocolatei": 235, "tutori": 236, "work": [237, 265], "tabl": [237, 243, 250, 257, 269], "contribut": 238, "center": 238, "ce": 240, "context": 245, "two": 245, "static": 246, "modifi": 246, "its": 246, "link": 246, "between": 246, "concept": 246, "understand": [248, 267], "flexibl": 248, "rais": 248, "condit": 248, "resourc": 248, "chang": [252, 255], "condition": 252, "select": 252, "onli": [253, 258], "specif": 255, "zip": 256, "store": 256, "branch": 256, "conandata": 256, "local": [259, 264], "alreadi": 259, "prepar": 262, "put": 265, "sai": 265, "revert": 265, "featur": 268, "unus": 268, "conflict": 270, "resolv": 270, "evolv": 271, "semant": 273, "express": 273, "autom": 274, "what": 275, "migrat": 275, "cli": 275, "checker": 275, "immut": 275, "optim": 275}, "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.1.0 (15-Feb-2024)": [[1, "feb-2024"]], "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, "id77"]], "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, "id159"]], "2.0.11 (18-Sept-2023)": [[1, "id171"]], "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, "id257"]], "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, "id326"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id386"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id435"]], "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"], [91, "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"], [269, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [109, "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"], [255, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [255, "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"], [146, "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"]], "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"], [159, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [161, "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"], [128, "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"]], "CMakeToolchain: Using xxx-config.cmake files inside packages": [[50, "cmaketoolchain-using-xxx-config-cmake-files-inside-packages"]], "Important considerations": [[50, "important-considerations"]], "tools.files": [[51, "tools-files"]], "Patching sources": [[52, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[52, "patching-using-replace-in-file"]], "in source() method": [[52, "in-source-method"]], "in build() method": [[52, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[52, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[52, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[53, "tools-google"]], "Build a simple Bazel project using Conan": [[54, "build-a-simple-bazel-project-using-conan"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Create your first Conan package with Meson": [[56, "create-your-first-conan-package-with-meson"]], "tools.meson": [[57, "tools-meson"]], "tools.microsoft": [[58, "tools-microsoft"]], "Create your first Conan package with Visual Studio/MSBuild": [[59, "create-your-first-conan-package-with-visual-studio-msbuild"]], "Capturing Git scm information": [[60, "capturing-git-scm-information"]], "Credentials management": [[60, "credentials-management"]], "Conan 2 - C and C++ Package Manager Documentation": [[61, "conan-2-c-and-c-package-manager-documentation"]], "Install": [[62, "install"]], "Install with pip (recommended)": [[62, "install-with-pip-recommended"]], "Known installation issues with pip": [[62, "known-installation-issues-with-pip"]], "Update": [[62, "update"], [102, "update"]], "Install with pipx": [[62, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[62, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[62, "install-from-source"]], "Integrations": [[63, "integrations"]], "android_logo Android": [[64, "android-logo-android"]], "autotools_logo Autotools": [[65, "autotools-logo-autotools"]], "bazel_logo Bazel": [[66, "bazel-logo-bazel"]], "clion_logo CLion": [[67, "clion-logo-clion"]], "Introduction": [[67, "introduction"], [74, "introduction"], [179, "introduction"]], "Installing the plugin": [[67, "installing-the-plugin"]], "Configuring the plugin": [[67, "configuring-the-plugin"]], "Using the plugin": [[67, "using-the-plugin"]], "cmake_logo CMake": [[68, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[69, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[69, "artifactory-build-info"]], "How to install the build info extension commands": [[69, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[69, "generating-a-build-info"]], "gnu_make_logo Makefile": [[70, "gnu-make-logo-makefile"]], "meson_logo Meson": [[71, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[72, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[73, "xcode-logo-xcode"]], "Open Source": [[74, "open-source"]], "Decentralized package manager": [[74, "decentralized-package-manager"]], "Binary management": [[74, "binary-management"]], "All platforms, all build systems and compilers": [[74, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[74, "stable"]], "Community": [[74, "community"]], "Navigating the documentation": [[74, "navigating-the-documentation"]], "Knowledge": [[75, "knowledge"]], "Cheat sheet": [[76, "cheat-sheet"]], "FAQ": [[77, "faq"]], "Troubleshooting": [[77, "troubleshooting"]], "ERROR: Missing prebuilt package": [[77, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[77, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[77, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[77, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[78, "core-guidelines"]], "Good practices": [[78, "good-practices"]], "Forbidden practices": [[78, "forbidden-practices"]], "Videos": [[79, "videos"]], "Reference": [[80, "reference"], [184, "reference"], [189, "reference"], [190, "reference"], [191, "reference"], [192, "reference"], [195, "reference"], [196, "reference"], [197, "reference"], [198, "reference"], [207, "reference"], [208, "reference"], [209, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [214, "reference"], [215, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [224, "reference"], [225, "reference"], [226, "reference"], [228, "reference"], [235, "reference"], [235, "id4"], [235, "id6"], [235, "id7"], [235, "id8"], [235, "id9"], [235, "id10"], [235, "id11"], [235, "id12"]], "The binary model": [[81, "the-binary-model"]], "Customizing the binary compatibility": [[82, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[82, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[82, "information-erasure-in-package-id-method"]], "The compatibility() method": [[82, "the-compatibility-method"]], "The compatibility.py plugin": [[82, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[82, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[82, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[82, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[82, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[83, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[83, "non-embed-mode"]], "Embed mode": [[83, "embed-mode"]], "Extending the binary model": [[84, "extending-the-binary-model"]], "Custom settings": [[84, "custom-settings"]], "Custom options": [[84, "custom-options"]], "Settings vs options vs conf": [[84, "settings-vs-options-vs-conf"]], "Custom configuration": [[84, "custom-configuration"]], "Cross build target settings": [[84, "cross-build-target-settings"]], "How the package_id is computed": [[85, "how-the-package-id-is-computed"]], "Commands": [[86, "commands"]], "Command formatters": [[86, "command-formatters"]], "conan build": [[87, "conan-build"], [266, "conan-build"]], "conan cache": [[88, "conan-cache"]], "conan cache path": [[88, "conan-cache-path"]], "conan cache clean": [[88, "conan-cache-clean"]], "conan cache check-integrity": [[88, "conan-cache-check-integrity"]], "conan cache backup-upload": [[88, "conan-cache-backup-upload"]], "conan cache save": [[88, "conan-cache-save"]], "conan cache restore": [[88, "conan-cache-restore"]], "conan config": [[89, "conan-config"]], "conan config home": [[89, "conan-config-home"]], "conan config install": [[89, "conan-config-install"]], "conan config list": [[89, "conan-config-list"]], "conan config show": [[89, "conan-config-show"]], "conan create": [[90, "conan-create"]], "Using conan create with build requirements": [[90, "using-conan-create-with-build-requirements"]], "Conan create output": [[90, "conan-create-output"]], "conan download": [[91, "conan-download"]], "conan editable": [[92, "conan-editable"]], "conan editable add": [[92, "conan-editable-add"]], "conan editable remove": [[92, "conan-editable-remove"]], "conan editable list": [[92, "conan-editable-list"]], "conan export": [[93, "conan-export"]], "Output Formats": [[93, "output-formats"]], "conan export-pkg": [[94, "conan-export-pkg"], [266, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[95, "formatter-graph-info-json"]], "conan graph": [[96, "conan-graph"]], "conan graph build-order": [[97, "conan-graph-build-order"]], "conan graph build-order-merge": [[98, "conan-graph-build-order-merge"]], "conan graph explain": [[99, "conan-graph-explain"]], "conan graph info": [[100, "conan-graph-info"]], "conan inspect": [[101, "conan-inspect"]], "conan install": [[102, "conan-install"], [266, "conan-install"]], "Conanfile path or \u2013requires": [[102, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[102, "profiles-settings-options-conf"]], "Generators and deployers": [[102, "generators-and-deployers"]], "Name, version, user, channel": [[102, "name-version-user-channel"]], "Lockfiles": [[102, "lockfiles"], [247, "lockfiles"], [271, "lockfiles"]], "conan list": [[103, "conan-list"]], "Listing recipe references": [[103, "listing-recipe-references"]], "Listing recipe revisions": [[103, "listing-recipe-revisions"]], "Listing package IDs": [[103, "listing-package-ids"]], "Listing package revisions": [[103, "listing-package-revisions"]], "Listing graph artifacts": [[103, "listing-graph-artifacts"]], "List json output format": [[103, "list-json-output-format"]], "List html output format": [[103, "list-html-output-format"]], "List compact output format": [[103, "list-compact-output-format"]], "conan lock": [[104, "conan-lock"]], "conan lock add": [[105, "conan-lock-add"]], "conan lock create": [[106, "conan-lock-create"]], "conan lock merge": [[107, "conan-lock-merge"]], "conan lock remove": [[108, "conan-lock-remove"]], "conan new": [[109, "conan-new"], [109, "id1"]], "Custom templates": [[109, "custom-templates"]], "conan profile": [[110, "conan-profile"]], "conan profile detect": [[110, "conan-profile-detect"]], "conan profile list": [[110, "conan-profile-list"]], "conan profile path": [[110, "conan-profile-path"]], "conan profile show": [[110, "conan-profile-show"]], "conan remote": [[111, "conan-remote"]], "conan remote add": [[111, "conan-remote-add"]], "conan remote auth": [[111, "conan-remote-auth"]], "conan remote disable": [[111, "conan-remote-disable"]], "conan remote enable": [[111, "conan-remote-enable"]], "conan remote list": [[111, "conan-remote-list"]], "conan remote list-users": [[111, "conan-remote-list-users"]], "conan remote login": [[111, "conan-remote-login"]], "conan remote logout": [[111, "conan-remote-logout"]], "conan remote remove": [[111, "conan-remote-remove"]], "conan remote rename": [[111, "conan-remote-rename"]], "conan remote set-user": [[111, "conan-remote-set-user"]], "conan remote update": [[111, "conan-remote-update"]], "conan remove": [[112, "conan-remove"]], "conan search": [[113, "conan-search"]], "conan source": [[114, "conan-source"], [266, "conan-source"]], "conan test": [[115, "conan-test"]], "conan upload": [[116, "conan-upload"]], "conan version": [[117, "conan-version"]], "Conan Server": [[118, "conan-server"]], "Configuration": [[118, "configuration"]], "Server Parameters": [[118, "server-parameters"]], "Permissions Parameters": [[118, "permissions-parameters"]], "Authentication": [[118, "authentication"]], "Create Your Own Custom Authenticator": [[118, "create-your-own-custom-authenticator"]], "Authorizations": [[118, "authorizations"]], "Create Your Own Custom Authorizer": [[118, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[118, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[118, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[118, "running-conan-server-using-apache"]], "conanfile.py": [[119, "conanfile-py"]], "Attributes": [[120, "attributes"], [212, "attributes"], [221, "attributes"], [226, "attributes"], [227, "attributes"]], "Package reference": [[120, "package-reference"]], "name": [[120, "name"]], "version": [[120, "version"]], "user": [[120, "user"]], "channel": [[120, "channel"]], "Metadata": [[120, "metadata"]], "description": [[120, "description"]], "license": [[120, "license"]], "author": [[120, "author"]], "topics": [[120, "topics"]], "homepage": [[120, "homepage"]], "url": [[120, "url"]], "Requirements": [[120, "requirements"]], "requires": [[120, "requires"]], "tool_requires": [[120, "tool-requires"]], "build_requires": [[120, "build-requires"]], "test_requires": [[120, "test-requires"], [124, "test-requires"]], "python_requires": [[120, "python-requires"], [268, "python-requires"]], "python_requires_extend": [[120, "python-requires-extend"]], "Sources": [[120, "sources"]], "exports": [[120, "exports"]], "exports_sources": [[120, "exports-sources"]], "conan_data": [[120, "conan-data"]], "source_buildenv": [[120, "source-buildenv"]], "Binary model": [[120, "binary-model"]], "package_type": [[120, "package-type"]], "settings": [[120, "settings"]], "options": [[120, "options"]], "default_options": [[120, "default-options"]], "default_build_options": [[120, "default-build-options"]], "options_description": [[120, "options-description"]], "info": [[120, "info"]], "package_id_{embed,non_embed,python,unknown}_mode": [[120, "package-id-embed-non-embed-python-unknown-mode"]], "Build": [[120, "build"]], "generators": [[120, "generators"]], "build_policy": [[120, "build-policy"]], "win_bash": [[120, "win-bash"]], "win_bash_run": [[120, "win-bash-run"]], "Folders and layout": [[120, "folders-and-layout"]], "source_folder": [[120, "source-folder"]], "export_sources_folder": [[120, "export-sources-folder"]], "build_folder": [[120, "build-folder"]], "package_folder": [[120, "package-folder"]], "recipe_folder": [[120, "recipe-folder"]], "recipe_metadata_folder": [[120, "recipe-metadata-folder"]], "package_metadata_folder": [[120, "package-metadata-folder"]], "no_copy_source": [[120, "no-copy-source"]], "Layout": [[120, "layout"]], "folders": [[120, "folders"]], "cpp": [[120, "cpp"]], "layouts": [[120, "layouts"]], "Package information for consumers": [[120, "package-information-for-consumers"]], "cpp_info": [[120, "cpp-info"]], "buildenv_info": [[120, "buildenv-info"]], "runenv_info": [[120, "runenv-info"]], "conf_info": [[120, "conf-info"], [136, "conf-info"]], "deprecated": [[120, "deprecated"]], "provides": [[120, "provides"]], "Other": [[120, "other"]], "dependencies": [[120, "dependencies"]], "conf": [[120, "conf"], [184, "conf"], [186, "conf"], [189, "conf"], [192, "conf"], [202, "conf"], [209, "conf"], [211, "conf"], [214, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [224, "conf"], [225, "conf"], [226, "conf"], [227, "conf"], [228, "conf"]], "Output": [[120, "output"]], "Output contents": [[120, "output-contents"]], "revision_mode": [[120, "revision-mode"]], "upload_policy": [[120, "upload-policy"]], "required_conan_version": [[120, "required-conan-version"]], "implements": [[120, "implements"]], "alias": [[120, "alias"]], "extension_properties": [[120, "extension-properties"]], "Methods": [[121, "methods"]], "build()": [[122, "build"]], "build_id()": [[123, "build-id"]], "build_requirements()": [[124, "build-requirements"]], "tool_requires()": [[124, "tool-requires"]], "": [[124, "host-version"]], "compatibility()": [[125, "compatibility"]], "config_options()": [[126, "config-options"]], "Available automatic implementations": [[126, "available-automatic-implementations"], [127, "available-automatic-implementations"], [135, "available-automatic-implementations"]], "auto_shared_fpic": [[126, "auto-shared-fpic"], [127, "auto-shared-fpic"]], "configure()": [[127, "configure"]], "export()": [[129, "export"]], "export_sources()": [[130, "export-sources"]], "generate()": [[131, "generate"]], "self.dependencies": [[131, "self-dependencies"]], "Dependencies interface": [[131, "dependencies-interface"]], "Iterating dependencies": [[131, "iterating-dependencies"]], "Dependencies cpp_info interface": [[131, "dependencies-cpp-info-interface"]], "init()": [[132, "init"]], "layout()": [[133, "layout"]], "self.folders": [[133, "self-folders"], [267, "self-folders"]], "self.cpp": [[133, "self-cpp"], [267, "self-cpp"]], "Environment variables and configuration": [[133, "environment-variables-and-configuration"]], "package()": [[134, "package"]], "package_id()": [[135, "package-id"]], "auto_header_only": [[135, "auto-header-only"]], "Information erasure": [[135, "information-erasure"]], "Partial information erasure": [[135, "partial-information-erasure"]], "Adding information": [[135, "adding-information"]], "package_info()": [[136, "package-info"]], "cpp_info: Library and build information": [[136, "cpp-info-library-and-build-information"]], "Properties": [[136, "properties"], [191, "properties"], [212, "properties"], [214, "properties"], [215, "properties"]], "Components": [[136, "components"]], "buildenv_info, runenv_info": [[136, "buildenv-info-runenv-info"]], "requirements()": [[137, "requirements"]], "Requirement traits": [[137, "requirement-traits"]], "headers": [[137, "headers"]], "libs": [[137, "libs"]], "build": [[137, "build"]], "run": [[137, "run"]], "visible": [[137, "visible"]], "transitive_headers": [[137, "transitive-headers"]], "transitive_libs": [[137, "transitive-libs"]], "test": [[137, "test"]], "package_id_mode": [[137, "package-id-mode"]], "force": [[137, "force"]], "override": [[137, "override"]], "direct": [[137, "direct"]], "package_type trait inferring": [[137, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[137, "default-traits-for-each-kind-of-requires"]], "set_name()": [[138, "set-name"]], "set_version()": [[139, "set-version"]], "source()": [[140, "source"]], "Source caching": [[140, "source-caching"]], "Forced retrieval of sources": [[140, "forced-retrieval-of-sources"]], "system_requirements()": [[141, "system-requirements"]], "Collecting system requirements": [[141, "collecting-system-requirements"]], "test()": [[142, "test"]], "validate()": [[143, "validate"]], "validate_build()": [[144, "validate-build"]], "Running and output": [[145, "running-and-output"]], "Output text from recipes": [[145, "output-text-from-recipes"]], "Running commands": [[145, "running-commands"]], "[requires]": [[146, "requires"]], "[tool_requires]": [[146, "tool-requires"], [151, "tool-requires"]], "[test_requires]": [[146, "test-requires"]], "[generators]": [[146, "generators"]], "[options]": [[146, "options"], [151, "options"]], "[layout]": [[146, "layout"]], "Configuration files": [[147, "configuration-files"]], ".conanrc": [[148, "conanrc"]], "credentials.json": [[149, "credentials-json"]], "global.conf": [[150, "global-conf"]], "Introduction to configuration": [[150, "introduction-to-configuration"]], "Description of configurations": [[150, "description-of-configurations"]], "core.cache:storage_path": [[150, "core-cache-storage-path"]], "core.download:download_cache": [[150, "core-download-download-cache"]], "User/Tools configurations": [[150, "user-tools-configurations"]], "Configuration file template": [[150, "configuration-file-template"]], "Configuration data types": [[150, "configuration-data-types"]], "Configuration data operators": [[150, "configuration-data-operators"]], "Configuration patterns": [[150, "configuration-patterns"]], "Information about built-in confs": [[150, "information-about-built-in-confs"]], "Networking confs": [[150, "networking-confs"]], "Configuration of client certificates": [[150, "configuration-of-client-certificates"]], "UX confs": [[150, "ux-confs"]], "Skip warnings": [[150, "skip-warnings"]], "profiles": [[151, "profiles"]], "Introduction to profiles": [[151, "introduction-to-profiles"]], "Profile sections": [[151, "profile-sections"]], "[settings]": [[151, "settings"]], "[system_tools] (DEPRECATED)": [[151, "system-tools-deprecated"]], "[buildenv]": [[151, "buildenv"]], "[runenv]": [[151, "runenv"]], "[conf]": [[151, "conf"]], "[replace_requires]": [[151, "replace-requires"]], "[replace_tool_requires]": [[151, "replace-tool-requires"]], "[platform_requires]": [[151, "platform-requires"]], "[platform_tool_requires]": [[151, "platform-tool-requires"]], "Profile rendering": [[151, "profile-rendering"]], "Profile patterns": [[151, "profile-patterns"]], "Profile includes": [[151, "profile-includes"]], "remotes.json": [[152, "remotes-json"]], "settings.yml": [[153, "settings-yml"]], "Operating systems": [[153, "operating-systems"]], "Compilers": [[153, "compilers"]], "msvc": [[153, "msvc"]], "intel-cc": [[153, "intel-cc"]], "Architectures": [[153, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[153, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[153, "customizing-settings"]], "Adding new settings": [[153, "adding-new-settings"]], "Adding new sub-settings": [[153, "adding-new-sub-settings"]], "Add new values": [[153, "add-new-values"]], "settings_user.yml": [[153, "settings-user-yml"]], "source_credentials.json": [[154, "source-credentials-json"]], "Environment variables": [[155, "environment-variables"]], "CONAN_HOME": [[155, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[155, "conan-default-profile"]], "Remote login variables": [[155, "remote-login-variables"]], "Terminal color variables": [[155, "terminal-color-variables"]], "Logging": [[155, "logging"]], "Extensions": [[156, "extensions"]], "Binary compatibility": [[157, "binary-compatibility"]], "Command wrapper": [[158, "command-wrapper"], [275, "command-wrapper"]], "Location and naming": [[159, "location-and-naming"]], "Scoping": [[159, "scoping"]], "Decorators": [[159, "decorators"]], "conan_command(group=None, formatters=None)": [[159, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[159, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[159, "argument-definition-and-parsing"]], "Formatters": [[159, "formatters"]], "Commands parameters": [[159, "commands-parameters"]], "Custom Conan generators": [[160, "custom-conan-generators"]], "Custom generators as python_requires": [[160, "custom-generators-as-python-requires"]], "Using global custom generators": [[160, "using-global-custom-generators"]], "Deployers": [[161, "deployers"]], "Built-in deployers": [[161, "built-in-deployers"]], "full_deploy": [[161, "full-deploy"]], "direct_deploy": [[161, "direct-deploy"]], "configuration": [[161, "configuration"], [191, "configuration"]], "Hooks": [[162, "hooks"]], "Hook structure": [[162, "hook-structure"]], "Importing from a module": [[162, "importing-from-a-module"]], "Hook interface": [[162, "hook-interface"]], "Storage, activation and sharing": [[162, "storage-activation-and-sharing"]], "Official Hooks": [[162, "official-hooks"]], "Package signing": [[163, "package-signing"], [275, "package-signing"]], "Profile plugin": [[164, "profile-plugin"]], "Python API": [[165, "python-api"]], "Conan API Reference": [[166, "conan-api-reference"]], "Config API": [[167, "config-api"]], "Download API": [[168, "download-api"]], "Export API": [[169, "export-api"]], "Graph API": [[170, "graph-api"]], "Install API": [[171, "install-api"]], "List API": [[172, "list-api"]], "New API": [[173, "new-api"]], "Profiles API": [[174, "profiles-api"]], "Remotes API": [[175, "remotes-api"]], "Remove API": [[176, "remove-api"]], "Search API": [[177, "search-api"]], "Upload API": [[178, "upload-api"]], "Python requires": [[179, "python-requires"]], "Extending base classes": [[179, "extending-base-classes"]], "Reusing files": [[179, "reusing-files"]], "Testing python-requires": [[179, "testing-python-requires"]], "Effect in package_id": [[179, "effect-in-package-id"]], "Resolution of python_requires": [[179, "resolution-of-python-requires"]], "Recipe tools": [[180, "recipe-tools"]], "conan.tools.android": [[181, "conan-tools-android"]], "android_abi()": [[181, "android-abi"]], "conan.tools.apple": [[182, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[183, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[183, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[183, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[183, "conan-tools-apple-xcrun"]], "XcodeBuild": [[184, "xcodebuild"]], "XcodeDeps": [[185, "xcodedeps"]], "Additional variables defined": [[185, "additional-variables-defined"]], "Components support": [[185, "components-support"]], "Custom configurations": [[185, "custom-configurations"], [217, "custom-configurations"]], "XcodeToolchain": [[186, "xcodetoolchain"]], "conan.tools.build": [[187, "conan-tools-build"]], "Building": [[187, "building"]], "conan.tools.build.build_jobs()": [[187, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[187, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[187, "conan-tools-build-can-run"]], "Cppstd": [[187, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[187, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[187, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[187, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[187, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[187, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[187, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[188, "conan-tools-cmake"]], "CMake": [[189, "cmake"]], "cmake_layout": [[190, "cmake-layout"]], "Multi-setting/option cmake_layout": [[190, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[191, "cmakedeps"]], "Generated files": [[191, "generated-files"], [192, "generated-files"], [197, "generated-files"], [198, "generated-files"], [208, "generated-files"], [209, "generated-files"], [210, "generated-files"], [212, "generated-files"], [215, "generated-files"], [216, "generated-files"], [221, "generated-files"], [225, "generated-files"]], "Customization": [[191, "customization"], [192, "customization"], [208, "customization"], [209, "customization"], [210, "customization"], [212, "customization"], [215, "customization"], [221, "customization"], [224, "customization"], [225, "customization"], [226, "customization"], [228, "customization"]], "build_context_activated": [[191, "build-context-activated"], [212, "build-context-activated"], [215, "build-context-activated"]], "build_context_suffix": [[191, "build-context-suffix"], [212, "build-context-suffix"]], "build_context_build_modules": [[191, "build-context-build-modules"]], "check_components_exist": [[191, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[191, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[191, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[191, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[192, "cmaketoolchain"]], "preprocessor_definitions": [[192, "preprocessor-definitions"], [221, "preprocessor-definitions"]], "cache_variables": [[192, "cache-variables"]], "variables": [[192, "variables"]], "user_presets_path": [[192, "user-presets-path"]], "presets_build_environment, presets_run_environment": [[192, "presets-build-environment-presets-run-environment"]], "Extra compilation flags": [[192, "extra-compilation-flags"]], "presets_prefix": [[192, "presets-prefix"]], "Using a custom toolchain file": [[192, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[192, "extending-and-advanced-customization"]], "Customizing the content blocks": [[192, "customizing-the-content-blocks"]], "Cross building": [[192, "cross-building"]], "conan.tools.CppInfo": [[193, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[193, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[194, "conan-tools-env"]], "Environment": [[195, "environment"]], "Variable declaration": [[195, "variable-declaration"]], "Composition": [[195, "composition"]], "Obtaining environment variables": [[195, "obtaining-environment-variables"]], "Environment definition": [[195, "environment-definition"]], "EnvVars": [[196, "envvars"]], "Creating environment files": [[196, "creating-environment-files"]], "Running with environment files": [[196, "running-with-environment-files"]], "Applying the environment variables": [[196, "applying-the-environment-variables"]], "Iterating the variables": [[196, "iterating-the-variables"]], "VirtualBuildEnv": [[197, "virtualbuildenv"]], "VirtualRunEnv": [[198, "virtualrunenv"]], "conan.tools.files": [[199, "conan-tools-files"]], "conan.tools.files basic operations": [[200, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[200, "conan-tools-files-copy"]], "conan.tools.files.load()": [[200, "conan-tools-files-load"]], "conan.tools.files.save()": [[200, "conan-tools-files-save"]], "conan.tools.files.rename()": [[200, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[200, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[200, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[200, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[200, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[200, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[200, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[200, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[200, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[200, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[201, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[201, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[201, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[201, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[202, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[202, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[202, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[202, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[203, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[204, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[204, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[204, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[204, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[205, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[205, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[205, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[205, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[206, "conan-tools-gnu"]], "Autotools": [[207, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[207, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[207, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[207, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[208, "autotoolsdeps"]], "AutotoolsToolchain": [[209, "autotoolstoolchain"]], "Customizing the environment": [[209, "customizing-the-environment"], [227, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[209, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[210, "makedeps"]], "Flags": [[210, "flags"]], "PkgConfig": [[211, "pkgconfig"]], "PkgConfigDeps": [[212, "pkgconfigdeps"]], "Naming": [[212, "naming"], [215, "naming"]], "conan.tools.google": [[213, "conan-tools-google"]], "Bazel": [[214, "bazel"]], "BazelDeps": [[215, "bazeldeps"]], "BazelToolchain": [[216, "bazeltoolchain"]], "conan.tools.intel": [[217, "conan-tools-intel"]], "IntelCC": [[217, "intelcc"]], "conan.tools.layout": [[218, "conan-tools-layout"]], "Predefined layouts": [[218, "predefined-layouts"]], "basic_layout": [[218, "basic-layout"]], "conan.tools.meson": [[219, "conan-tools-meson"]], "Meson": [[220, "meson"]], "MesonToolchain": [[221, "mesontoolchain"]], "conan_meson_native.ini": [[221, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[221, "conan-meson-cross-ini"]], "Default directories": [[221, "default-directories"]], "project_options": [[221, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[221, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[221, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[221, "objective-c-arguments"]], "conan.tools.microsoft": [[222, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[223, "conan-tools-microsoft-visual"]], "check_min_vs": [[223, "check-min-vs"]], "msvc_runtime_flag": [[223, "msvc-runtime-flag"]], "is_msvc": [[223, "is-msvc"]], "is_msvc_static_runtime": [[223, "is-msvc-static-runtime"]], "msvs_toolset": [[223, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[223, "conan-tools-microsoft-subsystems"]], "unix_path": [[223, "unix-path"]], "MSBuild": [[224, "msbuild"]], "attributes": [[224, "attributes"]], "MSBuildDeps": [[225, "msbuilddeps"]], "Requirement traits support": [[225, "requirement-traits-support"]], "Configurations": [[225, "configurations"]], "Dependencies": [[225, "dependencies"]], "MSBuildToolchain": [[226, "msbuildtoolchain"]], "NMakeDeps": [[227, "nmakedeps"]], "NMakeToolchain": [[227, "nmaketoolchain"]], "constructor": [[227, "constructor"]], "VCVars": [[228, "vcvars"]], "vs_layout": [[229, "vs-layout"]], "conan.tools.scm": [[230, "conan-tools-scm"]], "Git": [[231, "git"]], "Version": [[232, "version"]], "conan.tools.scons": [[233, "conan-tools-scons"]], "SConsDeps": [[233, "sconsdeps"]], "conan.tools.system": [[234, "conan-tools-system"]], "conan.tools.system.package_manager": [[235, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[235, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[235, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[235, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[235, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[235, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[235, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[235, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[235, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[235, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[235, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[235, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[235, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[236, "tutorial"]], "Working with Conan repositories": [[237, "working-with-conan-repositories"]], "Table of contents": [[237, null], [243, null], [250, null], [257, null], [269, null]], "Contributing to Conan Center": [[238, "contributing-to-conan-center"]], "Setting up a Conan remote": [[239, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[240, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[240, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[240, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[241, "setting-up-a-conan-server"]], "Uploading Packages": [[242, "uploading-packages"]], "Consuming packages": [[243, "consuming-packages"]], "Build a simple CMake project using Conan": [[244, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[245, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[245, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[245, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[246, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[246, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[246, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[246, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[246, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[247, "introduction-to-versioning"]], "Version ranges": [[247, "version-ranges"], [273, "version-ranges"]], "Revisions": [[247, "revisions"], [272, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[248, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[248, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[248, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[248, "conditional-requirements-using-a-conanfile-py"]], "Use the generate() method to copy resources from packages": [[248, "use-the-generate-method-to-copy-resources-from-packages"]], "Using build tools as Conan packages": [[249, "using-build-tools-as-conan-packages"]], "Creating packages": [[250, "creating-packages"]], "Add dependencies to packages": [[251, "add-dependencies-to-packages"]], "Build packages: the build() method": [[252, "build-packages-the-build-method"]], "Build and run tests for your project": [[252, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[252, "changes-introduced-in-the-recipe"], [255, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[252, "changes-introduced-in-the-library-sources"], [255, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[252, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[252, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[253, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[253, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[253, "c-libraries"]], "Header-only libraries": [[253, "header-only-libraries"]], "Create your first Conan package": [[254, "create-your-first-conan-package"]], "A note about the Conan cache": [[254, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[255, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[255, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[255, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[255, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[256, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[256, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[256, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[256, "using-the-conandata-yml-file"]], "Other types of packages": [[257, "other-types-of-packages"]], "Header-only packages": [[258, "header-only-packages"]], "Header-only library with tests": [[258, "header-only-library-with-tests"]], "Package prebuilt binaries": [[259, "package-prebuilt-binaries"]], "Locally building binaries": [[259, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[259, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[259, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[260, "tool-requires-packages"]], "A simple tool require recipe": [[260, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[260, "removing-settings-in-package-id"]], "Package files: the package() method": [[261, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[261, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[261, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[261, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[262, "preparing-the-build"]], "Testing Conan packages": [[263, "testing-conan-packages"]], "Developing packages locally": [[264, "developing-packages-locally"]], "Packages in editable mode": [[265, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[265, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[265, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[265, "working-with-editable-packages"]], "Building editable dependencies": [[265, "building-editable-dependencies"]], "Revert the editable mode": [[265, "revert-the-editable-mode"]], "Package Development Flow": [[266, "package-development-flow"]], "Understanding the Conan Package layout": [[267, "understanding-the-conan-package-layout"]], "cpp.package": [[267, "cpp-package"]], "cpp.source and cpp.build": [[267, "cpp-source-and-cpp-build"]], "Other important Conan features": [[268, "other-important-conan-features"]], "Packages lists": [[268, "packages-lists"]], "Removing unused packages from the cache": [[268, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[270, "dependencies-conflicts"]], "Resolving conflicts": [[270, "resolving-conflicts"]], "Overriding options": [[270, "overriding-options"]], "Multi-configuration lockfiles": [[271, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[271, "evolving-lockfiles"]], "Creating different revisions": [[272, "creating-different-revisions"]], "Using revisions": [[272, "using-revisions"]], "Uploading revisions": [[272, "uploading-revisions"]], "Package revisions": [[272, "package-revisions"]], "Semantic versioning": [[273, "semantic-versioning"]], "Range expressions": [[273, "range-expressions"]], "Versions": [[274, "versions"]], "Automating versions": [[274, "automating-versions"]], "Requiring the new versions": [[274, "requiring-the-new-versions"]], "What\u2019s new in Conan 2": [[275, "what-s-new-in-conan-2"]], "Conan 2 migration guide": [[275, "conan-2-migration-guide"]], "New graph model": [[275, "new-graph-model"]], "New public Python API": [[275, "new-public-python-api"]], "New build system integrations": [[275, "new-build-system-integrations"]], "New custom user commands": [[275, "new-custom-user-commands"]], "New CLI": [[275, "new-cli"]], "New deployers": [[275, "new-deployers"]], "New package_id": [[275, "new-package-id"]], "compatibility.py": [[275, "compatibility-py"]], "New lockfiles": [[275, "new-lockfiles"]], "New configuration and environment management": [[275, "new-configuration-and-environment-management"]], "Multi-revision cache": [[275, "multi-revision-cache"]], "New extensions plugins": [[275, "new-extensions-plugins"]], "Profile checker": [[275, "profile-checker"]], "Package immutability optimizations": [[275, "package-immutability-optimizations"]], "Package lists": [[275, "package-lists"]], "Metadata files": [[275, "metadata-files"]], "Third party backup sources": [[275, "third-party-backup-sources"]]}, "indexentries": {"append() (conf method)": [[136, "conans.model.conf.Conf.append"]], "define() (conf method)": [[136, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[136, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[136, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[136, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[136, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[166, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[167, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[167, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[167, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[168, "conan.api.subapi.download.DownloadAPI"]], "download_full() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.download_full"]], "package() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.package"]], "recipe() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.recipe"]], "exportapi (class in conan.api.subapi.export)": [[169, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[170, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[171, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[172, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[172, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[173, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[173, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[173, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[174, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[175, "conan.api.subapi.remotes.RemotesAPI"]], "add() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.add"]], "disable() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.disable"]], "enable() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.enable"]], "get() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.get"]], "list() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.list"]], "remove() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.remove"]], "rename() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.rename"]], "update() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.update"]], "user_login() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.user_login"]], "user_logout() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.user_logout"]], "removeapi (class in conan.api.subapi.remove)": [[176, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[177, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[178, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.prepare"]], "upload_full() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.upload_full"]], "android_abi() (in module conan.tools.android)": [[181, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[183, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[183, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[183, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[183, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[183, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[183, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[183, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[183, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[183, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[183, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[183, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[183, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[183, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[187, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[187, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[187, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[189, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[190, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[192, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[192, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[195, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[195, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[195, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[195, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[195, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[195, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[195, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[195, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[195, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[195, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[195, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[195, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[196, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[200, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[200, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[200, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[200, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[207, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[208, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[208, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[210, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[210, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[211, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[211, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[212, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[212, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[212, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[214, "conan.tools.google.Bazel"]], "build() (bazel method)": [[214, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[214, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[215, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[215, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[215, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[216, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[216, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[217, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[217, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[217, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[217, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[217, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[217, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[220, "conan.tools.meson.Meson"]], "build() (meson method)": [[220, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[220, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[220, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[220, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[221, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[221, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[223, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[224, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[224, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[225, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[225, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[226, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[226, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[228, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[228, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[229, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[231, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[231, "conan.tools.scm.git.Git.checkout"]], "checkout_from_conandata_coordinates() (git method)": [[231, "conan.tools.scm.git.Git.checkout_from_conandata_coordinates"]], "clone() (git method)": [[231, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[231, "conan.tools.scm.git.Git.commit_in_remote"]], "coordinates_to_conandata() (git method)": [[231, "conan.tools.scm.git.Git.coordinates_to_conandata"]], "fetch_commit() (git method)": [[231, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[231, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[231, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[231, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[231, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[231, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[231, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[231, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[232, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[235, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[235, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[235, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[235, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[235, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[235, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[235, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[235, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[235, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[235, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[235, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[235, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[235, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[235, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[235, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[235, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file diff --git a/2.1/sitemap.xml b/2.1/sitemap.xml index 4c929af5e4e..f1e60be4aca 100644 --- a/2.1/sitemap.xml +++ b/2.1/sitemap.xml @@ -1,2 +1,2 @@ -https://docs.conan.io/en/2.1/404.htmlhttps://docs.conan.io/en/2.1/changelog.htmlhttps://docs.conan.io/en/2.1/devops.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/sources_backup.htmlhttps://docs.conan.io/en/2.1/devops/conancenter/hosting_binaries.htmlhttps://docs.conan.io/en/2.1/devops/metadata.htmlhttps://docs.conan.io/en/2.1/devops/save_restore.htmlhttps://docs.conan.io/en/2.1/devops/using_conancenter.htmlhttps://docs.conan.io/en/2.1/devops/versioning.htmlhttps://docs.conan.io/en/2.1/devops/versioning/resolve_prereleases.htmlhttps://docs.conan.io/en/2.1/examples.htmlhttps://docs.conan.io/en/2.1/examples/commands.htmlhttps://docs.conan.io/en/2.1/examples/commands/pkglists.htmlhttps://docs.conan.io/en/2.1/examples/conanfile.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/conanfile_in_subfolder.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/editable_components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/multiple_subprojects.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/third_party_libraries.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/package_info_conf_and_env.htmlhttps://docs.conan.io/en/2.1/examples/config_files.htmlhttps://docs.conan.io/en/2.1/examples/config_files/settings/settings_user.htmlhttps://docs.conan.io/en/2.1/examples/cross_build.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/android_studio.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/ndk.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow/debug/step_into_dependencies.htmlhttps://docs.conan.io/en/2.1/examples/extensions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/custom_commands.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/builtin_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/custom_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/dev/development_deploy.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/sources/custom_deployer_sources.htmlhttps://docs.conan.io/en/2.1/examples/graph.htmlhttps://docs.conan.io/en/2.1/examples/graph/requires/consume_cmake_macro.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_options.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_versions.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/use_cmake_modules.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/using_protobuf.htmlhttps://docs.conan.io/en/2.1/examples/tools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/use_package_config_cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/files.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/patches/patch_sources.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazeltoolchain/build_simple_bazel_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/mesontoolchain/build_simple_meson_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/scm/git/capture_scm/git_capture_scm.htmlhttps://docs.conan.io/en/2.1/index.htmlhttps://docs.conan.io/en/2.1/installation.htmlhttps://docs.conan.io/en/2.1/integrations.htmlhttps://docs.conan.io/en/2.1/integrations/android.htmlhttps://docs.conan.io/en/2.1/integrations/autotools.htmlhttps://docs.conan.io/en/2.1/integrations/bazel.htmlhttps://docs.conan.io/en/2.1/integrations/clion.htmlhttps://docs.conan.io/en/2.1/integrations/cmake.htmlhttps://docs.conan.io/en/2.1/integrations/jfrog.htmlhttps://docs.conan.io/en/2.1/integrations/makefile.htmlhttps://docs.conan.io/en/2.1/integrations/meson.htmlhttps://docs.conan.io/en/2.1/integrations/visual_studio.htmlhttps://docs.conan.io/en/2.1/integrations/xcode.htmlhttps://docs.conan.io/en/2.1/introduction.htmlhttps://docs.conan.io/en/2.1/knowledge.htmlhttps://docs.conan.io/en/2.1/knowledge/cheatsheet.htmlhttps://docs.conan.io/en/2.1/knowledge/faq.htmlhttps://docs.conan.io/en/2.1/knowledge/guidelines.htmlhttps://docs.conan.io/en/2.1/knowledge/videos.htmlhttps://docs.conan.io/en/2.1/reference.htmlhttps://docs.conan.io/en/2.1/reference/binary_model.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/custom_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/dependencies.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/extending.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/package_id.htmlhttps://docs.conan.io/en/2.1/reference/commands.htmlhttps://docs.conan.io/en/2.1/reference/commands/build.htmlhttps://docs.conan.io/en/2.1/reference/commands/cache.htmlhttps://docs.conan.io/en/2.1/reference/commands/config.htmlhttps://docs.conan.io/en/2.1/reference/commands/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/download.htmlhttps://docs.conan.io/en/2.1/reference/commands/editable.htmlhttps://docs.conan.io/en/2.1/reference/commands/export.htmlhttps://docs.conan.io/en/2.1/reference/commands/export-pkg.htmlhttps://docs.conan.io/en/2.1/reference/commands/formatters/graph_info_json_formatter.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order_merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/explain.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/info.htmlhttps://docs.conan.io/en/2.1/reference/commands/inspect.htmlhttps://docs.conan.io/en/2.1/reference/commands/install.htmlhttps://docs.conan.io/en/2.1/reference/commands/list.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/add.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/new.htmlhttps://docs.conan.io/en/2.1/reference/commands/profile.htmlhttps://docs.conan.io/en/2.1/reference/commands/remote.htmlhttps://docs.conan.io/en/2.1/reference/commands/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/search.htmlhttps://docs.conan.io/en/2.1/reference/commands/source.htmlhttps://docs.conan.io/en/2.1/reference/commands/test.htmlhttps://docs.conan.io/en/2.1/reference/commands/upload.htmlhttps://docs.conan.io/en/2.1/reference/commands/version.htmlhttps://docs.conan.io/en/2.1/reference/conan_server.htmlhttps://docs.conan.io/en/2.1/reference/conanfile.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/attributes.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/compatibility.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/config_options.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/configure.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/deploy.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export_sources.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/generate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/init.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/layout.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_info.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_name.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_version.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/source.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/system_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/test.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate_build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/running_and_output.htmlhttps://docs.conan.io/en/2.1/reference/conanfile_txt.htmlhttps://docs.conan.io/en/2.1/reference/config_files.htmlhttps://docs.conan.io/en/2.1/reference/config_files/conanrc.htmlhttps://docs.conan.io/en/2.1/reference/config_files/credentials.htmlhttps://docs.conan.io/en/2.1/reference/config_files/global_conf.htmlhttps://docs.conan.io/en/2.1/reference/config_files/profiles.htmlhttps://docs.conan.io/en/2.1/reference/config_files/remotes.htmlhttps://docs.conan.io/en/2.1/reference/config_files/settings.htmlhttps://docs.conan.io/en/2.1/reference/config_files/source_credentials.htmlhttps://docs.conan.io/en/2.1/reference/environment.htmlhttps://docs.conan.io/en/2.1/reference/extensions.htmlhttps://docs.conan.io/en/2.1/reference/extensions/binary_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/extensions/command_wrapper.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_commands.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_generators.htmlhttps://docs.conan.io/en/2.1/reference/extensions/deployers.htmlhttps://docs.conan.io/en/2.1/reference/extensions/hooks.htmlhttps://docs.conan.io/en/2.1/reference/extensions/package_signing.htmlhttps://docs.conan.io/en/2.1/reference/extensions/profile_plugin.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConanAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConfigAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/DownloadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ExportAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/GraphAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/InstallAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ListAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/NewAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ProfilesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemotesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemoveAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/SearchAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/UploadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_requires.htmlhttps://docs.conan.io/en/2.1/reference/tools.htmlhttps://docs.conan.io/en/2.1/reference/tools/android.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/other.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodebuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodetoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/build.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmakedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmaketoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/cpp_info.htmlhttps://docs.conan.io/en/2.1/reference/tools/env.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/environment.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/envvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualbuildenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualrunenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/files.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/basic.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/checksum.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/downloads.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/packaging.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/patches.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/symlinks.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotools.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolsdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolstoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/makedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfig.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfigdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeldeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeltoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/intel.htmlhttps://docs.conan.io/en/2.1/reference/tools/layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/mesontoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/helpers.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuilddeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuildtoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/nmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/vcvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/visual_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/git.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/version.htmlhttps://docs.conan.io/en/2.1/reference/tools/scons.htmlhttps://docs.conan.io/en/2.1/reference/tools/system.htmlhttps://docs.conan.io/en/2.1/reference/tools/system/package_manager.htmlhttps://docs.conan.io/en/2.1/tutorial.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/conan_center.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/uploading_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/build_simple_cmake_project.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/cross_building_with_conan.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/different_configurations.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/intro_to_versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/the_flexibility_of_conanfile_py.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/use_tools_as_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/add_dependencies_to_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/build_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/configure_options_settings.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/define_package_information.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/handle_sources_in_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/header_only_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/package_method.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/preparing_the_build.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/test_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/editable_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/local_package_development_flow.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/package_layout.htmlhttps://docs.conan.io/en/2.1/tutorial/other_features.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/conflicts.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/lockfiles.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/revisions.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/version_ranges.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/versions.htmlhttps://docs.conan.io/en/2.1/whatsnew.htmlhttps://docs.conan.io/en/2.1/genindex.htmlhttps://docs.conan.io/en/2.1/Page Not Found.htmlhttps://docs.conan.io/en/2.1/search.html \ No newline at end of file +https://docs.conan.io/en/2.1/404.htmlhttps://docs.conan.io/en/2.1/changelog.htmlhttps://docs.conan.io/en/2.1/devops.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/sources_backup.htmlhttps://docs.conan.io/en/2.1/devops/conancenter/hosting_binaries.htmlhttps://docs.conan.io/en/2.1/devops/metadata.htmlhttps://docs.conan.io/en/2.1/devops/save_restore.htmlhttps://docs.conan.io/en/2.1/devops/using_conancenter.htmlhttps://docs.conan.io/en/2.1/devops/versioning.htmlhttps://docs.conan.io/en/2.1/devops/versioning/resolve_prereleases.htmlhttps://docs.conan.io/en/2.1/examples.htmlhttps://docs.conan.io/en/2.1/examples/commands.htmlhttps://docs.conan.io/en/2.1/examples/commands/pkglists.htmlhttps://docs.conan.io/en/2.1/examples/conanfile.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/conanfile_in_subfolder.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/editable_components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/multiple_subprojects.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/third_party_libraries.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/package_info_conf_and_env.htmlhttps://docs.conan.io/en/2.1/examples/config_files.htmlhttps://docs.conan.io/en/2.1/examples/config_files/settings/settings_user.htmlhttps://docs.conan.io/en/2.1/examples/cross_build.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/android_studio.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/ndk.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow/debug/step_into_dependencies.htmlhttps://docs.conan.io/en/2.1/examples/extensions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/custom_commands.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/builtin_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/custom_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/dev/development_deploy.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/sources/custom_deployer_sources.htmlhttps://docs.conan.io/en/2.1/examples/graph.htmlhttps://docs.conan.io/en/2.1/examples/graph/requires/consume_cmake_macro.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_options.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_versions.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/use_cmake_modules.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/using_protobuf.htmlhttps://docs.conan.io/en/2.1/examples/tools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/use_package_config_cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/files.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/patches/patch_sources.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazeltoolchain/build_simple_bazel_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/build_simple_meson_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/scm/git/capture_scm/git_capture_scm.htmlhttps://docs.conan.io/en/2.1/index.htmlhttps://docs.conan.io/en/2.1/installation.htmlhttps://docs.conan.io/en/2.1/integrations.htmlhttps://docs.conan.io/en/2.1/integrations/android.htmlhttps://docs.conan.io/en/2.1/integrations/autotools.htmlhttps://docs.conan.io/en/2.1/integrations/bazel.htmlhttps://docs.conan.io/en/2.1/integrations/clion.htmlhttps://docs.conan.io/en/2.1/integrations/cmake.htmlhttps://docs.conan.io/en/2.1/integrations/jfrog.htmlhttps://docs.conan.io/en/2.1/integrations/makefile.htmlhttps://docs.conan.io/en/2.1/integrations/meson.htmlhttps://docs.conan.io/en/2.1/integrations/visual_studio.htmlhttps://docs.conan.io/en/2.1/integrations/xcode.htmlhttps://docs.conan.io/en/2.1/introduction.htmlhttps://docs.conan.io/en/2.1/knowledge.htmlhttps://docs.conan.io/en/2.1/knowledge/cheatsheet.htmlhttps://docs.conan.io/en/2.1/knowledge/faq.htmlhttps://docs.conan.io/en/2.1/knowledge/guidelines.htmlhttps://docs.conan.io/en/2.1/knowledge/videos.htmlhttps://docs.conan.io/en/2.1/reference.htmlhttps://docs.conan.io/en/2.1/reference/binary_model.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/custom_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/dependencies.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/extending.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/package_id.htmlhttps://docs.conan.io/en/2.1/reference/commands.htmlhttps://docs.conan.io/en/2.1/reference/commands/build.htmlhttps://docs.conan.io/en/2.1/reference/commands/cache.htmlhttps://docs.conan.io/en/2.1/reference/commands/config.htmlhttps://docs.conan.io/en/2.1/reference/commands/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/download.htmlhttps://docs.conan.io/en/2.1/reference/commands/editable.htmlhttps://docs.conan.io/en/2.1/reference/commands/export.htmlhttps://docs.conan.io/en/2.1/reference/commands/export-pkg.htmlhttps://docs.conan.io/en/2.1/reference/commands/formatters/graph_info_json_formatter.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order_merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/explain.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/info.htmlhttps://docs.conan.io/en/2.1/reference/commands/inspect.htmlhttps://docs.conan.io/en/2.1/reference/commands/install.htmlhttps://docs.conan.io/en/2.1/reference/commands/list.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/add.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/new.htmlhttps://docs.conan.io/en/2.1/reference/commands/profile.htmlhttps://docs.conan.io/en/2.1/reference/commands/remote.htmlhttps://docs.conan.io/en/2.1/reference/commands/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/search.htmlhttps://docs.conan.io/en/2.1/reference/commands/source.htmlhttps://docs.conan.io/en/2.1/reference/commands/test.htmlhttps://docs.conan.io/en/2.1/reference/commands/upload.htmlhttps://docs.conan.io/en/2.1/reference/commands/version.htmlhttps://docs.conan.io/en/2.1/reference/conan_server.htmlhttps://docs.conan.io/en/2.1/reference/conanfile.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/attributes.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/compatibility.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/config_options.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/configure.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/deploy.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export_sources.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/generate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/init.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/layout.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_info.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_name.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_version.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/source.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/system_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/test.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate_build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/running_and_output.htmlhttps://docs.conan.io/en/2.1/reference/conanfile_txt.htmlhttps://docs.conan.io/en/2.1/reference/config_files.htmlhttps://docs.conan.io/en/2.1/reference/config_files/conanrc.htmlhttps://docs.conan.io/en/2.1/reference/config_files/credentials.htmlhttps://docs.conan.io/en/2.1/reference/config_files/global_conf.htmlhttps://docs.conan.io/en/2.1/reference/config_files/profiles.htmlhttps://docs.conan.io/en/2.1/reference/config_files/remotes.htmlhttps://docs.conan.io/en/2.1/reference/config_files/settings.htmlhttps://docs.conan.io/en/2.1/reference/config_files/source_credentials.htmlhttps://docs.conan.io/en/2.1/reference/environment.htmlhttps://docs.conan.io/en/2.1/reference/extensions.htmlhttps://docs.conan.io/en/2.1/reference/extensions/binary_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/extensions/command_wrapper.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_commands.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_generators.htmlhttps://docs.conan.io/en/2.1/reference/extensions/deployers.htmlhttps://docs.conan.io/en/2.1/reference/extensions/hooks.htmlhttps://docs.conan.io/en/2.1/reference/extensions/package_signing.htmlhttps://docs.conan.io/en/2.1/reference/extensions/profile_plugin.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConanAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConfigAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/DownloadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ExportAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/GraphAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/InstallAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ListAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/NewAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ProfilesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemotesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemoveAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/SearchAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/UploadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_requires.htmlhttps://docs.conan.io/en/2.1/reference/tools.htmlhttps://docs.conan.io/en/2.1/reference/tools/android.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/other.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodebuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodetoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/build.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmakedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmaketoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/cpp_info.htmlhttps://docs.conan.io/en/2.1/reference/tools/env.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/environment.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/envvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualbuildenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualrunenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/files.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/basic.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/checksum.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/downloads.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/packaging.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/patches.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/symlinks.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotools.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolsdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolstoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/makedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfig.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfigdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeldeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeltoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/intel.htmlhttps://docs.conan.io/en/2.1/reference/tools/layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/mesontoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/helpers.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuilddeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuildtoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/nmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/vcvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/visual_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/git.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/version.htmlhttps://docs.conan.io/en/2.1/reference/tools/scons.htmlhttps://docs.conan.io/en/2.1/reference/tools/system.htmlhttps://docs.conan.io/en/2.1/reference/tools/system/package_manager.htmlhttps://docs.conan.io/en/2.1/tutorial.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/conan_center.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/uploading_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/build_simple_cmake_project.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/cross_building_with_conan.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/different_configurations.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/intro_to_versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/the_flexibility_of_conanfile_py.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/use_tools_as_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/add_dependencies_to_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/build_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/configure_options_settings.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/define_package_information.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/handle_sources_in_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/header_only_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/package_method.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/preparing_the_build.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/test_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/editable_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/local_package_development_flow.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/package_layout.htmlhttps://docs.conan.io/en/2.1/tutorial/other_features.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/conflicts.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/lockfiles.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/revisions.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/version_ranges.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/versions.htmlhttps://docs.conan.io/en/2.1/whatsnew.htmlhttps://docs.conan.io/en/2.1/genindex.htmlhttps://docs.conan.io/en/2.1/Page Not Found.htmlhttps://docs.conan.io/en/2.1/search.html \ No newline at end of file diff --git a/2.1/tutorial.html b/2.1/tutorial.html index 8add3eb8f4e..b2843b8e355 100644 --- a/2.1/tutorial.html +++ b/2.1/tutorial.html @@ -183,7 +183,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories.html b/2.1/tutorial/conan_repositories.html index 05113be83ef..f8e73ae0497 100644 --- a/2.1/tutorial/conan_repositories.html +++ b/2.1/tutorial/conan_repositories.html @@ -153,7 +153,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories/conan_center.html b/2.1/tutorial/conan_repositories/conan_center.html index dc33148b180..f0b7b67175b 100644 --- a/2.1/tutorial/conan_repositories/conan_center.html +++ b/2.1/tutorial/conan_repositories/conan_center.html @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories/setting_up_conan_remotes.html b/2.1/tutorial/conan_repositories/setting_up_conan_remotes.html index 1782d915923..2b6a443dcd4 100644 --- a/2.1/tutorial/conan_repositories/setting_up_conan_remotes.html +++ b/2.1/tutorial/conan_repositories/setting_up_conan_remotes.html @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html b/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html index 53d3496d07d..f2232ea77d1 100644 --- a/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html +++ b/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.html @@ -191,7 +191,7 @@

    Creating and Using a Conan Repo

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html b/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html index 2f6568a2818..2ea96e25190 100644 --- a/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html +++ b/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.html @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/conan_repositories/uploading_packages.html b/2.1/tutorial/conan_repositories/uploading_packages.html index 8720ca7d20f..ee41d8fcd73 100644 --- a/2.1/tutorial/conan_repositories/uploading_packages.html +++ b/2.1/tutorial/conan_repositories/uploading_packages.html @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2.1/tutorial/consuming_packages.html b/2.1/tutorial/consuming_packages.html index 1f9d2fe1e2b..af4d8e7dbaa 100644 --- a/2.1/tutorial/consuming_packages.html +++ b/2.1/tutorial/consuming_packages.html @@ -154,6 +154,7 @@
  • Use the layout() method
  • Use the validate() method to raise an error for non-supported configurations
  • Conditional requirements using a conanfile.py
  • +
  • Use the generate() method to copy resources from packages
  • How to cross-compile your applications using Conan: host and build contexts
  • tools.meson
  • tools.google

    Build a simple Meson project using Conan

    @@ -152,7 +152,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/integrations/visual_studio.html b/2/integrations/visual_studio.html index 7d4456878d4..6dadb4ea781 100644 --- a/2/integrations/visual_studio.html +++ b/2/integrations/visual_studio.html @@ -161,7 +161,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/integrations/xcode.html b/2/integrations/xcode.html index 270617fae37..fde3e107e55 100644 --- a/2/integrations/xcode.html +++ b/2/integrations/xcode.html @@ -155,7 +155,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/introduction.html b/2/introduction.html index 987abf5d922..0d06c3e5b9c 100644 --- a/2/introduction.html +++ b/2/introduction.html @@ -219,7 +219,7 @@

    Navigating the documentation

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/knowledge.html b/2/knowledge.html index 9e3ca3466b3..913444c8f7d 100644 --- a/2/knowledge.html +++ b/2/knowledge.html @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/knowledge/cheatsheet.html b/2/knowledge/cheatsheet.html index f584317a02a..3d8e3a42025 100644 --- a/2/knowledge/cheatsheet.html +++ b/2/knowledge/cheatsheet.html @@ -138,7 +138,7 @@

    Cheat sheet

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/knowledge/faq.html b/2/knowledge/faq.html index f14e88d9ec9..de5135b3fd2 100644 --- a/2/knowledge/faq.html +++ b/2/knowledge/faq.html @@ -224,7 +224,7 @@

    ERROR: AuthenticationException:

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/knowledge/guidelines.html b/2/knowledge/guidelines.html index 88d5631393d..45dcd7ed91b 100644 --- a/2/knowledge/guidelines.html +++ b/2/knowledge/guidelines.html @@ -199,7 +199,7 @@

    Forbidden practices

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/knowledge/videos.html b/2/knowledge/videos.html index e31b3f76577..4a282ff90de 100644 --- a/2/knowledge/videos.html +++ b/2/knowledge/videos.html @@ -178,7 +178,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/objects.inv b/2/objects.inv index 3bc60902579..137bf329cce 100644 Binary files a/2/objects.inv and b/2/objects.inv differ diff --git a/2/reference.html b/2/reference.html index 1f563a70874..f0f3aef87b2 100644 --- a/2/reference.html +++ b/2/reference.html @@ -197,7 +197,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/binary_model.html b/2/reference/binary_model.html index dae0eea430a..96e32b9a5b7 100644 --- a/2/reference/binary_model.html +++ b/2/reference/binary_model.html @@ -149,7 +149,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/binary_model/custom_compatibility.html b/2/reference/binary_model/custom_compatibility.html index b866dd48cc7..3bcd1f164c5 100644 --- a/2/reference/binary_model/custom_compatibility.html +++ b/2/reference/binary_model/custom_compatibility.html @@ -268,7 +268,7 @@

    Custom package_id from recipe dependencies

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/binary_model/dependencies.html b/2/reference/binary_model/dependencies.html index 2e3485ca8a8..7f2044fffec 100644 --- a/2/reference/binary_model/dependencies.html +++ b/2/reference/binary_model/dependencies.html @@ -259,7 +259,7 @@

    Embed mode

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/binary_model/extending.html b/2/reference/binary_model/extending.html index 90eb358c27a..2283ed8c242 100644 --- a/2/reference/binary_model/extending.html +++ b/2/reference/binary_model/extending.html @@ -266,7 +266,7 @@

    Custom configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/binary_model/package_id.html b/2/reference/binary_model/package_id.html index dc8029df501..32e4392c155 100644 --- a/2/reference/binary_model/package_id.html +++ b/2/reference/binary_model/package_id.html @@ -223,7 +223,7 @@

    How the package

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands.html b/2/reference/commands.html index 62fd625d305..4111f773b6d 100644 --- a/2/reference/commands.html +++ b/2/reference/commands.html @@ -204,7 +204,7 @@

    Command formatters

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/build.html b/2/reference/commands/build.html index 12891e60555..8750994e7b8 100644 --- a/2/reference/commands/build.html +++ b/2/reference/commands/build.html @@ -292,7 +292,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/cache.html b/2/reference/commands/cache.html index e2158de66af..80790c0a78d 100644 --- a/2/reference/commands/cache.html +++ b/2/reference/commands/cache.html @@ -460,7 +460,7 @@

    conan cache restore

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/config.html b/2/reference/commands/config.html index 85c1779d7b4..37fe07a6987 100644 --- a/2/reference/commands/config.html +++ b/2/reference/commands/config.html @@ -489,7 +489,7 @@

    conan config show

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/create.html b/2/reference/commands/create.html index 026a1329449..2e3390c4ef0 100644 --- a/2/reference/commands/create.html +++ b/2/reference/commands/create.html @@ -327,7 +327,7 @@

    Conan create output

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/download.html b/2/reference/commands/download.html index 0da13736261..e022501b020 100644 --- a/2/reference/commands/download.html +++ b/2/reference/commands/download.html @@ -251,7 +251,7 @@

    Downloading metadata

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/editable.html b/2/reference/commands/editable.html index 961b5d78f76..21994c81d8e 100644 --- a/2/reference/commands/editable.html +++ b/2/reference/commands/editable.html @@ -246,7 +246,7 @@

    conan editable list

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/export-pkg.html b/2/reference/commands/export-pkg.html index d1563d67704..4fc49371274 100644 --- a/2/reference/commands/export-pkg.html +++ b/2/reference/commands/export-pkg.html @@ -264,7 +264,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/export.html b/2/reference/commands/export.html index 1bfd92f69d8..a0c8c561862 100644 --- a/2/reference/commands/export.html +++ b/2/reference/commands/export.html @@ -209,7 +209,7 @@

    Output Formats

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/formatters/graph_info_json_formatter.html b/2/reference/commands/formatters/graph_info_json_formatter.html index 820cb6b6d8c..2d462740115 100644 --- a/2/reference/commands/formatters/graph_info_json_formatter.html +++ b/2/reference/commands/formatters/graph_info_json_formatter.html @@ -418,7 +418,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/graph.html b/2/reference/commands/graph.html index 99f28f321a9..b1cc1251cc9 100644 --- a/2/reference/commands/graph.html +++ b/2/reference/commands/graph.html @@ -174,7 +174,7 @@

    conan graph

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/graph/build_order.html b/2/reference/commands/graph/build_order.html index 0c83e8fbe82..6cf850feac9 100644 --- a/2/reference/commands/graph/build_order.html +++ b/2/reference/commands/graph/build_order.html @@ -461,7 +461,7 @@

    conan graph build-order

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/graph/build_order_merge.html b/2/reference/commands/graph/build_order_merge.html index 31d17e52bee..1e5b3dfe5f6 100644 --- a/2/reference/commands/graph/build_order_merge.html +++ b/2/reference/commands/graph/build_order_merge.html @@ -192,7 +192,7 @@

    conan graph build-order-merge

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/graph/explain.html b/2/reference/commands/graph/explain.html index b5041ffb62a..35eab7d441e 100644 --- a/2/reference/commands/graph/explain.html +++ b/2/reference/commands/graph/explain.html @@ -361,7 +361,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/graph/info.html b/2/reference/commands/graph/info.html index 59f6b281c3e..832cd16f767 100644 --- a/2/reference/commands/graph/info.html +++ b/2/reference/commands/graph/info.html @@ -551,7 +551,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/inspect.html b/2/reference/commands/inspect.html index 9e87f5c05a2..e3ad89e1efd 100644 --- a/2/reference/commands/inspect.html +++ b/2/reference/commands/inspect.html @@ -326,7 +326,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/install.html b/2/reference/commands/install.html index 1f6ca424df5..6a3280cf2ec 100644 --- a/2/reference/commands/install.html +++ b/2/reference/commands/install.html @@ -471,7 +471,7 @@

    Update

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/list.html b/2/reference/commands/list.html index 98e7ed2f505..fb64cc3f8a7 100644 --- a/2/reference/commands/list.html +++ b/2/reference/commands/list.html @@ -575,7 +575,7 @@

    List compact output format

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/lock.html b/2/reference/commands/lock.html index 64e862aad0b..f66cb091524 100644 --- a/2/reference/commands/lock.html +++ b/2/reference/commands/lock.html @@ -207,7 +207,7 @@

    conan lock

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/lock/add.html b/2/reference/commands/lock/add.html index 7b6230899d0..2d808ad6367 100644 --- a/2/reference/commands/lock/add.html +++ b/2/reference/commands/lock/add.html @@ -270,7 +270,7 @@

    conan lock add

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/lock/create.html b/2/reference/commands/lock/create.html index 63a253fe156..194fb84a0e3 100644 --- a/2/reference/commands/lock/create.html +++ b/2/reference/commands/lock/create.html @@ -374,7 +374,7 @@

    conan lock create

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/lock/merge.html b/2/reference/commands/lock/merge.html index 922261e743b..06c523b98e3 100644 --- a/2/reference/commands/lock/merge.html +++ b/2/reference/commands/lock/merge.html @@ -310,7 +310,7 @@

    conan lock merge

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/lock/remove.html b/2/reference/commands/lock/remove.html index 9244263b9cc..510f8d8eb3d 100644 --- a/2/reference/commands/lock/remove.html +++ b/2/reference/commands/lock/remove.html @@ -246,7 +246,7 @@

    conan lock remove

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/new.html b/2/reference/commands/new.html index 0912d5f714d..094e6d2cc37 100644 --- a/2/reference/commands/new.html +++ b/2/reference/commands/new.html @@ -354,7 +354,7 @@

    Custom templates

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/profile.html b/2/reference/commands/profile.html index b46e4578abb..224c9adbc29 100644 --- a/2/reference/commands/profile.html +++ b/2/reference/commands/profile.html @@ -455,7 +455,7 @@

    conan profile show

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/remote.html b/2/reference/commands/remote.html index adee241ac84..032c1a146cc 100644 --- a/2/reference/commands/remote.html +++ b/2/reference/commands/remote.html @@ -509,7 +509,7 @@

    conan remote update

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/remove.html b/2/reference/commands/remove.html index b0c2fe457ff..b9308952fa4 100644 --- a/2/reference/commands/remove.html +++ b/2/reference/commands/remove.html @@ -279,7 +279,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/search.html b/2/reference/commands/search.html index c8025cf11fe..733b262cbf3 100644 --- a/2/reference/commands/search.html +++ b/2/reference/commands/search.html @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/source.html b/2/reference/commands/source.html index 407ffb6df7d..ba453ae2b7f 100644 --- a/2/reference/commands/source.html +++ b/2/reference/commands/source.html @@ -189,7 +189,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/test.html b/2/reference/commands/test.html index cc3936cdb12..5c4de799a87 100644 --- a/2/reference/commands/test.html +++ b/2/reference/commands/test.html @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/upload.html b/2/reference/commands/upload.html index 7c423cf3858..9d8d506832a 100644 --- a/2/reference/commands/upload.html +++ b/2/reference/commands/upload.html @@ -226,7 +226,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/commands/version.html b/2/reference/commands/version.html index ff04c746a7f..cc151b2377a 100644 --- a/2/reference/commands/version.html +++ b/2/reference/commands/version.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conan_server.html b/2/reference/conan_server.html index 2e983427b5d..dd6cf998a5d 100644 --- a/2/reference/conan_server.html +++ b/2/reference/conan_server.html @@ -468,7 +468,7 @@

    Running Conan Server using Apache

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile.html b/2/reference/conanfile.html index d189b7edb4a..12648b03cfb 100644 --- a/2/reference/conanfile.html +++ b/2/reference/conanfile.html @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/attributes.html b/2/reference/conanfile/attributes.html index 2fbf6ee9c75..ec183c69987 100644 --- a/2/reference/conanfile/attributes.html +++ b/2/reference/conanfile/attributes.html @@ -1521,7 +1521,7 @@

    alias

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods.html b/2/reference/conanfile/methods.html index eff16e14c37..477e922b2a2 100644 --- a/2/reference/conanfile/methods.html +++ b/2/reference/conanfile/methods.html @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/build.html b/2/reference/conanfile/methods/build.html index 99fe2c5ef2c..5a4c425690e 100644 --- a/2/reference/conanfile/methods/build.html +++ b/2/reference/conanfile/methods/build.html @@ -218,7 +218,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/build_id.html b/2/reference/conanfile/methods/build_id.html index 96477d75663..f6b9db24620 100644 --- a/2/reference/conanfile/methods/build_id.html +++ b/2/reference/conanfile/methods/build_id.html @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/build_requirements.html b/2/reference/conanfile/methods/build_requirements.html index 000a77fb722..ca5377a66e3 100644 --- a/2/reference/conanfile/methods/build_requirements.html +++ b/2/reference/conanfile/methods/build_requirements.html @@ -272,7 +272,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/compatibility.html b/2/reference/conanfile/methods/compatibility.html index 16b50de3da9..78e22a76d2d 100644 --- a/2/reference/conanfile/methods/compatibility.html +++ b/2/reference/conanfile/methods/compatibility.html @@ -205,7 +205,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/config_options.html b/2/reference/conanfile/methods/config_options.html index fe7661d79b4..e3c317c90e0 100644 --- a/2/reference/conanfile/methods/config_options.html +++ b/2/reference/conanfile/methods/config_options.html @@ -227,7 +227,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/configure.html b/2/reference/conanfile/methods/configure.html index e60a55eb141..b1dce4fb747 100644 --- a/2/reference/conanfile/methods/configure.html +++ b/2/reference/conanfile/methods/configure.html @@ -274,7 +274,7 @@

    auto_shared_fpic

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/deploy.html b/2/reference/conanfile/methods/deploy.html index b25ab598f3a..911a4071f6c 100644 --- a/2/reference/conanfile/methods/deploy.html +++ b/2/reference/conanfile/methods/deploy.html @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/export.html b/2/reference/conanfile/methods/export.html index ad43c201181..12671c44e77 100644 --- a/2/reference/conanfile/methods/export.html +++ b/2/reference/conanfile/methods/export.html @@ -194,7 +194,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/export_sources.html b/2/reference/conanfile/methods/export_sources.html index 4cceb4deed5..da722f1783b 100644 --- a/2/reference/conanfile/methods/export_sources.html +++ b/2/reference/conanfile/methods/export_sources.html @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/generate.html b/2/reference/conanfile/methods/generate.html index d8b3de9d610..de2eadeda27 100644 --- a/2/reference/conanfile/methods/generate.html +++ b/2/reference/conanfile/methods/generate.html @@ -397,7 +397,7 @@

    Dependencies cp

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/init.html b/2/reference/conanfile/methods/init.html index e21bf2f6ded..72543abc281 100644 --- a/2/reference/conanfile/methods/init.html +++ b/2/reference/conanfile/methods/init.html @@ -277,7 +277,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/layout.html b/2/reference/conanfile/methods/layout.html index a6c82b548d4..56ac5a09c2d 100644 --- a/2/reference/conanfile/methods/layout.html +++ b/2/reference/conanfile/methods/layout.html @@ -298,7 +298,7 @@

    Environment variables and configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/package.html b/2/reference/conanfile/methods/package.html index 1562661b6d9..304a55df85a 100644 --- a/2/reference/conanfile/methods/package.html +++ b/2/reference/conanfile/methods/package.html @@ -209,7 +209,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/package_id.html b/2/reference/conanfile/methods/package_id.html index df8be63acf4..421a59a6c87 100644 --- a/2/reference/conanfile/methods/package_id.html +++ b/2/reference/conanfile/methods/package_id.html @@ -302,7 +302,7 @@

    Adding information

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/package_info.html b/2/reference/conanfile/methods/package_info.html index 4d150f71d39..cb0245e79fb 100644 --- a/2/reference/conanfile/methods/package_info.html +++ b/2/reference/conanfile/methods/package_info.html @@ -479,7 +479,7 @@

    Components

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/requirements.html b/2/reference/conanfile/methods/requirements.html index fc6d97b9985..d64db1e0ef0 100644 --- a/2/reference/conanfile/methods/requirements.html +++ b/2/reference/conanfile/methods/requirements.html @@ -306,7 +306,7 @@

    Default traits for each kind of requires

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/set_name.html b/2/reference/conanfile/methods/set_name.html index 0eb8effbb9a..53d972cd5f3 100644 --- a/2/reference/conanfile/methods/set_name.html +++ b/2/reference/conanfile/methods/set_name.html @@ -217,7 +217,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/set_version.html b/2/reference/conanfile/methods/set_version.html index b9710b6b56a..ee5e7aaddf1 100644 --- a/2/reference/conanfile/methods/set_version.html +++ b/2/reference/conanfile/methods/set_version.html @@ -229,7 +229,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/source.html b/2/reference/conanfile/methods/source.html index bdc04a477aa..d02bf959449 100644 --- a/2/reference/conanfile/methods/source.html +++ b/2/reference/conanfile/methods/source.html @@ -258,7 +258,7 @@

    Forced retrieval of sources

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/system_requirements.html b/2/reference/conanfile/methods/system_requirements.html index 27c98496780..1efa4be744d 100644 --- a/2/reference/conanfile/methods/system_requirements.html +++ b/2/reference/conanfile/methods/system_requirements.html @@ -250,7 +250,7 @@

    Collecting system requirements

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/test.html b/2/reference/conanfile/methods/test.html index e72cc6ff8b6..6488be27591 100644 --- a/2/reference/conanfile/methods/test.html +++ b/2/reference/conanfile/methods/test.html @@ -181,7 +181,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/validate.html b/2/reference/conanfile/methods/validate.html index eafc4496134..c23e44c612a 100644 --- a/2/reference/conanfile/methods/validate.html +++ b/2/reference/conanfile/methods/validate.html @@ -234,7 +234,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/methods/validate_build.html b/2/reference/conanfile/methods/validate_build.html index 414ac37bd77..fd648f958a0 100644 --- a/2/reference/conanfile/methods/validate_build.html +++ b/2/reference/conanfile/methods/validate_build.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile/running_and_output.html b/2/reference/conanfile/running_and_output.html index 4c1afce9a81..78d0cb902bc 100644 --- a/2/reference/conanfile/running_and_output.html +++ b/2/reference/conanfile/running_and_output.html @@ -194,7 +194,7 @@

    Output text from recipes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/conanfile_txt.html b/2/reference/conanfile_txt.html index 311dd53a59d..1a50cecb869 100644 --- a/2/reference/conanfile_txt.html +++ b/2/reference/conanfile_txt.html @@ -237,7 +237,7 @@

    [layout]

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files.html b/2/reference/config_files.html index d6401ea88ee..0fbcf141b1b 100644 --- a/2/reference/config_files.html +++ b/2/reference/config_files.html @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/conanrc.html b/2/reference/config_files/conanrc.html index 984142287d3..2382275fc30 100644 --- a/2/reference/config_files/conanrc.html +++ b/2/reference/config_files/conanrc.html @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/credentials.html b/2/reference/config_files/credentials.html index b401cefaf5d..a35a5440351 100644 --- a/2/reference/config_files/credentials.html +++ b/2/reference/config_files/credentials.html @@ -199,7 +199,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/global_conf.html b/2/reference/config_files/global_conf.html index 75c793aa5c1..bbc0914ccee 100644 --- a/2/reference/config_files/global_conf.html +++ b/2/reference/config_files/global_conf.html @@ -472,7 +472,7 @@

    UX confs

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/profiles.html b/2/reference/config_files/profiles.html index 5a6c316731e..625637522f7 100644 --- a/2/reference/config_files/profiles.html +++ b/2/reference/config_files/profiles.html @@ -895,7 +895,7 @@

    Profile includes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/remotes.html b/2/reference/config_files/remotes.html index e5c28d51340..e31e0fc138e 100644 --- a/2/reference/config_files/remotes.html +++ b/2/reference/config_files/remotes.html @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/settings.html b/2/reference/config_files/settings.html index f62b329255a..bf4bcb4c3eb 100644 --- a/2/reference/config_files/settings.html +++ b/2/reference/config_files/settings.html @@ -584,7 +584,7 @@

    Add new values

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/config_files/source_credentials.html b/2/reference/config_files/source_credentials.html index 02c43f17b1a..35ac1b61dfa 100644 --- a/2/reference/config_files/source_credentials.html +++ b/2/reference/config_files/source_credentials.html @@ -212,7 +212,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/environment.html b/2/reference/environment.html index 9860ab5c1f3..90fb594369c 100644 --- a/2/reference/environment.html +++ b/2/reference/environment.html @@ -195,7 +195,7 @@

    Logging

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions.html b/2/reference/extensions.html index 0e991e0afb5..a21de0f92e0 100644 --- a/2/reference/extensions.html +++ b/2/reference/extensions.html @@ -232,7 +232,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/binary_compatibility.html b/2/reference/extensions/binary_compatibility.html index bc467eb33bb..6b9c553d75a 100644 --- a/2/reference/extensions/binary_compatibility.html +++ b/2/reference/extensions/binary_compatibility.html @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/command_wrapper.html b/2/reference/extensions/command_wrapper.html index 1b283f3a04a..20bfbf7326c 100644 --- a/2/reference/extensions/command_wrapper.html +++ b/2/reference/extensions/command_wrapper.html @@ -182,7 +182,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/custom_commands.html b/2/reference/extensions/custom_commands.html index b3e30b4fb31..0624d5a9149 100644 --- a/2/reference/extensions/custom_commands.html +++ b/2/reference/extensions/custom_commands.html @@ -369,7 +369,7 @@

    Commands parameters

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/custom_generators.html b/2/reference/extensions/custom_generators.html index a493a514c68..3c3ebfdc687 100644 --- a/2/reference/extensions/custom_generators.html +++ b/2/reference/extensions/custom_generators.html @@ -222,7 +222,7 @@

    Using global custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/deployers.html b/2/reference/extensions/deployers.html index 52125ac0ed1..746b0bfcdca 100644 --- a/2/reference/extensions/deployers.html +++ b/2/reference/extensions/deployers.html @@ -217,7 +217,7 @@

    Custom deployers

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/hooks.html b/2/reference/extensions/hooks.html index b1c71bec0e3..94334d9b859 100644 --- a/2/reference/extensions/hooks.html +++ b/2/reference/extensions/hooks.html @@ -279,7 +279,7 @@

    Official Hooks

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/package_signing.html b/2/reference/extensions/package_signing.html index 18384d8482a..49efe4bc172 100644 --- a/2/reference/extensions/package_signing.html +++ b/2/reference/extensions/package_signing.html @@ -193,7 +193,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/profile_plugin.html b/2/reference/extensions/profile_plugin.html index ad6409da93a..a5736955579 100644 --- a/2/reference/extensions/profile_plugin.html +++ b/2/reference/extensions/profile_plugin.html @@ -176,7 +176,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api.html b/2/reference/extensions/python_api.html index 01a2cfbbcc5..65926f3d661 100644 --- a/2/reference/extensions/python_api.html +++ b/2/reference/extensions/python_api.html @@ -221,7 +221,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/ConanAPI.html b/2/reference/extensions/python_api/ConanAPI.html index c76c356eed8..f2ba0bdd5a8 100644 --- a/2/reference/extensions/python_api/ConanAPI.html +++ b/2/reference/extensions/python_api/ConanAPI.html @@ -178,7 +178,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/ConfigAPI.html b/2/reference/extensions/python_api/ConfigAPI.html index 111c3103dec..474f54eaebb 100644 --- a/2/reference/extensions/python_api/ConfigAPI.html +++ b/2/reference/extensions/python_api/ConfigAPI.html @@ -186,7 +186,7 @@

    Config API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/DownloadAPI.html b/2/reference/extensions/python_api/DownloadAPI.html index cea735b2f13..72ee809cd34 100644 --- a/2/reference/extensions/python_api/DownloadAPI.html +++ b/2/reference/extensions/python_api/DownloadAPI.html @@ -195,7 +195,7 @@

    Download API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/ExportAPI.html b/2/reference/extensions/python_api/ExportAPI.html index 5e79a7bea31..1a65d4af415 100644 --- a/2/reference/extensions/python_api/ExportAPI.html +++ b/2/reference/extensions/python_api/ExportAPI.html @@ -171,7 +171,7 @@

    Export API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/GraphAPI.html b/2/reference/extensions/python_api/GraphAPI.html index 3773ea00379..058a9a7ba5b 100644 --- a/2/reference/extensions/python_api/GraphAPI.html +++ b/2/reference/extensions/python_api/GraphAPI.html @@ -241,7 +241,7 @@

    Graph API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/InstallAPI.html b/2/reference/extensions/python_api/InstallAPI.html index 9cc655ceae4..821aa4f01c8 100644 --- a/2/reference/extensions/python_api/InstallAPI.html +++ b/2/reference/extensions/python_api/InstallAPI.html @@ -203,7 +203,7 @@

    Install API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/ListAPI.html b/2/reference/extensions/python_api/ListAPI.html index 164c008ca63..69bedf3d2c5 100644 --- a/2/reference/extensions/python_api/ListAPI.html +++ b/2/reference/extensions/python_api/ListAPI.html @@ -188,7 +188,7 @@

    List API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/NewAPI.html b/2/reference/extensions/python_api/NewAPI.html index 253484e73a5..aba13d274cc 100644 --- a/2/reference/extensions/python_api/NewAPI.html +++ b/2/reference/extensions/python_api/NewAPI.html @@ -183,7 +183,7 @@

    New API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/ProfilesAPI.html b/2/reference/extensions/python_api/ProfilesAPI.html index 3469b5ac3a5..3b15bd29bed 100644 --- a/2/reference/extensions/python_api/ProfilesAPI.html +++ b/2/reference/extensions/python_api/ProfilesAPI.html @@ -229,7 +229,7 @@

    Profiles API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/RemotesAPI.html b/2/reference/extensions/python_api/RemotesAPI.html index be4a55b9941..b073d86bbbd 100644 --- a/2/reference/extensions/python_api/RemotesAPI.html +++ b/2/reference/extensions/python_api/RemotesAPI.html @@ -328,7 +328,7 @@

    Remotes API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/RemoveAPI.html b/2/reference/extensions/python_api/RemoveAPI.html index febdf77e90e..b7cf2b61b9f 100644 --- a/2/reference/extensions/python_api/RemoveAPI.html +++ b/2/reference/extensions/python_api/RemoveAPI.html @@ -171,7 +171,7 @@

    Remove API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/SearchAPI.html b/2/reference/extensions/python_api/SearchAPI.html index cbf1192d63f..c6916c66e22 100644 --- a/2/reference/extensions/python_api/SearchAPI.html +++ b/2/reference/extensions/python_api/SearchAPI.html @@ -171,7 +171,7 @@

    Search API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_api/UploadAPI.html b/2/reference/extensions/python_api/UploadAPI.html index 34df8c055a5..3c4e029dc84 100644 --- a/2/reference/extensions/python_api/UploadAPI.html +++ b/2/reference/extensions/python_api/UploadAPI.html @@ -210,7 +210,7 @@

    Upload API

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/extensions/python_requires.html b/2/reference/extensions/python_requires.html index 6c4e8be4549..f743329b02c 100644 --- a/2/reference/extensions/python_requires.html +++ b/2/reference/extensions/python_requires.html @@ -419,7 +419,7 @@

    Resolution of python_requires

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools.html b/2/reference/tools.html index cd67df3c705..85f905c1192 100644 --- a/2/reference/tools.html +++ b/2/reference/tools.html @@ -268,7 +268,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/android.html b/2/reference/tools/android.html index 28916d7a836..ee99de041f7 100644 --- a/2/reference/tools/android.html +++ b/2/reference/tools/android.html @@ -195,7 +195,7 @@

    android_abi()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/apple.html b/2/reference/tools/apple.html index 9b088caa637..3c8d4cc0c7b 100644 --- a/2/reference/tools/apple.html +++ b/2/reference/tools/apple.html @@ -195,7 +195,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/apple/other.html b/2/reference/tools/apple/other.html index d7794479e26..6349cab52b1 100644 --- a/2/reference/tools/apple/other.html +++ b/2/reference/tools/apple/other.html @@ -334,7 +334,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/apple/xcodebuild.html b/2/reference/tools/apple/xcodebuild.html index ea171df6fe1..f3860fe8581 100644 --- a/2/reference/tools/apple/xcodebuild.html +++ b/2/reference/tools/apple/xcodebuild.html @@ -237,7 +237,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/apple/xcodedeps.html b/2/reference/tools/apple/xcodedeps.html index c2e558a41bb..964f31bf573 100644 --- a/2/reference/tools/apple/xcodedeps.html +++ b/2/reference/tools/apple/xcodedeps.html @@ -288,7 +288,7 @@

    Custom configurations

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/apple/xcodetoolchain.html b/2/reference/tools/apple/xcodetoolchain.html index 44b15fc427b..6f663859554 100644 --- a/2/reference/tools/apple/xcodetoolchain.html +++ b/2/reference/tools/apple/xcodetoolchain.html @@ -252,7 +252,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/build.html b/2/reference/tools/build.html index 786677da52f..f2bc161b64d 100644 --- a/2/reference/tools/build.html +++ b/2/reference/tools/build.html @@ -372,7 +372,7 @@

    conan.tools.build.supported_cppstd()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cmake.html b/2/reference/tools/cmake.html index aed87ec2dc3..f3118bd6f71 100644 --- a/2/reference/tools/cmake.html +++ b/2/reference/tools/cmake.html @@ -184,7 +184,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cmake/cmake.html b/2/reference/tools/cmake/cmake.html index 59d542a18fc..0027294dd80 100644 --- a/2/reference/tools/cmake/cmake.html +++ b/2/reference/tools/cmake/cmake.html @@ -332,7 +332,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cmake/cmake_layout.html b/2/reference/tools/cmake/cmake_layout.html index d16837a3d8c..522115b4b7a 100644 --- a/2/reference/tools/cmake/cmake_layout.html +++ b/2/reference/tools/cmake/cmake_layout.html @@ -261,7 +261,7 @@

    Multi-setting/option cmake_layout

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cmake/cmakedeps.html b/2/reference/tools/cmake/cmakedeps.html index 43a97ef3720..e6c495fa10e 100644 --- a/2/reference/tools/cmake/cmakedeps.html +++ b/2/reference/tools/cmake/cmakedeps.html @@ -538,7 +538,7 @@

    Map from project configuration to imported target’s configuration

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cmake/cmaketoolchain.html b/2/reference/tools/cmake/cmaketoolchain.html index f45b9f25996..1bae283310a 100644 --- a/2/reference/tools/cmake/cmaketoolchain.html +++ b/2/reference/tools/cmake/cmaketoolchain.html @@ -734,7 +734,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/cpp_info.html b/2/reference/tools/cpp_info.html index d797cd1f55b..d7ef1fbd47a 100644 --- a/2/reference/tools/cpp_info.html +++ b/2/reference/tools/cpp_info.html @@ -195,7 +195,7 @@

    Aggregating information in custom generators

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/env.html b/2/reference/tools/env.html index 680fc6c5e72..3f70dadee58 100644 --- a/2/reference/tools/env.html +++ b/2/reference/tools/env.html @@ -185,7 +185,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/env/environment.html b/2/reference/tools/env/environment.html index 06db1299d40..c5fcffaa77b 100644 --- a/2/reference/tools/env/environment.html +++ b/2/reference/tools/env/environment.html @@ -398,7 +398,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/env/envvars.html b/2/reference/tools/env/envvars.html index 6f8edbcbc3c..50fd963af6b 100644 --- a/2/reference/tools/env/envvars.html +++ b/2/reference/tools/env/envvars.html @@ -329,7 +329,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/env/virtualbuildenv.html b/2/reference/tools/env/virtualbuildenv.html index d72ca8e7fe9..ac625b5733c 100644 --- a/2/reference/tools/env/virtualbuildenv.html +++ b/2/reference/tools/env/virtualbuildenv.html @@ -266,7 +266,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/env/virtualrunenv.html b/2/reference/tools/env/virtualrunenv.html index 537f12ae00f..51506e48154 100644 --- a/2/reference/tools/env/virtualrunenv.html +++ b/2/reference/tools/env/virtualrunenv.html @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files.html b/2/reference/tools/files.html index 25a38c130c9..71a3f7f3f13 100644 --- a/2/reference/tools/files.html +++ b/2/reference/tools/files.html @@ -204,7 +204,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/basic.html b/2/reference/tools/files/basic.html index 3700a30dccb..87361464466 100644 --- a/2/reference/tools/files/basic.html +++ b/2/reference/tools/files/basic.html @@ -575,7 +575,7 @@

    conan.tools.files.trim_conandata()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/checksum.html b/2/reference/tools/files/checksum.html index c7acaa444c7..72b54610661 100644 --- a/2/reference/tools/files/checksum.html +++ b/2/reference/tools/files/checksum.html @@ -217,7 +217,7 @@

    conan.tools.files.check_sha256()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/downloads.html b/2/reference/tools/files/downloads.html index 6e5bff7db80..71052b1403a 100644 --- a/2/reference/tools/files/downloads.html +++ b/2/reference/tools/files/downloads.html @@ -291,7 +291,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/packaging.html b/2/reference/tools/files/packaging.html index db99b11de59..6e0b36d7f17 100644 --- a/2/reference/tools/files/packaging.html +++ b/2/reference/tools/files/packaging.html @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/patches.html b/2/reference/tools/files/patches.html index 5e09549b13d..4ac96e94683 100644 --- a/2/reference/tools/files/patches.html +++ b/2/reference/tools/files/patches.html @@ -267,7 +267,7 @@

    conan.tools.files.export_conandata_patches()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/files/symlinks.html b/2/reference/tools/files/symlinks.html index 826e5c5ce10..83f86b876b7 100644 --- a/2/reference/tools/files/symlinks.html +++ b/2/reference/tools/files/symlinks.html @@ -212,7 +212,7 @@

    conan.tools.files.symlinks.remove_broken_symlinks()

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu.html b/2/reference/tools/gnu.html index 441eede8586..696a13b0adb 100644 --- a/2/reference/tools/gnu.html +++ b/2/reference/tools/gnu.html @@ -196,7 +196,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/autotools.html b/2/reference/tools/gnu/autotools.html index 7a1d35f09d0..e8e5617de29 100644 --- a/2/reference/tools/gnu/autotools.html +++ b/2/reference/tools/gnu/autotools.html @@ -351,7 +351,7 @@

    How to address this problem in Conan

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/autotoolsdeps.html b/2/reference/tools/gnu/autotoolsdeps.html index faeef21fb9f..ee09d21ccf3 100644 --- a/2/reference/tools/gnu/autotoolsdeps.html +++ b/2/reference/tools/gnu/autotoolsdeps.html @@ -241,7 +241,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/autotoolstoolchain.html b/2/reference/tools/gnu/autotoolstoolchain.html index 75f39c13f88..e5dffafbdfd 100644 --- a/2/reference/tools/gnu/autotoolstoolchain.html +++ b/2/reference/tools/gnu/autotoolstoolchain.html @@ -468,7 +468,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/makedeps.html b/2/reference/tools/gnu/makedeps.html index e824a48069e..444dad05567 100644 --- a/2/reference/tools/gnu/makedeps.html +++ b/2/reference/tools/gnu/makedeps.html @@ -255,7 +255,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/pkgconfig.html b/2/reference/tools/gnu/pkgconfig.html index c66f545573d..474ee901c99 100644 --- a/2/reference/tools/gnu/pkgconfig.html +++ b/2/reference/tools/gnu/pkgconfig.html @@ -222,7 +222,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/gnu/pkgconfigdeps.html b/2/reference/tools/gnu/pkgconfigdeps.html index eeaae5092c3..3a71a5224b8 100644 --- a/2/reference/tools/gnu/pkgconfigdeps.html +++ b/2/reference/tools/gnu/pkgconfigdeps.html @@ -312,7 +312,7 @@

    build_context_suffix

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/google.html b/2/reference/tools/google.html index 6978c78362f..d86626e24b4 100644 --- a/2/reference/tools/google.html +++ b/2/reference/tools/google.html @@ -175,7 +175,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/google/bazel.html b/2/reference/tools/google/bazel.html index 7388f9edb37..95b91e95396 100644 --- a/2/reference/tools/google/bazel.html +++ b/2/reference/tools/google/bazel.html @@ -242,7 +242,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/google/bazeldeps.html b/2/reference/tools/google/bazeldeps.html index eeae41a8c35..e9d462aed39 100644 --- a/2/reference/tools/google/bazeldeps.html +++ b/2/reference/tools/google/bazeldeps.html @@ -445,7 +445,7 @@

    build_context_activated

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/google/bazeltoolchain.html b/2/reference/tools/google/bazeltoolchain.html index d6c44bd042d..2566592a271 100644 --- a/2/reference/tools/google/bazeltoolchain.html +++ b/2/reference/tools/google/bazeltoolchain.html @@ -316,7 +316,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/intel.html b/2/reference/tools/intel.html index aae042cd8a0..f701c0e58cd 100644 --- a/2/reference/tools/intel.html +++ b/2/reference/tools/intel.html @@ -339,7 +339,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/layout.html b/2/reference/tools/layout.html index fd2fd27fd0f..745032e56c9 100644 --- a/2/reference/tools/layout.html +++ b/2/reference/tools/layout.html @@ -201,7 +201,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/meson.html b/2/reference/tools/meson.html index a68cd62be05..0f85189d2e6 100644 --- a/2/reference/tools/meson.html +++ b/2/reference/tools/meson.html @@ -172,7 +172,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/meson/meson.html b/2/reference/tools/meson/meson.html index 137ce665696..71cd7aa37e2 100644 --- a/2/reference/tools/meson/meson.html +++ b/2/reference/tools/meson/meson.html @@ -238,7 +238,7 @@

    conf

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/meson/mesontoolchain.html b/2/reference/tools/meson/mesontoolchain.html index 85d6030ece7..17c704ce738 100644 --- a/2/reference/tools/meson/mesontoolchain.html +++ b/2/reference/tools/meson/mesontoolchain.html @@ -390,7 +390,7 @@

    Objective-C arguments

    See also

    @@ -613,7 +613,7 @@

    Objective-C arguments

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft.html b/2/reference/tools/microsoft.html index 0a7befaed8a..0699c04a05a 100644 --- a/2/reference/tools/microsoft.html +++ b/2/reference/tools/microsoft.html @@ -213,7 +213,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/helpers.html b/2/reference/tools/microsoft/helpers.html index cd5d71d6415..67dda4918cd 100644 --- a/2/reference/tools/microsoft/helpers.html +++ b/2/reference/tools/microsoft/helpers.html @@ -274,7 +274,7 @@

    conan.tools.microsoft.subsystems

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/msbuild.html b/2/reference/tools/microsoft/msbuild.html index 9f38b0e3e8b..52ef8c695d8 100644 --- a/2/reference/tools/microsoft/msbuild.html +++ b/2/reference/tools/microsoft/msbuild.html @@ -269,7 +269,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/msbuilddeps.html b/2/reference/tools/microsoft/msbuilddeps.html index 4dca4dfef9f..3263ef03b66 100644 --- a/2/reference/tools/microsoft/msbuilddeps.html +++ b/2/reference/tools/microsoft/msbuilddeps.html @@ -322,7 +322,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/msbuildtoolchain.html b/2/reference/tools/microsoft/msbuildtoolchain.html index 483f4e94e62..fa6e2c378b6 100644 --- a/2/reference/tools/microsoft/msbuildtoolchain.html +++ b/2/reference/tools/microsoft/msbuildtoolchain.html @@ -289,7 +289,7 @@

    Attributes

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/nmake.html b/2/reference/tools/microsoft/nmake.html index b46bf73449e..dcf0f823459 100644 --- a/2/reference/tools/microsoft/nmake.html +++ b/2/reference/tools/microsoft/nmake.html @@ -305,7 +305,7 @@

    Customizing the environment

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/vcvars.html b/2/reference/tools/microsoft/vcvars.html index ad476d255b1..c50b93e789f 100644 --- a/2/reference/tools/microsoft/vcvars.html +++ b/2/reference/tools/microsoft/vcvars.html @@ -237,7 +237,7 @@

    Reference

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/microsoft/visual_layout.html b/2/reference/tools/microsoft/visual_layout.html index 13caa985a20..f9438648e04 100644 --- a/2/reference/tools/microsoft/visual_layout.html +++ b/2/reference/tools/microsoft/visual_layout.html @@ -174,7 +174,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/scm.html b/2/reference/tools/scm.html index d0e784b026c..d3d42a40451 100644 --- a/2/reference/tools/scm.html +++ b/2/reference/tools/scm.html @@ -167,7 +167,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/scm/git.html b/2/reference/tools/scm/git.html index 89e6c315ca8..9435dc0cc1f 100644 --- a/2/reference/tools/scm/git.html +++ b/2/reference/tools/scm/git.html @@ -382,7 +382,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/scm/version.html b/2/reference/tools/scm/version.html index 9f1ec1cd48e..e0f43d9d0a9 100644 --- a/2/reference/tools/scm/version.html +++ b/2/reference/tools/scm/version.html @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/scons.html b/2/reference/tools/scons.html index 759db9e676c..4355bbac821 100644 --- a/2/reference/tools/scons.html +++ b/2/reference/tools/scons.html @@ -209,7 +209,7 @@

    SConsDeps

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/system.html b/2/reference/tools/system.html index 27c108521a5..0746c0d902d 100644 --- a/2/reference/tools/system.html +++ b/2/reference/tools/system.html @@ -173,7 +173,7 @@

    conan.tools.system

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/reference/tools/system/package_manager.html b/2/reference/tools/system/package_manager.html index 77e00aba868..563b76b4c39 100644 --- a/2/reference/tools/system/package_manager.html +++ b/2/reference/tools/system/package_manager.html @@ -1160,7 +1160,7 @@

    Reference¶<

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/search.html b/2/search.html index 301024fb7ff..37e64d75a17 100644 --- a/2/search.html +++ b/2/search.html @@ -125,7 +125,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/searchindex.js b/2/searchindex.js index c6255c903f7..4574bb9bc93 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/cmake/cmake_toolchain/use_package_config_cmake", "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/microsoft/msbuild", "examples/tools/microsoft/msbuild/create_your_first_package", "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/cmake/cmake_toolchain/use_package_config_cmake.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/microsoft/msbuild.rst", "examples/tools/microsoft/msbuild/create_your_first_package.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", "CMakeToolchain: Using xxx-config.cmake files inside packages", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "tools.meson", "Build a simple Meson project using Conan", "tools.microsoft", "Create your first Conan package with Visual Studio/MSBuild", "Capturing Git scm information", "Conan 2 - 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"], "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, 50, 52, 54, 56, 58, 59, 61, 66, 67, 73, 76, 77, 78, 83, 84, 87, 88, 89, 90, 96, 99, 102, 108, 109, 111, 115, 117, 119, 120, 121, 122, 123, 125, 126, 130, 131, 132, 134, 135, 139, 144, 145, 147, 149, 150, 152, 154, 155, 158, 159, 160, 161, 163, 178, 183, 184, 185, 189, 190, 191, 194, 195, 199, 201, 206, 207, 208, 211, 214, 216, 217, 219, 220, 223, 224, 225, 226, 230, 232, 234, 235, 236, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 61, 64, 65, 66, 68, 69, 70, 71, 72, 73, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 93, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 111, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 139, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 154, 155, 156, 158, 160, 161, 162, 169, 170, 174, 177, 178, 179, 182, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 203, 204, 206, 208, 211, 213, 214, 216, 217, 220, 224, 230, 233, 238, 239, 241, 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, 272, 273, 274], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 50, 52, 54, 56, 58, 66, 84, 86, 89, 91, 92, 93, 96, 98, 99, 101, 102, 104, 105, 106, 114, 119, 148, 149, 150, 151, 152, 157, 158, 160, 169, 191, 214, 215, 234, 243, 244, 247, 248, 253, 254, 255, 262, 265], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 50, 54, 59, 61, 67, 68, 77, 81, 82, 83, 86, 87, 88, 89, 96, 98, 99, 100, 101, 104, 105, 106, 108, 114, 117, 119, 122, 123, 129, 130, 139, 140, 148, 149, 150, 163, 174, 177, 178, 190, 195, 199, 206, 208, 230, 234, 246, 247, 248, 250, 252, 267, 272, 274], "exist": [0, 1, 6, 7, 8, 21, 59, 61, 73, 76, 81, 83, 86, 87, 88, 89, 93, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 119, 121, 123, 124, 125, 126, 128, 130, 134, 136, 139, 147, 148, 149, 150, 152, 156, 158, 167, 169, 173, 174, 177, 182, 186, 190, 191, 194, 195, 199, 206, 208, 210, 220, 230, 241, 246, 252, 253, 258, 262, 269, 270, 271, 273, 274], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 52, 58, 59, 68, 78, 81, 82, 87, 89, 98, 101, 106, 122, 133, 134, 137, 138, 144, 152, 156, 163, 184, 185, 191, 199, 202, 206, 230, 245, 248, 250, 251, 253, 254, 257, 262, 265, 269, 270, 271, 272, 273], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 61, 73, 81, 83, 85, 86, 87, 88, 89, 92, 93, 96, 98, 99, 101, 103, 105, 106, 109, 114, 115, 119, 125, 126, 134, 135, 149, 152, 155, 156, 158, 161, 163, 164, 174, 178, 182, 191, 194, 199, 201, 202, 204, 207, 208, 220, 235, 241, 247, 252, 253, 256, 257, 258, 260, 261, 264, 266, 270, 271, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 87, 88, 89, 90, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 166, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 214, 215, 216, 217, 219, 220, 223, 224, 225, 226, 227, 230, 232, 234, 236, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 54, 56, 59, 66, 73, 82, 87, 96, 106, 139, 152, 178, 184, 189, 216, 217, 224, 236, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 265, 266, 270, 273], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 58, 59, 60, 64, 65, 67, 68, 69, 70, 71, 72, 73, 75, 78, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 103, 104, 105, 106, 107, 110, 111, 112, 114, 115, 118, 123, 124, 127, 130, 133, 134, 135, 140, 145, 149, 150, 152, 155, 156, 158, 162, 164, 169, 171, 177, 178, 179, 181, 187, 193, 199, 205, 212, 217, 218, 221, 240, 241, 244, 245, 248, 250, 252, 253, 254, 255, 260, 261, 264, 265, 272, 274], "tree": [0, 68, 150, 160, 190], "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, 53, 55, 58, 59, 60, 62, 64, 65, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 115, 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, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 169, 174, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 192, 194, 195, 196, 197, 199, 200, 201, 202, 204, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 234, 235, 236, 240, 241, 242, 246, 249, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 263, 265, 266, 267, 268, 269, 270, 272, 273, 274], "search": [0, 1, 31, 35, 52, 66, 77, 85, 102, 109, 117, 119, 147, 151, 155, 164, 182, 199, 206, 239, 241, 243, 245, 252, 254, 266, 274], "bar": [0, 117, 199, 208, 226], "desir": [0, 1, 4, 40, 49, 58, 83, 90, 101, 108, 117, 119, 120, 134, 152, 160, 195, 196, 197, 232], "topic": [0, 1, 9, 73, 94, 99, 100, 158, 253], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 50, 52, 58, 59, 61, 66, 73, 76, 77, 81, 82, 83, 84, 87, 88, 89, 90, 96, 98, 99, 101, 102, 104, 105, 106, 108, 110, 111, 112, 115, 117, 119, 122, 124, 125, 126, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 142, 147, 148, 149, 150, 151, 152, 153, 154, 156, 158, 167, 174, 177, 182, 183, 184, 185, 186, 189, 190, 191, 194, 195, 196, 197, 199, 200, 201, 203, 206, 207, 208, 210, 211, 216, 217, 220, 222, 224, 226, 230, 234, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 258, 259, 264, 265, 266, 267, 269, 270, 271, 273, 274], "think": [0, 42, 76], "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, 50, 52, 54, 56, 58, 59, 60, 61, 62, 66, 67, 68, 71, 72, 73, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 230, 231, 232, 234, 235, 236, 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, 272, 273, 274], "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, 50, 52, 54, 56, 58, 59, 60, 61, 62, 66, 67, 68, 69, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 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, 143, 144, 145, 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, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 203, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 50, 58, 59, 60, 66, 73, 76, 77, 81, 82, 85, 86, 87, 88, 89, 92, 93, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 114, 115, 117, 119, 122, 125, 130, 131, 132, 133, 134, 136, 137, 138, 142, 144, 145, 147, 148, 149, 150, 152, 153, 154, 156, 157, 158, 161, 162, 163, 169, 173, 174, 182, 185, 188, 190, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 214, 216, 220, 223, 226, 227, 230, 231, 234, 242, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 267, 269, 270, 271, 272, 274], "error": [0, 1, 6, 21, 31, 39, 40, 59, 61, 82, 86, 87, 88, 89, 92, 93, 96, 97, 98, 99, 100, 101, 105, 109, 114, 117, 119, 121, 130, 136, 137, 138, 139, 140, 142, 143, 144, 148, 149, 152, 154, 161, 163, 169, 174, 190, 199, 201, 206, 220, 234, 242, 245, 250, 252, 264, 265, 268, 269, 270, 274], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 50, 52, 54, 56, 58, 59, 61, 66, 69, 73, 77, 81, 83, 84, 89, 96, 101, 102, 108, 117, 119, 121, 122, 123, 124, 125, 126, 127, 128, 130, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 148, 153, 154, 160, 161, 162, 163, 169, 177, 178, 183, 185, 188, 190, 191, 196, 199, 203, 209, 214, 219, 220, 226, 230, 239, 243, 244, 245, 247, 250, 251, 252, 253, 254, 257, 264, 265, 266, 269, 270, 271, 272, 273, 274], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 52, 54, 56, 59, 61, 63, 64, 67, 69, 71, 72, 73, 76, 77, 78, 90, 96, 104, 109, 110, 115, 117, 119, 130, 149, 150, 156, 161, 162, 191, 217, 220, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 274], "open": [0, 4, 5, 8, 26, 29, 48, 56, 58, 59, 60, 66, 76, 119, 121, 144, 149, 153, 162, 199, 225, 230, 236, 238, 240, 243, 245, 264], "issu": [0, 1, 6, 8, 39, 40, 50, 60, 73, 76, 83, 117, 130, 131, 132, 149, 152, 156, 190, 253, 255, 270, 271], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 50, 59, 61, 64, 66, 68, 69, 71, 72, 77, 81, 82, 83, 87, 88, 90, 96, 99, 101, 102, 104, 105, 106, 107, 108, 109, 110, 115, 119, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 136, 139, 140, 142, 143, 145, 147, 148, 149, 150, 152, 153, 154, 157, 158, 160, 161, 163, 169, 178, 182, 183, 184, 185, 186, 189, 191, 192, 195, 199, 203, 208, 209, 211, 214, 216, 217, 220, 223, 224, 227, 234, 238, 239, 241, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 260, 262, 264, 265, 266, 268, 269, 270, 271, 272, 274], "more": [1, 4, 6, 7, 8, 13, 18, 19, 27, 31, 36, 42, 45, 47, 52, 59, 61, 63, 66, 68, 73, 76, 78, 80, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 121, 123, 125, 126, 127, 131, 132, 133, 134, 135, 139, 141, 145, 147, 148, 149, 150, 152, 153, 155, 156, 157, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 185, 186, 190, 191, 192, 196, 197, 199, 206, 209, 211, 213, 214, 215, 217, 219, 220, 224, 226, 237, 238, 242, 243, 246, 247, 248, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 267, 270, 271, 272, 274], "detail": [1, 8, 42, 50, 52, 61, 66, 68, 73, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 149, 152, 185, 199, 220, 223, 248, 252, 253, 255, 258, 260, 262, 266], "descript": [1, 94, 99, 100, 108, 130, 131, 161, 211, 253], "major": [1, 5, 35, 39, 40, 59, 73, 78, 101, 109, 119, 150, 178, 191, 238, 243, 269, 272, 274], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 50, 52, 59, 73, 75, 76, 77, 81, 82, 83, 84, 87, 89, 94, 96, 100, 104, 105, 106, 108, 109, 116, 117, 119, 122, 123, 125, 126, 127, 134, 135, 139, 148, 149, 150, 152, 153, 154, 156, 157, 158, 160, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 189, 190, 191, 192, 195, 199, 206, 208, 209, 211, 213, 214, 215, 216, 220, 223, 226, 230, 234, 243, 245, 246, 247, 250, 252, 253, 255, 257, 258, 260, 261, 263, 264, 266, 268, 269, 270, 271, 273, 274], "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, 50, 52, 53, 55, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 94, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 207, 208, 209, 211, 213, 214, 215, 219, 223, 224, 225, 226, 227, 230, 235, 241, 242, 245, 246, 247, 249, 250, 251, 255, 257, 258, 259, 261, 263, 264, 268, 269, 270, 271, 272, 273], "bring": [1, 62, 150, 255], "compar": [1, 152, 186, 231, 271, 272], "x": [1, 61, 73, 75, 88, 93, 119, 149, 152, 161, 190, 199, 202, 222, 253, 257, 270, 272, 274], "read": [1, 3, 4, 6, 8, 18, 19, 24, 31, 36, 42, 45, 47, 54, 56, 58, 61, 66, 73, 77, 81, 83, 86, 87, 88, 89, 91, 93, 101, 102, 105, 109, 113, 114, 117, 119, 123, 124, 126, 129, 130, 132, 134, 135, 137, 138, 140, 144, 145, 149, 150, 156, 162, 178, 186, 188, 199, 203, 206, 208, 210, 216, 230, 237, 239, 241, 243, 252, 255, 259, 264, 265, 273, 274], "what": [1, 4, 5, 13, 24, 59, 60, 73, 78, 81, 95, 96, 98, 101, 102, 115, 119, 120, 154, 191, 194, 195, 202, 244, 246, 247, 248, 252, 253, 254, 257, 258, 261, 266, 269, 270, 271], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 52, 54, 56, 58, 59, 60, 61, 63, 65, 66, 68, 73, 76, 78, 82, 83, 84, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 105, 106, 108, 109, 110, 114, 115, 117, 119, 123, 124, 134, 135, 136, 142, 143, 144, 147, 149, 150, 151, 152, 155, 157, 158, 160, 163, 182, 184, 185, 186, 191, 201, 206, 208, 213, 214, 215, 216, 220, 224, 225, 230, 234, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 58, 60, 61, 66, 73, 76, 77, 78, 81, 82, 83, 84, 85, 87, 101, 103, 104, 105, 106, 107, 109, 110, 119, 133, 134, 150, 155, 157, 158, 160, 162, 164, 166, 174, 178, 182, 184, 185, 189, 190, 191, 192, 194, 196, 197, 208, 216, 224, 225, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 256, 257, 258, 261, 265, 266, 268, 269, 270, 271, 272], "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 60, 61, 66, 67, 68, 73, 89, 100, 116, 119, 123, 124, 125, 126, 127, 134, 135, 147, 148, 149, 150, 152, 153, 156, 161, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 186, 188, 192, 202, 209, 213, 214, 215, 235, 239, 244, 247, 254, 257, 262, 263, 264, 265, 266, 274], "implement": [1, 2, 7, 8, 41, 50, 73, 77, 82, 87, 93, 108, 117, 124, 130, 133, 139, 152, 156, 160, 163, 178, 179, 183, 191, 217, 223, 231, 238, 240, 253, 255, 257, 258, 267, 269, 274], "multi": [1, 47, 48, 50, 106, 135, 160, 184, 187, 188, 190, 224, 245, 247, 258, 264, 266, 268], "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 43, 45, 46, 48, 54, 56, 64, 65, 67, 68, 72, 76, 77, 81, 85, 108, 109, 117, 130, 135, 145, 149, 150, 152, 155, 157, 158, 159, 160, 163, 164, 183, 185, 188, 189, 190, 191, 210, 211, 213, 215, 216, 224, 225, 240, 243, 245, 247, 248, 250, 251, 254, 258, 262, 264, 266, 274], "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 50, 54, 56, 59, 60, 61, 64, 65, 66, 67, 69, 70, 71, 72, 73, 78, 79, 81, 83, 86, 88, 89, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 109, 114, 119, 121, 123, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 150, 152, 155, 157, 159, 160, 161, 178, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 206, 207, 208, 209, 210, 211, 213, 214, 215, 219, 220, 223, 224, 225, 226, 227, 230, 235, 239, 242, 243, 244, 245, 247, 249, 250, 251, 253, 255, 256, 257, 258, 261, 262, 265, 266, 273, 274], "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, 50, 53, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 71, 72, 76, 77, 78, 79, 81, 82, 84, 85, 87, 88, 91, 92, 93, 94, 95, 98, 99, 101, 102, 103, 104, 105, 106, 107, 109, 114, 118, 120, 122, 123, 126, 127, 128, 130, 132, 133, 134, 138, 139, 141, 142, 143, 144, 145, 149, 150, 152, 155, 157, 158, 159, 160, 161, 169, 173, 178, 179, 180, 182, 183, 184, 185, 187, 188, 189, 190, 192, 194, 195, 196, 197, 199, 203, 205, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 218, 219, 222, 223, 224, 225, 226, 227, 230, 232, 234, 235, 237, 242, 246, 247, 249, 250, 252, 253, 254, 255, 256, 257, 259, 260, 262, 263, 267, 269, 270, 271, 272, 273], "xxxx": [1, 7, 50, 71, 83, 85, 88, 94, 119, 130, 137, 138, 191, 213, 215, 224, 274], "flag": [1, 49, 87, 88, 99, 125, 134, 135, 149, 152, 182, 183, 185, 190, 206, 207, 208, 211, 215, 219, 220, 222, 225, 226, 232, 252], "cmaketoolchain": [1, 16, 17, 18, 26, 27, 35, 38, 41, 42, 43, 46, 52, 59, 67, 72, 76, 83, 86, 88, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 130, 135, 145, 149, 150, 152, 179, 187, 188, 189, 190, 243, 244, 245, 246, 247, 248, 251, 253, 255, 257, 259, 261, 262, 265, 266, 274], "15654": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 52, 58, 59, 66, 76, 83, 85, 87, 88, 103, 105, 106, 107, 108, 111, 117, 119, 134, 135, 149, 153, 158, 161, 162, 174, 183, 184, 188, 190, 191, 194, 199, 201, 206, 208, 209, 211, 213, 214, 215, 219, 220, 224, 226, 234, 235, 239, 244, 246, 247, 248, 249, 251, 252, 254, 259, 261, 262, 264, 266, 269, 270, 273], "abil": 1, "pass": [1, 4, 13, 26, 36, 39, 45, 49, 54, 56, 67, 83, 87, 88, 89, 96, 101, 108, 109, 117, 119, 126, 131, 132, 139, 144, 148, 149, 157, 158, 160, 166, 174, 182, 183, 184, 185, 188, 189, 191, 192, 201, 203, 206, 208, 209, 213, 216, 220, 223, 230, 234, 243, 251, 252, 253, 254, 255, 257, 261, 262, 264, 270, 274], "pattern": [1, 6, 7, 13, 31, 83, 86, 87, 88, 89, 90, 91, 96, 98, 99, 101, 102, 105, 107, 110, 111, 114, 115, 117, 119, 133, 134, 139, 144, 145, 146, 174, 177, 190, 199, 201, 224, 230, 231, 245, 252, 260, 267], "updat": [1, 4, 6, 8, 26, 39, 40, 62, 66, 73, 77, 86, 88, 89, 92, 93, 96, 98, 99, 104, 105, 114, 117, 119, 131, 135, 136, 140, 149, 150, 152, 156, 169, 174, 182, 192, 199, 208, 234, 246, 254, 268, 272, 273, 274], "15652": 1, "doc": [1, 8, 60, 61, 73, 76, 117, 156, 206, 239, 247, 248, 274], "here": [1, 4, 19, 27, 41, 42, 50, 60, 85, 96, 102, 119, 126, 130, 131, 132, 136, 152, 161, 178, 190, 191, 195, 199, 211, 214, 234, 245, 250, 252, 253, 255, 258, 265, 266], "format": [1, 6, 7, 13, 52, 68, 75, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 109, 110, 111, 112, 114, 115, 116, 119, 124, 130, 135, 139, 140, 148, 152, 153, 157, 178, 192, 195, 199, 201, 209, 211, 217, 220, 225, 238, 251, 258, 259, 267, 274], "json": [1, 3, 4, 6, 13, 21, 47, 48, 59, 68, 79, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 104, 106, 109, 110, 111, 112, 114, 115, 116, 130, 131, 139, 140, 146, 158, 174, 188, 189, 191, 258, 264, 265, 266, 267, 274], "formatt": [1, 45, 90, 99, 115, 155], "15651": 1, "ad": [1, 3, 5, 8, 10, 24, 59, 66, 69, 71, 72, 73, 76, 89, 101, 104, 105, 108, 119, 125, 126, 131, 133, 136, 149, 150, 156, 157, 158, 160, 162, 173, 174, 178, 182, 184, 185, 191, 194, 203, 206, 208, 215, 224, 225, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 259, 260, 261, 270, 274], "cross_build": [1, 88, 149, 220, 244, 262], "decid": [1, 81, 88, 117, 119, 123, 134, 137, 138, 149, 247, 251, 269, 271, 272], "whether": [1, 86, 88, 89, 92, 93, 98, 99, 101, 105, 117, 130, 140, 149, 184, 186, 222, 251, 254, 261, 266, 274], "cross": [1, 11, 26, 42, 56, 60, 61, 63, 73, 88, 121, 134, 135, 139, 149, 150, 186, 187, 190, 208, 211, 215, 218, 219, 234, 235, 242, 245, 262], "regardless": [1, 87, 88, 149, 252], "intern": [1, 50, 54, 77, 88, 117, 139, 150, 152, 153, 182, 183, 220, 223, 234, 244, 246, 257, 271], "mechan": [1, 7, 13, 59, 73, 76, 77, 83, 117, 119, 124, 130, 138, 139, 150, 153, 155, 160, 178, 192, 195, 230, 245, 246, 252, 268, 270, 271, 273, 274], "15616": 1, "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 52, 58, 59, 66, 70, 71, 72, 76, 80, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 122, 123, 124, 125, 126, 128, 129, 130, 131, 132, 134, 135, 142, 143, 149, 151, 155, 156, 158, 160, 161, 173, 174, 184, 185, 186, 187, 188, 190, 191, 199, 201, 206, 208, 215, 216, 218, 223, 224, 225, 235, 238, 242, 247, 249, 251, 253, 255, 257, 259, 261, 268, 271, 272, 274], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 50, 52, 58, 59, 60, 61, 66, 73, 77, 82, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 111, 114, 119, 122, 127, 128, 129, 130, 132, 133, 137, 138, 148, 150, 153, 154, 155, 156, 157, 160, 161, 162, 163, 167, 169, 171, 173, 177, 185, 188, 191, 195, 199, 206, 213, 220, 225, 230, 235, 236, 241, 243, 245, 246, 248, 249, 252, 254, 257, 258, 260, 262, 263, 264, 265, 266, 269, 270, 271, 272, 273], "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 50, 52, 54, 58, 59, 61, 77, 84, 85, 86, 88, 89, 91, 92, 93, 96, 98, 99, 100, 102, 105, 106, 108, 113, 114, 117, 119, 129, 130, 131, 132, 133, 135, 136, 137, 138, 141, 147, 149, 150, 158, 160, 161, 162, 169, 173, 178, 179, 182, 183, 188, 190, 191, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 210, 213, 214, 215, 216, 217, 220, 222, 226, 227, 243, 245, 247, 248, 251, 253, 254, 257, 258, 259, 260, 262, 264, 265, 266, 274], "15613": 1, "order": [1, 4, 8, 13, 31, 36, 95, 101, 103, 104, 107, 117, 118, 119, 121, 134, 135, 149, 152, 153, 156, 160, 173, 174, 178, 191, 192, 195, 199, 208, 244, 246, 264, 270, 271, 272], "argument": [1, 6, 7, 10, 26, 29, 31, 35, 36, 47, 49, 67, 76, 77, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 127, 137, 138, 144, 148, 149, 154, 155, 156, 157, 159, 160, 162, 169, 173, 177, 183, 184, 188, 189, 190, 191, 192, 194, 195, 199, 206, 208, 213, 216, 217, 223, 230, 234, 244, 245, 247, 251, 252, 253, 255, 258, 264, 265, 267, 270, 272, 273], "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 60, 76, 77, 81, 83, 85, 88, 89, 100, 101, 103, 104, 105, 106, 109, 119, 120, 126, 130, 135, 136, 139, 140, 142, 145, 149, 150, 155, 158, 160, 164, 170, 184, 195, 224, 234, 242, 243, 244, 246, 248, 252, 267, 268, 269, 270, 271, 273], "15602": 1, "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 50, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 78, 81, 83, 86, 87, 89, 91, 92, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 108, 111, 112, 113, 114, 117, 120, 121, 127, 130, 133, 135, 136, 137, 138, 145, 148, 149, 150, 152, 153, 156, 157, 160, 169, 174, 188, 190, 191, 192, 194, 195, 199, 201, 203, 208, 210, 211, 220, 232, 245, 246, 247, 249, 258, 260, 261, 268, 270, 273, 274], "reduc": [1, 77, 96, 97, 140], "exclus": [1, 35, 86, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 102, 105, 106, 111, 114, 115, 119, 120, 123, 135, 136, 139, 224], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 43, 45, 46, 47, 49, 52, 54, 56, 57, 59, 61, 64, 66, 67, 68, 70, 71, 72, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 98, 99, 101, 103, 104, 105, 106, 108, 109, 110, 111, 112, 113, 114, 115, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 149, 150, 152, 154, 155, 156, 157, 158, 159, 160, 161, 167, 169, 170, 171, 174, 177, 178, 182, 184, 185, 188, 190, 191, 192, 194, 195, 197, 199, 202, 206, 208, 210, 211, 213, 214, 217, 219, 220, 224, 225, 230, 233, 235, 236, 237, 238, 239, 240, 243, 244, 246, 247, 261, 268, 269, 270, 272, 273], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 56, 59, 61, 66, 67, 71, 73, 77, 80, 81, 82, 85, 88, 93, 95, 96, 97, 99, 100, 104, 105, 108, 111, 115, 117, 119, 123, 125, 126, 131, 132, 134, 135, 136, 137, 138, 140, 144, 145, 149, 152, 153, 154, 155, 158, 159, 178, 182, 189, 190, 191, 192, 194, 203, 207, 208, 209, 216, 220, 223, 226, 230, 234, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 261, 264, 265, 266, 269, 271, 272, 273, 274], "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 50, 54, 58, 59, 61, 68, 73, 76, 77, 79, 81, 83, 85, 86, 87, 88, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 111, 114, 119, 121, 124, 128, 129, 130, 132, 135, 139, 140, 143, 145, 146, 155, 156, 162, 169, 178, 180, 184, 188, 190, 192, 199, 205, 213, 219, 224, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 256, 257, 259, 260, 262, 264, 265, 266, 267, 269, 271, 274], "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, 50, 52, 54, 56, 58, 59, 60, 64, 65, 66, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 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, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 145, 147, 148, 149, 150, 151, 152, 153, 155, 158, 159, 160, 162, 167, 169, 171, 172, 174, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 189, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 234, 235, 236, 237, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 271, 272, 273, 274], "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, 51, 54, 56, 58, 59, 60, 76, 77, 78, 85, 86, 87, 88, 89, 93, 95, 96, 97, 98, 99, 101, 102, 105, 108, 109, 114, 117, 118, 120, 121, 128, 129, 130, 132, 135, 142, 149, 150, 153, 161, 162, 169, 170, 177, 178, 188, 189, 190, 191, 195, 196, 199, 201, 203, 207, 208, 211, 217, 230, 235, 236, 237, 238, 239, 240, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 257, 258, 259, 260, 261, 262, 263, 264, 268, 271, 273], "15573": 1, "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, 50, 52, 54, 58, 59, 60, 61, 62, 64, 65, 71, 72, 73, 76, 77, 79, 80, 81, 82, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 121, 122, 123, 124, 125, 128, 129, 130, 133, 134, 135, 139, 142, 143, 150, 152, 153, 154, 161, 166, 169, 173, 178, 181, 183, 185, 186, 188, 189, 191, 196, 197, 201, 206, 208, 210, 213, 215, 219, 220, 221, 222, 223, 225, 227, 230, 233, 235, 236, 239, 242, 243, 244, 248, 249, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 271, 272, 273], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 52, 76, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 101, 102, 105, 107, 109, 110, 111, 112, 113, 114, 115, 117, 119, 123, 125, 126, 130, 132, 134, 135, 136, 144, 145, 149, 150, 151, 152, 160, 167, 177, 186, 188, 189, 190, 191, 195, 199, 200, 201, 206, 208, 209, 211, 214, 216, 219, 220, 226, 230, 241, 243, 244, 245, 246, 247, 255, 257, 272, 273], "cuda": [1, 88, 149, 191, 208], "toolkit": 1, "visual": [1, 28, 35, 43, 50, 57, 60, 62, 73, 75, 83, 88, 130, 135, 149, 152, 179, 188, 189, 190, 191, 208, 216, 217, 220, 221, 223, 224, 225, 227, 228, 243, 245, 247, 248, 253, 266], "studio": [1, 11, 25, 27, 28, 35, 43, 50, 57, 60, 62, 63, 73, 83, 88, 130, 135, 149, 152, 188, 189, 190, 191, 208, 216, 217, 220, 222, 223, 224, 225, 227, 228, 243, 245, 247, 248, 253, 266], "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 27, 29, 35, 37, 42, 43, 47, 48, 52, 54, 56, 58, 59, 60, 62, 66, 71, 72, 73, 76, 77, 78, 79, 83, 86, 88, 89, 93, 96, 98, 99, 101, 105, 107, 108, 109, 114, 119, 121, 123, 130, 132, 133, 134, 135, 136, 145, 149, 150, 152, 157, 179, 189, 191, 196, 203, 217, 235, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 264, 265, 266, 274], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 27, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 50, 54, 56, 58, 59, 64, 65, 67, 69, 70, 71, 72, 73, 77, 79, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 102, 104, 105, 106, 108, 109, 114, 115, 117, 120, 121, 122, 124, 126, 131, 132, 134, 135, 136, 139, 140, 149, 150, 152, 153, 154, 155, 156, 157, 160, 161, 162, 163, 170, 178, 179, 180, 184, 185, 187, 188, 189, 193, 194, 195, 199, 205, 206, 212, 216, 217, 218, 219, 221, 225, 226, 227, 230, 232, 238, 239, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 272, 274], "15572": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 46, 49, 52, 58, 59, 60, 61, 62, 64, 65, 69, 70, 71, 72, 73, 76, 81, 83, 85, 96, 99, 101, 105, 108, 117, 118, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 146, 148, 150, 152, 155, 156, 158, 159, 162, 178, 179, 180, 182, 183, 184, 185, 188, 189, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 219, 220, 223, 224, 225, 226, 227, 232, 234, 235, 244, 246, 247, 250, 251, 253, 255, 257, 258, 259, 260, 261, 262, 266, 270, 272, 273, 274], "valu": [1, 21, 26, 27, 39, 49, 76, 77, 81, 83, 86, 88, 89, 96, 98, 99, 101, 102, 105, 108, 109, 114, 115, 117, 119, 121, 122, 123, 124, 125, 126, 130, 131, 132, 134, 135, 136, 137, 138, 139, 142, 143, 144, 145, 147, 148, 149, 150, 151, 154, 156, 158, 163, 166, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 199, 201, 206, 207, 208, 215, 217, 219, 220, 222, 223, 224, 225, 226, 231, 234, 245, 247, 251, 252, 253, 254, 257, 259, 261, 262, 265, 266, 269, 271], "definit": [1, 17, 64, 66, 67, 69, 70, 73, 78, 83, 88, 93, 101, 108, 109, 110, 119, 126, 135, 139, 149, 150, 152, 155, 174, 185, 191, 193, 195, 196, 197, 207, 208, 220, 224, 225, 226, 230, 247, 261, 264, 266, 273], "higher": [1, 66, 83, 101, 135, 136, 144, 148, 230, 270, 272], "preced": [1, 119, 147, 179, 191, 194, 208, 211], "over": [1, 6, 8, 10, 75, 77, 83, 87, 88, 90, 101, 119, 131, 134, 139, 147, 149, 150, 154, 156, 157, 160, 173, 178, 183, 191, 201, 208, 210, 211, 230, 251, 254, 255, 260, 267, 269, 272, 274], "regular": [1, 41, 119, 130, 132, 135, 150, 154, 161, 178, 190, 201, 211, 224, 240, 242, 244, 257], "15571": 1, "displai": [1, 13, 66, 84, 85, 88, 95, 102, 119, 140, 157, 163, 253, 270], "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 52, 76, 82, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 144, 149, 161, 248, 250, 251, 252, 255, 259, 261, 264, 271, 274], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 50, 52, 59, 61, 73, 76, 77, 81, 82, 83, 84, 86, 87, 88, 89, 91, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 110, 114, 115, 117, 119, 120, 123, 125, 126, 127, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 148, 149, 150, 152, 153, 154, 158, 160, 162, 163, 174, 178, 180, 182, 184, 185, 186, 188, 190, 191, 195, 196, 197, 199, 201, 208, 211, 213, 214, 216, 219, 220, 222, 224, 225, 231, 234, 236, 239, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 50, 52, 54, 58, 59, 64, 66, 71, 72, 77, 82, 85, 86, 90, 93, 101, 108, 109, 113, 117, 120, 121, 122, 123, 125, 128, 129, 130, 131, 133, 134, 135, 137, 138, 139, 140, 141, 144, 153, 156, 157, 158, 160, 161, 162, 177, 178, 183, 188, 190, 191, 192, 195, 196, 197, 202, 206, 208, 213, 215, 216, 219, 223, 225, 226, 227, 230, 234, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 268, 269, 271, 274], "deactivate_conanvcvar": 1, "15557": 1, "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 50, 52, 58, 59, 77, 81, 83, 101, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 152, 153, 155, 157, 158, 159, 160, 161, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 269, 270, 271, 273, 274], "info": [1, 6, 13, 24, 31, 36, 54, 58, 59, 62, 76, 81, 82, 83, 84, 85, 88, 89, 95, 98, 100, 102, 105, 130, 134, 135, 136, 139, 140, 142, 143, 144, 149, 158, 161, 169, 178, 201, 220, 232, 234, 244, 252, 253, 257, 259, 270, 271], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 50, 54, 56, 61, 63, 66, 67, 71, 72, 76, 77, 78, 79, 84, 85, 89, 90, 92, 94, 95, 96, 99, 100, 101, 102, 104, 105, 108, 109, 110, 115, 116, 118, 120, 121, 122, 123, 125, 126, 127, 130, 131, 132, 133, 139, 140, 141, 142, 145, 146, 147, 148, 150, 152, 153, 155, 156, 158, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 182, 184, 188, 191, 194, 197, 199, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 224, 230, 232, 235, 238, 241, 243, 244, 245, 247, 248, 249, 252, 253, 255, 257, 261, 262, 265, 266, 267, 271, 272, 274], "package_id": [1, 6, 7, 13, 31, 77, 79, 80, 83, 87, 88, 90, 94, 96, 98, 99, 102, 111, 115, 119, 120, 122, 126, 130, 136, 142, 143, 149, 155, 169, 245, 252, 256, 257, 269, 271], "serial": [1, 7, 119], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 52, 56, 59, 66, 68, 73, 77, 79, 85, 86, 87, 88, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 118, 130, 134, 139, 149, 150, 154, 158, 160, 161, 178, 199, 201, 203, 210, 217, 220, 230, 243, 245, 247, 248, 250, 251, 254, 261, 262, 266, 271, 274], "forward": [1, 6, 45, 54, 56, 73, 178, 201, 269, 273], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 54, 58, 60, 64, 66, 69, 71, 72, 76, 82, 83, 84, 85, 87, 90, 96, 100, 104, 106, 108, 111, 112, 115, 117, 119, 120, 124, 130, 131, 134, 135, 144, 145, 148, 149, 150, 151, 155, 156, 158, 164, 167, 169, 173, 174, 177, 185, 186, 188, 189, 190, 191, 195, 199, 201, 206, 208, 209, 211, 213, 215, 220, 223, 224, 225, 226, 230, 232, 234, 235, 241, 246, 253, 254, 257, 258, 264, 265, 270, 271, 273], "15553": 1, "log": [1, 6, 26, 59, 90, 110, 117, 144, 153, 155, 266, 274], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 50, 52, 54, 56, 61, 68, 73, 76, 77, 88, 101, 108, 109, 119, 138, 139, 149, 153, 179, 199, 229, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 273], "command": [1, 4, 7, 10, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 54, 58, 60, 61, 64, 65, 70, 71, 72, 73, 75, 76, 77, 79, 82, 83, 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, 114, 115, 116, 117, 118, 119, 120, 121, 127, 128, 129, 130, 132, 133, 137, 138, 139, 142, 148, 150, 151, 152, 154, 155, 159, 161, 163, 165, 169, 172, 183, 184, 185, 188, 190, 191, 195, 206, 213, 214, 215, 216, 219, 223, 224, 225, 227, 230, 232, 234, 241, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 267, 270, 271, 272, 273], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 50, 52, 54, 56, 58, 59, 61, 66, 67, 73, 77, 79, 83, 88, 89, 94, 98, 99, 105, 111, 115, 118, 119, 120, 121, 122, 123, 130, 132, 134, 135, 138, 141, 147, 149, 150, 152, 155, 157, 158, 160, 161, 185, 186, 188, 190, 191, 193, 194, 197, 206, 211, 213, 214, 215, 216, 219, 223, 224, 226, 227, 230, 234, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 270, 271, 273, 274], "verbos": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 135, 144, 149, 150, 154, 183, 188, 208, 219, 223, 266], "mode": [1, 17, 21, 73, 76, 88, 91, 102, 119, 130, 132, 139, 140, 149, 152, 216, 234, 235, 245, 263, 266, 274], "15514": 1, "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 50, 52, 66, 76, 77, 101, 105, 108, 109, 119, 122, 135, 144, 150, 152, 156, 163, 183, 184, 185, 189, 190, 191, 196, 197, 199, 208, 220, 223, 224, 225, 235, 242, 247, 250, 252, 253, 257, 258, 259, 261, 264, 265, 266], "vvv": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "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, 46, 47, 49, 52, 54, 56, 58, 59, 60, 61, 64, 65, 66, 67, 68, 70, 71, 72, 73, 76, 77, 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 109, 111, 114, 115, 116, 117, 118, 119, 120, 121, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 144, 145, 147, 148, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 161, 162, 163, 173, 174, 177, 179, 182, 183, 184, 185, 187, 188, 189, 192, 193, 194, 205, 206, 210, 212, 213, 216, 217, 218, 219, 221, 223, 225, 227, 230, 232, 235, 239, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 261, 262, 264, 265, 266, 267, 270, 271, 272, 273], "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 58, 59, 61, 73, 77, 82, 87, 88, 101, 102, 108, 117, 119, 120, 127, 128, 129, 130, 132, 133, 139, 149, 155, 160, 178, 198, 202, 203, 241, 249, 253, 254, 255, 257, 258, 259, 261, 263, 274], "15513": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 50, 54, 58, 59, 73, 77, 80, 81, 83, 87, 88, 91, 93, 94, 99, 101, 102, 104, 106, 108, 109, 110, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 145, 147, 148, 149, 150, 152, 153, 154, 155, 156, 158, 160, 163, 166, 173, 174, 178, 181, 183, 185, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 203, 206, 207, 208, 209, 210, 211, 214, 216, 217, 220, 224, 225, 226, 227, 230, 235, 242, 243, 244, 245, 247, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 273, 274], "python_requir": [1, 77, 94, 100, 104, 105, 106, 107, 120, 130, 131, 155, 169, 191, 217, 235, 246, 270, 272], "tested_reference_str": [1, 178, 259, 262], "explicit": [1, 41, 87, 101, 133, 148, 202, 226, 267, 268, 270, 273, 274], "test_packag": [1, 21, 27, 42, 50, 58, 59, 77, 89, 93, 108, 109, 114, 120, 141, 169, 178, 249, 250, 252, 253, 254, 255, 257, 258, 259, 261, 262, 264, 265], "15485": 1, "presets_build": 1, "run_environ": 1, "modifi": [1, 3, 4, 6, 10, 17, 26, 27, 29, 48, 52, 66, 76, 77, 83, 87, 117, 119, 122, 123, 130, 135, 152, 154, 157, 161, 163, 184, 191, 192, 199, 207, 242, 246, 247, 251, 252, 253, 255, 260, 261, 269, 271, 272, 273, 274], "cmakepreset": [1, 43, 46, 67, 88, 130, 149, 188, 189, 191, 247, 264, 265, 266, 274], "environ": [1, 2, 6, 13, 14, 20, 35, 45, 56, 60, 61, 64, 79, 83, 88, 99, 108, 109, 117, 119, 130, 135, 144, 147, 148, 149, 150, 153, 179, 188, 190, 191, 193, 196, 197, 207, 210, 216, 220, 221, 225, 227, 243, 244, 245, 247, 248, 249, 251, 257, 259, 261, 262, 265], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 50, 58, 59, 60, 64, 71, 73, 77, 79, 83, 85, 86, 87, 93, 100, 101, 108, 109, 113, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 150, 155, 156, 159, 160, 161, 162, 174, 178, 182, 183, 184, 185, 188, 190, 191, 194, 195, 196, 197, 199, 202, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 233, 235, 242, 249, 250, 252, 253, 255, 257, 258, 259, 261, 262, 264, 265, 266, 269, 273], "15470": 1, "allow": [1, 3, 4, 6, 13, 49, 50, 56, 58, 66, 71, 73, 77, 78, 83, 85, 86, 88, 89, 91, 96, 98, 99, 101, 102, 104, 105, 109, 110, 114, 117, 119, 120, 121, 122, 123, 128, 129, 132, 134, 135, 148, 149, 150, 152, 153, 154, 155, 156, 157, 163, 170, 174, 178, 189, 190, 191, 192, 194, 199, 206, 220, 222, 224, 225, 234, 243, 246, 247, 253, 255, 265, 267, 270, 272, 273, 274], "packg": 1, "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 54, 59, 73, 76, 79, 85, 86, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 111, 112, 114, 115, 117, 146, 148, 149, 150, 155, 164, 167, 169, 170, 171, 177, 199, 230, 235, 236, 239, 240, 241, 243, 245, 248, 249, 252, 258, 265, 272, 274], "limit": [1, 35, 50, 102, 111, 119, 135, 186, 195, 199, 220, 243, 274], "suppli": [1, 4, 5, 86, 87, 89, 96, 98, 99, 101, 103, 104, 105, 107, 114, 160, 274], "15464": 1, "initi": [1, 6, 59, 66, 120, 131, 135, 137, 138, 169, 220, 228, 273], "document": [1, 3, 4, 26, 27, 61, 68, 77, 78, 83, 90, 111, 119, 127, 130, 135, 140, 152, 155, 163, 178, 179, 191, 192, 199, 202, 216, 220, 238, 239, 247, 248, 252, 266, 274], "make": [1, 6, 8, 26, 27, 29, 38, 39, 40, 45, 50, 59, 61, 62, 64, 69, 73, 88, 93, 101, 102, 104, 119, 126, 128, 130, 133, 134, 137, 140, 144, 149, 150, 152, 155, 157, 162, 178, 185, 190, 194, 206, 208, 209, 220, 230, 245, 247, 250, 251, 252, 260, 263, 264, 266, 273, 274], "remotesapi": [1, 31, 164, 174], "publicli": [1, 4], "avail": [1, 3, 4, 8, 24, 26, 36, 52, 66, 73, 75, 76, 88, 93, 98, 100, 102, 107, 108, 111, 117, 119, 124, 132, 136, 145, 149, 150, 161, 174, 178, 182, 186, 191, 233, 243, 246, 247, 252, 253, 257, 258, 259, 264, 265, 272, 274], "experiment": [1, 6, 7, 13, 31, 73, 88, 94, 100, 108, 115, 116, 119, 123, 125, 126, 127, 134, 135, 145, 148, 149, 150, 152, 153, 156, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 190, 191, 192, 209, 213, 214, 215, 216, 230, 274], "15462": 1, "support": [1, 8, 17, 26, 27, 47, 48, 49, 52, 60, 62, 63, 66, 67, 68, 69, 73, 76, 83, 99, 102, 108, 117, 123, 132, 135, 137, 138, 142, 145, 149, 150, 152, 154, 155, 156, 159, 160, 163, 174, 181, 186, 190, 208, 211, 216, 220, 222, 234, 242, 250, 255, 261, 264, 265, 266, 274], "vcvar": [1, 88, 130, 149, 152, 179, 221, 223, 225], "env": [1, 24, 26, 39, 40, 54, 77, 79, 88, 110, 135, 136, 141, 144, 149, 150, 154, 179, 188, 191, 194, 195, 196, 197, 208, 225, 226, 227, 232, 243, 245, 248, 259, 262, 265], "variabl": [1, 26, 35, 36, 43, 45, 46, 60, 64, 79, 81, 83, 88, 108, 117, 119, 130, 134, 135, 147, 148, 149, 150, 153, 181, 185, 188, 190, 192, 193, 196, 197, 207, 208, 209, 210, 211, 213, 215, 216, 219, 220, 223, 224, 225, 226, 227, 234, 244, 245, 247, 248, 251, 259, 260, 261, 262, 271, 272, 274], "powershel": [1, 88, 149, 195, 196, 197, 227, 248], "15461": 1, "exclud": [1, 39, 40, 86, 87, 88, 89, 96, 98, 99, 101, 105, 114, 119, 149, 199, 224, 230, 246, 272], "avoid": [1, 5, 6, 10, 50, 59, 61, 73, 77, 86, 88, 89, 93, 96, 98, 99, 100, 101, 105, 108, 111, 114, 117, 118, 119, 122, 123, 126, 130, 131, 136, 139, 149, 153, 154, 156, 162, 178, 190, 191, 195, 199, 206, 208, 217, 248, 251, 252, 257, 262, 264, 269, 270, 271, 272], "dirti": [1, 6, 59, 88, 119, 149, 230], "helper": [1, 18, 45, 54, 56, 58, 64, 65, 67, 70, 71, 72, 73, 76, 88, 119, 121, 129, 130, 139, 140, 144, 149, 152, 153, 158, 183, 186, 188, 190, 191, 194, 195, 199, 205, 208, 210, 213, 215, 219, 222, 223, 230, 231, 257], "15457": 1, "core": [1, 3, 4, 10, 31, 45, 54, 60, 74, 81, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 134, 144, 148, 150, 154, 167, 177, 178, 230, 272], "scm": [1, 11, 43, 79, 88, 101, 119, 138, 149, 179, 199, 230, 250, 255, 271, 273], "revision_mod": [1, 94, 99, 100, 271], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 50, 52, 58, 59, 60, 67, 72, 73, 76, 77, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 104, 105, 106, 108, 109, 110, 111, 112, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 134, 135, 136, 137, 138, 139, 140, 142, 145, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 160, 161, 162, 167, 169, 171, 177, 178, 182, 186, 188, 189, 190, 191, 194, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 211, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 234, 235, 236, 241, 243, 245, 246, 247, 248, 249, 250, 253, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "python_package_id_mod": 1, "per": [1, 6, 71, 73, 83, 108, 121, 130, 133, 135, 139, 150, 177, 178, 184, 213, 214, 224], "effect": [1, 6, 8, 49, 76, 79, 80, 81, 101, 119, 130, 134, 139, 149, 155, 224, 234, 252, 270], "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 50, 58, 59, 60, 67, 71, 72, 82, 85, 89, 109, 118, 120, 123, 130, 132, 135, 136, 143, 145, 150, 169, 170, 178, 184, 192, 194, 206, 209, 211, 214, 224, 232, 235, 245, 246, 247, 248, 249, 250, 253, 257, 258, 259, 262, 263, 264, 266, 269, 271, 273, 274], "15453": 1, "cmakeexecut": [1, 191], "preset": [1, 29, 47, 48, 67, 88, 121, 132, 149, 189, 191, 264, 265, 266], "15447": 1, "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 71, 77, 79, 81, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 121, 126, 130, 131, 134, 135, 144, 146, 152, 154, 160, 166, 173, 181, 189, 195, 196, 197, 206, 218, 221, 234, 240, 248, 251, 257, 274], "line": [1, 8, 10, 21, 26, 29, 31, 49, 59, 64, 65, 70, 71, 72, 73, 76, 77, 83, 86, 89, 96, 98, 99, 101, 105, 108, 109, 114, 117, 119, 121, 137, 138, 148, 149, 154, 157, 158, 159, 163, 183, 184, 188, 190, 191, 199, 206, 213, 214, 219, 223, 225, 227, 243, 245, 248, 250, 251, 253, 255, 260, 271, 272, 273, 274], "via": [1, 4, 7, 10, 13, 31, 38, 49, 50, 61, 67, 68, 73, 77, 81, 83, 88, 93, 119, 130, 132, 136, 149, 158, 160, 163, 178, 188, 190, 191, 192, 194, 237, 243, 244, 272, 274], "cli": [1, 10, 13, 31, 73, 94, 99, 149, 151, 154, 158, 188, 213, 239, 273], "15441": 1, "detect_api": [1, 149, 150], "detect_msvc_upd": [1, 150], "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, 50, 52, 56, 58, 59, 60, 61, 62, 66, 68, 73, 76, 77, 78, 80, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 111, 113, 114, 115, 117, 120, 123, 124, 130, 131, 134, 136, 138, 139, 140, 142, 143, 145, 149, 150, 152, 153, 155, 156, 157, 159, 160, 163, 169, 178, 179, 182, 185, 186, 189, 190, 191, 194, 199, 202, 203, 206, 210, 211, 216, 220, 222, 225, 226, 227, 229, 230, 234, 235, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 274], "15435": 1, "job": [1, 7, 59, 77, 88, 149, 150, 186, 188, 219, 274], "buildpreset": [1, 48, 191], "15422": 1, "nest": [1, 76, 152, 199, 264], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 50, 58, 59, 73, 76, 77, 81, 82, 83, 87, 88, 89, 90, 94, 100, 101, 102, 104, 106, 108, 109, 111, 112, 115, 117, 119, 121, 122, 123, 128, 129, 130, 131, 135, 137, 138, 139, 140, 144, 147, 149, 150, 152, 154, 155, 156, 158, 161, 178, 179, 185, 188, 189, 190, 191, 196, 199, 201, 204, 206, 209, 211, 213, 214, 216, 220, 224, 225, 231, 234, 239, 241, 243, 245, 246, 250, 252, 253, 257, 258, 259, 263, 264, 267, 269, 270, 271, 272, 273, 274], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 52, 58, 59, 66, 67, 70, 71, 72, 77, 79, 80, 82, 84, 85, 86, 88, 89, 90, 93, 94, 96, 98, 99, 100, 102, 105, 109, 111, 114, 115, 117, 120, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132, 133, 134, 135, 136, 139, 140, 142, 143, 144, 146, 147, 148, 149, 153, 155, 156, 158, 160, 163, 166, 173, 180, 182, 183, 184, 185, 186, 187, 188, 190, 191, 194, 195, 196, 197, 201, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 232, 234, 235, 236, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 253, 255, 256, 257, 258, 260, 261, 262, 265, 266, 270, 271], "yml": [1, 4, 7, 11, 23, 52, 59, 66, 76, 77, 79, 83, 88, 119, 128, 129, 130, 131, 139, 146, 150, 162, 199, 203, 230, 249], "15415": 1, "coordinates_to_conandata": [1, 230], "checkout_from_conandata_coordin": [1, 230], "simplifi": [1, 13, 106, 145, 252, 253, 274], "base": [1, 4, 8, 35, 36, 39, 42, 47, 54, 56, 61, 73, 82, 83, 86, 90, 99, 100, 101, 102, 105, 111, 115, 119, 130, 131, 133, 136, 150, 155, 158, 160, 167, 177, 180, 183, 185, 189, 191, 216, 220, 222, 223, 225, 243, 245, 251, 261, 274], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 59, 60, 73, 86, 93, 101, 113, 130, 135, 185, 190, 225, 235, 239, 251, 263, 270, 274], "15377": 1, "autotoolstoolchain": [1, 45, 64, 88, 149, 179, 194, 205, 206, 251], "automat": [1, 3, 6, 31, 41, 47, 61, 66, 73, 83, 86, 88, 89, 93, 96, 98, 99, 100, 101, 104, 105, 108, 114, 117, 119, 128, 135, 136, 139, 148, 149, 150, 152, 161, 173, 178, 182, 188, 189, 190, 191, 194, 195, 197, 202, 203, 206, 209, 210, 211, 213, 215, 216, 219, 225, 234, 237, 243, 245, 246, 248, 251, 252, 254, 255, 259, 262, 267, 268, 269, 270, 271, 272, 274], "inject": [1, 39, 40, 43, 46, 65, 66, 88, 119, 134, 135, 144, 148, 149, 150, 153, 155, 157, 178, 215, 226, 248, 251, 261], "f": [1, 31, 36, 39, 40, 59, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 108, 109, 110, 111, 112, 114, 115, 116, 119, 135, 139, 153, 159, 161, 162, 178, 191, 211, 226], "v": [1, 26, 48, 50, 58, 78, 81, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 124, 134, 145, 149, 152, 154, 178, 219, 220, 224, 225, 226, 230, 235, 242, 243, 245, 248, 253, 274], "15375": 1, "upload": [1, 3, 5, 7, 12, 29, 59, 68, 73, 76, 77, 83, 85, 88, 90, 92, 109, 110, 111, 117, 119, 128, 129, 149, 151, 155, 162, 164, 206, 235, 236, 237, 239, 246, 257, 258, 264, 267, 268, 274], "parallel": [1, 66, 77, 83, 88, 96, 115, 149, 154, 155, 157, 167, 177, 186, 191, 274], "faster": [1, 13, 83, 230, 246, 273], "15360": 1, "intel": [1, 42, 73, 79, 88, 149, 179, 222], "oneapi": [1, 88, 149, 152, 216], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 52, 56, 58, 59, 60, 67, 76, 77, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 100, 101, 102, 105, 108, 109, 111, 114, 115, 119, 122, 124, 126, 130, 133, 134, 135, 136, 139, 143, 146, 149, 150, 156, 163, 171, 182, 183, 184, 185, 186, 188, 189, 190, 194, 196, 197, 203, 206, 207, 208, 209, 211, 213, 214, 215, 216, 219, 220, 222, 223, 224, 225, 226, 227, 232, 235, 242, 243, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 274], "detect": [1, 6, 59, 73, 77, 88, 149, 150, 173, 186, 191, 210, 220, 243, 244, 245, 254], "improv": [1, 6, 73, 121, 274], "15358": 1, "progress": 1, "long": [1, 4, 7, 73, 76, 119, 132, 152, 178, 270, 272, 274], "15354": 1, "extension_properti": [1, 156], "attribut": [1, 19, 21, 48, 77, 79, 81, 83, 100, 118, 121, 123, 125, 126, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 144, 145, 156, 161, 178, 184, 189, 190, 191, 203, 214, 217, 221, 245, 247, 250, 253, 254, 255, 257, 260, 262, 265, 266, 273], "extens": [1, 4, 11, 31, 35, 36, 38, 60, 61, 73, 77, 79, 80, 81, 88, 101, 119, 156, 157, 158, 159, 160, 161, 162, 163, 186, 195, 199, 244, 252, 259, 265], "15348": 1, "compatibility_cppstd": [1, 119, 156], "compat": [1, 8, 24, 27, 45, 66, 73, 78, 79, 80, 82, 83, 86, 89, 90, 96, 98, 99, 101, 105, 114, 115, 119, 120, 134, 150, 152, 155, 161, 190, 191, 206, 211, 220, 245, 247, 249, 259], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 58, 59, 60, 61, 66, 73, 77, 79, 83, 85, 86, 87, 89, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 108, 109, 113, 114, 117, 119, 124, 128, 130, 131, 132, 137, 138, 139, 140, 141, 142, 145, 150, 153, 155, 156, 157, 158, 159, 160, 161, 162, 163, 169, 170, 178, 184, 185, 190, 196, 197, 203, 207, 208, 209, 211, 213, 214, 215, 216, 224, 225, 227, 232, 234, 235, 242, 243, 244, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 271, 272, 273], "plugin": [1, 26, 50, 62, 73, 77, 79, 85, 88, 117, 124, 134, 144, 155, 156, 157, 162, 259], "disabl": [1, 50, 88, 89, 117, 119, 149, 151, 154, 156, 160, 174, 191, 201, 208, 257], "fallback": [1, 101, 152, 183, 274], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 50, 58, 59, 60, 61, 69, 73, 76, 77, 81, 82, 83, 86, 87, 88, 89, 90, 93, 96, 97, 98, 99, 101, 102, 105, 106, 108, 109, 111, 114, 115, 117, 118, 121, 122, 123, 124, 126, 127, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 143, 149, 150, 152, 153, 154, 155, 158, 178, 179, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 206, 207, 208, 213, 220, 225, 226, 230, 234, 235, 239, 241, 243, 244, 246, 247, 248, 249, 250, 252, 253, 255, 259, 261, 263, 264, 265, 266, 270, 271, 273, 274], "cppstd": [1, 24, 26, 27, 58, 76, 81, 94, 99, 109, 119, 126, 134, 150, 152, 156, 163, 179, 185, 191, 208, 215, 226, 243, 244, 245, 252, 253, 257, 274], "get_commit": [1, 230], "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 60, 61, 68, 73, 76, 77, 88, 90, 101, 110, 115, 119, 139, 153, 155, 158, 161, 214, 230, 234, 235, 237, 238, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 52, 59, 76, 82, 83, 84, 86, 88, 89, 93, 94, 96, 98, 99, 100, 101, 102, 105, 109, 114, 117, 119, 121, 123, 125, 126, 130, 131, 134, 135, 136, 139, 140, 144, 145, 148, 149, 150, 151, 173, 174, 182, 184, 186, 188, 189, 190, 191, 195, 196, 197, 199, 201, 203, 208, 210, 213, 215, 219, 220, 222, 224, 225, 230, 234, 245, 247, 248, 251, 252, 253, 255, 257, 261, 265, 269, 270, 272], "obtain": [1, 39, 40, 59, 84, 85, 87, 120, 134, 140, 150, 174, 182, 183, 188, 193, 195, 196, 197, 220, 223, 225, 230, 245, 273], "commit": [1, 19, 59, 68, 73, 77, 119, 132, 139, 199, 230, 250, 251, 254, 255, 261, 265, 266, 271, 273], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 50, 54, 56, 58, 59, 61, 66, 76, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 108, 109, 113, 114, 117, 118, 120, 122, 127, 128, 129, 130, 133, 139, 147, 149, 150, 154, 155, 157, 158, 159, 160, 161, 162, 163, 172, 182, 188, 189, 190, 191, 194, 199, 201, 203, 204, 206, 208, 214, 217, 219, 220, 227, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 269, 270, 274], "15304": 1, "ensur": [1, 4, 8, 36, 42, 61, 66, 81, 89, 123, 152, 191, 199, 213, 216, 245, 272], "edit": [1, 3, 14, 15, 21, 26, 29, 52, 61, 73, 76, 77, 85, 109, 110, 117, 119, 130, 132, 135, 139, 150, 152, 163, 178, 235, 238, 240, 243, 246, 263, 266, 271], "cascad": [1, 86, 89, 96, 98, 99, 101, 105, 114, 264], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 50, 52, 59, 60, 61, 62, 70, 73, 76, 77, 85, 90, 91, 101, 106, 108, 109, 110, 111, 115, 117, 119, 120, 128, 129, 130, 132, 139, 142, 143, 148, 150, 152, 156, 158, 161, 178, 186, 188, 190, 191, 195, 214, 217, 220, 230, 235, 240, 243, 244, 245, 247, 252, 253, 255, 258, 260, 263, 265, 266, 269, 274], "togeth": [1, 59, 70, 73, 87, 97, 109, 119, 128, 129, 139, 156, 177, 178, 188, 191, 219, 226, 246, 253, 267, 274], "15300": 1, "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 50, 52, 58, 59, 61, 64, 65, 67, 68, 69, 70, 72, 73, 77, 78, 80, 81, 82, 83, 84, 85, 87, 88, 93, 96, 97, 98, 99, 101, 102, 105, 106, 107, 109, 115, 117, 119, 120, 121, 122, 123, 125, 126, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 143, 145, 149, 150, 152, 154, 155, 156, 158, 159, 160, 161, 178, 184, 185, 189, 190, 191, 195, 196, 197, 199, 203, 211, 216, 217, 222, 224, 225, 230, 234, 239, 242, 243, 244, 247, 248, 249, 252, 253, 254, 257, 258, 259, 261, 262, 264, 266, 267, 268, 269, 270, 272, 273, 274], "sort": [1, 96, 104, 106, 107, 135, 162, 192, 199, 270, 274], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 52, 54, 58, 59, 60, 61, 63, 76, 77, 78, 79, 82, 84, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 118, 120, 121, 122, 123, 124, 127, 130, 133, 134, 135, 136, 139, 140, 141, 142, 143, 149, 150, 151, 152, 155, 160, 167, 170, 178, 182, 185, 190, 199, 206, 211, 220, 235, 236, 237, 238, 239, 241, 243, 244, 245, 247, 248, 249, 251, 253, 254, 255, 256, 257, 259, 260, 262, 264, 265, 266, 267, 269, 271, 274], "group": [1, 31, 88, 119, 274], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 58, 59, 77, 81, 82, 84, 85, 86, 87, 89, 90, 96, 98, 99, 101, 103, 104, 105, 106, 107, 109, 111, 114, 115, 119, 130, 134, 145, 152, 158, 169, 177, 178, 199, 235, 242, 243, 248, 252, 253, 254, 257, 259, 260, 265, 267, 268, 270], "15270": 1, "past": [1, 26, 78, 87, 102], "timestamp": [1, 13, 98, 102, 104, 106], "compact": [1, 87], "lock": [1, 8, 73, 85, 86, 89, 93, 96, 98, 99, 100, 101, 109, 114, 169, 178, 246, 270], "15262": 1, "fix": [1, 5, 8, 35, 73, 119, 139, 153, 178, 182, 203, 245, 246, 269], "guarante": [1, 4, 7, 59, 83, 106, 109, 134, 150, 178, 255, 268, 271], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 50, 56, 58, 59, 66, 77, 81, 82, 83, 87, 88, 93, 100, 101, 108, 115, 119, 122, 123, 125, 126, 127, 131, 133, 134, 135, 136, 137, 138, 139, 141, 144, 145, 149, 150, 154, 157, 158, 161, 162, 177, 182, 185, 188, 191, 195, 196, 197, 206, 208, 210, 213, 219, 220, 224, 226, 230, 232, 234, 245, 247, 248, 251, 252, 253, 254, 257, 259, 262, 264, 265, 266, 274], "15678": 1, "solv": [1, 29, 59, 61, 77, 78, 136, 150, 155, 158, 190, 211, 269, 271], "platform_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 54, 59, 61, 66, 73, 77, 79, 81, 83, 85, 86, 88, 89, 93, 96, 98, 99, 105, 114, 119, 123, 126, 135, 146, 149, 152, 154, 155, 156, 160, 164, 166, 169, 191, 194, 208, 215, 216, 219, 220, 222, 226, 242, 243, 245, 247, 248, 252, 257, 269, 270, 271, 272], "context": [1, 6, 13, 42, 77, 83, 86, 89, 93, 94, 96, 98, 99, 101, 105, 109, 114, 119, 123, 130, 135, 136, 139, 145, 149, 150, 160, 180, 190, 191, 194, 195, 196, 197, 199, 211, 214, 220, 222, 224, 235, 242, 245, 259], "discard": [1, 88, 136, 149], "platform_requir": 1, "15665": 1, "gcc": [1, 24, 39, 40, 45, 73, 77, 81, 83, 84, 86, 87, 89, 90, 93, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 119, 124, 134, 139, 143, 150, 152, 163, 171, 186, 201, 208, 244], "conda": 1, "15664": 1, "handl": [1, 6, 9, 59, 76, 117, 119, 135, 152, 194, 203, 235, 249, 251, 266], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 59, 60, 61, 66, 73, 77, 85, 87, 88, 92, 93, 95, 96, 99, 101, 102, 109, 111, 117, 119, 128, 129, 139, 150, 151, 153, 155, 162, 164, 169, 179, 198, 230, 236, 239, 241, 243, 246, 247, 248, 252, 255, 256, 259, 263, 265, 267, 269, 271, 274], "backup": [1, 7, 88, 117, 149, 177], "15601": 1, "relativ": 1, "15592": 1, "none": [1, 31, 36, 38, 49, 50, 81, 88, 94, 99, 100, 101, 119, 130, 132, 142, 144, 149, 150, 161, 165, 167, 169, 170, 173, 174, 177, 182, 183, 186, 188, 189, 190, 191, 194, 195, 199, 201, 203, 204, 206, 208, 209, 210, 213, 219, 220, 222, 223, 230, 234], "preprocessor_definit": 1, "map": [1, 82, 130, 135, 178, 183, 188, 191, 208, 220, 223, 226, 234, 258, 266], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 50, 59, 71, 73, 77, 83, 85, 88, 90, 93, 95, 99, 101, 102, 103, 104, 107, 109, 110, 111, 115, 117, 119, 122, 123, 128, 130, 134, 136, 137, 138, 140, 142, 144, 149, 150, 152, 154, 156, 161, 166, 174, 178, 190, 191, 194, 199, 203, 222, 234, 246, 247, 253, 255, 260, 261, 263, 264, 265, 270, 271, 272, 273], "15545": 1, "text": [1, 102, 117, 118, 119, 138, 149, 150, 158, 178, 199, 273], "15538": 1, "rais": [1, 6, 21, 36, 59, 86, 88, 89, 92, 93, 96, 98, 99, 100, 101, 105, 114, 117, 119, 121, 130, 139, 140, 142, 143, 144, 149, 152, 161, 163, 174, 186, 190, 199, 200, 201, 222, 230, 234, 242, 250, 252, 269], "help": [1, 8, 31, 36, 45, 48, 50, 61, 64, 65, 69, 70, 71, 73, 76, 77, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 158, 185, 194, 208, 216, 225, 247, 248, 259, 267, 268], "reachabl": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 66, 78, 81, 83, 86, 87, 88, 89, 90, 93, 96, 98, 99, 100, 101, 102, 104, 105, 106, 111, 114, 117, 119, 121, 122, 123, 124, 125, 130, 132, 133, 134, 135, 136, 137, 138, 139, 147, 149, 150, 152, 153, 155, 157, 159, 160, 161, 163, 169, 177, 178, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 196, 199, 201, 206, 220, 222, 223, 224, 225, 234, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 50, 54, 59, 60, 61, 73, 75, 76, 77, 78, 80, 81, 83, 85, 86, 88, 89, 91, 92, 93, 94, 96, 98, 99, 102, 105, 107, 108, 109, 113, 117, 120, 123, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 146, 147, 148, 150, 151, 152, 153, 154, 155, 160, 161, 163, 172, 173, 174, 190, 191, 194, 199, 201, 203, 208, 211, 220, 224, 230, 231, 239, 240, 243, 245, 246, 248, 251, 252, 253, 254, 255, 257, 259, 260, 264, 265, 269, 272], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 52, 61, 66, 76, 81, 83, 89, 90, 96, 98, 102, 105, 106, 117, 119, 121, 122, 123, 124, 134, 135, 136, 137, 138, 139, 140, 149, 150, 152, 169, 178, 184, 189, 190, 191, 192, 199, 208, 216, 224, 226, 230, 232, 234, 238, 241, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 258, 259, 260, 264, 265, 266, 267, 269, 270, 271, 272, 273], "offlin": [1, 73], "15516": 1, "miss": [1, 5, 26, 35, 36, 42, 45, 54, 56, 81, 82, 83, 84, 86, 87, 89, 94, 95, 96, 98, 99, 101, 105, 114, 119, 140, 150, 161, 234, 243, 244, 245, 247, 248, 250, 251, 252, 254, 257, 258, 260, 261, 269, 271, 274], "stacktrac": 1, "metadata": [1, 2, 7, 60, 68, 87, 115, 118, 134, 167, 177, 253, 271], "15501": 1, "lockfil": [1, 8, 85, 86, 89, 92, 93, 96, 98, 99, 100, 103, 104, 105, 106, 107, 109, 114, 169, 178, 235, 242, 268], "intend": [1, 2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 62, 73, 77, 83, 87, 88, 101, 102, 119, 123, 127, 128, 129, 130, 141, 150, 161, 178, 188, 190, 191, 195, 213, 219, 230, 234, 245, 248, 251, 259, 270], "public": [1, 3, 4, 42, 50, 54, 59, 73, 77, 85, 100, 109, 117, 118, 155, 158, 179, 190, 192, 214, 220, 240, 260, 261], "usag": [1, 6, 27, 31, 35, 37, 39, 40, 41, 50, 66, 73, 77, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 122, 132, 135, 136, 148, 149, 150, 152, 154, 160, 192, 199, 201, 203, 206, 210, 217, 226, 246, 259, 264], "15499": 1, "check_typ": 1, "int": [1, 29, 42, 45, 54, 56, 186, 203, 243, 245, 257, 262], "bool": [1, 151, 186, 213, 219, 220, 222], "15378": 1, "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 50, 56, 64, 81, 83, 85, 86, 87, 88, 89, 90, 94, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 114, 115, 119, 121, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 137, 138, 139, 142, 143, 149, 150, 152, 159, 177, 178, 180, 184, 185, 190, 191, 196, 197, 199, 207, 208, 209, 210, 211, 214, 215, 216, 224, 225, 226, 227, 232, 233, 254, 258, 264, 272, 273], "entri": [1, 60, 66, 86, 88, 89, 93, 96, 98, 99, 101, 105, 114, 119, 130, 148, 153, 182, 189, 190, 191, 201, 203, 216, 272], "machin": [1, 6, 29, 61, 83, 93, 109, 117, 119, 127, 152, 154, 186, 190, 206, 211, 219, 220, 224, 234, 236, 241, 244, 245, 262, 271], "mesontoolchain": [1, 56, 70, 88, 149, 179, 218, 219], "due": [1, 84, 119, 266], "pkgconfig": [1, 88, 149, 179, 205, 220], "being": [1, 6, 8, 10, 13, 31, 50, 73, 77, 81, 82, 83, 84, 86, 89, 96, 98, 99, 101, 104, 105, 114, 119, 123, 128, 129, 130, 132, 135, 136, 137, 138, 139, 152, 154, 156, 161, 162, 169, 178, 182, 188, 189, 199, 213, 214, 219, 245, 253, 258, 262, 269, 273, 274], "deprec": [1, 73, 88, 94, 96, 144, 149, 152, 178, 202, 208, 220], "sinc": [1, 47, 48, 66, 78, 99, 191, 206, 234, 241, 264, 265, 266, 271], "meson": [1, 11, 43, 60, 62, 73, 77, 79, 88, 108, 149, 150, 179, 243, 251, 253], "15369": 1, "explain": [1, 5, 58, 59, 66, 73, 76, 81, 84, 95, 139, 149, 150, 152, 185, 192, 202, 234, 236, 242, 244, 245, 247, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 266, 268, 270, 273], "show": [1, 21, 31, 39, 40, 42, 47, 48, 85, 86, 87, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, 116, 123, 149, 150, 217, 230, 242, 245, 249, 253, 255, 261, 263, 264, 265, 266], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 50, 61, 62, 67, 68, 73, 76, 77, 78, 81, 82, 83, 84, 85, 86, 88, 89, 92, 93, 96, 98, 99, 100, 101, 102, 105, 106, 108, 114, 119, 120, 121, 122, 123, 125, 126, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 147, 148, 149, 150, 152, 153, 154, 156, 157, 158, 159, 161, 174, 178, 184, 190, 191, 192, 194, 199, 201, 206, 207, 208, 210, 211, 215, 216, 217, 220, 226, 230, 234, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 50, 52, 54, 56, 58, 59, 61, 64, 66, 67, 68, 73, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 91, 92, 93, 94, 96, 98, 99, 100, 103, 104, 105, 106, 107, 108, 109, 117, 118, 120, 123, 124, 130, 131, 132, 134, 135, 142, 143, 149, 150, 151, 152, 153, 155, 158, 159, 160, 161, 169, 184, 186, 188, 190, 191, 196, 197, 199, 207, 209, 210, 211, 214, 216, 220, 225, 226, 227, 232, 234, 239, 241, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 256, 257, 261, 262, 264, 265, 266, 268, 269, 270, 271, 272, 274], "15355": 1, "did": [1, 47, 87, 178, 244, 245, 248, 250, 253, 255, 266, 273], "match": [1, 4, 10, 17, 26, 31, 35, 45, 54, 61, 81, 83, 85, 86, 87, 88, 89, 90, 95, 96, 98, 99, 101, 102, 105, 110, 111, 114, 115, 117, 119, 123, 134, 135, 139, 144, 148, 149, 150, 152, 153, 163, 174, 186, 190, 199, 200, 201, 203, 223, 226, 243, 245, 246, 247, 248, 252, 253, 259, 266, 270], "15353": 1, "upload_polici": [1, 94], "skip": [1, 4, 36, 88, 89, 90, 93, 94, 99, 119, 121, 144, 167, 177, 182, 190, 191, 230, 236, 244, 251, 252, 257, 262], "15336": 1, "accept": [1, 5, 7, 92, 100, 101, 102, 105, 110, 112, 119, 144, 147, 150, 152, 183, 188, 191, 199, 203, 211, 216, 219, 223, 234], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 50, 52, 54, 58, 59, 66, 73, 76, 77, 78, 81, 82, 83, 85, 86, 87, 88, 89, 90, 96, 97, 98, 99, 100, 101, 102, 105, 108, 110, 111, 114, 115, 118, 119, 122, 123, 124, 126, 127, 128, 130, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 144, 145, 149, 150, 152, 154, 157, 158, 160, 161, 162, 169, 170, 174, 178, 179, 184, 185, 186, 188, 189, 190, 191, 192, 196, 197, 199, 201, 206, 207, 208, 210, 211, 214, 215, 220, 224, 232, 234, 242, 244, 245, 246, 248, 249, 251, 253, 254, 255, 256, 258, 259, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "15312": 1, "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 52, 58, 59, 68, 76, 81, 83, 84, 94, 98, 99, 100, 101, 102, 109, 119, 122, 126, 134, 135, 143, 150, 152, 156, 163, 183, 184, 185, 188, 189, 190, 191, 194, 196, 197, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 227, 232, 243, 244, 245, 246, 247, 251, 252, 253, 255, 257, 258, 259, 262, 264, 266, 271], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 50, 52, 58, 60, 62, 68, 73, 76, 78, 82, 84, 88, 94, 98, 99, 101, 102, 105, 108, 109, 119, 122, 132, 134, 135, 139, 149, 150, 152, 156, 160, 163, 178, 183, 184, 185, 188, 189, 190, 191, 196, 197, 201, 207, 208, 216, 220, 223, 224, 225, 230, 235, 242, 243, 244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272], "system": [1, 5, 7, 8, 27, 35, 39, 40, 42, 45, 50, 52, 54, 56, 58, 59, 60, 62, 64, 66, 67, 71, 76, 79, 83, 88, 101, 109, 116, 117, 119, 120, 121, 123, 130, 133, 135, 136, 139, 144, 146, 147, 149, 150, 153, 155, 159, 160, 161, 173, 179, 180, 182, 183, 184, 185, 188, 190, 191, 192, 194, 195, 199, 207, 208, 210, 224, 243, 244, 245, 247, 248, 249, 252, 253, 254, 258, 260, 261, 264, 265, 270, 271], "14780": 1, "bugfix": [1, 8, 73], "msbuilddep": [1, 58, 71, 88, 130, 149, 179, 221], "compon": [1, 14, 15, 20, 130, 132, 181, 188, 190, 192, 209, 210, 211, 214, 224, 249], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 50, 52, 54, 56, 58, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 77, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 92, 93, 94, 95, 96, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 114, 120, 123, 126, 128, 131, 134, 135, 136, 139, 140, 142, 145, 149, 150, 157, 159, 160, 161, 169, 170, 173, 178, 182, 184, 185, 189, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 209, 211, 214, 215, 216, 219, 220, 221, 226, 232, 234, 235, 239, 242, 243, 244, 246, 247, 248, 249, 251, 252, 253, 258, 259, 261, 262, 265, 266, 267, 268, 270, 271, 272, 273, 274], "15626": 1, "tool_requir": [1, 11, 27, 35, 37, 39, 40, 77, 82, 83, 89, 93, 96, 98, 99, 101, 105, 108, 109, 120, 130, 134, 135, 136, 139, 178, 190, 191, 196, 207, 211, 214, 224, 244, 245, 246, 247, 248, 259, 262, 272], "themselv": [1, 8, 108, 178, 252], "15575": 1, "scope": [1, 119, 132, 144, 145, 149, 150, 191, 194, 195, 196, 197, 216, 222, 227], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 52, 58, 59, 76, 77, 83, 84, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 100, 101, 102, 105, 106, 109, 111, 114, 115, 119, 122, 125, 126, 129, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 148, 149, 150, 152, 153, 161, 162, 163, 171, 178, 182, 183, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 199, 206, 207, 208, 209, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 227, 232, 239, 243, 244, 245, 246, 247, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269], "microsoft": [1, 11, 43, 71, 79, 88, 119, 130, 135, 149, 150, 152, 179, 188, 191, 206, 216, 223, 224, 225, 226, 227], "15568": 1, "wrong": [1, 95, 98, 133, 139], "propag": [1, 8, 14, 20, 50, 78, 119, 123, 135, 136, 145, 194, 211, 249, 257, 269], "visibl": [1, 39, 40, 78, 82, 88, 94, 117, 123, 149, 191, 214], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 52, 58, 59, 76, 83, 84, 88, 94, 96, 98, 99, 100, 102, 109, 111, 117, 119, 123, 125, 126, 130, 131, 133, 135, 136, 144, 149, 150, 151, 156, 160, 169, 170, 174, 177, 182, 184, 186, 188, 190, 191, 196, 197, 199, 201, 203, 208, 210, 219, 220, 222, 224, 230, 231, 234, 247, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 269, 272], "header": [1, 6, 17, 35, 39, 40, 42, 50, 77, 78, 82, 83, 84, 94, 119, 123, 132, 133, 134, 135, 141, 142, 153, 182, 190, 192, 201, 224, 249, 253, 254, 256, 258, 259, 260, 264, 266, 274], "15564": 1, "store": [1, 4, 6, 13, 59, 66, 68, 73, 81, 87, 88, 101, 108, 109, 117, 119, 135, 148, 149, 159, 161, 191, 199, 203, 206, 230, 235, 236, 241, 243, 245, 249, 252, 253, 254, 258, 264, 266, 270, 273, 274], "temporari": [1, 6, 7, 24, 77, 87, 119, 133, 136, 199, 201, 252, 260, 265, 269], "insid": [1, 6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 43, 46, 77, 82, 84, 88, 102, 108, 119, 123, 132, 135, 147, 149, 152, 158, 159, 161, 182, 191, 195, 199, 204, 217, 234, 240, 247, 249, 252, 253, 260, 264, 266, 270, 274], "storage_path": [1, 88], "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 50, 52, 54, 56, 58, 59, 61, 73, 76, 80, 81, 82, 83, 87, 90, 91, 93, 100, 101, 104, 106, 107, 108, 111, 115, 117, 119, 121, 125, 126, 128, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 144, 145, 148, 149, 150, 152, 153, 157, 158, 160, 161, 178, 183, 184, 185, 189, 190, 191, 192, 195, 196, 197, 199, 206, 208, 210, 211, 214, 224, 227, 230, 234, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 266, 267, 269, 270, 271, 272, 273, 274], "clean": [1, 6, 7, 30, 32, 59, 61, 86, 89, 93, 96, 98, 99, 101, 105, 106, 114, 119, 199, 213, 258, 264, 270, 271], "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 62, 66, 67, 69, 72, 73, 76, 81, 82, 83, 85, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 117, 119, 121, 122, 123, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 147, 149, 150, 152, 153, 154, 155, 159, 161, 162, 178, 180, 182, 184, 185, 188, 189, 190, 191, 194, 195, 196, 197, 199, 206, 207, 208, 209, 211, 214, 215, 216, 220, 224, 225, 226, 227, 232, 234, 236, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 269, 270, 271, 272, 273, 274], "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 76, 82, 83, 98, 101, 119, 133, 135, 152, 155, 182, 190, 192, 206, 210, 216, 220, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 270], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 52, 54, 56, 58, 59, 61, 66, 72, 73, 76, 77, 78, 82, 83, 84, 87, 88, 90, 93, 106, 108, 109, 110, 117, 119, 121, 123, 125, 126, 130, 131, 134, 135, 140, 145, 150, 152, 157, 158, 159, 161, 173, 174, 177, 178, 183, 184, 185, 189, 190, 191, 195, 199, 201, 206, 208, 217, 220, 223, 224, 225, 234, 235, 236, 237, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 268, 270, 272, 273], "correctli": [1, 17, 18, 24, 29, 42, 50, 66, 77, 89, 106, 141, 190, 191, 192, 199, 206, 245, 249, 253, 257, 258, 262], "15505": 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, 50, 52, 54, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 77, 79, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 114, 115, 116, 117, 118, 119, 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, 147, 148, 149, 150, 151, 152, 154, 155, 156, 157, 158, 160, 161, 162, 163, 164, 167, 169, 174, 178, 179, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 235, 237, 239, 240, 243, 244, 245, 246, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274], "export": [1, 5, 6, 7, 10, 16, 38, 50, 59, 77, 85, 87, 89, 94, 104, 109, 120, 129, 130, 131, 132, 133, 137, 138, 139, 155, 161, 162, 164, 178, 199, 203, 230, 250, 253, 254, 255, 258, 261, 263, 264, 266, 271, 273], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 54, 56, 58, 59, 61, 62, 68, 82, 84, 87, 96, 98, 99, 119, 160, 162, 178, 184, 190, 214, 216, 239, 241, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 262, 264, 265, 266, 269, 270, 271, 272, 273, 274], "return": [1, 6, 26, 29, 31, 42, 45, 54, 56, 81, 84, 85, 87, 88, 95, 96, 97, 100, 102, 109, 116, 117, 119, 124, 130, 144, 150, 156, 157, 158, 166, 169, 171, 173, 174, 178, 180, 182, 183, 186, 190, 191, 192, 194, 195, 196, 197, 199, 207, 208, 216, 222, 223, 226, 230, 234, 243, 245, 247, 257, 259, 262, 271], "statu": [1, 38, 49, 144, 230], "after": [1, 6, 10, 24, 26, 36, 42, 45, 61, 62, 66, 73, 101, 123, 125, 130, 135, 141, 142, 149, 158, 161, 185, 188, 190, 191, 195, 196, 197, 206, 215, 220, 225, 232, 242, 243, 245, 248, 249, 251, 253, 257, 260, 262, 264, 265, 266, 274], "15504": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 52, 56, 58, 59, 61, 67, 73, 76, 81, 82, 87, 88, 99, 100, 101, 102, 104, 107, 108, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 130, 134, 135, 139, 140, 142, 144, 148, 149, 153, 154, 156, 158, 160, 184, 185, 189, 190, 191, 194, 196, 197, 201, 208, 209, 211, 213, 214, 216, 220, 223, 224, 225, 226, 230, 232, 234, 239, 243, 247, 253, 254, 255, 258, 259, 262, 267, 269, 272, 273], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 50, 52, 58, 59, 61, 73, 76, 77, 81, 82, 83, 84, 87, 88, 89, 90, 97, 98, 99, 101, 105, 111, 119, 120, 122, 123, 124, 130, 132, 134, 136, 137, 138, 139, 144, 145, 149, 150, 152, 154, 156, 157, 158, 160, 161, 162, 178, 182, 184, 185, 186, 188, 190, 192, 199, 206, 208, 211, 214, 217, 220, 224, 225, 230, 234, 241, 243, 244, 245, 246, 247, 248, 252, 253, 254, 255, 257, 258, 259, 260, 262, 265, 266, 268, 269, 270, 271, 272, 273, 274], "behavior": [1, 8, 47, 73, 77, 81, 83, 97, 104, 105, 106, 119, 122, 125, 126, 130, 134, 135, 145, 149, 154, 156, 157, 161, 186, 190, 211, 214, 220, 230, 234, 255, 274], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 50, 52, 54, 56, 57, 59, 60, 66, 68, 72, 73, 76, 77, 78, 81, 82, 83, 85, 87, 92, 93, 94, 99, 101, 102, 103, 104, 106, 107, 108, 109, 119, 120, 121, 122, 123, 128, 129, 130, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 149, 150, 151, 152, 155, 158, 159, 160, 161, 165, 169, 178, 184, 185, 188, 190, 191, 192, 193, 196, 197, 199, 201, 210, 211, 213, 214, 215, 216, 220, 225, 226, 227, 230, 232, 235, 236, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 50, 52, 58, 61, 73, 77, 85, 88, 89, 90, 93, 94, 99, 102, 106, 109, 117, 119, 120, 121, 122, 123, 130, 134, 145, 149, 155, 169, 188, 191, 203, 213, 219, 224, 230, 235, 240, 244, 249, 250, 253, 254, 255, 256, 258, 259, 261, 264, 265, 270, 274], "fail": [1, 4, 6, 21, 50, 59, 61, 76, 82, 86, 89, 96, 98, 99, 101, 105, 109, 114, 119, 121, 140, 142, 154, 156, 157, 160, 169, 174, 188, 222, 234, 252, 257, 258, 264, 269, 270], "calcul": [1, 135, 196, 197, 203, 208, 226, 252, 257], "valid": [1, 6, 8, 10, 58, 76, 77, 81, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 130, 143, 149, 152, 153, 156, 163, 169, 186, 191, 201, 208, 209, 211, 220, 222, 225, 242, 250, 253, 257, 258, 261, 262, 265, 269, 270, 272], "apple_min_version_flag": [1, 220], "15465": 1, "subset": [1, 83, 126, 134, 152, 191], "build_id": [1, 13, 94, 99, 120], "15439": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 52, 54, 56, 59, 61, 73, 76, 77, 83, 87, 88, 99, 109, 111, 117, 119, 134, 139, 140, 148, 149, 150, 153, 161, 171, 174, 177, 180, 182, 186, 188, 189, 190, 192, 195, 198, 203, 206, 211, 214, 216, 220, 222, 223, 226, 230, 232, 234, 243, 245, 246, 251, 255, 257, 258, 259, 264, 265, 266, 269, 271, 274], "conan_login_username_remot": 1, "15388": 1, "don": [1, 5, 10, 13, 24, 31, 39, 40, 45, 66, 76, 82, 98, 101, 102, 110, 118, 119, 139, 148, 150, 158, 178, 190, 192, 243, 244, 245, 246, 257, 258, 260, 264, 267], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 50, 58, 59, 61, 66, 73, 76, 77, 78, 81, 82, 83, 87, 88, 93, 96, 97, 98, 99, 101, 102, 104, 105, 106, 110, 111, 117, 118, 119, 123, 125, 126, 130, 133, 134, 135, 136, 139, 142, 143, 148, 150, 152, 156, 158, 161, 177, 178, 179, 186, 188, 189, 190, 191, 192, 195, 199, 200, 201, 208, 215, 217, 220, 224, 230, 243, 244, 245, 246, 252, 253, 254, 255, 257, 258, 259, 260, 262, 264, 265, 266, 267, 269, 270, 271, 274], "take": [1, 6, 21, 29, 30, 59, 84, 88, 89, 96, 106, 111, 115, 117, 119, 130, 137, 138, 141, 147, 148, 149, 152, 183, 184, 189, 190, 191, 194, 208, 211, 224, 231, 234, 244, 245, 247, 252, 253, 259, 261, 262, 267, 274], "consider": [1, 7, 46], "15349": 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, 50, 52, 54, 58, 59, 61, 68, 77, 82, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 96, 98, 99, 100, 102, 104, 105, 108, 109, 110, 112, 113, 117, 120, 123, 130, 131, 132, 134, 135, 137, 138, 139, 140, 142, 143, 145, 148, 149, 150, 151, 152, 154, 155, 157, 159, 160, 161, 173, 174, 178, 180, 182, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 206, 207, 208, 209, 210, 215, 216, 220, 223, 224, 225, 227, 230, 232, 234, 239, 243, 244, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 266, 269, 270, 271, 272, 273, 274], "15337": 1, "get_url_and_commit": [1, 59, 230], "15271": 1, "direct": [1, 36, 94, 101, 117, 119, 123, 130, 135, 160, 184, 190, 191, 196, 224, 269], "host": [1, 8, 13, 24, 30, 35, 42, 73, 86, 88, 89, 93, 94, 96, 98, 99, 101, 105, 109, 114, 119, 123, 130, 135, 136, 139, 149, 150, 160, 169, 173, 180, 186, 190, 191, 192, 197, 201, 208, 211, 216, 220, 222, 224, 226, 234, 235, 238, 239, 242, 245, 259], "shouldn": [1, 6, 35, 39, 40, 59, 61, 77, 78, 83, 111, 119, 123, 126, 133, 135, 179, 224, 230, 246, 257, 271], "non": [1, 50, 73, 77, 81, 87, 88, 106, 119, 133, 149, 186, 197, 242, 250, 272, 274], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 54, 56, 58, 68, 73, 78, 81, 84, 86, 88, 89, 93, 96, 98, 99, 101, 102, 105, 109, 111, 114, 115, 117, 119, 126, 134, 135, 139, 140, 146, 149, 150, 156, 182, 185, 189, 190, 191, 192, 195, 203, 208, 215, 216, 219, 224, 225, 226, 227, 238, 240, 241, 242, 243, 244, 247, 248, 249, 250, 251, 253, 255, 256, 257, 258, 261, 265, 267, 271, 272, 274], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 52, 54, 56, 58, 59, 61, 66, 73, 76, 77, 78, 81, 82, 83, 84, 88, 94, 99, 100, 101, 108, 119, 120, 122, 123, 126, 130, 131, 132, 133, 134, 136, 139, 140, 141, 142, 145, 146, 149, 150, 153, 158, 182, 184, 185, 190, 191, 192, 195, 199, 205, 210, 211, 214, 216, 224, 235, 242, 243, 244, 247, 248, 249, 250, 253, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 270, 273, 274], "artifact": [1, 6, 7, 13, 29, 68, 73, 77, 82, 87, 88, 90, 101, 111, 115, 119, 120, 122, 127, 132, 133, 134, 136, 149, 160, 162, 177, 191, 238, 239, 253, 258, 260, 264, 265, 266, 271, 274], "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, 50, 58, 59, 64, 66, 67, 68, 69, 71, 72, 73, 76, 77, 78, 81, 82, 83, 84, 85, 87, 88, 89, 90, 98, 99, 101, 102, 103, 104, 106, 107, 108, 109, 111, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 144, 145, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158, 159, 161, 163, 169, 170, 171, 174, 178, 179, 180, 182, 183, 184, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 208, 210, 211, 213, 214, 215, 216, 217, 220, 223, 224, 225, 226, 232, 234, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "imag": [1, 66, 73, 84, 100, 108, 135, 239], "time": [1, 6, 8, 10, 24, 26, 42, 54, 59, 66, 73, 77, 78, 84, 93, 102, 109, 111, 117, 119, 122, 123, 127, 128, 129, 130, 131, 132, 135, 136, 150, 155, 162, 178, 188, 190, 191, 196, 197, 201, 206, 211, 243, 246, 247, 248, 252, 255, 258, 259, 260, 263, 264, 266, 267, 268, 269, 271, 272, 274], "resourc": [1, 8, 60, 99, 135, 247, 271], "15128": 1, "save": [1, 2, 6, 31, 39, 40, 54, 59, 60, 73, 93, 103, 109, 117, 119, 122, 129, 149, 150, 159, 190, 191, 195, 198, 201, 211, 220], "subfold": [1, 7, 14, 15, 17, 19, 88, 132, 160, 161, 182, 189, 199, 203, 206, 239, 255, 258, 266], "tgz": [1, 7, 87, 139, 162, 177, 199, 201, 243, 248, 258], "doesn": [1, 6, 7, 35, 49, 50, 58, 59, 76, 77, 83, 93, 96, 99, 105, 106, 117, 119, 123, 125, 126, 130, 134, 136, 142, 143, 148, 152, 156, 161, 177, 178, 186, 189, 191, 195, 199, 200, 201, 217, 224, 230, 245, 246, 252, 253, 255, 257, 259, 262, 269, 270, 271, 274], "15409": 1, "libcxx": [1, 24, 26, 27, 31, 76, 94, 99, 109, 119, 126, 134, 146, 150, 185, 191, 208, 216, 220, 243, 244, 245, 252, 253], "cc": [1, 42, 54, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 182, 208, 214, 216, 220, 226, 244, 251, 257], "cxx": [1, 19, 21, 27, 42, 88, 149, 152, 182, 208, 216, 220, 226, 244, 251, 252, 253, 254, 257, 260, 261, 262, 265, 266], "var": [1, 39, 40, 77, 88, 110, 117, 136, 149, 150, 154, 190, 191, 194, 195, 196, 197, 207, 216, 226], "15418": 1, "winsdk_vers": [1, 88, 149, 191, 225, 227], "bug": [1, 8, 60, 73], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 66, 190, 243, 248, 251, 254, 260, 261, 262], "15373": 1, "trait": [1, 37, 39, 77, 78, 81, 119, 123, 269, 274], "15357": 1, "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 50, 54, 56, 58, 61, 62, 66, 68, 73, 76, 77, 78, 81, 82, 83, 84, 87, 88, 89, 94, 99, 101, 102, 103, 104, 111, 119, 123, 130, 132, 133, 134, 135, 136, 146, 152, 160, 177, 178, 184, 185, 189, 190, 191, 192, 199, 207, 208, 209, 210, 211, 214, 216, 220, 224, 225, 243, 244, 245, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272, 273, 274], "thru": 1, "15356": 1, "item": [1, 4, 36, 73, 83, 88, 101, 103, 107, 111, 130, 134, 149, 152, 154, 159, 191, 195, 272], "dump": [1, 158, 194], "reproduc": [1, 4, 6, 59, 73, 109, 119, 122, 178, 199, 230, 242, 246, 258, 268, 270, 271, 273, 274], "independ": [1, 21, 78, 83, 117, 128, 129, 134, 139, 160, 192, 266, 274], "were": [1, 6, 24, 29, 50, 59, 93, 126, 148, 160, 174, 214, 243, 245, 251, 254, 260, 269, 272, 274], "declar": [1, 14, 15, 21, 47, 52, 73, 81, 87, 119, 124, 125, 126, 130, 132, 134, 135, 136, 150, 152, 154, 155, 158, 159, 178, 184, 185, 186, 188, 189, 190, 191, 193, 195, 211, 214, 220, 224, 226, 242, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 266, 269, 274], "revert": [1, 73, 154], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 50, 54, 58, 66, 73, 76, 80, 82, 83, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 104, 105, 108, 109, 111, 112, 114, 115, 117, 119, 127, 131, 132, 134, 135, 139, 140, 145, 148, 149, 150, 151, 152, 154, 156, 163, 169, 173, 174, 177, 178, 180, 182, 184, 185, 186, 188, 189, 190, 191, 194, 195, 199, 201, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 223, 224, 225, 226, 230, 234, 239, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 255, 257, 259, 260, 261, 264, 266, 267, 269, 270, 271, 272, 274], "source_buildenv": 1, "15319": 1, "15284": 1, "ctest": [1, 188, 251], "launch": [1, 21, 117, 144, 148, 183, 216, 239, 240, 249, 251], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 50, 61, 66, 71, 77, 85, 91, 93, 96, 98, 99, 101, 104, 105, 109, 121, 130, 136, 150, 152, 159, 183, 188, 199, 203, 213, 220, 225, 243, 246, 247, 258, 259, 264, 265, 269, 273], "instead": [1, 4, 5, 8, 19, 35, 59, 61, 66, 71, 73, 77, 83, 87, 88, 91, 96, 98, 99, 101, 105, 108, 111, 117, 119, 130, 134, 135, 144, 149, 152, 174, 178, 183, 188, 190, 191, 195, 224, 230, 245, 246, 247, 248, 250, 251, 253, 254, 255, 261, 264, 265, 266, 269, 270, 272, 273], "target": [1, 8, 17, 18, 19, 21, 27, 42, 50, 54, 59, 66, 73, 77, 88, 101, 108, 119, 121, 134, 152, 160, 180, 183, 186, 188, 206, 213, 214, 215, 216, 219, 220, 223, 230, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 260, 261, 262, 265, 266, 271, 274], "run_test": [1, 121, 188], "15282": 1, "track": [1, 6, 68, 73, 123, 246, 271], "syntax": [1, 31, 71, 72, 76, 101, 108, 119, 123, 130, 136, 148, 156, 166, 178, 185, 190, 191, 195, 209, 211, 225, 243, 246, 253, 269, 273], "host_vers": [1, 42], "15274": 1, "given": [1, 6, 8, 31, 36, 42, 81, 82, 83, 86, 87, 88, 89, 91, 96, 98, 99, 101, 104, 105, 106, 107, 114, 125, 134, 135, 142, 144, 150, 153, 154, 156, 169, 173, 174, 191, 192, 195, 199, 201, 203, 208, 214, 220, 222, 230, 246, 267, 270, 271, 273, 274], "15272": 1, "pkglist": [1, 6, 13, 90, 92, 111, 115, 267], "15266": 1, "conan_log_level": [1, 154], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 59, 61, 77, 81, 104, 105, 107, 129, 135, 136, 139, 144, 148, 150, 190, 192, 194, 199, 216, 220, 230, 253, 262, 264, 268, 274], "global": [1, 3, 4, 7, 10, 42, 61, 76, 79, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 124, 130, 134, 146, 150, 154, 155, 161, 166, 178, 191, 192, 210, 211, 214, 224, 251, 257, 274], "level": [1, 13, 16, 18, 21, 27, 29, 66, 73, 76, 83, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 119, 120, 124, 129, 134, 140, 144, 149, 152, 153, 154, 178, 183, 190, 201, 211, 214, 266, 274], "15263": 1, "xxx": [1, 6, 13, 43, 46, 90, 135, 137, 138, 149, 150, 188, 190, 191, 194, 220], "request": [1, 31, 60, 73, 76, 88, 98, 101, 110, 111, 117, 119, 124, 148, 149, 154, 161, 237], "15257": 1, "oper": [1, 6, 8, 49, 61, 62, 67, 68, 73, 83, 87, 101, 109, 111, 118, 121, 127, 146, 150, 153, 161, 174, 179, 185, 191, 194, 198, 230, 234, 236, 243, 244, 245, 252, 253, 255, 258, 263, 267, 270, 272, 274], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 60, 66, 73, 77, 79, 81, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 96, 98, 99, 100, 103, 104, 105, 108, 109, 113, 114, 119, 121, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 149, 150, 152, 153, 156, 157, 159, 160, 161, 162, 166, 169, 170, 178, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 232, 234, 235, 242, 243, 244, 246, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 50, 59, 67, 72, 101, 119, 130, 135, 145, 160, 179, 187, 188, 191, 243, 244, 246, 247, 248, 250, 251, 253, 254, 257, 262, 265, 274], "conandep": [1, 58, 184, 209, 224, 232], "aggreg": [1, 24, 54, 106, 109, 135, 173, 179, 184, 185, 195, 207, 224, 243, 248, 265], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 50, 52, 54, 59, 60, 61, 64, 65, 66, 67, 68, 70, 72, 76, 77, 78, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 93, 96, 98, 99, 100, 101, 102, 104, 105, 106, 109, 110, 111, 112, 114, 115, 117, 119, 122, 126, 127, 128, 129, 130, 132, 134, 135, 137, 138, 139, 145, 147, 148, 149, 150, 152, 154, 157, 158, 159, 160, 161, 166, 169, 173, 174, 177, 178, 179, 182, 183, 184, 185, 190, 191, 192, 195, 196, 197, 199, 201, 203, 207, 208, 209, 210, 211, 213, 214, 215, 216, 220, 224, 225, 227, 232, 234, 235, 238, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 259, 261, 262, 264, 265, 266, 267, 269, 271, 274], "style": [1, 86, 89, 96, 98, 99, 101, 105, 110, 114, 182, 199], "15207": 1, "15192": 1, "warn": [1, 24, 54, 59, 66, 76, 82, 88, 109, 111, 119, 137, 138, 144, 150, 161, 199, 220, 230, 252, 274], "about": [1, 4, 6, 18, 19, 21, 24, 31, 37, 42, 45, 47, 52, 54, 56, 58, 59, 66, 67, 68, 72, 73, 77, 78, 79, 81, 83, 85, 86, 89, 91, 93, 95, 99, 101, 105, 108, 109, 113, 114, 116, 119, 120, 121, 123, 125, 126, 130, 131, 132, 134, 135, 139, 140, 142, 145, 146, 150, 152, 154, 158, 163, 191, 205, 211, 217, 220, 232, 237, 239, 242, 243, 245, 249, 251, 252, 254, 255, 257, 261, 262, 264, 265, 268, 271, 272, 274], "potenti": [1, 5, 40, 61, 90, 122, 136, 137, 138, 177, 191, 195, 271], "migrat": [1, 73, 119, 222, 247], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 50, 59, 61, 76, 77, 83, 93, 96, 101, 104, 106, 111, 117, 119, 121, 123, 127, 128, 130, 134, 135, 136, 137, 138, 139, 149, 150, 152, 153, 156, 157, 160, 162, 178, 189, 191, 192, 195, 206, 214, 230, 243, 244, 245, 246, 251, 254, 257, 259, 260, 269, 270, 271, 272, 273], "print": [1, 4, 26, 39, 40, 45, 49, 54, 75, 82, 99, 102, 108, 111, 119, 144, 154, 158, 162, 163, 210, 220, 250, 259, 261], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 50, 66, 73, 77, 83, 84, 87, 88, 101, 119, 130, 133, 134, 148, 149, 150, 153, 160, 162, 184, 185, 191, 195, 213, 214, 224, 225, 243, 247, 248, 258, 259, 263, 264, 267, 270, 271, 273, 274], "15174": 1, "deploi": [1, 30, 33, 54, 59, 86, 99, 101, 120, 134, 160, 170, 243, 248, 259, 265], "deploy": [1, 6, 11, 30, 35, 77, 79, 86, 87, 88, 90, 99, 127, 139, 149, 155, 195, 220], "15172": 1, "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 59, 87, 117, 118, 119, 123, 126, 130, 139, 152, 160, 178, 199, 201, 207, 210, 222, 224, 261], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 54, 56, 59, 60, 61, 77, 87, 88, 108, 117, 118, 129, 132, 150, 155, 161, 162, 178, 179, 199, 203, 211, 214, 220, 225, 243, 245, 246, 247, 253, 255, 262, 263, 265, 266, 271], "settings_us": [1, 11, 23, 76, 83, 146], "configapi": [1, 164, 166], "15151": 1, "builtin": [1, 11, 30, 73, 88, 149, 152], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 58, 60, 61, 63, 66, 67, 68, 71, 72, 73, 76, 83, 108, 115, 121, 130, 135, 141, 152, 159, 162, 180, 237, 252, 253, 262, 270], "15150": 1, "warnings_as_error": [1, 88, 144, 149], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 52, 110, 149, 153, 174, 201, 259, 272, 274], "ftp_download": [1, 198], "commun": [1, 3, 8, 76, 88, 117, 135, 149, 152, 227, 238, 240], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "redefin": [1, 101, 150], "replac": [1, 19, 35, 49, 52, 76, 88, 119, 150, 154, 166, 178, 191, 195, 199, 260], "zlibng": [1, 150], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 56, 73, 76, 82, 84, 87, 88, 90, 94, 96, 98, 99, 101, 102, 105, 111, 112, 115, 119, 130, 135, 136, 145, 149, 150, 151, 159, 184, 190, 196, 197, 209, 211, 214, 224, 227, 232, 242, 243, 244, 245, 246, 247, 248, 253], "conflict": [1, 39, 40, 61, 77, 101, 118, 119, 123, 136, 150, 169, 190, 194, 211, 220, 235, 257, 268], "altern": [1, 59, 73, 89, 93, 95, 98, 119, 137, 138, 150, 178, 195, 230, 258], "wrap": [1, 121, 144, 150, 195, 216, 220, 227, 274], "anoth": [1, 7, 13, 35, 41, 52, 82, 119, 122, 123, 130, 140, 150, 152, 158, 190, 194, 206, 214, 234, 236, 241, 243, 244, 251, 252, 254, 258, 260, 261, 264, 271], "15136": 1, "stderr": [1, 73, 144, 188, 274], "captur": [1, 6, 11, 43, 89, 105, 139, 196, 197, 199, 230, 234, 244, 246, 247, 248, 251, 255, 270], "15121": 1, "platform": [1, 8, 17, 39, 40, 56, 60, 61, 62, 70, 71, 76, 77, 83, 87, 98, 109, 125, 128, 129, 130, 133, 135, 139, 148, 149, 150, 152, 182, 191, 220, 222, 223, 224, 225, 234, 242, 243, 244, 247, 251, 262, 264, 271], "14871": 1, "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 50, 89, 94, 99, 132, 184, 190, 191, 192, 197, 199, 208, 209, 210, 211, 214, 253, 254, 255, 257, 258, 259, 266], "13994": 1, "15297": 1, "separ": [1, 21, 59, 85, 89, 111, 117, 119, 122, 132, 149, 150, 154, 189, 190, 194, 195, 220, 240, 248, 254, 266, 272], "15296": 1, "rang": [1, 8, 9, 73, 77, 81, 83, 86, 88, 89, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 114, 119, 134, 136, 145, 149, 150, 152, 178, 235, 242, 253, 268, 270, 273], "escap": [1, 110, 154], "report": [1, 6, 13, 60, 61, 73, 88, 98, 101, 117, 140, 149, 152, 170, 234], "involv": [1, 264, 265], "15222": 1, "hard": [1, 152], "set_nam": [1, 100, 120, 130], "set_vers": [1, 100, 119, 120, 130, 178, 230, 273], "mutat": 1, "15211": 1, "stdout": [1, 73, 100, 102, 108, 116, 119, 144, 188, 274], "15170": 1, "cmake_policy_default_cmp0091": 1, "unus": [1, 86, 89, 93, 96, 98, 99, 101, 105, 106, 114, 235, 270], "15127": 1, "system_tool": [1, 248], "favor": [1, 119], "align": [1, 7, 152], "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, 50, 52, 54, 56, 58, 59, 61, 66, 68, 73, 76, 77, 78, 81, 82, 83, 84, 85, 86, 87, 89, 96, 98, 99, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 114, 117, 119, 123, 126, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 144, 145, 148, 149, 150, 152, 153, 154, 158, 159, 161, 169, 178, 182, 184, 185, 190, 191, 199, 201, 206, 208, 211, 214, 216, 217, 220, 224, 225, 234, 236, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "least": [1, 3, 86, 89, 96, 98, 99, 101, 103, 104, 105, 114, 119, 136, 230, 246, 250, 257, 261, 267], "is_dirti": [1, 230], "sure": [1, 8, 24, 29, 38, 42, 50, 61, 102, 130, 133, 140, 144, 162, 178, 199, 220, 273], "process": [1, 5, 7, 26, 54, 59, 61, 66, 73, 77, 83, 94, 104, 106, 108, 117, 119, 120, 121, 126, 135, 150, 154, 158, 160, 161, 177, 191, 196, 220, 241, 245, 246, 249, 253, 258, 260, 270, 273, 274], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 58, 59, 61, 67, 69, 70, 71, 72, 73, 76, 77, 81, 83, 87, 88, 93, 101, 104, 108, 110, 117, 119, 120, 127, 128, 129, 130, 132, 134, 136, 137, 138, 139, 142, 143, 147, 149, 150, 156, 163, 177, 178, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 227, 228, 230, 234, 241, 243, 244, 245, 247, 248, 250, 251, 253, 259, 264, 266, 270], "whole": [1, 6, 10, 17, 73, 81, 83, 87, 101, 119, 142, 177, 178, 190, 191, 195, 210], "repo": [1, 4, 5, 6, 16, 59, 61, 68, 73, 108, 109, 119, 161, 230, 266, 273], "similarli": [1, 150, 197, 239, 272], "15289": 1, "clear": [1, 110, 119, 134, 135, 142, 194, 247, 252, 257, 270], "15285": 1, "restor": [1, 2, 60, 195, 196, 197, 245, 246, 248], "portabl": [1, 73, 119], "across": [1, 8, 56, 149, 155, 156, 243], "window": [1, 8, 13, 17, 26, 27, 29, 35, 39, 40, 42, 48, 56, 58, 61, 62, 73, 77, 83, 84, 87, 88, 90, 102, 105, 106, 111, 115, 119, 122, 125, 130, 133, 135, 139, 142, 149, 150, 152, 156, 163, 171, 195, 197, 199, 207, 208, 216, 220, 234, 239, 240, 243, 245, 247, 248, 251, 252, 253, 254, 255, 258, 259, 264, 266, 271, 274], "oss": [1, 106, 135, 152, 271], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 50, 56, 59, 61, 66, 73, 76, 77, 81, 82, 83, 86, 87, 88, 89, 91, 92, 93, 95, 96, 98, 99, 100, 101, 104, 105, 107, 111, 114, 115, 119, 121, 122, 126, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 144, 148, 149, 150, 152, 153, 154, 158, 160, 174, 178, 186, 190, 191, 194, 199, 206, 220, 230, 234, 241, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 264, 266, 267, 269, 270, 271, 273, 274], "absolut": [1, 35, 36, 49, 88, 108, 130, 147, 149, 150, 160, 172, 190, 191, 199, 201, 203, 204, 260], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 52, 67, 73, 83, 84, 88, 122, 125, 134, 146, 149, 150, 182, 183, 185, 186, 191, 208, 216, 220, 223, 234, 243, 244, 245, 247, 258, 262, 270], "ignor": [1, 6, 29, 54, 77, 127, 137, 138, 154, 188, 203, 204, 230, 234, 270], "toolchain": [1, 26, 27, 45, 46, 58, 64, 65, 67, 71, 72, 83, 88, 121, 130, 132, 149, 150, 152, 185, 188, 206, 208, 215, 220, 225, 243, 244, 245, 247, 248, 249, 252, 253, 259, 261, 265], "15215": 1, "html": [1, 45, 61, 76, 99, 158, 274], "mislead": 1, "node": [1, 13, 94, 96, 140, 169], "15196": 1, "15185": 1, "nmakedep": [1, 179, 192, 221], "quot": [1, 102, 110], "15140": 1, "lru": [1, 102, 111, 267], "data": [1, 6, 8, 83, 117, 119, 122, 129, 130, 131, 132, 135, 146, 186, 190, 199, 211, 218, 240, 255, 274], "15135": 1, "package_metadata_fold": [1, 6], "15126": 1, "pyinstal": [1, 61], "broken": [1, 5, 68, 73, 96, 132, 139, 204, 260, 271], "python": [1, 8, 31, 52, 59, 61, 64, 71, 73, 77, 79, 81, 86, 88, 103, 104, 107, 116, 117, 131, 144, 149, 150, 155, 157, 158, 159, 161, 163, 169, 188, 191, 195, 206, 208, 211, 213, 220, 223, 226, 247], "useless": [1, 131, 190], "distutil": 1, "15116": 1, "download_cach": [1, 4, 88], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 50, 54, 56, 61, 64, 65, 66, 68, 69, 70, 71, 77, 78, 81, 83, 85, 88, 101, 103, 108, 109, 110, 115, 119, 120, 125, 126, 134, 135, 139, 140, 149, 150, 151, 152, 160, 174, 178, 180, 184, 191, 192, 194, 195, 199, 207, 216, 220, 222, 230, 233, 238, 242, 243, 244, 247, 249, 253, 259, 267, 268, 270, 271, 272, 273], "autotool": [1, 11, 43, 60, 62, 73, 88, 108, 130, 149, 179, 182, 192, 194, 195, 205, 207, 208, 243, 251, 253], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 50, 54, 56, 58, 66, 71, 73, 76, 77, 78, 81, 82, 83, 84, 86, 87, 88, 89, 90, 94, 95, 96, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 111, 114, 115, 117, 119, 121, 122, 123, 126, 130, 132, 133, 134, 135, 136, 139, 142, 145, 149, 150, 153, 155, 156, 157, 158, 160, 163, 174, 178, 182, 184, 186, 188, 189, 190, 191, 192, 194, 196, 197, 199, 201, 206, 207, 208, 210, 214, 216, 219, 223, 224, 225, 226, 232, 234, 243, 244, 245, 246, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 269, 270, 271, 272, 273, 274], "simultan": [1, 190, 264, 269], "databas": [1, 88, 149, 234], "connect": [1, 54, 76, 88, 99, 110, 117, 149, 174, 239], "15029": 1, "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 50, 54, 56, 58, 59, 61, 64, 65, 66, 69, 75, 76, 77, 82, 83, 85, 86, 87, 88, 89, 92, 96, 98, 99, 100, 101, 102, 104, 105, 108, 111, 114, 116, 117, 119, 121, 123, 126, 128, 129, 132, 133, 135, 136, 139, 143, 144, 147, 148, 149, 150, 152, 153, 155, 157, 160, 161, 162, 166, 177, 178, 182, 183, 188, 190, 191, 194, 199, 201, 206, 208, 210, 213, 214, 215, 216, 217, 219, 220, 223, 224, 226, 234, 243, 245, 246, 247, 249, 252, 253, 254, 258, 264, 265, 267, 269, 272, 274], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 59, 64, 65, 68, 69, 70, 72, 73, 76, 77, 78, 81, 82, 83, 87, 89, 90, 93, 95, 99, 100, 101, 103, 104, 106, 117, 119, 121, 123, 124, 126, 130, 132, 135, 136, 139, 140, 145, 148, 149, 150, 152, 153, 154, 158, 160, 161, 169, 174, 178, 180, 182, 185, 188, 191, 199, 204, 213, 217, 220, 225, 230, 234, 241, 245, 246, 249, 252, 253, 254, 255, 257, 258, 259, 266, 267, 269, 270, 271, 272, 274], "15013": 1, "better": [1, 5, 6, 24, 27, 31, 36, 59, 67, 85, 101, 106, 119, 121, 134, 137, 138, 153, 195, 240, 258, 259, 269, 270, 274], "ux": [1, 112, 146], "15011": 1, "15007": 1, "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 88, 89, 108, 119, 134, 137, 138, 144, 149, 188, 203, 208, 213, 215, 220, 225, 226, 230, 250, 257, 261], "14966": 1, "load": [1, 16, 41, 45, 54, 59, 65, 101, 119, 128, 129, 131, 137, 138, 149, 150, 161, 172, 173, 178, 191, 198, 201, 206, 214, 216, 232, 245, 247, 273], "ci": [1, 2, 4, 5, 6, 7, 8, 59, 68, 77, 96, 98, 109, 119, 121, 149, 152, 153, 154, 270, 274], "workflow": [1, 59, 161, 265], "move": [1, 7, 35, 73, 77, 139, 178, 199, 253, 255, 260, 265, 266, 269, 270, 271, 273], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 59, 73, 76, 79, 80, 81, 95, 96, 99, 101, 102, 103, 105, 109, 119, 120, 126, 130, 134, 136, 139, 142, 150, 152, 163, 169, 173, 178, 196, 197, 207, 208, 241, 243, 245, 246, 248, 252, 253, 262, 271], "intersect": [1, 10], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 71, 72, 73, 77, 86, 89, 90, 96, 98, 99, 101, 105, 114, 117, 119, 130, 132, 134, 150, 153, 160, 178, 184, 188, 190, 191, 192, 196, 206, 208, 217, 220, 224, 234, 235, 236, 239, 242, 249, 264, 266, 270, 272, 274], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 56, 61, 62, 76, 84, 94, 99, 102, 109, 150, 152, 182, 205, 216, 220, 234, 243, 245, 247, 248, 251, 253, 254, 258, 264, 266], "14858": 1, "pkgconfigdep": [1, 45, 56, 64, 70, 135, 179, 205, 220, 251], "listen": [1, 117, 210, 213, 240], "system_package_vers": [1, 190, 211], "properti": [1, 21, 42, 50, 58, 70, 71, 94, 99, 119, 130, 132, 136, 166, 182, 191, 207, 216, 220, 224, 225, 233, 249, 260, 261, 265], "14808": 1, "shorthand": 1, "14727": 1, "control": [1, 4, 5, 49, 59, 73, 76, 81, 89, 119, 132, 138, 152, 154, 184, 191, 224, 258, 270, 272, 274], "14054": 1, "overwrit": [1, 7, 24, 81, 86, 89, 93, 96, 98, 99, 101, 105, 108, 109, 114, 119, 139, 178, 194, 211], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 54, 58, 79, 118, 120, 130, 133, 135, 139, 179, 188, 189, 191, 203, 208, 214, 220, 228, 235, 242, 244, 253, 255, 257, 258, 259, 262, 263, 264, 265], "nor": [1, 36, 73, 127, 131, 139, 140, 177, 234], "15058": 1, "astra": 1, "elbru": [1, 152], "altlinux": 1, "distribut": [1, 7, 35, 45, 59, 61, 73, 109, 139, 152, 163, 234, 240], "apt": [1, 61, 88, 120, 140, 149, 233], "systempackagemanag": 1, "15051": 1, "linux": [1, 8, 26, 27, 35, 44, 48, 56, 61, 62, 73, 83, 84, 88, 90, 98, 102, 105, 106, 140, 142, 149, 150, 152, 186, 201, 216, 234, 243, 244, 245, 247, 248, 251, 254, 258, 264, 266, 271], "mint": [1, 61], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 52, 59, 61, 63, 64, 66, 67, 68, 69, 71, 72, 73, 76, 77, 81, 88, 89, 93, 98, 99, 100, 101, 104, 109, 110, 115, 117, 119, 121, 132, 134, 135, 139, 140, 142, 143, 149, 150, 152, 154, 155, 156, 158, 161, 163, 169, 170, 174, 177, 185, 186, 190, 195, 199, 200, 201, 206, 214, 216, 217, 220, 222, 230, 234, 238, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 267, 270, 271, 274], "server": [1, 4, 5, 6, 7, 8, 13, 29, 54, 59, 60, 68, 73, 77, 79, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 101, 105, 108, 109, 110, 111, 114, 115, 119, 128, 129, 134, 148, 149, 153, 154, 162, 169, 174, 177, 201, 206, 235, 238, 239, 241, 243, 246, 255, 257, 267, 271, 274], "even": [1, 4, 6, 35, 36, 47, 50, 52, 61, 62, 73, 76, 77, 82, 84, 90, 101, 106, 110, 115, 119, 121, 123, 126, 130, 136, 137, 138, 139, 140, 149, 150, 151, 152, 157, 160, 161, 174, 178, 199, 217, 224, 230, 241, 244, 246, 251, 252, 253, 257, 268, 269, 270, 271, 272, 273], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 88, 101, 139, 153, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271], "15023": 1, "appl": [1, 24, 42, 72, 73, 76, 79, 84, 88, 94, 99, 102, 109, 149, 150, 152, 179, 183, 184, 185, 189, 191, 206, 208, 218, 243, 245, 253], "15015": 1, "extraflag": 1, "prioriti": [1, 101, 107, 119, 126, 135, 136, 137, 138, 148, 149, 150, 154, 173, 194, 230, 269], "15005": 1, "color": [1, 31, 119, 250, 251, 254, 261, 262], "15002": 1, "sqlite3": [1, 130], "unsupport": [1, 255], "less": [1, 6, 35, 58, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 149, 273], "than": [1, 8, 50, 58, 59, 66, 73, 76, 81, 83, 88, 89, 90, 97, 101, 104, 111, 115, 119, 122, 124, 125, 131, 134, 135, 137, 138, 143, 144, 149, 152, 153, 160, 178, 185, 186, 190, 191, 208, 211, 225, 226, 234, 243, 246, 252, 256, 262, 271, 272, 274], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 58, 59, 73, 77, 78, 83, 101, 107, 108, 119, 122, 123, 128, 130, 134, 136, 137, 138, 139, 145, 150, 152, 153, 161, 179, 186, 188, 189, 191, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 219, 220, 222, 223, 224, 225, 226, 227, 228, 234, 243, 245, 246, 247, 257, 258, 267, 269, 271, 272, 274], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 59, 66, 77, 81, 82, 101, 119, 122, 123, 149, 150, 178, 191, 208, 214, 220, 254, 264, 265, 274], "forc": [1, 6, 31, 36, 41, 77, 86, 88, 89, 94, 96, 98, 99, 101, 105, 107, 108, 109, 110, 114, 115, 117, 119, 123, 148, 149, 150, 152, 154, 174, 177, 191, 208, 216, 243, 246, 264, 269, 270, 271], "rebuild": [1, 5, 82, 119, 258, 264, 274], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 61, 73, 77, 78, 80, 81, 83, 88, 101, 107, 119, 120, 126, 135, 136, 144, 149, 150, 152, 160, 203, 211, 217, 242, 245, 261, 263, 264, 265, 267, 272, 273, 274], "previou": [1, 2, 6, 7, 13, 58, 73, 81, 98, 101, 102, 104, 106, 152, 158, 174, 184, 189, 190, 191, 194, 220, 225, 234, 241, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 272, 273], "still": [1, 5, 29, 39, 40, 50, 59, 61, 104, 111, 119, 122, 123, 126, 134, 135, 152, 169, 177, 230, 257, 264, 271, 272, 274], "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, 50, 52, 53, 55, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 76, 81, 83, 88, 89, 108, 117, 119, 120, 132, 135, 149, 160, 178, 183, 184, 185, 189, 206, 209, 213, 214, 215, 216, 217, 220, 224, 225, 228, 235, 236, 238, 239, 241, 242, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 269, 270, 272, 274], "14938": 1, "affect": [1, 5, 6, 10, 61, 81, 83, 84, 96, 101, 119, 125, 126, 134, 136, 150, 152, 178, 185, 188, 190, 191, 199, 211, 213, 214, 215, 219, 220, 223, 224, 225, 226, 227, 233, 244, 247, 249, 251, 252, 254, 257, 264, 266], "14932": 1, "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 50, 54, 56, 58, 59, 60, 62, 73, 76, 77, 81, 82, 83, 84, 85, 86, 89, 90, 93, 94, 96, 98, 99, 102, 103, 104, 105, 108, 109, 114, 117, 119, 120, 121, 127, 130, 132, 133, 136, 137, 138, 139, 140, 142, 143, 145, 149, 150, 152, 155, 157, 159, 160, 161, 162, 163, 164, 169, 182, 183, 184, 185, 188, 189, 191, 196, 197, 206, 207, 208, 210, 213, 214, 215, 216, 219, 220, 224, 225, 227, 232, 234, 240, 241, 243, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 257, 258, 259, 261, 264, 266, 269, 270, 272, 273, 274], "fill_cpp_info": [1, 210], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 50, 54, 56, 58, 59, 73, 78, 81, 83, 99, 105, 119, 130, 135, 150, 152, 154, 178, 189, 217, 238, 239, 240, 243, 250, 251, 265, 271, 272, 273, 274], "noisi": 1, "quiet": [1, 88, 144, 149, 183, 188, 219, 223], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 27, 29, 35, 36, 39, 40, 49, 50, 52, 59, 61, 66, 72, 73, 76, 77, 81, 83, 88, 89, 93, 96, 99, 101, 102, 104, 106, 108, 111, 115, 119, 120, 121, 123, 128, 129, 130, 131, 133, 134, 135, 139, 140, 142, 143, 145, 148, 149, 150, 152, 153, 170, 177, 180, 190, 191, 192, 196, 197, 199, 220, 226, 230, 232, 243, 245, 247, 248, 252, 253, 254, 255, 257, 258, 262, 265, 267, 269, 270, 271, 272, 273, 274], "buildinfo": 1, "14886": 1, "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 50, 52, 61, 62, 68, 73, 77, 83, 87, 89, 90, 98, 101, 105, 108, 111, 115, 117, 119, 123, 130, 134, 135, 136, 139, 141, 142, 143, 144, 148, 149, 150, 152, 153, 154, 156, 159, 161, 163, 170, 173, 178, 182, 184, 190, 194, 195, 196, 208, 210, 220, 224, 230, 234, 238, 239, 245, 246, 247, 251, 252, 253, 255, 258, 259, 262, 265, 267, 270, 271, 274], "14852": 1, "min": [1, 99, 185, 220], "xro": [1, 152], "simul": [1, 50], "14776": 1, "unnecessari": [1, 59, 122], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 59, 81, 83, 85, 87, 93, 99, 101, 104, 106, 108, 119, 121, 122, 123, 124, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 142, 148, 149, 150, 152, 157, 159, 160, 173, 178, 190, 191, 192, 195, 199, 208, 217, 219, 224, 241, 244, 245, 247, 251, 253, 255, 257, 258, 260, 261, 266, 269, 270, 271, 272, 273], "transit": [1, 13, 36, 50, 77, 89, 90, 101, 123, 130, 136, 150, 178, 184, 190, 196, 207, 224, 242, 264], "15082": 1, "15042": 1, "download_sourc": [1, 36, 88, 139, 149], "15004": 1, "incorrectli": 1, "xcconfig": [1, 72, 184, 185], "14898": 1, "export_sourc": [1, 7, 16, 18, 59, 87, 119, 120, 128, 130, 132, 203], "been": [1, 4, 6, 8, 13, 26, 50, 61, 62, 68, 73, 77, 78, 81, 87, 89, 93, 97, 101, 102, 111, 126, 130, 135, 136, 139, 141, 142, 143, 150, 152, 170, 178, 184, 190, 196, 245, 246, 252, 253, 254, 264, 265, 267, 271, 274], "14850": 1, "properli": [1, 100, 149, 253, 262], "candid": 1, "14846": 1, "end": [1, 4, 73, 76, 77, 123, 136, 149, 150, 160, 161, 191, 195, 219, 245, 254, 262, 271, 272], "activ": [1, 8, 29, 35, 41, 49, 59, 61, 66, 73, 83, 88, 119, 130, 135, 144, 149, 152, 154, 155, 184, 188, 190, 191, 194, 196, 197, 211, 214, 224, 226, 227, 244, 245, 248, 259], "pre": [1, 9, 45, 54, 59, 61, 73, 76, 85, 88, 93, 109, 119, 139, 148, 149, 155, 161, 195, 217, 247, 249, 256, 265, 266, 272], "resolut": [1, 78, 128, 155], "full": [1, 5, 6, 24, 36, 39, 40, 52, 64, 68, 69, 71, 72, 73, 82, 83, 87, 89, 93, 96, 101, 102, 104, 108, 119, 124, 130, 134, 140, 145, 152, 156, 160, 162, 164, 169, 178, 190, 191, 194, 210, 216, 230, 252, 260, 264, 273], "14814": 1, "lower": [1, 217, 246, 258, 272], "bound": [1, 272], "upper": [1, 272], "newer": [1, 8, 73, 86, 89, 96, 98, 99, 101, 103, 104, 105, 107, 114, 119, 152, 169, 259, 272, 273], "clang": [1, 24, 26, 27, 42, 45, 73, 76, 83, 84, 88, 94, 99, 102, 109, 111, 116, 143, 149, 150, 152, 163, 182, 189, 191, 203, 220, 243, 245, 253], "introduc": [1, 29, 52, 78, 80, 117, 139, 242, 252, 257, 265, 266, 268, 269, 270, 271, 272, 273, 274], "14837": 1, "14781": 1, "dry": [1, 111, 115], "14760": 1, "host_tool": 1, "package_manag": [1, 88, 119, 135, 140, 149, 179, 233], "indic": [1, 4, 26, 66, 76, 88, 89, 93, 136, 149, 151, 188, 194, 199, 213, 214, 227, 245, 247, 259, 269], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 54, 56, 61, 73, 76, 82, 98, 99, 101, 105, 110, 119, 128, 129, 131, 139, 142, 150, 152, 154, 163, 169, 178, 182, 189, 191, 216, 234, 241, 243, 245, 248, 251, 252, 254, 258, 261, 262, 265, 269, 270, 273], "14819": 1, "set_properti": [1, 17, 21, 41, 50, 135, 211, 214, 254], "14813": 1, "minor": [1, 73, 81, 82, 119, 150, 152, 178, 269, 272, 274], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 83, 134, 182, 259], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 43, 45, 48, 52, 54, 56, 57, 59, 61, 66, 80, 82, 88, 89, 101, 103, 104, 106, 107, 119, 122, 133, 134, 137, 138, 149, 150, 153, 154, 156, 161, 162, 163, 173, 184, 185, 191, 196, 197, 201, 203, 208, 216, 219, 225, 230, 234, 235, 236, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273], "found": [1, 4, 21, 26, 27, 39, 40, 49, 50, 54, 61, 86, 89, 92, 93, 96, 98, 99, 100, 101, 105, 109, 114, 132, 135, 140, 141, 147, 150, 153, 156, 160, 174, 188, 190, 191, 199, 206, 217, 220, 243, 245, 248, 257, 266, 270], "14800": 1, "reus": [1, 29, 41, 73, 119, 120, 130, 131, 133, 135, 139, 155, 236, 243, 253, 254, 262, 267], "session": [1, 61], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 54, 60, 66, 81, 88, 117, 123, 147, 149, 160, 235, 236, 241, 245, 251, 254, 257], "14795": 1, "rel": [1, 5, 18, 35, 36, 66, 84, 96, 108, 117, 119, 120, 121, 132, 135, 137, 138, 147, 150, 160, 161, 182, 190, 191, 194, 199, 203, 204, 260, 265, 266, 269, 271], "partial": [1, 82, 86, 89, 92, 93, 96, 98, 99, 100, 101, 104, 105, 106, 107, 114, 150, 270, 274], "directori": [1, 26, 27, 35, 36, 38, 47, 61, 101, 108, 117, 119, 128, 129, 130, 132, 135, 137, 138, 139, 147, 149, 150, 151, 158, 190, 199, 203, 204, 214, 217, 230, 245, 251, 257, 258, 263, 264, 265], "14782": 1, "14743": 1, "arg": [1, 31, 88, 96, 121, 154, 158, 206, 213, 216, 227, 230, 234, 273], "cmd": [1, 26, 119, 135, 141, 150, 157, 195, 206, 223, 230, 240, 262], "14737": 1, "block": [1, 52, 274], "interfac": [1, 6, 59, 66, 73, 82, 117, 155, 156, 192], "select": [1, 21, 26, 66, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 109, 110, 111, 112, 114, 115, 116, 119, 180, 189, 191, 199, 216, 223, 239, 249, 260, 267], "kei": [1, 59, 88, 108, 117, 119, 130, 135, 149, 153, 158, 191, 203, 208, 220, 225, 226, 230, 239, 255, 263, 264], "14731": 1, "larg": [1, 6, 10, 117, 119, 134, 150, 195, 263, 273], "14716": 1, "14692": 1, "cl": [1, 73, 226], "14682": 1, "transform": [1, 154, 199, 220], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 50, 52, 54, 58, 66, 73, 78, 82, 88, 135, 141, 149, 150, 152, 189, 191, 208, 217, 220, 226, 239, 250, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 264, 265, 271], "ld": [1, 54, 99, 208, 220, 244], "blank": [1, 117, 194, 220], "string": [1, 6, 26, 42, 45, 52, 56, 83, 88, 102, 108, 117, 119, 134, 137, 138, 144, 149, 150, 151, 177, 188, 189, 191, 194, 195, 199, 203, 208, 211, 215, 220, 243, 244, 251, 253, 273, 274], "14676": 1, "nobara": 1, "distro": [1, 61, 149, 152, 234], "dnf": [1, 88, 149, 233], "14668": 1, "b_vscrt": [1, 220], "14664": 1, "regex": [1, 83, 119, 134, 190], "14621": 1, "makedep": [1, 69, 179, 205], "tweak": [1, 191], "14605": 1, "jinja": [1, 49, 148, 149, 150, 153, 195], "templat": [1, 26, 47, 49, 73, 84, 85, 99, 109, 119, 146, 150, 153, 172, 189, 191, 195], "14578": 1, "14532": 1, "14740": 1, "conanapi": [1, 31, 158, 164, 165], "init": [1, 59, 120, 130, 178, 273], "failur": [1, 73, 88, 149, 201], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 54, 73, 77, 88, 90, 93, 96, 101, 106, 108, 109, 110, 115, 119, 125, 126, 131, 149, 150, 167, 169, 174, 177, 180, 184, 190, 191, 199, 208, 211, 234, 235, 236, 241, 245, 247, 248, 250, 251, 252, 253, 256, 259, 260, 262, 266, 269, 271, 273, 274], "duplic": [1, 39, 40, 54, 110, 135], "alias": [1, 119, 178, 190, 211], "14644": 1, "regress": [1, 73], "win_bash": [1, 88, 94, 149], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 52, 58, 59, 73, 76, 77, 78, 81, 82, 83, 84, 88, 94, 98, 99, 100, 102, 105, 108, 109, 111, 119, 123, 126, 130, 133, 135, 136, 137, 145, 150, 152, 155, 159, 178, 184, 185, 188, 189, 190, 191, 195, 205, 208, 211, 215, 220, 224, 234, 235, 236, 241, 242, 243, 244, 251, 252, 253, 254, 255, 261, 267, 269, 274], "test_requir": [1, 77, 120, 130, 136, 244, 247, 251, 257, 259, 272], "diamond": [1, 119, 269], "14721": 1, "crash": [1, 6, 77, 269], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 96, 97, 109, 117, 119, 126, 127, 139, 150, 152, 157, 162, 186, 190, 191, 195, 199, 201, 220, 222, 223, 230, 241, 245, 262, 269], "chain": [1, 5, 144, 274], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 50, 56, 59, 61, 65, 73, 77, 81, 87, 88, 89, 93, 96, 97, 100, 101, 102, 104, 105, 110, 111, 117, 119, 121, 126, 128, 129, 130, 132, 133, 134, 135, 136, 139, 140, 142, 149, 152, 154, 155, 158, 159, 160, 177, 178, 182, 184, 185, 190, 191, 192, 196, 197, 199, 208, 209, 211, 220, 224, 226, 230, 234, 237, 243, 244, 245, 246, 247, 248, 249, 252, 253, 254, 257, 259, 260, 264, 265, 267, 268, 269, 270, 271, 274], "14673": 1, "cpu": [1, 8, 88, 149, 152, 186, 215, 223], "nativ": [1, 26, 27, 50, 56, 71, 77, 88, 149, 178, 186, 214, 219, 220, 227], "arm64": [1, 26, 42, 152, 180, 183, 223], "14667": 1, "ones": [1, 6, 10, 30, 31, 42, 43, 46, 65, 73, 77, 81, 85, 87, 88, 96, 98, 111, 119, 124, 136, 140, 149, 150, 152, 160, 161, 166, 174, 180, 190, 191, 194, 195, 199, 204, 211, 216, 222, 223, 224, 241, 246, 260, 265, 266, 270, 271, 272, 273], "14643": 1, "unnecessarili": [1, 83], "decor": [1, 155], "sequenc": [1, 45, 95, 117], "14642": 1, "14622": 1, "patch_us": [1, 203], "conandata": [1, 4, 52, 59, 66, 77, 119, 128, 129, 130, 131, 139, 162, 199, 203, 230, 249], "patch": [1, 6, 19, 43, 51, 73, 77, 81, 82, 87, 119, 121, 129, 139, 150, 152, 178, 179, 182, 198, 206, 249, 255, 272, 274], "apply_conandata_patch": [1, 129, 139, 198], "14576": 1, "xcode": [1, 60, 62, 86, 88, 89, 93, 96, 98, 99, 101, 105, 109, 114, 149, 183, 184, 185, 188, 189, 216, 220], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 62, 68, 73, 76, 88, 94, 99, 100, 119, 151, 152, 158, 182, 183, 220, 237, 238, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "tvo": [1, 152, 182], "watcho": [1, 152, 182, 220], "14538": 1, "incorrect": [1, 73], "conancent": [1, 2, 13, 29, 50, 59, 60, 73, 76, 82, 84, 94, 98, 99, 102, 112, 119, 135, 149, 151, 237, 243, 246, 248], "web": [1, 4, 6, 61, 119, 152, 238, 239], "url": [1, 3, 4, 59, 87, 88, 94, 99, 100, 108, 110, 117, 130, 139, 149, 151, 153, 161, 174, 199, 201, 230, 239, 240, 250, 251, 253, 254, 255, 258, 261], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 58, 59, 73, 77, 83, 108, 117, 119, 135, 145, 150, 161, 178, 184, 194, 195, 224, 246, 264, 270], "14529": 1, "rrev": [1, 31, 94, 102], "rrev_timestamp": [1, 94], "prev_timestamp": [1, 94], "14526": 1, "resolv": [1, 8, 10, 86, 87, 88, 89, 91, 92, 93, 96, 98, 99, 100, 101, 104, 105, 107, 114, 117, 123, 149, 150, 173, 195, 199, 246, 268, 270, 271, 272], "14510": 1, "verifi": [1, 5, 50, 52, 77, 87, 88, 143, 149, 151, 155, 162, 201, 255, 258, 262, 274], "14508": 1, "visiono": [1, 152, 182], "14504": 1, "unknown": [1, 81, 94, 99, 144], "14493": 1, "skip_binari": [1, 36, 88, 149], "14466": 1, "symlink": [1, 88, 149, 160, 179, 198, 199, 249], "14461": 1, "14413": 1, "cli_arg": [1, 188], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 76, 79, 110, 117, 146, 153, 230, 239], "14392": 1, "apk": [1, 88, 149, 233], "alpin": [1, 234], "14382": 1, "msvc": [1, 50, 58, 84, 88, 102, 119, 135, 149, 150, 163, 208, 222, 225, 247], "invok": [1, 42, 45, 88, 101, 149, 150, 160, 170, 182, 224, 233, 244, 245, 248, 250, 251, 255, 260, 262, 265], "within": [1, 88, 117, 119, 127, 150, 182, 192, 199, 247, 272], "prompt": [1, 31, 154, 191, 223, 226, 227], "where": [1, 4, 8, 19, 21, 31, 42, 45, 52, 56, 61, 73, 83, 87, 88, 100, 101, 117, 119, 121, 130, 132, 135, 147, 149, 150, 151, 152, 158, 178, 183, 190, 191, 192, 194, 195, 199, 201, 206, 208, 213, 214, 216, 217, 219, 220, 223, 230, 239, 243, 244, 245, 247, 252, 253, 254, 255, 266, 271], "point": [1, 4, 8, 29, 35, 39, 40, 59, 60, 66, 73, 83, 88, 99, 101, 106, 108, 119, 130, 150, 160, 161, 169, 182, 191, 199, 204, 206, 230, 244, 246, 258, 260, 266, 269, 274], "14364": 1, "14358": 1, "14347": 1, "default_build_opt": 1, "14340": 1, "channel": [1, 5, 60, 73, 76, 86, 89, 91, 92, 93, 94, 96, 98, 99, 102, 105, 113, 117, 130, 150, 246], "14338": 1, "makefil": [1, 45, 60, 62, 73, 188, 189, 206, 208, 209, 226, 247], "14133": 1, "14594": 1, "v2": [1, 152, 161, 186, 240], "readi": [1, 30, 54, 56, 76, 150, 208, 217, 243, 253], "center": [1, 5, 8, 59, 66, 73, 76, 94, 99, 100, 151, 152, 155, 235, 236, 243, 248], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 54, 58, 60, 77, 82, 83, 99, 119, 123, 132, 135, 136, 141, 156, 184, 190, 191, 192, 199, 211, 220, 225, 226, 239, 242, 244, 251, 252, 253, 254, 257, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "14593": 1, "inspect": [1, 6, 7, 36, 66, 85, 87, 109, 169, 226], "14572": 1, "hyphen": [1, 211, 214], "14561": 1, "user_toolchain": [1, 49, 88, 149, 191], "14556": 1, "boolean": [1, 88, 119, 130, 149, 174, 190, 191, 213, 215, 220, 274], "14530": 1, "14511": 1, "14491": 1, "14444": 1, "conf_info": [1, 94, 130, 132, 149, 191, 254, 261], "14442": 1, "msbuildtoolchain": [1, 58, 71, 88, 119, 135, 149, 179, 221], "resourcecompil": [1, 225], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 61, 73, 76, 77, 81, 82, 83, 89, 90, 96, 97, 101, 102, 103, 104, 106, 107, 108, 109, 115, 119, 121, 130, 132, 134, 139, 140, 144, 149, 150, 152, 156, 158, 169, 173, 178, 191, 192, 208, 220, 230, 245, 247, 248, 252, 254, 255, 260, 265, 271, 274], "14376": 1, "processor": [1, 152, 186, 220], "armv8": [1, 26, 27, 42, 45, 83, 99, 109, 119, 135, 150, 152, 180, 186, 220, 234, 247, 258, 262], "aarch64": [1, 99, 152, 234], "14362": 1, "mandat": [1, 194], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 50, 54, 59, 66, 73, 80, 101, 102, 106, 119, 121, 122, 123, 126, 127, 128, 129, 131, 132, 133, 134, 135, 139, 150, 152, 173, 190, 192, 199, 208, 211, 219, 236, 243, 248, 250, 253, 259, 262, 263, 265, 268, 269, 272, 274], "14342": 1, "default_opt": [1, 42, 52, 59, 83, 94, 100, 126, 131, 184, 188, 191, 220, 224, 251, 252, 253, 255, 261, 269], "xcrun": [1, 179, 181], "14326": 1, "abspath": 1, "14183": 1, "14555": 1, "except": [1, 26, 31, 39, 40, 49, 81, 83, 88, 117, 119, 123, 124, 126, 132, 139, 144, 145, 149, 150, 152, 154, 174, 178, 186, 188, 199, 230, 234, 243, 247, 252, 269], "vtrace": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "14522": 1, "confirm": [1, 31, 111, 115], "interact": [1, 88, 110, 148, 149, 154], "14512": 1, "filter": [1, 6, 88, 99, 111, 119, 130, 142, 158, 177, 199, 270], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 50, 61, 71, 73, 76, 77, 82, 83, 88, 90, 101, 106, 107, 108, 111, 117, 119, 121, 122, 123, 134, 136, 139, 145, 152, 154, 157, 161, 163, 178, 184, 190, 201, 206, 224, 231, 234, 239, 241, 243, 244, 245, 248, 251, 252, 255, 259, 260, 261, 262, 264, 270, 273, 274], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 52, 59, 66, 77, 83, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 121, 122, 128, 129, 133, 136, 139, 143, 161, 170, 178, 199, 201, 237, 239, 257, 264, 265, 271], "14478": 1, "14443": 1, "14441": 1, "14410": 1, "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 50, 52, 58, 64, 77, 88, 119, 121, 122, 130, 133, 135, 136, 138, 149, 157, 161, 163, 190, 191, 194, 195, 196, 197, 206, 207, 208, 215, 216, 220, 225, 226, 227, 239, 244, 245, 253, 261, 262, 270], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "outsid": [1, 8, 59, 73, 81, 117, 119, 134, 147, 204], "scm_folder": [1, 119], "14330": 1, "trace": [1, 144, 258], "14322": 1, "flush": 1, "stream": [1, 73, 188], "write": [1, 4, 27, 45, 54, 73, 77, 78, 101, 108, 117, 122, 132, 155, 162, 178, 190, 191, 199, 208, 247, 253, 255, 261, 265], "14310": 1, "sign": [1, 79, 117, 155], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 59, 87, 191, 258, 264, 265, 266], "inherit": [1, 48, 77, 131, 178, 191, 247], "typo": 1, "14325": 1, "conanpreset": [1, 48, 191], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50, 54, 56, 58, 59, 64, 65, 69, 73, 81, 82, 83, 84, 86, 88, 89, 91, 92, 93, 95, 96, 98, 99, 100, 101, 103, 104, 105, 106, 108, 112, 113, 114, 117, 119, 120, 122, 126, 130, 131, 132, 135, 136, 147, 149, 152, 154, 155, 160, 162, 163, 166, 174, 178, 182, 184, 190, 191, 192, 196, 197, 203, 207, 208, 209, 211, 214, 215, 216, 220, 224, 225, 230, 232, 243, 244, 246, 250, 253, 257, 258, 259, 261, 262, 264, 265, 266, 270, 272, 273, 274], "14296": 1, "prefix": [1, 99, 111, 119, 150, 158, 191, 208, 209, 210, 211, 214, 215, 220, 252, 260], "param": [1, 31, 158, 170, 177, 188, 194, 219], "unix": [1, 150, 188, 189, 199, 247], "14295": 1, "invalid": [1, 6, 99, 117, 120, 142, 143, 186, 190, 269], "loglevel": 1, "14289": 1, "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 52, 54, 56, 58, 59, 66, 82, 83, 84, 87, 96, 99, 101, 102, 106, 123, 134, 149, 150, 157, 158, 163, 184, 190, 214, 224, 239, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273], "pkg_config_custom_cont": [1, 211], "pc": [1, 45, 56, 209, 210, 211], "14233": 1, "dict": [1, 88, 119, 130, 135, 149, 158, 171, 191, 208, 211, 220, 225, 226], "object": [1, 6, 19, 21, 27, 42, 45, 94, 99, 117, 119, 130, 131, 132, 133, 134, 135, 144, 156, 157, 158, 160, 161, 169, 174, 177, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 200, 201, 204, 206, 207, 208, 209, 210, 211, 213, 214, 215, 219, 222, 223, 224, 225, 226, 227, 228, 234, 244, 245, 251, 252, 253, 254, 257, 262, 265, 266], "fix_apple_shared_install_nam": [1, 179, 181, 206], "otool": [1, 182, 206], "install_name_tool": [1, 182, 206], "program": [1, 29, 45, 54, 56, 88, 131, 149, 206, 227, 243, 245], "14195": 1, "fpic": [1, 42, 52, 59, 76, 83, 84, 94, 99, 100, 102, 119, 125, 126, 188, 191, 208, 215, 220, 251, 252, 253, 255, 261], "header_onli": [1, 83, 119, 126, 134, 257], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 50, 58, 62, 66, 67, 72, 76, 81, 82, 83, 84, 88, 94, 99, 119, 121, 122, 134, 135, 140, 149, 150, 152, 178, 182, 184, 190, 191, 224, 225, 242, 247, 249, 257, 258, 259, 264, 274], "type": [1, 6, 37, 67, 73, 82, 88, 92, 97, 109, 119, 134, 135, 146, 160, 178, 188, 190, 191, 196, 197, 211, 218, 235, 238, 239, 245, 246, 247, 248, 249, 251, 252, 274], "cmake_package_version_compat": 1, "anynewervers": [1, 190], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 73, 76, 160, 246, 274], "won": [1, 4, 29, 39, 40, 50, 73, 104, 111, 117, 119, 150, 152, 158, 190, 199, 220, 244, 252, 260, 264], "14261": 1, "permit": [1, 272], "empti": [1, 4, 6, 88, 89, 110, 111, 119, 135, 149, 150, 158, 169, 177, 208, 211, 214, 224, 257, 258, 269, 270, 273], "14254": 1, "rm_safe": [1, 42, 83, 119, 125, 126, 134, 252], "never": [1, 73, 77, 81, 82, 86, 89, 93, 96, 98, 99, 101, 102, 105, 114, 119, 145, 170, 234, 246, 252, 258], "14238": 1, "gnu": [1, 45, 64, 69, 79, 83, 88, 99, 149, 152, 179, 186, 194, 195, 201, 206, 207, 208, 209, 210, 211, 215, 244], "make_program": [1, 88, 149], "14223": 1, "package_typ": [1, 38, 42, 94, 99, 100, 131, 134, 142, 159, 178, 259, 274], "lib": [1, 17, 21, 26, 35, 42, 50, 58, 87, 94, 98, 99, 117, 119, 123, 130, 132, 133, 135, 152, 182, 190, 191, 192, 199, 207, 208, 209, 210, 211, 214, 226, 232, 244, 252, 253, 254, 255, 257, 258, 260, 266, 274], "14215": 1, "clarif": [1, 73], "shown": [1, 4, 36, 99, 100, 124, 220], "queri": [1, 87, 88, 90, 99, 102, 111, 112, 115, 171], "14199": 1, "enabl": [1, 8, 10, 66, 76, 88, 119, 149, 151, 174, 186, 191, 199, 208, 234, 257, 272], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 50, 52, 56, 59, 61, 66, 73, 76, 77, 82, 87, 88, 108, 119, 120, 130, 135, 139, 140, 142, 149, 152, 153, 155, 178, 183, 189, 190, 191, 192, 201, 211, 216, 224, 230, 234, 243, 245, 246, 247, 249, 250, 252, 253, 255, 257, 261, 262, 264, 265, 266, 267, 268, 270, 271, 273], "function": [1, 6, 8, 21, 26, 38, 41, 42, 58, 59, 62, 65, 73, 77, 82, 89, 108, 117, 119, 123, 129, 133, 137, 138, 141, 144, 145, 149, 150, 153, 155, 156, 158, 160, 161, 162, 163, 178, 180, 186, 189, 190, 195, 199, 203, 206, 214, 220, 247, 251, 253, 254, 255, 257, 260, 269, 270, 274], "14177": 1, "xcodedep": [1, 72, 179, 181, 185], "14168": 1, "respect": [1, 31, 36, 76, 106, 119, 150, 154, 155, 191, 194, 220, 244, 269, 271], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 50, 58, 66, 91, 101, 108, 109, 117, 119, 130, 132, 133, 135, 137, 138, 149, 150, 151, 152, 154, 155, 156, 157, 160, 162, 163, 173, 182, 183, 184, 188, 190, 191, 199, 206, 208, 217, 226, 243, 244, 245, 248, 253, 254, 255, 258, 259, 260, 266, 271], "14164": 1, "runner": [1, 26], "13985": 1, "leak": [1, 59, 153], "cmake_find_library_suffix": 1, "14253": 1, "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 66, 68, 73, 76, 77, 78, 79, 80, 85, 88, 101, 109, 111, 118, 119, 120, 121, 122, 123, 125, 126, 127, 128, 129, 130, 134, 146, 149, 150, 154, 155, 156, 157, 161, 163, 165, 178, 179, 181, 187, 189, 194, 203, 205, 212, 218, 221, 249, 252, 254, 260, 261, 266], "14227": 1, "14190": 1, "osx": [1, 35, 61, 73, 130, 135, 191, 245], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 152], "cmake_generator_platform": [1, 152, 191], "14114": 1, "cppinfo": [1, 21, 79, 119, 130, 135, 179, 190, 254], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 58, 75, 82, 83, 86, 87, 88, 89, 93, 96, 98, 99, 101, 102, 103, 105, 106, 108, 109, 111, 114, 119, 122, 130, 131, 132, 133, 135, 137, 138, 144, 149, 150, 152, 154, 160, 178, 182, 184, 185, 186, 190, 194, 214, 230, 238, 241, 243, 245, 247, 248, 254, 258, 259, 260, 262, 264, 266, 269, 270, 273, 274], "summari": [1, 4, 8, 81, 216, 254], "delet": [1, 31, 42, 61, 77, 111, 117, 119, 126, 252], "thing": [1, 13, 18, 21, 29, 50, 66, 67, 73, 76, 77, 101, 106, 119, 134, 170, 178, 179, 191, 195, 206, 243, 245, 247, 249, 251, 253, 254, 259, 260, 261, 266, 274], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 67, 73, 76, 78, 119, 217, 236, 241, 242, 244, 245, 251, 253, 257, 259, 262, 263, 264, 270, 274], "14011": 1, "express": [1, 42, 49, 83, 107, 119, 132, 144, 145, 150, 191, 246, 268, 274], "14004": 1, "equival": [1, 59, 87, 88, 101, 102, 105, 112, 119, 121, 123, 128, 129, 135, 136, 145, 152, 174, 178, 188, 192, 194, 230, 244, 245, 246, 247, 253, 254, 265, 266, 270], "14002": 1, "13999": 1, "small": [1, 59, 73, 117, 128, 199, 240, 253, 258, 262, 269, 270], "13989": 1, "packageslist": [1, 167], "input": [1, 8, 58, 77, 81, 83, 88, 90, 92, 97, 99, 101, 102, 103, 104, 105, 107, 108, 111, 115, 134, 139, 148, 149, 154, 199, 220, 225, 245, 247, 257, 267, 271], "13928": 1, "associ": [1, 3, 6, 108, 110, 111, 150, 152, 191, 246, 274], "13918": 1, "13757": 1, "split": [1, 150], "two": [1, 6, 18, 45, 52, 73, 82, 83, 87, 92, 117, 119, 122, 123, 150, 159, 160, 178, 186, 191, 194, 203, 208, 224, 225, 234, 242, 243, 245, 251, 252, 257, 264, 266, 270], "13729": 1, "bindir": [1, 18, 39, 40, 94, 99, 135, 141, 189, 191, 208, 211, 217, 220, 254, 257, 259, 262], "13623": 1, "autopackag": [1, 179, 198], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 61, 73, 101, 110, 117, 119, 133, 152, 194, 272], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 61, 73, 76, 100, 116, 123, 125, 126, 127, 134, 148, 150, 152, 153, 160, 162, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 192, 209, 213, 214, 215, 216, 222], "subsystem": [1, 88, 119, 135, 149, 152, 179, 195, 221], "msys2": [1, 88, 149, 152, 234, 242], "14061": 1, "intermedi": [1, 101], "aggregated_compon": [1, 192], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 59, 61, 73, 82, 84, 86, 87, 89, 90, 96, 98, 99, 101, 102, 105, 107, 108, 109, 111, 114, 115, 119, 152, 158, 196, 197, 230, 239, 243, 246, 260, 268, 270, 271, 272, 273, 274], "14110": 1, "doubl": [1, 29, 110, 190, 239, 252], "setup": [1, 7, 41, 50, 56, 59, 219, 236], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 50, 199, 253], "14106": 1, "overlap": [1, 220], "14095": 1, "freebsd": [1, 8, 61, 73, 150, 152, 234], "14065": 1, "through": [1, 24, 93, 108, 119, 151, 161, 191, 219, 235, 241, 251, 253, 262], "root": [1, 10, 16, 18, 19, 27, 36, 38, 58, 86, 88, 91, 93, 94, 99, 101, 132, 135, 149, 150, 152, 158, 160, 169, 170, 190, 208, 214, 216, 217, 243, 244, 246, 248, 252, 253, 258], "14051": 1, "irrespect": [1, 119, 134, 137, 138, 140, 224, 230, 247, 253], "problem": [1, 4, 6, 8, 73, 123, 240, 245, 262], "parent": [1, 119, 132, 147, 199, 255], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 59, 61, 73, 76, 94, 99, 100, 110, 155, 174, 182, 237], "libdir": [1, 17, 21, 94, 99, 130, 132, 135, 189, 191, 192, 199, 208, 210, 211, 217, 220, 254, 257, 258, 259, 266], "includedir": [1, 17, 21, 94, 99, 130, 132, 135, 189, 191, 192, 208, 210, 211, 220, 224, 254, 258, 266], "cmake_program": [1, 88, 149, 188, 191], "13940": 1, "str": [1, 17, 31, 36, 119, 134, 160, 167, 171, 174, 184, 195, 199, 216, 217, 219, 220, 222, 223, 224, 227, 247, 251, 258, 266], "13964": 1, "layer": [1, 152, 158, 253, 274], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 54, 58, 59, 60, 73, 76, 77, 82, 83, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 102, 105, 109, 111, 113, 114, 117, 119, 121, 130, 132, 135, 137, 138, 139, 150, 160, 161, 169, 173, 185, 199, 201, 206, 210, 216, 217, 225, 230, 235, 236, 239, 241, 243, 244, 245, 248, 251, 252, 253, 254, 256, 257, 260, 264, 265, 266, 271, 272, 273, 274], "13944": 1, "unzip": [1, 6, 19, 27, 61, 119, 139, 198, 201, 239, 255, 265], "13937": 1, "13929": 1, "13967": 1, "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 52, 58, 88, 94, 99, 100, 132, 133, 139, 170, 191, 199, 203, 206, 219, 251, 257, 258, 260], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 54, 59, 73, 89, 99, 101, 102, 104, 106, 111, 119, 130, 134, 135, 137, 138, 139, 142, 150, 152, 160, 161, 177, 191, 234, 238, 239, 254, 258, 261, 264, 266, 274], "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, 50, 52, 54, 56, 59, 61, 68, 73, 76, 88, 94, 99, 100, 108, 117, 119, 139, 149, 151, 153, 158, 161, 201, 203, 225, 237, 239, 240, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 60, 61, 68, 73, 88, 94, 99, 100, 117, 119, 130, 139, 152, 155, 158, 161, 203, 237, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 68, 73, 88, 94, 99, 100, 117, 119, 139, 150, 158, 161, 203, 225, 237, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 274], "pull": [1, 73, 76, 203, 237, 270], "13898": 1, "overrid": [1, 39, 40, 77, 86, 88, 89, 93, 94, 96, 98, 99, 101, 105, 114, 117, 119, 123, 149, 150, 188, 191, 234, 245, 268], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 58, 61, 66, 73, 83, 87, 88, 90, 99, 102, 107, 110, 115, 117, 119, 130, 132, 134, 135, 145, 149, 150, 152, 156, 157, 160, 188, 191, 195, 196, 197, 199, 217, 220, 224, 227, 234, 241, 245, 248, 249, 253, 255, 258, 259, 266, 272], "13923": 1, "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 54, 59, 66, 117, 119, 125, 126, 150, 188, 206, 216, 249, 252, 258, 261, 264, 265], "13833": 1, "relocat": [1, 29, 35, 205, 260], "build_polici": [1, 93, 94, 258], "debugg": 1, "13810": 1, "possible_valu": [1, 119], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 50, 58, 59, 61, 73, 76, 77, 81, 83, 85, 86, 87, 88, 89, 90, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 111, 114, 115, 119, 121, 122, 123, 126, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 145, 149, 150, 152, 153, 155, 156, 157, 158, 162, 166, 169, 177, 178, 180, 184, 186, 188, 190, 192, 194, 195, 216, 220, 224, 231, 234, 245, 246, 251, 252, 255, 263, 264, 266, 267, 269, 270, 271, 272, 273, 274], "13796": 1, "optim": [1, 73, 93, 119, 122, 257], "hit": [1, 195, 240], "13771": 1, "sh": [1, 35, 39, 40, 45, 54, 88, 130, 149, 152, 194, 195, 196, 197, 207, 208, 216, 226, 239, 244, 245, 247, 248, 251, 259, 265, 266], "shell": [1, 35, 39, 40, 42, 61, 64, 88, 119, 144, 149, 194, 195, 199, 207, 208, 216], "13764": 1, "13748": 1, "auto": [1, 42, 76, 77, 88, 109, 149, 150, 152, 243], "home": [1, 4, 26, 27, 31, 59, 60, 76, 108, 109, 117, 119, 135, 147, 149, 151, 152, 154, 158, 172, 174, 209, 243, 244, 245, 253], "13746": 1, "render": [1, 21, 102, 108, 146, 148, 149, 153], "profile_nam": [1, 150], "13721": 1, "13718": 1, "understand": [1, 24, 31, 36, 47, 64, 69, 76, 80, 98, 106, 119, 145, 149, 160, 207, 208, 226, 235, 242, 253, 263], "13716": 1, "13712": 1, "skip_warn": [1, 88, 144, 149], "silenc": 1, "13706": 1, "info_invalid": [1, 94, 99], "13688": 1, "13680": 1, "mono": [1, 119], "13562": 1, "demonstr": 1, "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 77], "field": [1, 50, 85, 89, 96, 99, 100, 102, 109, 112, 118, 119, 130, 132, 135, 148, 151, 152, 153, 161, 182, 191, 203, 206, 211, 230, 274], "13870": 1, "compiler_execut": [1, 88, 149, 150, 191, 208, 220, 226, 243], "13867": 1, "13857": 1, "suffix": [1, 158, 190, 211], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 174, 190, 198, 211], "d": [1, 7, 13, 27, 47, 58, 82, 86, 87, 99, 101, 108, 117, 119, 131, 150, 178, 189, 191, 209, 239, 253, 258, 271], "13740": 1, "omit": [1, 21, 119, 149, 266], "l": [1, 86, 87, 89, 90, 92, 93, 96, 98, 99, 100, 101, 105, 111, 114, 115, 206, 207, 209, 211, 230], "libpath": [1, 232], "13704": 1, "13855": 1, "out": [1, 26, 29, 31, 36, 54, 56, 59, 73, 75, 83, 86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 114, 117, 130, 216, 220, 251, 255, 266, 270], "13853": 1, "13846": 1, "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 95, 96, 103, 192, 237, 266, 270, 274], "alia": [1, 108, 190, 206], "13763": 1, "dep": [1, 21, 36, 41, 54, 82, 98, 130, 142, 150, 159, 160, 184, 188, 190, 192, 214, 224, 226, 251, 253], "13762": 1, "cmake_system_nam": [1, 88, 149, 191], "baremet": [1, 152], "13739": 1, "deactiv": [1, 49, 161, 191, 196, 197, 245, 272], "13707": 1, "13597": 1, "extend": [1, 43, 46, 76, 79, 80, 89, 96, 105, 120, 131, 155, 161, 187, 270, 272, 274], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 88, 130, 149, 191, 194, 195, 196, 197, 207, 208, 216, 220, 225, 226, 227, 239, 245, 247, 248], "13607": 1, "preliminari": 1, "dev": [1, 140, 152, 234], "premake5": 1, "13390": 1, "old": [1, 30, 32, 119, 152, 166, 267, 270], "login": [1, 85, 117, 148, 174, 201, 239], "13671": 1, "msg": [1, 144, 158], "13668": 1, "correct": [1, 40, 42, 76, 77, 81, 119, 132, 133, 135, 137, 138, 162, 182, 184, 190, 191, 195, 199, 219, 226, 244, 245, 254, 255, 258, 260, 264], "origin": [1, 4, 6, 8, 13, 24, 59, 61, 88, 101, 119, 123, 133, 148, 152, 194, 195, 220, 230, 246, 255, 258, 274], "13667": 1, "13661": 1, "respond": [1, 73], "forbidden": [1, 74, 104, 106, 123], "13626": 1, "13622": 1, "direct_deploi": [1, 101, 274], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 52, 71, 87, 90, 94, 99, 102, 110, 111, 115, 149, 209, 223, 239, 251, 252, 254, 255, 257, 258, 260, 266], "had": [1, 13, 58, 59, 93, 119, 123, 247, 252, 255, 264, 266, 269], "13662": 1, "13657": 1, "close": [1, 93, 119, 199], "13631": 1, "13618": 1, "full_deploi": [1, 35, 101, 274], "collis": [1, 118, 190, 206, 208], "13610": 1, "13601": 1, "temp": [1, 87], "everyth": [1, 5, 13, 19, 42, 59, 61, 68, 73, 76, 87, 106, 111, 123, 132, 150, 179, 230, 247, 264], "13581": 1, "dictionari": [1, 88, 96, 119, 130, 135, 149, 158, 188, 191, 199, 201], "semant": [1, 119, 152, 253, 268], "13571": 1, "sdk": [1, 26, 35, 88, 149, 152, 182, 183, 185, 208, 220], "13531": 1, "13526": 1, "13505": 1, "legaci": [1, 122, 149, 191, 222], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 50, 117, 119, 135, 149, 243, 244, 251, 261, 271], "third": [1, 2, 14, 15, 52, 59, 60, 99, 119, 139, 153, 201, 230, 258, 265, 266], "parti": [1, 2, 14, 15, 52, 59, 60, 99, 119, 139, 153, 230, 258, 265, 266], "13461": 1, "android": [1, 8, 11, 25, 60, 62, 73, 79, 88, 119, 135, 149, 152, 179, 191, 218, 244], "cmake_legacy_toolchain": [1, 88, 149, 191], "android_use_legacy_toolchain_fil": [1, 88, 149, 191], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 50, 52, 58, 59, 61, 65, 66, 67, 71, 72, 73, 75, 76, 77, 81, 82, 83, 84, 85, 87, 88, 89, 90, 96, 98, 99, 101, 104, 106, 107, 108, 109, 111, 112, 115, 119, 121, 122, 123, 125, 126, 127, 128, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 149, 150, 152, 154, 155, 156, 158, 161, 177, 178, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 202, 203, 206, 207, 208, 209, 210, 213, 214, 215, 220, 222, 223, 224, 225, 226, 230, 231, 232, 234, 238, 239, 240, 243, 245, 246, 247, 251, 252, 253, 255, 257, 258, 259, 262, 264, 267, 269, 270, 271, 272, 273, 274], "cflag": [1, 45, 88, 94, 99, 135, 149, 150, 185, 191, 207, 208, 211, 215, 220, 225, 226], "cxxflag": [1, 49, 83, 88, 94, 99, 135, 149, 185, 191, 192, 207, 208, 215, 220, 225, 226, 232], "prevent": [1, 117, 119, 191], "13459": 1, "13458": 1, "authent": [1, 3, 59, 76, 109, 110, 148, 151, 153, 154, 174, 201, 238, 239], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 52, 59, 61, 67, 76, 81, 85, 87, 88, 89, 98, 102, 117, 119, 121, 130, 132, 133, 150, 152, 153, 154, 155, 159, 178, 191, 210, 217, 224, 230, 239, 241, 243, 245, 247, 250, 251, 252, 255, 257, 263, 264, 269, 271, 272, 274], "python_requires_extend": [1, 77, 131, 178], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 52, 87, 89, 117, 142, 144, 162, 214, 216, 230, 241, 245, 257, 258, 260, 264, 269, 271], "mydep": [1, 81, 130, 226], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 88, 149, 216, 220], "vs2022": 1, "rather": [1, 8, 50, 81, 88, 134, 149, 152, 208, 226, 256, 266], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 155, 157, 274], "paramet": [1, 31, 54, 65, 85, 135, 155, 160, 169, 171, 174, 180, 182, 183, 186, 188, 189, 190, 192, 194, 195, 196, 197, 199, 200, 201, 203, 204, 206, 208, 209, 210, 213, 214, 215, 219, 220, 222, 223, 224, 225, 227, 228, 230, 234, 253], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 50, 59, 61, 62, 66, 73, 81, 84, 87, 96, 102, 104, 105, 119, 126, 133, 134, 135, 136, 140, 149, 150, 152, 162, 178, 186, 190, 191, 211, 216, 245, 246, 248, 252, 257, 258, 259, 260, 264, 265, 266, 269, 270, 271, 272], "13544": 1, "subcommand": [1, 95, 103, 158, 274], "underscor": [1, 253], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 88, 132, 149, 189, 191], "13488": 1, "composit": [1, 131, 152, 193], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 188, 206, 257], "autoreconf": [1, 206, 208, 251], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 50, 52, 59, 73, 77, 81, 83, 101, 108, 117, 118, 119, 121, 123, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 143, 150, 152, 155, 158, 159, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 180, 182, 183, 184, 185, 188, 190, 191, 192, 194, 195, 196, 197, 199, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 223, 224, 225, 226, 227, 230, 231, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 261, 262, 265, 266, 269, 270, 271, 272, 273], "mirror": [1, 4, 201], "That": [1, 8, 13, 17, 24, 38, 65, 77, 101, 119, 139, 154, 156, 163, 184, 190, 195, 211, 216, 225, 244, 245, 246, 257, 261, 270, 273, 274], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 108, 109, 149, 150], "inclus": [1, 224], "13336": 1, "13324": 1, "version_rang": [1, 10, 88, 119, 149, 272], "resolve_prereleas": [1, 10, 88, 119, 149, 272], "prereleas": [1, 10, 272], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 76, 94, 99, 109, 150, 152, 191, 220, 243, 245, 253], "13359": 1, "vswhere": [1, 88, 149], "13355": 1, "convers": [1, 78, 85], "13323": 1, "13230": 1, "msbuild": [1, 43, 50, 57, 62, 71, 73, 88, 108, 135, 149, 150, 152, 179, 188, 221, 224, 225, 227, 253], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 73, 123, 130, 134, 148, 173, 265, 272], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 94, 99, 135, 192, 209, 210], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 119, 135, 150, 179, 191, 193, 194, 195, 244, 245, 248, 254, 259], "instanti": [1, 50, 119, 130, 184, 185, 190, 191, 192, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 226, 227, 232], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 152], "13326": 1, "insecur": [1, 88, 110], "ssl": [1, 88, 110, 135, 149, 151, 174, 201, 214], "13270": 1, "conanignor": [1, 88], "13269": 1, "traceback": 1, "vv": [1, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 73, 117], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 73, 153, 154, 201], "13285": 1, "unexpect": [1, 76, 77, 144, 220, 270], "13282": 1, "runtime_typ": [1, 58, 152, 163, 208], "reli": [1, 4, 50, 73, 77, 102, 137, 138, 211, 243, 258, 260], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 50, 54, 56, 60, 66, 67, 77, 79, 84, 86, 87, 91, 96, 98, 99, 101, 105, 108, 109, 119, 129, 133, 137, 138, 150, 159, 162, 170, 178, 184, 185, 188, 189, 190, 191, 196, 197, 199, 207, 208, 209, 211, 214, 215, 216, 217, 224, 225, 227, 232, 235, 242, 243, 244, 248, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 271, 272, 273, 274], "pars": [1, 31, 73, 102, 149, 150, 155, 210, 230, 231, 255], "13266": 1, "unifi": [1, 6, 152], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 73, 77, 83, 87, 88, 90, 96, 101, 102, 104, 111, 119, 121, 125, 126, 128, 130, 134, 135, 136, 139, 140, 149, 178, 190, 192, 243, 246, 254, 269, 271, 272, 273], "state": [1, 7, 136, 174, 178, 191, 220, 246], "13211": 1, "13207": 1, "readm": [1, 161, 201, 265], "13186": 1, "13298": 1, "certain": [1, 61, 101, 107, 111, 130, 135, 149, 150, 152, 161, 224, 246, 252, 254, 261], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 61, 106, 258], "drive": [1, 58], "13248": 1, "13191": 1, "gnu17": [1, 42, 94, 99, 109, 150, 152, 186, 243], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 60, 67, 70, 73, 77, 85, 88, 101, 105, 106, 109, 117, 119, 120, 122, 126, 130, 132, 133, 134, 135, 141, 149, 150, 152, 154, 155, 162, 182, 183, 190, 191, 192, 194, 196, 197, 207, 208, 211, 220, 224, 227, 238, 239, 242, 243, 252, 255, 257, 258, 261, 266, 271, 273, 274], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 56, 66, 73, 75, 77, 99, 104, 106, 108, 117, 119, 127, 153, 161, 179, 191, 192, 198, 201, 217, 242, 243, 249, 251, 257, 270, 271], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 50, 52, 54, 56, 58, 59, 60, 66, 68, 89, 90, 99, 101, 106, 116, 119, 131, 133, 152, 158, 179, 184, 185, 190, 203, 213, 225, 243, 245, 247, 248, 251, 253, 255, 257, 262, 265, 266, 271, 272, 274], "13117": 1, "13112": 1, "13110": 1, "13109": 1, "assign": [1, 77, 81, 119, 125, 134, 137, 138, 189, 190, 191, 210, 220, 230, 252, 259], "13099": 1, "ui": [1, 31, 238, 239], "13093": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 152, 274], "presets_prefix": 1, "prepend": [1, 135, 149, 150, 194, 195, 210], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 58, 64, 67, 69, 71, 72, 73, 78, 80, 81, 83, 84, 85, 88, 89, 90, 94, 100, 102, 105, 109, 110, 115, 116, 117, 119, 123, 125, 126, 127, 130, 134, 136, 145, 146, 147, 148, 149, 152, 153, 154, 156, 158, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 185, 191, 192, 194, 199, 206, 208, 209, 211, 213, 214, 215, 219, 220, 225, 235, 236, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 273], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 52, 54, 57, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 76, 77, 78, 83, 87, 89, 99, 108, 109, 118, 119, 120, 121, 125, 126, 128, 129, 130, 131, 134, 135, 139, 144, 149, 150, 152, 155, 158, 159, 160, 161, 162, 163, 178, 180, 183, 184, 185, 186, 189, 191, 199, 206, 208, 214, 215, 216, 217, 219, 220, 224, 226, 230, 232, 234, 235, 236, 241, 242, 243, 245, 247, 248, 249, 252, 255, 257, 258, 260, 261, 262, 263, 264, 265, 267, 274], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 59, 61, 73, 76, 77, 78, 80, 83, 84, 99, 108, 109, 118, 119, 121, 122, 130, 139, 149, 150, 152, 155, 158, 159, 160, 161, 178, 180, 190, 191, 217, 230, 236, 238, 249, 253, 258, 262, 264, 266, 274], "10166": 1, "13084": 1, "hash": [1, 80, 84, 94, 99, 100, 119, 139, 178, 201, 245, 246, 252, 254, 255, 271, 274], "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, 66, 77, 88, 149, 154, 270, 274], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 77, 110, 119, 127, 135, 144, 148, 151, 152, 157, 174, 232, 245, 253, 254, 262, 269, 270], "12913": 1, "system_requir": [1, 94, 99, 120, 130, 234], "12912": 1, "tar": [1, 4, 8, 119, 199, 201], "pax": 1, "python3": [1, 61, 117], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 50, 77, 93, 119, 120, 132, 161, 178, 184, 190, 191, 192, 194, 199, 208, 210, 211, 214, 235, 249, 253, 255, 257, 258, 259, 266], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 50, 52, 54, 56, 58, 59, 61, 62, 66, 81, 83, 84, 87, 89, 93, 98, 101, 103, 105, 107, 117, 118, 119, 121, 122, 123, 124, 130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 145, 150, 152, 159, 160, 161, 169, 178, 183, 184, 186, 189, 190, 191, 194, 195, 206, 208, 216, 220, 222, 225, 234, 236, 241, 243, 244, 245, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 272, 273, 274], "perform": [1, 4, 68, 87, 88, 101, 104, 106, 109, 110, 111, 115, 117, 119, 149, 154, 161, 174, 177, 182, 199, 215, 230, 234, 238, 239, 247, 263, 265, 274], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 56, 73, 119, 191, 243, 245, 247, 248, 259, 264], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 102], "12801": 1, "prev": [1, 13, 31, 94, 96, 99, 102], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 88, 149, 208], "12881": 1, "ref": [1, 13, 19, 40, 45, 52, 76, 91, 94, 96, 99, 117, 119, 130, 133, 140, 142, 145, 157, 159, 162, 167, 170, 255, 264, 265, 266], "12722": 1, "12699": 1, "required_conan_vers": [1, 88, 149], "between": [1, 7, 13, 27, 52, 81, 88, 98, 101, 119, 124, 130, 134, 135, 149, 178, 201, 238, 242, 244, 264, 269, 274], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 81, 153, 191, 238, 247], "12666": 1, "12636": 1, "conaninfo": [1, 24, 84, 87, 243, 248, 252, 260], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 190], "12578": 1, "12525": 1, "api": [1, 6, 27, 68, 73, 77, 79, 119, 150, 155, 158, 161, 238, 239], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 259], "12351": 1, "12379": 1, "reciperefer": [1, 167, 169], "equal": [1, 87, 108, 119, 139, 156, 194, 272], "12506": 1, "compress": [1, 6, 56, 61, 88, 94, 99, 149, 177, 199, 201, 243, 244, 245, 247, 248], "uncompress": [1, 56, 61, 243, 245, 247, 248], "12378": 1, "12475": 1, "proper": [1, 7, 135, 206, 208, 218, 244], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 59, 61, 62, 66, 71, 76, 83, 84, 85, 90, 95, 96, 101, 103, 106, 119, 122, 149, 150, 158, 178, 184, 190, 191, 214, 230, 234, 238, 239, 243, 245, 251, 253, 255, 260, 262, 265, 267, 268, 269, 272, 274], "loos": 1, "12502": 1, "produc": [1, 76, 77, 83, 87, 88, 101, 103, 104, 106, 119, 122, 130, 132, 135, 149, 152, 178, 190, 191, 196, 197, 199, 255, 269], "drop": [1, 50, 101, 150], "compat_app": 1, "12484": 1, "transitive_head": [1, 94, 274], "12508": 1, "transitive_lib": [1, 94, 274], "static": [1, 8, 19, 21, 27, 38, 52, 58, 78, 81, 82, 83, 84, 94, 99, 105, 119, 126, 133, 135, 136, 152, 171, 173, 184, 189, 208, 224, 235, 242, 243, 251, 252, 253, 254, 266, 269, 274], "uncommit": [1, 119], "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 230], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 125, 126, 139, 149, 152], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 52, 81, 83, 108, 119, 120, 123, 144, 149, 150, 178, 190, 194, 206, 211, 245, 247, 272], "char": [1, 29, 42, 56, 203, 243], "12053": 1, "12032": 1, "clicolor_forc": [1, 154], "12028": 1, "12050": 1, "output_fold": [1, 36, 86, 91, 93, 101, 160, 170], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 79, 146], "11675": 1, "11672": 1, "max": [1, 88, 149, 152], "11610": 1, "post_build_fail": 1, "hook": [1, 73, 77, 79, 88, 155], "11593": 1, "pre_gener": [1, 161], "post_gener": [1, 161], "cover": [1, 68, 132, 152, 236, 242, 259, 263], "around": [1, 8, 64, 65, 70, 71, 72, 73, 183, 188, 206, 213, 223, 234, 249], "brought": 1, "back": [1, 2, 10, 18, 58, 60, 73, 81, 88, 107, 149, 273], "11575": 1, "11522": 1, "model": [1, 17, 21, 60, 73, 76, 78, 79, 84, 117, 118, 124, 130, 134, 135, 136, 140, 152, 156, 242, 249, 252, 253], "relationship": [1, 119, 274], "linkag": [1, 245], "autom": [1, 5, 13, 26, 73, 102, 119, 139, 140, 154, 225, 268, 270, 274], "flexibl": [1, 58, 119, 145, 235, 242, 272, 274], "power": [1, 13, 73, 101, 155, 158, 191, 242, 274], "transpar": [1, 4, 11, 37, 67, 243, 264, 274], "pythonapi": 1, "cleaner": [1, 274], "structur": [1, 6, 18, 42, 45, 52, 54, 56, 58, 77, 96, 100, 101, 102, 116, 119, 135, 147, 150, 155, 169, 189, 214, 243, 247, 248, 253, 254, 255, 257, 258, 266, 269, 274], "account": [1, 6, 29, 81, 117, 119, 130, 133, 152, 178, 183, 189, 191, 194, 231, 244, 252, 259, 261, 267, 274], "simpler": [1, 5, 6, 41, 112, 130, 136], "immut": [1, 6, 19, 77, 81, 139, 153, 246, 250, 251, 254, 255, 261, 265, 271], "tutori": [2, 10, 21, 27, 29, 42, 47, 52, 54, 56, 58, 60, 67, 73, 86, 89, 91, 93, 101, 104, 105, 106, 110, 113, 114, 115, 119, 121, 123, 125, 126, 130, 132, 133, 134, 135, 139, 141, 142, 217, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 273, 274], "aim": [2, 73, 94, 123, 145, 149, 152, 214, 261], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 50, 54, 56, 59, 60, 68, 73, 77, 86, 87, 93, 101, 102, 113, 117, 119, 121, 127, 132, 135, 137, 138, 139, 149, 152, 154, 160, 163, 180, 185, 190, 216, 217, 225, 227, 235, 238, 239, 240, 243, 244, 248, 251, 258, 264, 270], "engin": [2, 21, 107, 149, 269, 270], "administr": [2, 3, 239], "architect": 2, "adopt": 2, "design": [2, 18, 73, 131, 152, 266, 274], "product": [2, 5, 6, 35, 60, 73, 77, 89, 106, 109, 123, 127, 134, 266], "team": [2, 5, 8, 50, 56, 73, 76, 81, 107, 108, 109, 117, 119, 152, 238, 239, 240, 243, 258], "plan": [2, 96, 130, 135], "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, 50, 52, 54, 56, 58, 59, 61, 62, 66, 68, 77, 78, 81, 82, 83, 84, 87, 96, 98, 101, 102, 105, 106, 107, 108, 117, 119, 122, 124, 126, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 143, 149, 150, 152, 169, 178, 184, 186, 189, 190, 191, 192, 195, 211, 214, 216, 217, 224, 230, 234, 236, 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, 269, 270, 271, 272, 273], "ll": [3, 4, 31, 45, 54, 56, 66, 99, 150, 158, 191, 216, 225, 227, 243, 265], "free": [3, 4, 73, 94, 99, 117, 238, 239, 240], "tab": [3, 66], "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, 50, 52, 54, 56, 58, 59, 60, 63, 66, 67, 68, 70, 73, 76, 77, 78, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 99, 101, 102, 104, 105, 106, 107, 109, 114, 115, 117, 119, 122, 123, 124, 125, 126, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 145, 147, 148, 149, 150, 152, 156, 157, 158, 160, 161, 162, 163, 170, 182, 183, 184, 185, 189, 190, 191, 192, 195, 196, 199, 203, 209, 210, 211, 214, 217, 220, 222, 223, 224, 230, 234, 235, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 272, 273, 274], "imagin": [3, 10, 98, 190, 214, 247, 252, 260], "give": [3, 4, 8, 73, 85, 98, 109, 116, 196, 197], "upload_url": [3, 4, 88, 149], "myteam": [3, 4, 149], "myorg": [3, 4, 149], "next": [3, 26, 29, 45, 73, 84, 106, 119, 208, 224, 230, 244, 250, 251, 252, 259, 273], "anonym": [3, 117, 148, 153, 154], "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, 50, 52, 54, 59, 61, 66, 68, 76, 82, 83, 84, 85, 88, 89, 90, 96, 100, 101, 102, 105, 109, 111, 115, 116, 117, 119, 123, 125, 126, 127, 133, 134, 135, 139, 141, 147, 148, 149, 150, 152, 153, 156, 158, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 190, 191, 192, 199, 206, 208, 209, 211, 213, 214, 215, 219, 220, 225, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 259, 260, 261, 262, 264, 265, 266, 267, 269, 270, 271, 272, 273], "offici": [3, 31, 100, 155, 158, 216, 236, 274], "guid": [3, 4, 60, 235], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 52, 54, 58, 59, 63, 66, 67, 73, 76, 78, 79, 80, 81, 83, 89, 93, 96, 102, 105, 106, 110, 115, 118, 119, 132, 136, 147, 149, 150, 151, 152, 155, 160, 178, 190, 214, 217, 233, 235, 236, 237, 241, 242, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 268, 269, 270, 271, 272, 273], "token": [3, 59, 117, 148, 153, 230], "live": [3, 13, 19, 119, 139, 145, 224, 274], "source_credenti": [3, 4, 79, 146], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 52, 61, 68, 87, 90, 108, 119, 130, 142, 145, 149, 150, 152, 159, 161, 163, 178, 184, 185, 194, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 227, 244, 246, 253, 254, 264, 269, 270], "last": [3, 7, 102, 136, 152, 173, 174, 215, 225, 267, 272, 274], "permiss": [3, 4, 61, 73, 77, 199, 238, 239], "feel": [3, 135], "accord": [3, 45, 66, 67, 83, 139, 150, 183, 190, 191, 227, 254, 272], "With": [3, 4, 7, 17, 21, 35, 36, 50, 61, 66, 73, 148, 150, 152, 203, 216, 245, 251, 259, 264], "common": [4, 6, 8, 13, 17, 18, 27, 35, 52, 76, 77, 83, 87, 88, 102, 119, 128, 129, 130, 134, 135, 138, 152, 155, 157, 158, 178, 183, 217, 223, 230, 234, 245, 246, 253, 260, 267, 268], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 59, 73, 74, 81, 83, 87, 89, 102, 104, 106, 108, 109, 117, 121, 122, 123, 126, 127, 128, 129, 130, 131, 133, 135, 136, 139, 142, 145, 150, 153, 178, 220, 235, 244, 246, 248, 250, 251, 254, 255, 259, 261, 265, 269, 270, 271, 272, 273], "canon": [4, 190], "page": [4, 27, 60, 119, 239], "keep": [4, 6, 18, 26, 59, 68, 77, 106, 107, 131, 152, 161, 178, 189, 190, 191, 199, 243, 246, 247, 258, 259, 267, 273, 274], "record": 4, "traceabl": [4, 6, 73, 259, 268, 273, 274], "purpos": [4, 7, 61, 77, 119, 126, 128, 130, 131, 149, 153, 155, 230, 234, 235, 236, 241, 259, 266, 270, 273, 274], "howev": [4, 5, 21, 35, 39, 40, 61, 62, 68, 96, 99, 117, 122, 145, 149, 152, 161, 190, 246, 247, 248, 252, 255, 269, 270, 271, 273], "often": [4, 29, 132, 272], "term": [4, 7, 253], "futur": [4, 7, 36, 59, 69, 76, 77, 78, 96, 108, 109, 119, 150, 156, 157, 160, 162, 178, 202, 247, 255], "mai": [4, 8, 19, 21, 26, 61, 73, 76, 90, 116, 119, 121, 125, 126, 135, 152, 184, 190, 191, 231, 240, 242, 245, 247, 248, 254, 255, 261], "encount": [4, 119], "thu": [4, 8, 77, 117, 119, 122, 128, 129, 206, 209, 274], "retriev": [4, 6, 7, 8, 59, 77, 87, 90, 99, 117, 119, 124, 201, 230, 243, 245, 248, 249, 250, 253, 255, 258, 271], "addition": [4, 8, 99, 123, 136, 144, 149, 190, 211], "alongsid": [4, 214, 235], "infrastructur": [4, 6], "trigger": [4, 144, 274], "sha256": [4, 119, 200, 201, 255], "signatur": [4, 160, 162, 163, 200], "few": [4, 36, 83, 154, 155, 157, 178, 259], "download_url": [4, 88, 149], "repres": [4, 6, 77, 81, 83, 84, 119, 190, 191, 192, 195, 220, 234, 245, 271, 274], "fetch": [4, 6, 61, 73, 85, 87, 100, 139, 230, 245], "either": [4, 8, 36, 108, 117, 119, 121, 130, 134, 135, 136, 144, 154, 162, 173, 177, 180, 194, 246, 272], "present": [4, 13, 36, 45, 50, 76, 78, 87, 88, 100, 101, 119, 136, 152, 154, 177, 186, 248], "prefer": [4, 47, 48, 61, 66, 81, 96, 153, 183, 191, 208, 230, 258, 264, 265, 266, 272], "ahead": [4, 10], "Being": [4, 178], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 50, 52, 59, 61, 73, 76, 77, 78, 81, 83, 87, 89, 96, 98, 101, 102, 104, 105, 106, 108, 117, 119, 122, 126, 129, 130, 132, 133, 134, 135, 138, 139, 140, 149, 150, 152, 169, 180, 194, 208, 220, 224, 225, 240, 245, 253, 258, 259, 264, 265, 269, 273], "exclude_url": [4, 87, 88, 149], "start": [4, 5, 6, 17, 29, 45, 54, 56, 59, 61, 77, 96, 108, 118, 119, 134, 135, 150, 152, 153, 158, 161, 169, 199, 201, 211, 216, 220, 239, 240, 243, 253, 264, 265, 266, 269, 270, 271, 273, 274], "begin": [4, 73, 88, 149, 150, 242, 249], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 50, 66, 73, 77, 83, 84, 106, 117, 119, 126, 129, 130, 132, 134, 135, 139, 145, 148, 149, 150, 152, 158, 163, 180, 182, 191, 210, 216, 230, 243, 245, 246, 264, 265, 266, 270, 271, 273], "A": [4, 6, 13, 47, 52, 58, 68, 73, 83, 87, 88, 90, 94, 98, 99, 102, 105, 106, 111, 115, 117, 119, 123, 125, 127, 134, 136, 138, 139, 140, 144, 149, 150, 157, 161, 169, 174, 177, 178, 188, 191, 194, 199, 201, 205, 222, 225, 234, 239, 243, 246, 249, 251, 252, 254, 256, 257, 258, 262, 264, 267, 270, 272, 274], "put": [4, 6, 17, 29, 36, 61, 87, 88, 93, 108, 119, 130, 132, 135, 139, 148, 149, 150, 155, 162, 195, 214, 215, 217, 253, 259, 262, 266, 267, 271], "its": [4, 13, 24, 29, 31, 36, 39, 40, 50, 58, 59, 61, 62, 73, 76, 80, 82, 83, 84, 85, 86, 87, 89, 90, 96, 100, 101, 109, 111, 119, 122, 130, 134, 135, 136, 139, 141, 148, 149, 150, 158, 160, 161, 178, 190, 191, 194, 206, 225, 242, 244, 246, 247, 253, 262, 264, 266, 267, 270], "strongli": [4, 8, 61, 81, 119, 122, 153, 220, 255], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 54, 56, 59, 62, 73, 77, 81, 83, 88, 96, 101, 102, 106, 109, 117, 119, 122, 127, 128, 133, 134, 136, 137, 139, 149, 150, 154, 161, 178, 190, 202, 234, 238, 239, 240, 248, 251, 253, 258, 264, 270, 272], "below": [4, 5, 6, 8, 66, 73, 81, 83, 84, 87, 124, 136, 139, 147, 149, 182, 184, 185, 191, 199, 208, 211, 214, 252], "relev": [4, 21, 58, 60, 64, 65, 69, 70, 71, 72, 83, 149, 250, 251, 252, 254, 255, 259, 261, 262, 270], "els": [4, 6, 17, 26, 31, 39, 40, 52, 73, 117, 119, 133, 134, 135, 139, 150, 177, 186, 234, 245, 247, 250, 251, 254, 259, 261], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 52, 54, 61, 65, 73, 76, 88, 94, 96, 101, 108, 117, 119, 122, 124, 130, 132, 134, 135, 145, 150, 151, 152, 158, 160, 184, 185, 190, 191, 203, 208, 215, 220, 232, 234, 244, 247, 252, 253, 254, 255, 258, 259, 264, 270, 271, 272], "blob": [4, 68, 274], "belong": [4, 87, 90, 102, 106, 119, 177, 179, 190, 199, 211, 244, 253, 259, 262, 274], "artifactori": [4, 13, 62, 73, 117, 155, 238, 240], "describ": [4, 5, 6, 8, 10, 45, 56, 80, 82, 85, 97, 119, 130, 132, 138, 148, 186, 191, 192, 220, 266, 273], "approach": [4, 6, 8, 13, 29, 41, 50, 59, 73, 76, 77, 78, 81, 83, 101, 119, 132, 133, 134, 135, 136, 137, 139, 150, 152, 158, 178, 188, 190, 202, 230, 244, 251, 258, 259, 270, 273], "deal": [4, 9, 78, 122, 134], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 52, 54, 58, 59, 73, 82, 83, 84, 87, 90, 99, 105, 108, 111, 117, 119, 130, 131, 134, 136, 145, 149, 152, 162, 178, 184, 185, 188, 190, 191, 195, 196, 199, 214, 224, 234, 245, 254, 255, 260, 261, 264, 266, 269, 270, 271, 273, 274], "travers": [4, 147], "until": [4, 8, 66, 77, 147, 148, 153, 156, 253], "client": [4, 7, 13, 31, 50, 66, 73, 76, 85, 88, 109, 116, 117, 119, 148, 161, 239, 240, 245, 253], "regard": [4, 73, 78, 105, 152, 161, 199, 260], "capabl": [4, 7, 100, 101, 150, 191, 247, 274], "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, 50, 52, 54, 56, 58, 59, 68, 73, 75, 76, 78, 81, 82, 84, 87, 88, 89, 90, 94, 96, 97, 98, 99, 101, 102, 104, 105, 106, 107, 108, 111, 112, 115, 116, 117, 119, 123, 130, 131, 134, 135, 136, 138, 139, 142, 143, 145, 149, 150, 151, 152, 159, 160, 161, 178, 184, 186, 188, 189, 190, 191, 194, 196, 197, 199, 201, 203, 206, 209, 211, 214, 220, 222, 224, 225, 226, 227, 230, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 272, 273, 274], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 52, 59, 61, 66, 73, 76, 82, 83, 84, 89, 96, 101, 102, 104, 105, 106, 108, 116, 117, 119, 123, 130, 140, 145, 150, 152, 178, 183, 184, 190, 191, 196, 201, 211, 214, 216, 243, 244, 246, 247, 248, 251, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 270, 272, 273, 274], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 61, 76, 88, 94, 99, 109, 154, 209, 243, 245, 251, 252, 253, 254, 255, 257, 260], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 50, 52, 54, 56, 58, 82, 87, 119, 127, 132, 133, 190, 199, 214, 243, 247, 248, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 271], "net": [4, 88, 94, 99, 117, 149], "fossil": 4, "gz": [4, 119, 199, 201], "madler": 4, "v1": [4, 186], "newli": 4, "therefor": [4, 8, 66, 122, 199, 234, 257], "dure": [4, 8, 26, 59, 66, 78, 119, 126, 136, 188, 220, 253, 265, 272], "address": [4, 8, 134, 152, 268], "scenario": [4, 7, 40, 41, 42, 59, 61, 83, 119, 121, 122, 135, 136, 150, 156, 258, 274], "ce": [4, 73, 238], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 53, 55, 58, 59, 65, 70, 73, 76, 77, 89, 96, 108, 117, 119, 120, 121, 123, 131, 136, 145, 158, 161, 178, 213, 214, 215, 217, 235, 238, 240, 242, 245, 247, 249, 253, 255, 256, 257, 261, 264, 265, 272, 273], "suffici": [4, 117], "instruct": [4, 61, 66, 76, 120, 133, 152, 245], "author": [4, 6, 8, 50, 59, 94, 131, 153, 253], "agent": [4, 59, 96], "done": [5, 6, 36, 38, 50, 52, 73, 76, 77, 80, 96, 104, 106, 111, 117, 121, 122, 123, 130, 135, 136, 138, 139, 148, 150, 152, 154, 159, 160, 161, 170, 178, 182, 190, 191, 195, 196, 197, 206, 237, 244, 246, 247, 251, 253, 254, 262, 264, 265, 266, 267, 272, 273, 274], "much": [5, 6, 77, 121, 128, 139, 178, 253, 265, 274], "fulli": [5, 35, 59, 73, 104, 106, 119, 136, 137, 138, 160, 184, 185, 191, 196, 197, 207, 208, 209, 211, 214, 215, 216, 224, 225, 226, 227, 232, 264, 274], "fork": [5, 8, 119], "maintain": [5, 8, 18, 73, 96, 104, 119, 134, 145, 150, 161, 211, 246, 267], "pr": [5, 42, 49, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 150, 214, 216, 244], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 54, 56, 59, 61, 62, 66, 73, 75, 76, 78, 82, 84, 87, 88, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 111, 112, 115, 116, 117, 119, 123, 128, 130, 131, 133, 135, 136, 138, 142, 145, 149, 150, 151, 152, 159, 162, 178, 184, 190, 196, 197, 201, 202, 206, 209, 211, 214, 222, 224, 227, 243, 244, 245, 246, 247, 248, 250, 253, 257, 258, 264, 269, 270, 271, 272, 273], "13": [5, 6, 13, 24, 35, 42, 82, 84, 87, 90, 98, 99, 101, 102, 105, 109, 111, 112, 115, 116, 123, 145, 150, 152, 159, 209, 243, 246, 250], "part": [5, 17, 21, 31, 38, 39, 40, 42, 58, 59, 73, 83, 88, 89, 90, 102, 111, 119, 120, 123, 126, 128, 129, 132, 133, 134, 136, 149, 150, 152, 178, 236, 238, 250, 251, 252, 253, 254, 255, 261, 262, 265, 266, 271, 273], "mostli": [5, 31, 45, 119, 136, 152, 161, 234], "proprietari": [5, 73, 153, 210], "idea": [5, 130, 149, 270, 274], "further": [5, 81, 119, 123, 152, 191, 274], "soon": [5, 62, 73, 274], "straightforward": [5, 80, 89, 101, 130, 263, 269], "mani": [5, 6, 45, 49, 50, 59, 61, 68, 73, 76, 77, 78, 83, 104, 108, 130, 150, 178, 195, 241, 264, 267, 270, 274], "advantag": [5, 61, 159, 185, 225, 247], "mitig": [5, 50, 195], "risk": [5, 50, 59, 76, 149, 272], "befor": [5, 6, 7, 10, 26, 45, 54, 56, 59, 115, 119, 121, 125, 130, 132, 139, 142, 150, 160, 161, 178, 195, 199, 208, 213, 216, 220, 226, 230, 234, 244, 245, 247, 248, 251, 252, 255, 259, 266, 270, 274], "No": [5, 24, 50, 119, 126, 245, 257, 273], "central": [5, 73, 236], "outag": 5, "adapt": [5, 80, 108, 109, 119], "perfectli": [5, 50, 76, 145], "minut": [5, 102, 111], "week": [5, 102, 111, 267], "appli": [5, 8, 49, 50, 52, 77, 78, 83, 85, 86, 87, 89, 93, 96, 98, 99, 101, 104, 105, 106, 109, 114, 117, 119, 121, 122, 126, 129, 130, 135, 139, 149, 150, 152, 184, 191, 193, 203, 216, 244, 245, 246, 248, 249, 251, 252, 257, 258, 261, 269, 272, 274], "wouldn": [5, 50, 61, 66, 119, 188], "elimin": [5, 264], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 54, 155], "diff": [5, 52, 98, 102, 203], "trim": [5, 105], "fire": [5, 96, 139, 178, 266], "effici": [5, 35, 56, 73, 81, 119, 134, 224, 243, 274], "thank": [5, 26, 39, 40, 45, 56, 83, 155, 158, 258], "secondari": [5, 73], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 59, 66, 68, 77, 96, 108, 123, 125, 126, 131, 134, 135, 148, 150, 159, 160, 190, 192, 199, 206, 216, 225, 236, 239, 240, 242, 243, 244, 246, 249, 252, 253, 254, 260, 262, 268, 269, 272, 273], "good": [5, 19, 59, 73, 74, 81, 106, 108, 117, 119, 121, 123, 124, 130, 131, 135, 136, 149, 169, 225, 227, 238, 250, 251, 254, 261, 265, 269, 270, 273], "subject": [6, 7, 13, 31, 73, 94, 100, 116, 123, 125, 126, 127, 134, 148, 150, 152, 153, 156, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 190, 192, 209, 213, 214, 215, 216], "stabil": [6, 7, 13, 31, 68, 73, 100, 102, 109, 116, 123, 125, 126, 127, 134, 147, 148, 150, 152, 153, 156, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 192, 199, 209, 213, 214, 215, 267], "typic": [6, 8, 13, 27, 39, 40, 50, 58, 59, 61, 66, 76, 83, 119, 125, 128, 129, 130, 132, 135, 136, 150, 153, 162, 182, 183, 189, 190, 192, 195, 211, 217, 223, 228, 234, 244, 245, 247, 251, 252, 254, 257, 258, 259, 264, 265, 267, 274], "compos": [6, 101, 135, 149, 150, 166, 173, 183, 191, 194, 230, 257], "But": [6, 7, 13, 29, 39, 40, 50, 59, 73, 83, 93, 102, 107, 119, 122, 130, 141, 143, 144, 150, 158, 162, 190, 211, 214, 244, 246, 247, 253, 257, 259, 269, 270, 271], "normal": [6, 35, 42, 70, 76, 111, 119, 127, 158, 161, 194, 264, 272], "consumpt": [6, 21, 73, 120, 145], "complianc": [6, 122, 274], "technic": [6, 119], "busi": [6, 274], "reason": [6, 8, 41, 50, 59, 76, 77, 89, 93, 106, 139, 153, 259, 266, 269, 271], "suit": [6, 145, 150, 217, 251, 257], "heavi": [6, 29, 73, 119, 121, 157], "pdb": [6, 29], "coverag": [6, 190, 274], "sanit": 6, "analysi": [6, 88, 149], "exact": [6, 47, 48, 77, 81, 87, 104, 106, 111, 119, 122, 150, 174, 185, 199, 225, 230, 246, 253, 264, 265, 266, 271, 273], "relat": [6, 45, 61, 70, 78, 119, 130, 149, 174, 185, 191, 199, 211, 220, 247, 252, 253, 265, 274], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 50, 59, 61, 66, 73, 75, 76, 83, 88, 96, 101, 108, 111, 117, 119, 121, 128, 132, 133, 134, 142, 143, 149, 154, 161, 178, 190, 191, 194, 217, 234, 238, 239, 247, 251, 252, 254, 258, 259, 264, 268, 269, 271, 274], "regul": 6, "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 59, 76, 84, 89, 111, 121, 128, 129, 130, 133, 134, 135, 148, 153, 154, 158, 195, 243, 246, 248, 252, 253, 257, 264, 266, 269, 270, 272, 274], "lot": [6, 8, 261, 272, 274], "impact": [6, 8], "experi": [6, 119, 121, 240, 272, 274], "cost": [6, 77], "furthermor": [6, 54, 77, 274], "append": [6, 26, 49, 61, 88, 117, 119, 135, 137, 138, 149, 150, 156, 162, 188, 190, 191, 194, 195, 199, 207, 208, 209, 225, 226, 259], "highlight": [6, 26, 144, 194, 214, 255], "probabl": [6, 31, 191, 217, 224, 246], "scan": [6, 204], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 56, 58, 59, 62, 66, 73, 75, 78, 81, 82, 87, 90, 94, 96, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 116, 117, 119, 123, 130, 131, 134, 136, 139, 140, 142, 143, 145, 150, 152, 159, 160, 178, 188, 189, 190, 191, 194, 196, 197, 199, 201, 203, 206, 211, 214, 220, 222, 224, 225, 226, 227, 234, 240, 241, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 272, 273, 274], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 54, 58, 59, 81, 83, 101, 117, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 150, 152, 153, 156, 157, 158, 159, 160, 161, 162, 163, 178, 180, 182, 183, 184, 185, 188, 189, 190, 191, 192, 194, 195, 196, 197, 199, 201, 203, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 219, 220, 222, 223, 224, 225, 226, 227, 230, 232, 234, 244, 246, 247, 250, 251, 252, 253, 254, 255, 257, 258, 259, 260, 261, 262, 265, 266, 269, 270, 271, 273], "Or": [6, 88, 121, 130, 150, 191, 210, 226, 232], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 52, 59, 88, 145, 149, 179, 187, 191, 217, 244, 247, 253, 255, 257, 259, 262, 264, 265, 266], "mybuild": [6, 119], "recipe_fold": [6, 16, 18, 59, 94, 99, 128, 129, 130, 131, 137, 138], "dst": [6, 17, 38, 58, 119, 127, 199, 260], "join": [6, 16, 17, 18, 19, 36, 39, 40, 52, 58, 76, 119, 129, 131, 132, 133, 135, 137, 138, 141, 150, 161, 162, 178, 190, 191, 194, 199, 217, 247, 251, 257, 258, 259, 260, 262, 266], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 54, 56, 62, 64, 65, 69, 70, 71, 72, 73, 77, 83, 85, 89, 102, 103, 105, 119, 124, 133, 134, 136, 137, 146, 149, 156, 178, 189, 191, 192, 199, 217, 226, 234, 235, 243, 250, 259, 262, 263, 265, 269, 270], "mylog": 6, "build_fold": [6, 17, 58, 77, 94, 99, 100, 130, 132, 133, 161, 189, 199, 214, 219, 257, 258, 259, 260], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 50, 58, 61, 66, 78, 81, 83, 87, 96, 97, 99, 101, 104, 106, 108, 111, 117, 119, 121, 131, 134, 135, 139, 141, 144, 145, 150, 152, 160, 162, 178, 184, 190, 191, 205, 220, 234, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254, 255, 257, 260, 262, 264, 265, 266, 267, 269, 270, 271, 272, 274], "clutter": [6, 217], "accross": [6, 81], "sai": [6, 13, 16, 18, 38, 41, 52, 83, 87, 98, 101, 106, 119, 149, 150, 184, 224, 252, 266], "no_copy_sourc": [6, 121, 257], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 54, 58, 73, 76, 82, 83, 84, 87, 96, 97, 102, 107, 108, 119, 139, 150, 152, 153, 160, 178, 180, 185, 190, 191, 195, 214, 234, 243, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 258, 260, 261, 262, 263, 264, 266, 269, 270, 271, 273, 274], "post_export": [6, 161], "post_sourc": [6, 161], "post_build": [6, 155, 161], "similar": [6, 8, 18, 58, 61, 68, 73, 90, 93, 106, 115, 117, 119, 132, 140, 150, 158, 178, 190, 192, 194, 230, 243, 250, 252, 255, 257, 266, 272], "To": [6, 24, 26, 29, 31, 36, 56, 59, 61, 66, 67, 76, 102, 106, 109, 111, 119, 123, 131, 132, 139, 144, 149, 150, 153, 156, 161, 184, 189, 190, 191, 196, 197, 199, 206, 207, 208, 217, 243, 245, 247, 248, 254, 255, 264, 266, 270, 272, 273], "achiev": [6, 8, 39, 59, 77, 121, 134, 160, 185, 190, 199, 225, 242, 247, 253, 257, 270, 273, 274], "didn": [6, 47, 50, 59, 76, 82, 253, 257], "far": [6, 245, 246, 247, 250, 252, 264, 274], "r": [6, 13, 31, 35, 59, 68, 76, 82, 84, 86, 89, 90, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 105, 111, 112, 114, 115, 230, 239, 241, 246, 267, 271], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 257], "By": [6, 21, 41, 48, 73, 76, 81, 86, 87, 88, 89, 93, 96, 98, 99, 101, 102, 105, 109, 114, 115, 117, 119, 135, 148, 149, 154, 178, 190, 191, 194, 206, 208, 209, 211, 213, 220, 230, 234, 270, 271], "situat": [6, 13, 35, 39, 40, 83, 104, 111, 119, 121, 133, 134, 138, 150, 178, 190, 211, 268, 269], "sometim": [6, 7, 29, 52, 76, 89, 119, 140, 246, 251, 255, 257, 263], "mix": [6, 83, 178], "recov": [6, 59, 199], "previous": [6, 13, 24, 31, 36, 61, 101, 106, 148, 150, 152, 191, 194, 216, 248, 255, 258, 269], "under": [6, 8, 36, 64, 69, 71, 72, 73, 84, 117, 119, 132, 134, 150, 158, 161, 203, 220, 230, 234, 240, 243, 253, 258, 263, 272], "collect": [6, 36, 99, 101, 130, 135, 139, 199, 209, 252, 261], "recal": [6, 50, 104, 106, 111, 123, 126, 150, 154, 184, 188, 191], "At": [6, 10, 21, 26, 66, 73, 77, 106, 119, 130, 152, 199, 207, 215, 216], "moment": [6, 7, 35, 77, 117, 119, 130, 135, 152, 207, 215], "addit": [6, 8, 61, 62, 88, 89, 103, 119, 136, 149, 150, 152, 174, 181, 191, 199, 201, 208, 220, 225, 226, 227, 247, 248, 254], "quit": [6, 149, 178, 240], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 77, 101, 106, 119, 123, 128, 129, 131, 133, 139, 145, 184, 185, 242, 251, 252, 270, 272], "metatada": 6, "best": [6, 7, 13, 35, 59, 81, 83, 87, 89, 102, 104, 109, 121, 122, 123, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 139, 142, 150, 153, 173, 178, 248, 259, 269, 271, 273], "mandatori": [6, 36, 50, 58, 83, 104, 108, 119, 157, 160, 178, 253], "frequent": [6, 8, 199], "excepcion": 6, "decompress": [6, 199, 201, 243, 248, 263], "consid": [6, 7, 8, 21, 45, 73, 81, 82, 83, 87, 96, 119, 122, 124, 156, 184, 186, 191, 220, 247, 271], "zip": [6, 8, 19, 52, 88, 109, 115, 119, 139, 153, 199, 201, 238, 239, 249, 265], "yourself": [6, 58], "categori": [6, 244], "illustr": [6, 82, 273], "later": [6, 7, 13, 26, 66, 68, 89, 96, 97, 99, 119, 122, 126, 129, 135, 144, 150, 174, 199, 230, 236, 241, 246, 247, 251, 252, 258, 268, 270], "necessarili": [6, 119, 270], "ton": 6, "assum": [6, 29, 35, 66, 73, 77, 81, 82, 87, 90, 98, 102, 111, 115, 119, 131, 135, 140, 150, 152, 154, 156, 184, 190, 214, 224, 243, 245, 247, 248, 273], "stage": [6, 26, 61, 89, 93, 152, 161], "applic": [6, 8, 27, 38, 45, 48, 54, 56, 58, 61, 73, 76, 82, 83, 99, 119, 123, 134, 136, 142, 190, 191, 197, 199, 211, 224, 235, 240, 242, 243, 248, 249, 253, 256, 257, 259, 262, 264, 269, 274], "cp": [6, 35, 59], "todo": [6, 169], "hear": 6, "feedback": [6, 73, 78, 272], "continu": [7, 73, 77, 78, 104, 117, 237, 266, 270], "conveni": [7, 13, 68, 102, 108, 119, 139, 140, 150, 160, 163, 178, 190, 194, 196, 197, 246, 259, 262], "recent": [7, 21, 102, 111, 267], "transfer": [7, 8, 50, 117, 274], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 102], "b": [7, 21, 24, 29, 42, 52, 61, 86, 87, 89, 93, 96, 98, 99, 101, 105, 109, 114, 139, 149, 203, 209, 214, 244, 251, 252, 254, 255, 257, 260, 266], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "well": [7, 59, 73, 75, 93, 102, 116, 119, 132, 152, 188, 190, 191, 211, 220, 253, 274], "pkg773791b8c97aa": 7, "substitut": [7, 154, 234], "storag": [7, 73, 87, 117, 149, 155, 201, 240, 271], "transitori": 7, "strategi": [7, 8, 59, 134, 139, 265, 274], "proof": 7, "stabl": [7, 61, 102, 108, 109, 119, 149, 150], "expect": [7, 10, 42, 45, 59, 77, 93, 98, 101, 119, 121, 139, 149, 152, 200, 217, 253, 255, 265, 271], "fantast": 8, "1500": 8, "contribut": [8, 73, 195, 203, 235, 236], "great": [8, 61, 73, 76, 239, 274], "knowledg": [8, 60, 73, 76], "wide": [8, 61, 83, 245, 247, 248, 253], "variant": [8, 69], "On": [8, 45, 58, 83, 117, 140, 152, 216, 240, 243, 244, 245, 253], "top": [8, 136, 150, 230], "contributor": [8, 73], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 90, 119, 191, 245], "snapshot": [8, 246, 270], "contrari": 8, "e": [8, 42, 61, 73, 76, 87, 90, 91, 94, 96, 98, 99, 101, 102, 105, 108, 111, 115, 117, 119, 123, 149, 150, 151, 152, 182, 186, 188, 191, 199, 206, 208, 209, 211, 214, 220, 224, 225, 234, 254, 255, 274], "g": [8, 35, 42, 47, 48, 76, 86, 87, 90, 91, 96, 98, 99, 101, 102, 105, 108, 111, 115, 117, 119, 149, 150, 151, 152, 159, 170, 182, 186, 188, 191, 196, 199, 206, 208, 209, 211, 214, 220, 224, 225, 234, 243, 244, 245, 247, 248, 255, 264, 265, 266], "opencv": [8, 117, 140, 157], "greater": 8, "remain": [8, 117, 119, 154, 184, 194, 220], "older": [8, 73, 104, 107, 271, 272, 273], "push": [8, 59, 73, 230], "ecosystem": [8, 78, 83, 216], "hand": [8, 73, 83, 105, 121, 140], "combin": [8, 86, 89, 96, 98, 99, 101, 105, 107, 109, 114, 133, 139, 273], "mean": [8, 13, 29, 31, 35, 39, 40, 50, 61, 66, 73, 76, 77, 81, 82, 83, 87, 90, 98, 99, 100, 101, 102, 111, 115, 119, 121, 123, 126, 130, 134, 135, 139, 142, 145, 150, 152, 154, 156, 157, 169, 177, 178, 184, 190, 194, 195, 199, 206, 208, 217, 234, 245, 246, 257, 261, 263, 266, 269, 270, 271, 272], "languag": [8, 38, 42, 45, 49, 54, 56, 73, 185, 243], "pip": [8, 59, 117, 240], "pypi": [8, 61], "npm": 8, "cargo": 8, "discourag": [8, 87, 119, 153, 178, 220, 255], "unconstrain": 8, "manner": [8, 264], "guidelin": [8, 60, 61, 73, 74, 179], "seri": [8, 119, 263], "highli": [8, 24, 31, 36, 45, 54, 56], "mention": [8, 94, 99, 134, 136, 150, 184, 190, 208, 215, 220, 226, 251, 261, 266, 274], "earlier": [8, 73, 272], "caus": [8, 77, 119, 123, 136, 142, 190, 211, 253, 255, 269, 270, 271], "solver": 8, "actual": [8, 13, 19, 39, 40, 73, 76, 83, 93, 111, 115, 121, 130, 136, 140, 150, 152, 177, 195, 196, 197, 199, 234, 241, 246, 266, 269, 270, 273], "4": [8, 10, 21, 26, 48, 54, 76, 81, 82, 99, 102, 106, 116, 117, 119, 124, 130, 134, 140, 145, 149, 150, 152, 178, 191, 214, 244, 247, 250, 257, 267, 273], "5": [8, 10, 66, 76, 81, 88, 96, 101, 104, 105, 106, 107, 119, 123, 130, 134, 150, 152, 163, 201, 224, 246, 270, 272, 273], "greatli": [8, 274], "encourag": [8, 73, 119, 253, 265], "consist": [8, 18, 81, 83, 88, 89, 269, 270, 273, 274], "rust": 8, "technologi": [8, 152], "upstream": [8, 59, 119, 123, 130, 136, 177, 190, 264, 269], "period": [8, 267], "downtim": 8, "schedul": 8, "effort": [8, 130, 274], "made": [8, 87, 274], "unschedul": 8, "rare": [8, 121, 135, 137], "treat": [8, 88, 136, 149, 152, 199], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 117, 152, 238, 240], "strong": [8, 73, 83, 150], "uptim": 8, "protect": [8, 61, 118, 152], "transient": 8, "network": [8, 21, 88, 117, 146], "extern": [8, 19, 26, 49, 61, 249, 253, 255, 258, 260, 271], "These": [8, 21, 31, 45, 71, 73, 81, 88, 89, 101, 117, 128, 129, 130, 132, 144, 146, 149, 150, 153, 154, 158, 174, 189, 191, 192, 206, 207, 211, 220, 244, 245, 252, 253, 257, 258, 262, 266, 270, 274], "industri": [8, 78], "financ": 8, "robot": 8, "embed": [8, 73, 81, 82, 119, 136, 152], "stronger": 8, "licens": [8, 36, 56, 73, 94, 99, 100, 101, 108, 128, 129, 130, 131, 133, 161, 238, 243, 249, 253, 261, 265, 271], "medic": 8, "automot": 8, "advis": [8, 137, 138, 150], "instanc": [8, 31, 42, 66, 94, 99, 117, 119, 123, 132, 133, 134, 149, 150, 158, 180, 182, 186, 190, 191, 194, 195, 196, 197, 208, 216, 220, 222, 223, 224, 227, 230, 254, 262], "backport": [8, 203, 274], "suitabl": [8, 152], "review": [8, 66, 256, 257, 259, 266], "tight": 8, "subsect": 8, "come": [10, 58, 61, 130, 150, 158, 186, 191, 211, 220, 239, 245, 258, 274], "glanc": 10, "becom": [10, 61, 83, 128, 129, 178, 271, 274], "unfeas": 10, "benefit": 10, "interest": [10, 13, 73, 87, 89], "pick": [10, 246], "action": [10, 31, 54, 59, 66, 117, 246, 254], "summar": [10, 78, 274], "libpng": [10, 96, 100, 184], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 63, 67, 68, 73, 77, 84, 139, 246, 253, 265, 269], "invoc": [10, 13, 36, 64, 65, 70, 71, 72, 77, 121, 144, 155, 157, 182, 183, 184, 185, 188, 191, 196, 206, 213, 214, 223, 225], "8": [10, 76, 81, 101, 112, 119, 124, 130, 150, 152, 183, 196, 197, 199, 203, 220, 224, 225, 227, 246, 250, 251, 252, 261, 262, 272], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 54, 61, 73, 76, 81, 102, 116, 117, 124, 139, 142, 152, 184, 203, 210, 244, 246, 247, 248], "40": [10, 102, 271], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 52, 76, 81, 88, 105, 123, 124, 130, 145, 149, 150, 152, 201, 244, 272], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 73, 82, 84, 90, 101, 119, 130, 145, 211, 214], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 102, 258], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 82, 84, 99, 102, 123, 152], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 52, 54, 56, 66, 93, 96, 107, 128, 136, 145, 191, 217, 224, 241, 243, 256, 257, 259, 262, 264, 266, 269, 272], "usual": [10, 61, 119, 136, 141, 150, 155, 160, 184, 194, 264, 266, 270], "behaviour": [10, 117, 150, 190, 234, 252, 253, 254], "googl": [11, 42, 43, 54, 65, 79, 88, 149, 179, 203, 213, 214, 215], "ndk": [11, 25, 26, 63, 119, 135, 180, 191, 220, 244], "macro": [11, 37, 45], "modul": [11, 37, 45, 61, 68, 117, 119, 130, 131, 150, 155, 159, 178, 190, 214], "concaten": [13, 90, 115], "11": [13, 24, 56, 76, 84, 87, 88, 94, 98, 101, 102, 111, 112, 119, 130, 136, 145, 149, 150, 151, 152, 159, 184, 190, 196, 197, 203, 206, 211, 214, 224, 227, 243, 244, 245, 246, 247, 248, 250, 251, 257, 261, 262, 265, 272], "sent": 13, "12": [13, 21, 24, 26, 27, 94, 102, 111, 112, 145, 150, 152, 186, 203, 211, 220, 240, 246, 257, 258, 271], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 105], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 102], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 52, 58, 59, 61, 72, 76, 83, 84, 87, 88, 90, 94, 98, 99, 100, 102, 109, 111, 115, 119, 122, 125, 126, 131, 134, 135, 140, 143, 149, 150, 152, 160, 163, 171, 180, 182, 183, 184, 185, 188, 190, 191, 194, 196, 197, 206, 207, 208, 209, 211, 213, 214, 215, 216, 220, 223, 224, 225, 226, 227, 232, 234, 243, 244, 245, 246, 247, 251, 253, 255, 257, 258, 259, 262, 270, 271], "x86_64": [13, 24, 26, 27, 35, 42, 58, 76, 83, 84, 94, 98, 102, 109, 125, 132, 140, 150, 152, 160, 163, 183, 184, 186, 191, 196, 197, 234, 243, 244, 245, 247, 248, 251, 253, 258, 259, 262, 265, 270, 271], "singl": [13, 26, 47, 48, 50, 73, 81, 85, 90, 96, 106, 109, 119, 156, 161, 174, 184, 188, 189, 190, 191, 192, 196, 197, 199, 220, 224, 247, 255, 258, 266, 274], "almost": [13, 81, 85], "myremot": [13, 90, 111, 115, 117, 148, 267, 271], "slow": 13, "promot": 13, "magnitud": 13, "dedupl": 13, "One": [13, 73, 76, 119, 159, 185, 191, 199, 220, 225, 244, 251], "mypkg": [13, 50, 83, 87, 101, 108, 119, 137, 139, 140, 150, 159, 190, 194, 214], "cmake_lib": [13, 27, 82, 87, 108, 189, 253, 258, 271], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 87, 271], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 83, 94, 96, 100, 152], "known": [13, 50, 152, 201, 246, 257, 274], "destruct": 13, "natur": [13, 83, 269, 271], "cannot": [13, 27, 42, 59, 77, 83, 86, 89, 96, 98, 99, 101, 103, 104, 105, 114, 119, 120, 121, 122, 131, 139, 143, 145, 149, 154, 158, 178, 186, 190, 191, 192, 245, 253, 257, 258, 263, 269, 270], "OR": [13, 26, 87, 90, 102, 111, 115, 171, 226, 272], "leav": [13, 26, 83, 97, 111, 117, 130, 149, 152, 267], "subproject": [14, 15, 132, 266], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 243, 244, 245, 246, 247, 248, 250, 251, 252, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 56, 59, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 50, 52, 54, 56, 59, 61, 82, 190, 230, 243, 244, 245, 246, 247, 248, 250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262, 264, 265, 266, 269, 270, 271, 274], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 50, 66, 67, 77, 87, 108, 119, 133, 188, 189, 190, 191, 217, 243, 247, 248, 250, 251, 253, 254, 255, 258, 259, 260, 261, 262, 264, 265, 266, 271, 274], "h": [16, 17, 18, 21, 26, 31, 42, 45, 50, 54, 56, 58, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 133, 158, 199, 243, 244, 245, 250, 251, 252, 253, 254, 257, 258, 260, 261, 262, 264, 265, 266], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 52, 129, 203], "cmake_fil": 16, "real": [17, 26, 59, 73, 78, 115, 135, 142, 199, 269, 273, 274], "editable_compon": 17, "greet": [17, 158, 220], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 50, 52, 54, 58, 59, 82, 99, 102, 108, 119, 130, 158, 178, 188, 189, 190, 191, 213, 220, 241, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 264, 265, 266, 271], "bye": [17, 18, 158, 264, 271], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 52, 58, 59, 77, 128, 129, 178, 191, 230, 253, 255, 257, 259, 266, 271, 273], "src_folder": [17, 19, 189, 217, 265], "dir": [17, 19, 21, 27, 88, 108, 119, 135, 150, 192, 209, 216, 230, 251, 252, 253, 254, 257, 262, 265, 266], "bt": [17, 89], "package_fold": [17, 38, 39, 40, 41, 58, 94, 99, 100, 118, 127, 130, 132, 133, 135, 161, 182, 184, 191, 194, 199, 206, 209, 211, 219, 257, 258, 259, 260], "keep_path": [17, 58, 133, 199, 258, 259, 260], "cmake_file_nam": [17, 135, 190], "myg": 17, "cmake_target_nam": [17, 21, 135, 190, 254], "mygreet": 17, "myhello": [17, 254], "myby": 17, "beyond": 17, "filenam": [17, 48, 50, 86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 108, 114, 150, 160, 162, 195, 199, 201, 219], "besid": [17, 31, 48, 59, 69, 101, 149, 150, 152, 155, 184, 190, 192, 243, 252, 254, 255, 261, 265], "app": [17, 26, 38, 56, 72, 82, 83, 88, 106, 117, 130, 136, 149, 183, 185, 186, 188, 190, 191, 194, 206, 207, 208, 209, 211, 213, 214, 215, 216, 220, 223, 225, 232, 239, 243, 272, 273], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 50, 66, 108, 190, 243, 248, 251, 254, 261, 262], "add_execut": [17, 21, 50, 66, 190, 243, 248, 251, 254, 262], "target_link_librari": [17, 21, 26, 42, 50, 66, 190, 243, 248, 251, 254, 261, 262], "adio": 17, "multiple_subproject": 18, "sibl": [18, 119], "myhead": [18, 201], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 88, 117, 119, 243, 244, 245, 247, 248, 251, 252, 253, 254, 255, 257, 262, 265, 266], "world": [18, 27, 47, 48, 50, 52, 54, 58, 59, 73, 78, 82, 119, 158, 191, 213, 250, 251, 253, 254, 255, 258, 261, 262, 264, 265, 271], "fine": [18, 19, 42, 106, 117, 119, 240, 253], "principl": [18, 269, 270], "must": [18, 58, 59, 61, 65, 77, 87, 103, 104, 106, 117, 119, 125, 126, 128, 129, 134, 139, 149, 150, 156, 157, 158, 162, 167, 174, 188, 190, 199, 203, 206, 208, 210, 230, 243, 246, 247, 248, 253, 254, 270], "third_party_librari": 19, "whose": [19, 85, 86, 89, 96, 98, 99, 101, 105, 114, 139, 150], "mypatch": 19, "sour": 19, "libhello": [19, 27, 52, 250, 251, 252, 254, 255, 258, 260, 261, 262, 265], "archiv": [19, 52, 87, 88, 139, 182, 199, 210, 255, 265], "head": [19, 52, 139, 230, 250, 251, 254, 255, 261, 265, 271], "strip_root": [19, 52, 199, 201, 255, 265], "awar": [19, 39, 40, 61, 67, 90, 96, 109, 125, 126, 147, 230, 250, 251, 252, 254, 255, 258, 261, 265, 274], "branch": [19, 61, 77, 138, 139, 230, 249, 250, 251, 254, 261, 265, 268, 271, 273], "tag": [19, 61, 77, 88, 119, 138, 139, 144, 149, 230, 250, 251, 253, 254, 255, 261, 265, 271, 273], "patch_fil": [19, 52, 203], "7kb": [19, 255, 265], "50": [19, 21, 27, 251, 252, 253, 254, 257, 262, 265, 266], "cmakefil": [19, 21, 27, 251, 252, 253, 254, 257, 262, 265, 266], "libcrypto": [21, 135], "libssl": [21, 135], "abstract": [21, 49, 50, 64, 71, 72, 77, 83, 183, 188, 206, 213, 223, 254], "rest": [21, 73, 83, 96, 107, 149, 150, 199, 202, 211, 238, 239], "game": [21, 108, 269, 270], "algorithm": [21, 201], "ai": [21, 108], "coupl": [21, 29, 122, 243, 251, 254, 262], "package_nam": [21, 108, 145, 184, 234, 239], "component_nam": [21, 190, 192, 214], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 66, 88, 109, 149, 152, 190, 234, 243, 245, 246, 247, 248, 251, 254, 260, 261, 262], "packagetest": [21, 251, 254, 262], "barbarian": [21, 99, 109], "d6e361d329116": 21, "j16": [21, 254], "25": [21, 35, 82, 83, 150, 152, 251, 254, 259, 271], "37": [21, 184], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 251, 254], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 269], "NOT": [21, 26, 119, 139, 178, 190, 231, 251], "stack": 21, "incomplet": [21, 104, 107, 152], "occur": [21, 144, 201], "22": [21, 82, 84, 102, 150, 152, 244, 246, 247, 248, 257, 258], "conanexcept": [21, 36, 59, 200, 201], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 152, 182, 183], "7": [24, 54, 59, 76, 81, 88, 124, 150, 152, 272], "cortexa15t2hf": 24, "rc": [24, 54, 65, 88, 149, 191, 213, 215, 226], "rewrit": [24, 105], "sub": [24, 103, 110, 119, 150, 158, 199, 265], "conan_hom": [24, 36, 77, 99, 109, 147, 149, 150, 151, 152, 159, 160, 161], "myuser": [24, 29, 42, 59, 119, 148, 150, 153], "pkgconan": [24, 150, 219], "gnu98": [24, 152], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 88, 149, 150, 152, 208, 216, 244], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 214], "right": [24, 26, 62, 77, 101, 121, 178, 190, 264, 265, 270, 272], "2023": [24, 78, 82, 84, 102, 271], "02": [24, 84, 102, 206, 271], "16": [24, 88, 102, 145, 149, 150, 152], "06": [24, 246], "42": [24, 83, 88, 102, 119, 178], "10": [24, 45, 54, 59, 88, 102, 116, 149, 150, 152, 220, 246], "utc": [24, 58, 82, 84, 102, 246, 253, 257, 258, 271], "wizard": 26, "myconanappl": 26, "minimum": [26, 119, 140, 220, 253, 261], "suggest": [26, 73, 119, 126], "21": [26, 27, 102, 116, 123, 152, 191, 220], "rememb": [26, 36, 117, 216, 247], "api_level": [26, 27, 152, 220], "standard": [26, 27, 35, 50, 73, 119, 122, 132, 146, 149, 150, 180, 185, 190, 191, 220, 224, 225, 230, 243, 244, 250, 252, 257, 261, 265, 272], "choic": [26, 152, 260], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 52, 78, 208, 215, 251, 261, 271], "zlibvers": [26, 56, 243], "newstringutf": 26, "c_str": 26, "prepar": [26, 77, 115, 121, 130, 142, 177, 235, 244, 249, 253, 265, 274], "my_conan_app": 26, "view": [26, 29, 66, 102, 119, 124, 134, 156, 252], "task": [26, 59, 77, 139, 154, 155, 174, 258, 270, 274], "conaninstal": 26, "element": [26, 31, 77, 96, 97, 111, 224, 225], "conanexecut": 26, "builddir": [26, 38, 41, 50, 94, 99, 135, 190], "mkdir": [26, 59, 82, 198, 258, 271], "armv7": [26, 27, 152, 180, 183, 234], "x86": [26, 27, 87, 88, 90, 102, 111, 115, 149, 152, 171, 186, 199, 223, 227, 234, 270], "n": [26, 36, 42, 45, 52, 54, 56, 152, 162, 189, 223, 230, 243, 245, 250, 251, 261, 271], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 87, 144, 154], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 82, 125, 152, 186, 216, 227, 244, 258, 270], "defaultconfig": 26, "adjust": [26, 27, 132, 182, 190, 191, 208, 209, 211, 252], "focu": [26, 261], "proil": 26, "_static": [26, 27, 152], "14": [26, 27, 58, 76, 99, 102, 108, 109, 119, 150, 152, 163, 211, 227, 243, 244, 245, 253, 257, 261], "ndk_path": [26, 27, 88, 119, 135, 149, 191, 220], "luism": [26, 257, 259], "7075529": 26, "bin": [26, 27, 35, 39, 40, 54, 94, 99, 135, 150, 182, 191, 208, 209, 211, 214, 239, 244, 257, 259, 260], "android31": [26, 27], "llvm": [26, 27, 152], "prebuilt": [26, 27, 82, 98, 249, 256, 265], "darwin": [26, 27, 54, 99, 109, 150], "_share": [26, 27, 152], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 207, 208], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 188, 190, 191, 243, 244, 245, 247, 248, 253, 258, 264, 265, 266], "respons": [26, 39, 40, 50, 58, 61, 67, 76, 88, 93, 101, 118, 119, 121, 126, 135, 137, 138, 149, 161, 199, 203, 220, 230, 253], "android_abi": [26, 179, 191], "exit": [26, 31, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 142], "prematur": 26, "essenti": [26, 45, 73, 150, 151], "absent": 26, "cmake_build_typ": [26, 190, 191], "endif": [26, 52, 245, 250, 251, 254, 261], "strequal": [26, 251], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 50, 88, 130, 149, 188, 190, 191, 243, 244, 245, 247, 248, 253, 258, 264, 265, 266], "elseif": 26, "v8a": [26, 180], "armeabi": [26, 180], "v7a": [26, 180], "Not": [26, 77, 94, 99, 119, 126, 130, 149, 157, 243, 248, 255, 269], "add_librari": [26, 42, 50, 254, 260, 261], "virtual": [26, 61, 73, 117, 150, 245, 248, 252], "devic": [26, 27], "pair": [26, 117], "qr": 26, "click": [26, 29, 66, 211, 239], "brew": [27, 61, 88, 149, 233], "usr": [27, 117, 150, 210, 244], "choos": [27, 119, 190, 206, 234, 243, 261], "fit": [27, 78, 85, 186, 270], "balanc": [27, 81], "mingw": [27, 152, 242, 248], "ninja": [27, 77, 83, 88, 101, 107, 123, 130, 144, 149, 188, 191, 220, 248, 259], "provis": 27, "w": [27, 144, 162], "r23b": 27, "unless": [27, 73, 87, 101, 111, 115, 117, 119, 128, 129, 149, 154, 203, 224, 243, 267], "know": [27, 31, 50, 81, 89, 93, 119, 143, 152, 158, 190, 206, 245, 252, 254, 259, 266, 273], "bare": [29, 73, 253], "symbol": [29, 66, 78, 147, 182, 191], "box": [29, 266], "consuming_packag": [29, 243, 244, 245, 246, 247, 248], "simple_cmake_project": [29, 243], "finish": [29, 54], "successfulli": [29, 54, 67, 244, 254, 262, 264], "23": [29, 47, 48, 89, 101, 105, 123, 145, 152, 191, 257, 258, 259, 264, 265, 266, 271], "compressor": [29, 35, 56, 190, 243, 244, 245, 247, 248], "sln": [29, 58, 71, 223], "solut": [29, 58, 71, 73, 77, 117, 132, 136, 224, 225, 238, 240, 269], "startup": 29, "breakpoint": 29, "void": [29, 42, 52, 56, 243, 245, 250, 261, 271], "deflateinit": [29, 56, 243], "defstream": [29, 56, 243], "z_best_compress": [29, 56, 243], "deflat": [29, 56, 243], "z_finish": [29, 56, 243], "f5": 29, "stop": [29, 101, 191], "Into": 29, "navig": [29, 66, 239], "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, 56, 243], "inspir": 30, "agnost": [30, 33, 50, 101, 160], "enough": [31, 50, 59, 61, 77, 93, 123, 130, 134, 149, 150, 154, 192, 247, 260, 269], "cmd_clean": 31, "your_conan_hom": [31, 158, 266], "Will": [31, 39, 40, 86, 89, 90, 96, 98, 99, 101, 105, 107, 111, 114, 119, 130, 139, 163, 182, 185, 190, 191, 195, 220, 234], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 158, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177], "conanoutput": [31, 158], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "add_argu": [31, 158], "store_tru": 31, "parse_arg": [31, 158], "request_boolean": 31, "non_interact": [31, 88, 148, 149, 154], "output_remot": 31, "writeln": 31, "fg": [31, 250, 261], "all_rrev": 31, "recipe_revis": [31, 81, 119, 246], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 81], "latest_prev": 31, "argpars": [31, 158], "argumentpars": [31, 158], "visit": [31, 83, 85, 106, 117, 121, 239], "websit": [31, 158], "proce": [31, 42, 245], "translat": [31, 66, 71, 72, 76, 135, 185, 191, 208, 220, 224, 225, 247, 253, 254], "bg": 31, "font": 31, "foreground": 31, "background": [31, 154], "apart": [31, 54, 214], "predefin": [31, 47, 85, 108, 123, 145, 179, 191, 264, 266], "success": [31, 119, 144], "remoteregistri": 31, "searchapi": [31, 164, 176], "listapi": [31, 164, 171], "removeapi": [31, 164, 175], "deserv": [31, 149], "especi": [31, 61, 119, 149, 258, 263, 274], "attent": [31, 149, 260], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 61], "elsewher": [35, 50, 119, 138], "place": [35, 36, 42, 50, 58, 76, 83, 99, 115, 119, 121, 123, 135, 147, 159, 161, 178, 194, 199, 247, 253, 258, 259, 260, 272], "conanbuild": [35, 45, 54, 130, 135, 150, 188, 194, 195, 196, 206, 208, 227, 244, 247, 248, 259, 265], "17": [35, 58, 66, 82, 88, 102, 116, 149, 150, 152, 215, 253, 257, 258], "2022": [35, 66, 78, 102, 116, 152, 246, 257, 258], "big": [35, 117, 128, 152], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 188, 190, 243, 244, 245, 247, 248, 258, 264, 265, 266], "fact": [35, 50, 117, 252], "ticket": 35, "manual": [35, 45, 58, 66, 87, 103, 104, 106, 117, 130, 136, 270, 273], "cwd": [36, 101, 108, 137, 138, 144, 160, 173], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 108, 121, 224], "dependencies_sourc": 36, "preprocess": 36, "accomplish": [36, 191], "source_deploi": 36, "kwarg": [36, 157, 160, 162, 203, 234], "robust": [36, 157], "dependency_sourc": 36, "iter": [36, 101, 106, 156, 160, 162, 191, 193], "said": [36, 252, 270], "advanc": [37, 39, 40, 66, 73, 78, 119, 136, 150, 187, 192, 230, 238, 239, 270, 274], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 89, 104, 105, 106, 107, 120, 130, 136, 150, 190, 211, 214, 244, 246, 247, 259, 270], "different_opt": 39, "myoption": [39, 119, 122, 142], "echo": [39, 40, 157, 178, 259], "off": [39, 40, 62, 67, 159, 191, 215, 251, 265], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 59, 77, 117, 119, 134, 135, 139, 178, 191, 247, 253, 262, 267], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 162, 191, 195], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 54, 119, 151, 178, 190, 206, 214, 216, 243, 251, 254, 262], "anyth": [39, 40, 73, 77, 197, 234, 244, 258, 259, 262, 271, 274], "identifi": [39, 40, 68, 80, 82, 84, 111, 119, 120, 245, 252, 259, 266, 272], "construct": [39, 40], "Of": [39, 40, 73, 269], "cours": [39, 40, 269], "invis": [39, 40], "exactli": [39, 40, 50, 73, 81, 130, 132, 134, 156, 234, 259], "disambigu": [39, 40, 149, 190, 211], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 119, 178], "cmake_build_modul": [41, 190], "tc": [41, 48, 58, 119, 130, 152, 185, 188, 191, 207, 208, 215, 220, 225, 226, 232, 251, 253, 255, 259, 261, 265], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 50, 135, 190], "build_context": [41, 190, 222], "behav": [42, 206, 245], "protobuf": [42, 119, 123, 135, 190, 211], "perhap": 42, "pb": 42, "nonetheless": [42, 257], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 119, 120, 126, 130, 249, 252, 253, 255], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 50, 260, 261], "build_interfac": [42, 50], "cmake_current_source_dir": 42, "cmake_current_binary_dir": [42, 50], "install_interfac": [42, 50], "set_target_properti": [42, 50, 254, 260, 261], "public_head": [42, 50, 260, 261], "iostream": [42, 119, 261], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 149], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 52, 261, 271], "alloc": [42, 214], "shutdownprotobuflibrari": 42, "simpli": [42, 65, 150, 216, 217, 264], "argc": [42, 203], "argv": [42, 203], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 99, 105], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 94, 102], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 66, 87, 251, 257], "notic": [42, 50, 66, 88, 119, 151, 158, 208, 211, 213, 214, 219, 220, 245, 250, 251, 252, 261], "arm": [42, 83, 152, 223, 244, 247], "mach": 42, "64": [42, 152, 186, 216, 227, 244, 270], "bit": [42, 50, 52, 59, 125, 135, 150, 152, 158, 186, 199, 227, 244, 253, 258, 262, 273], "arbitrari": [43, 46, 50, 66, 73, 104, 106, 134, 155, 272], "bazel": [43, 53, 60, 62, 88, 108, 149, 179, 212, 214, 215, 243], "popular": [45, 54, 56, 62, 69, 73, 152, 234, 243], "fmt": [45, 54, 105, 250, 251, 252, 261, 262], "mac": [45, 186, 262], "string_formatt": [45, 54], "ac": 45, "www": [45, 99, 100, 117, 119, 274], "org": [45, 61, 99, 100, 119, 149, 201], "softwar": [45, 99, 216, 234, 274], "autoconf": 45, "60": [45, 54], "html_node": 45, "configure_002eac": 45, "_": [45, 77, 119, 150, 154, 159, 179, 185, 211, 224, 258], "cstdlib": [45, 54], "exit_success": [45, 54, 56, 243, 245], "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, 117, 199], "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, 61, 77, 83], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 208], "conanbuildenv": [45, 196, 259, 265], "conanrun": [45, 54, 135, 141, 150, 188, 195, 197, 245, 262, 265], "conanrunenv": [45, 197, 265], "deactivate_conanbuild": [45, 196, 244, 247, 248, 265], "deactivate_conanrun": [45, 245, 265, 266], "_fmt": 45, "run_exampl": 45, "u": [45, 73, 76, 86, 89, 96, 98, 99, 101, 105, 114, 123, 247, 255], "ldflag": [45, 119, 135, 149, 150, 207, 208, 220, 226], "pkg_config_path": [45, 208, 210, 220], "m4": 45, "second": [45, 59, 82, 88, 117, 119, 133, 149, 184, 201, 252, 259], "cmake_ex": [47, 82, 108], "foo": [47, 48, 49, 90, 117, 119, 132, 190, 191, 195, 199, 208, 210, 226], "correspond": [47, 66, 119, 191, 196, 197, 208, 211, 222, 245, 252, 254], "binarydir": 47, "everytim": [47, 48, 244, 264, 265, 266], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 191], "displaynam": 48, "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 80, 123], "appconan": 49, "myvar1": [49, 150, 194], "my_user_var1": 49, "myvar": [49, 119, 135, 150, 178, 191, 194, 220, 259], "myprofil": [49, 101, 109, 150], "profile_dir": [49, 150], "evalu": [49, 81, 100, 101, 103, 105, 109, 117, 119, 128, 130, 136, 142, 149, 153, 169, 247, 270], "myvalue1": [49, 194], "system_nam": [49, 88, 149, 191], "usabl": [50, 152], "aren": 50, "fair": [50, 78], "vendor": [50, 93, 153], "happili": 50, "pkg_config_fil": 50, "pkgrecip": [50, 272, 273], "three": [50, 119, 132, 149, 185, 194, 225, 234], "mylib": [50, 119, 123, 150, 191, 208, 274], "project_source_dir": 50, "cmake_install_includedir": [50, 191], "mypkgconfig": 50, "namespac": [50, 77, 190, 206, 208, 251], "destin": [50, 127, 128, 129, 199, 201, 224, 253], "cmake_install_prefix": [50, 191, 260], "_m_x64": [50, 58], "runtim": [50, 58, 73, 78, 119, 123, 135, 150, 152, 163, 194, 197, 206, 208, 220, 222, 225, 226, 245, 262], "multithreadeddl": [50, 58], "_msc_ver1939": [50, 58], "_msvc_lang201402": [50, 58], "__cplusplus199711": [50, 58, 253, 255, 258], "switch": [50, 135, 163, 184, 224, 225], "viceversa": 50, "inconveni": [50, 264], "trivial": 50, "transtiv": 50, "simplest": [52, 121, 255, 260, 273], "hellorecip": [52, 59, 250, 251, 252, 253, 254, 255, 258, 261, 265, 271], "friend": [52, 251], "rule": [52, 81, 87, 117, 118, 119, 134, 153, 155, 156, 208, 211, 214, 267, 269, 272], "ifdef": [52, 245, 250, 261, 271], "ndebug": [52, 208, 245, 250, 261, 271], "hello_patch": 52, "conan_data": [52, 59, 128, 130, 203, 255], "complex": [52, 78, 119, 131, 150, 178, 199, 222, 272], "bazeltoolchain": [54, 65, 108, 179, 212, 213], "workspac": [54, 65, 91, 214, 259], "demo": [54, 59, 78, 117], "charg": [54, 133], "bzl": [54, 65, 214], "load_conan_depend": [54, 214], "rules_cc": [54, 214], "cc_binari": 54, "bazeldep": [54, 65, 108, 179, 212], "bazel_layout": [54, 145, 214], "conan_bzl": [54, 65, 213, 215], "franchuti": [54, 94], "bazelrc": [54, 88, 149, 213, 215], "38": [54, 99, 258], "272": 54, "lc": 54, "date": 54, "elaps": 54, "180": [54, 152], "critic": [54, 87, 253, 271], "68": [54, 98, 102], "sandbox": 54, "total": [54, 101, 145, 149, 152, 195, 251, 257], "simple_meson_project": 56, "stdlib": [56, 152, 191, 208, 243, 245], "stdio": [56, 243], "buffer_in": [56, 243], "256": [56, 201, 243], "mit": [56, 73, 108, 119, 131, 238, 243, 271], "easili": [56, 59, 76, 83, 117, 121, 122, 135, 139, 153, 160, 191, 192, 243, 251, 273, 274], "buffer_out": [56, 243], "z_stream": [56, 243], "zalloc": [56, 243], "z_null": [56, 243], "zfree": [56, 243], "opaqu": [56, 243], "avail_in": [56, 243], "uint": [56, 243], "strlen": [56, 243], "bytef": [56, 243], "avail_out": [56, 243], "sizeof": [56, 243], "next_out": [56, 243], "deflateend": [56, 243], "printf": [56, 243, 245], "size": [56, 78, 195, 243, 245, 247, 248, 267], "lu": [56, 243], "conan_meson_": 56, "ini": [56, 70, 219, 243], "conan_meson_n": [56, 219], "233": [56, 243, 245, 247, 248], "147": [56, 243, 245, 247, 248], "haven": [58, 66, 81, 97, 254, 264, 267], "familiar": 58, "concept": [58, 75, 82, 242, 252, 266, 268, 270], "creation": [58, 73, 77, 120, 152, 161, 230, 246], "msbuild_lib": [58, 108], "vcxproj": 58, "test_hello": [58, 251, 254], "vs_layout": [58, 145, 179, 217, 221], "briefli": [58, 149, 236, 252, 253], "parametr": [58, 108], "conantoolchain": [58, 185, 225], "prop": [58, 71, 130, 190, 224, 225], "sheet": [58, 60, 74], "receiv": [58, 59, 76, 83, 103, 123, 156, 157, 158, 161, 162, 163, 192, 220, 230, 253, 259, 267, 272], "act": [58, 158], "accordingli": [58, 119], "importgroup": 58, "label": [58, 73, 94, 99, 100, 213, 214, 225], "propertysheet": 58, "x64": [58, 83, 132, 152, 223], "856c535669f78da11502a119b7d8a6c9": 58, "2024": [58, 253], "03": [58, 152, 246, 253, 271], "04": [58, 102, 152, 253], "52": [58, 82, 84, 253], "39": [58, 102, 246, 253, 258], "c13a22a41ecd72caf9e556f68b406569547e0861": 58, "dynam": [58, 84, 102, 119, 120, 137, 138, 150, 152, 161, 163, 178, 220, 244, 245, 247, 273, 274], "193": [58, 84, 152], "pragmat": 59, "someon": [59, 270], "coordin": [59, 139, 199, 230], "who": [59, 272], "tri": [59, 98, 163, 243, 246], "capture_scm": 59, "update_conandata": [59, 198], "scm_url": 59, "scm_commit": 59, "checkout": [59, 61, 76, 77, 230, 250, 251, 254, 255, 261, 271], "myfold": [59, 101, 199], "m": [59, 61, 88, 90, 102, 111, 115, 149, 188, 196, 197, 210, 223, 224, 227, 251, 257, 273], "wip": 59, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 59, "buildabl": 59, "techniqu": 59, "imposs": [59, 82, 83, 150, 269, 270], "squash": 59, "19": [59, 76, 102, 152, 258], "xdf": [59, 264], "gitignor": [59, 230], "anywai": [59, 119], "encod": [59, 153, 199, 225, 271], "password": [59, 110, 117, 148, 153, 154, 174, 201, 239], "repeat": [59, 73, 119, 189, 196, 197, 258, 267], "consequ": [59, 96], "orthogon": [59, 155, 161, 274], "ssh": [59, 153], "actor": 59, "ubuntu": [59, 73, 152, 234, 244], "v3": [59, 152, 248], "secret": [59, 117, 153, 154], "ssh_private_kei": 59, "v4": [59, 152], "webfactori": 59, "v0": [59, 240], "privat": [59, 73, 76, 77, 117, 131, 135, 149, 153, 178, 179, 238, 239, 240, 253, 261], "care": [59, 83], "riski": 59, "disclos": 59, "welcom": 60, "decentr": 60, "blog": [60, 66, 75, 274], "social": 60, "mail": 60, "tracker": [60, 73], "question": [60, 73], "tabl": 60, "introduct": [60, 62, 106, 136, 146, 155, 235, 239, 242, 250, 258, 270, 274], "devop": 60, "clion": [60, 62, 191], "jfrog": [60, 62, 73, 78, 239], "cheat": [60, 74], "faq": [60, 73, 74, 119, 271], "video": [60, 73, 74, 269], "changelog": 60, "solari": [61, 73, 234], "suno": [61, 73, 152], "modern": [61, 76, 130, 203, 261, 274], "carefulli": 61, "sudo": [61, 88, 119, 135, 149, 234], "virtualenv": [61, 88, 149, 195, 196, 197, 227, 248], "virtualenvwrapp": 61, "readthedoc": 61, "en": [61, 76, 199, 274], "venv": 61, "restart": [61, 66], "logout": [61, 85, 174], "termin": [61, 73, 88, 102, 149, 157], "upgrad": [61, 190, 269, 274], "inconsist": 61, "somehow": 61, "userhom": 61, "attempt": [61, 66, 77, 88, 130, 139, 149, 152, 201], "yield": 61, "xyz": 61, "mark": [61, 66, 142], "interfer": 61, "pep": 61, "668": 61, "isol": [61, 77, 265, 270, 272], "isn": [61, 66], "debian": [61, 73, 152, 201, 234], "ensurepath": 61, "number": [61, 68, 73, 88, 115, 134, 149, 152, 186, 189, 201, 203, 222, 223, 234, 257, 258, 272, 273, 274], "gatekeep": 61, "quarantin": 61, "browser": 61, "curl": [61, 66], "wget": 61, "util": [61, 66, 76, 84, 92, 115, 119, 139, 182, 191, 195, 199, 206, 234, 244, 260], "interpret": [61, 149, 178, 244], "conan_src": 61, "develop2": 61, "beta": [61, 119, 272], "matter": [61, 101, 143, 149, 154, 204, 258, 269, 274], "seamless": 62, "shelf": [62, 67, 159], "though": [62, 89, 102, 117, 119, 133, 149, 240, 246, 272], "yet": [62, 66, 81, 94, 98, 99, 130, 132, 158, 169, 207, 254], "resum": 62, "enhanc": 62, "autotoolsdep": [64, 179, 205], "wrapper": [64, 65, 70, 71, 72, 79, 144, 155, 182, 183, 188, 190, 201, 206, 213, 223, 230, 234, 253], "jetbrain": 66, "marketplac": 66, "brows": 66, "conan_provid": 66, "cmake_project_top_level_includ": 66, "bear": [66, 251], "mind": [66, 243, 251, 262], "24": [66, 101, 150, 152, 206, 240, 258], "button": [66, 239], "appear": [66, 158, 160, 239, 265], "bottom": 66, "toolbar": 66, "wheel": 66, "checkbox": 66, "sequenti": [66, 73], "uncheck": 66, "disappear": 66, "libcurl": 66, "internet": [66, 99, 153, 258, 274], "along": [66, 67, 87, 119, 190, 252], "ey": 66, "icon": 66, "snippet": 66, "project_nam": [66, 190, 243, 248], "cmake_cxx_standard": [66, 191], "reload": [66, 117], "recollect": [68, 139], "down": [68, 81, 82, 251, 257, 271], "segment": 68, "histori": 68, "servic": [68, 237], "offer": [68, 119, 150], "dedic": [68, 73, 89, 110, 115, 123, 247, 271], "sf": [68, 88], "art": 68, "tf": [68, 82, 88, 89, 93, 251, 252, 260], "create_releas": 68, "mybuildname_releas": 68, "my_artifactori": 68, "mybuildname_aggreg": 68, "readme_build_info": 68, "md": [68, 119, 128, 129, 225, 265, 274], "bsd": 69, "maketoolchain": 69, "myproject": [71, 223], "xcodebuild": [72, 179, 181, 184], "xcodetoolchain": [72, 179, 181, 184], "xcodeproj": [72, 183], "mobil": 73, "metal": 73, "scon": [73, 79, 179], "acceler": 73, "matur": [73, 119], "polici": [73, 76, 119, 178, 190, 191, 258, 267], "creator": [73, 76, 85, 109, 158, 246], "thousand": [73, 78], "compani": [73, 78, 119, 161, 238, 239], "high": [73, 107, 129, 201], "consol": [73, 144, 220, 227, 230, 245], "logic": [73, 77, 120, 125, 126, 130, 134, 139, 152, 156, 159, 184, 185, 191, 217, 247, 267, 270, 272], "webui": [73, 239], "protocol": [73, 119], "ldap": [73, 117], "topologi": 73, "conan_serv": [73, 117, 240], "boost": [73, 101, 135, 145, 149, 157, 190], "poco": [73, 130, 139, 145], "signific": 73, "truth": [73, 78], "redhat": 73, "archlinux": 73, "raspbian": [73, 234], "desktop": 73, "likewis": [73, 123, 126, 134, 135, 139, 270, 272, 273], "onward": 73, "goal": [73, 122, 134, 141], "evolv": [73, 152, 178, 246, 268], "backward": [73, 96], "incompat": [73, 123, 152, 178, 264], "disrupt": [73, 270], "preview": [73, 102, 124, 147, 156, 160, 162, 190, 199, 267], "year": [73, 78, 274], "life": [73, 78, 273], "eol": 73, "tomtom": 73, "audi": 73, "rti": 73, "continent": 73, "plex": 73, "electrolux": 73, "merced": 73, "benz": 73, "amaz": 73, "5k": 73, "star": 73, "count": 73, "300": 73, "cpplang": [73, 76], "slack": [73, 76], "discuss": [73, 149, 169], "discord": 73, "plai": [73, 119, 186], "exercis": 73, "narr": 73, "explan": [73, 80, 98, 105, 119, 134, 152], "conduct": 73, "thread": [73, 88, 115, 149, 152], "bad": [73, 139, 220, 255, 271], "confer": [73, 78], "talk": [73, 78], "evolut": [73, 270], "troubleshoot": 74, "handi": [75, 119, 189, 255], "pdf": 75, "png": [75, 100, 108], "post": [75, 155, 161, 260, 274], "goe": [75, 270], "behind": [76, 117], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [76, 102, 253, 265], "gnu11": [76, 152, 245, 253], "precompil": [76, 87, 101, 119, 133, 135, 214, 235, 258], "mayb": [76, 190, 252, 260], "influenc": [76, 119, 245], "overcom": 76, "agre": 76, "spell": [76, 152], "submit": [76, 130, 237], "Such": [76, 77, 246, 274], "httpconnect": 76, "debuglevel": 76, "netrc": 76, "honor": 76, "crlf": [76, 77, 271], "lf": [76, 271], "gitattribut": 76, "gitconfig": 76, "editor": 76, "notepad": 76, "playground": 77, "colleagu": 77, "kept": 77, "kind": [77, 106, 117, 128, 129, 152, 153, 154, 161, 239, 258, 272], "unit": [77, 121, 134, 141, 251, 253, 262], "among": [77, 81, 119, 133, 135, 152, 199, 225, 246, 247], "convert": [77, 108, 135, 182, 204, 252, 260], "flat": [77, 178, 199], "strictli": [77, 93, 119, 123, 135, 208, 247, 253, 269], "extrem": [77, 272], "complic": [77, 119, 136], "workaround": [77, 136, 269], "Its": [77, 108, 119, 136, 156, 234], "whenev": [77, 119, 128, 136, 139, 150, 186, 251], "abus": [77, 131, 259], "entrant": 77, "undefin": [77, 83, 104, 106, 163, 199, 253, 255], "indirect": [77, 136], "reserv": [77, 83, 118, 191], "_conan": [77, 117, 118], "sens": [77, 93, 104, 126, 137, 150, 152, 230, 245, 252], "rewritten": 77, "checksum": [77, 84, 87, 119, 179, 198, 201, 271], "educ": 78, "outdat": 78, "accu": 78, "diego": 78, "rodriguez": 78, "losada": 78, "cppcon": 78, "watch": [78, 274], "grow": [78, 274], "lesson": [78, 274], "challeng": [78, 154], "trend": 78, "ten": 78, "largest": 78, "why": [78, 95, 98, 252, 257, 259], "lui": 78, "caro": 78, "campo": 78, "quick": 78, "overview": [78, 119], "intrins": [78, 128], "visibilitybinari": 78, "half": 78, "battl": 78, "meet": 78, "onlin": 78, "book": 78, "chri": 78, "mcarthur": 78, "fall": [81, 273], "ill": 81, "form": [81, 87, 90, 98, 102, 108, 111, 115, 117, 119, 123, 128, 129, 135, 139, 141, 234, 246, 247, 253, 271, 272], "taken": [81, 119, 133, 152, 178, 191], "eras": [81, 134], "del": [81, 125, 134, 143, 252, 253, 255, 259], "gcc5": 81, "lost": [81, 96], "default_xxx": 81, "default_build_mod": [81, 88, 149], "default_embed_mod": [81, 88, 149], "full_mod": [81, 82, 88, 119, 149, 274], "default_non_embed_mod": [81, 88, 149], "minor_mod": [81, 82, 88, 119, 136, 149, 178, 274], "default_python_mod": [81, 88, 149, 178], "default_unknown_mod": [81, 88, 149], "semver_mod": [81, 88, 119, 149], "confus": [81, 272], "safeti": 81, "emb": [81, 230], "package_id_xxxx_mod": 81, "package_id_embed_mod": [81, 119], "package_id_non_embed_mod": [81, 119], "package_id_unknown_mod": [81, 119], "patch_mod": [81, 119, 178], "package_id_": 81, "non_emb": 81, "_mode": 81, "package_id_mod": [81, 94, 119, 252, 274], "differenti": [81, 152, 244], "expand": [81, 84, 126, 134, 147], "major_mod": [81, 119], "inlin": [82, 84, 257], "pure": [82, 135, 185, 191, 208, 215, 220, 225, 226, 258], "linker": [82, 88, 99, 135, 149, 185, 191, 206, 208, 215, 220, 225, 226, 244, 245], "8879e931d726a8aad7f372e28470faa1": [82, 84], "09": [82, 84, 102, 246], "54": [82, 84], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [82, 84], "z": [82, 83, 84, 98, 119, 178, 209, 253], "quickli": [82, 93, 258], "632e236936211ac2293ec33339ce582b": 82, "34": [82, 257, 271], "3ca530d20914cf632eb00efbccc564da48190314": 82, "d125304fb1fb088d5b92d4f8135f4dff": 82, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": [82, 253], "bump": [82, 178, 246, 274], "moon": [82, 158], "1c90e8b8306c359b103da31faeee824c": 82, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 82, "rebuilt": [82, 269, 271], "wil": 82, "49": [82, 102], "embed_mod": 82, "new_subset": 83, "subvalue1": 83, "subvalue2": 83, "new_root_set": 83, "value1": [83, 119, 150], "value2": [83, 119, 150], "implictli": 83, "explicilti": 83, "implicitli": [83, 119, 152, 178], "build_test": [83, 89, 119, 191, 251], "option2": [83, 119], "option1": [83, 119], "wherebi": 83, "therebi": 83, "comment": [83, 102, 108, 147, 152, 156, 163, 190, 262, 269], "tune": [83, 253], "realli": [83, 89, 126, 152, 264, 269, 273], "retri": [83, 88, 148, 149, 199, 201], "spirit": 83, "myconf": [83, 119, 132, 134, 135, 149, 150], "myitem": [83, 134], "settings_build": [83, 86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 119, 130, 259], "outcom": [83, 215], "irrelev": [83, 145], "reflect": [83, 182, 246], "97d5730b529b4224045fe7090592d4c1": [84, 102], "08": [84, 102, 271], "51": [84, 102, 272], "57": [84, 102], "d62dff20d86436b9c58ddc0162499d197be9de1": [84, 96, 102], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [84, 102], "sha1": [84, 200, 201, 244], "cat": [84, 104, 105, 106, 107, 207, 245, 270], "compilerruntim": 84, "compilerruntime_typ": 84, "sha1sum": [84, 200], "386": 84, "seen": [84, 180, 246, 269, 273], "worthi": 85, "core_conf": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "deployer_fold": [86, 99, 101], "nr": [86, 89, 91, 92, 93, 96, 98, 99, 100, 101, 105, 114], "profile_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 169], "profile_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114, 169], "profile_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "options_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "settings_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "settings_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_build": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_host": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "conf_al": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "lockfile_out": [86, 89, 92, 93, 96, 98, 99, 101, 104, 105, 106, 107, 114], "lockfile_overrid": [86, 89, 93, 96, 98, 99, 101, 105, 114], "posit": [86, 87, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 102, 103, 105, 108, 110, 111, 112, 113, 114, 115, 174], "vquiet": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "verror": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vwarn": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 144], "vnotic": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 144], "vstatu": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vverbos": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "vdebug": [86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116], "disallow": [86, 89, 96, 98, 99, 101, 105, 114], "fnmatch": [86, 88, 89, 96, 98, 99, 101, 105, 110, 114, 119, 199, 230], "wildcard": [86, 89, 90, 96, 98, 99, 100, 101, 102, 105, 110, 112, 114, 174, 199], "satisfi": [86, 89, 96, 98, 99, 101, 105, 114, 150, 246], "with_qt": [86, 89, 93, 96, 98, 99, 101, 105, 109, 114], "cdc0d9d0e8f554d3df2388c535137d77": 87, "5cb229164ec1d245": 87, "conanmanifest": [87, 162, 243, 248], "liter": [87, 108, 150, 178], "ident": [87, 119, 134, 178, 241, 245], "1cae77d6250c23b7": 87, "al": 87, "eventu": [87, 190], "extract": [87, 127, 135, 148, 199, 210, 255, 260], "package_queri": [87, 90, 102, 111, 115], "AND": [87, 90, 102, 111, 115, 171], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 87, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 87, "verify_ssl": [88, 151], "target_fold": 88, "origin2": 88, "target2": 88, "submodul": 88, "conan_config": [88, 184, 185], "recurs": [88, 147, 199], "deduc": [88, 119, 189, 195, 197, 201, 202, 226, 273], "verif": [88, 149, 201], "certif": [88, 117, 151, 201], "my_set": 88, "retry_wait": [88, 149, 201], "wait": [88, 149, 201], "gzip": [88, 149, 199], "compresslevel": [88, 149], "cacert_path": [88, 117, 149], "cacert": [88, 117, 149], "clean_system_proxi": [88, 149], "proxi": [88, 117, 149], "client_cert": [88, 149], "tupl": [88, 119, 131, 149, 150, 199, 201, 230], "cert": [88, 149], "max_retri": [88, 149], "maximum": [88, 117, 119, 149, 186, 223, 253, 261], "no_proxy_match": [88, 149], "timeout": [88, 149], "allow_uppercase_pkg_nam": [88, 149], "temporarili": [88, 149, 150, 154], "uppercas": [88, 149, 154], "default_build_profil": [88, 149, 154], "default_profil": [88, 149, 154], "cmake_android_ndk": [88, 149], "enable_arc": [88, 149, 191], "arc": [88, 149, 191], "enable_bitcod": [88, 149, 191], "bitcod": [88, 149, 191], "enable_vis": [88, 149, 191], "sdk_path": [88, 149, 182, 183, 191, 220], "can_run": [88, 121, 141, 149, 262], "objc": [88, 149, 191, 220], "objcxx": [88, 149], "fortran": [88, 149, 191, 208], "asm": [88, 149, 152, 191, 226], "hip": [88, 149, 191], "ispc": [88, 149, 191], "exelinkflag": [88, 94, 99, 135, 149, 185, 191, 208, 215, 220, 225, 226], "cmake_exe_linker_flags_init": [88, 149, 191], "jx": [88, 149], "mp": [88, 149, 191], "linker_script": [88, 149, 191, 208, 215, 220], "sharedlinkflag": [88, 94, 99, 135, 149, 185, 191, 208, 215, 220, 225, 226], "cmake_shared_linker_flags_init": [88, 149, 191], "skip_test": [88, 121, 149, 191, 213, 251, 257], "sysroot": [88, 94, 99, 149, 182, 191, 208, 220], "find_package_prefer_config": [88, 149], "cmake_find_package_prefer_config": [88, 149, 191], "presets_environ": [88, 149, 191], "wether": [88, 149], "system_processor": [88, 149, 191], "cmake_system_processor": [88, 149, 191], "system_vers": [88, 149, 191], "cmake_system_vers": [88, 149, 191], "toolchain_fil": [88, 149, 150, 191], "toolset_arch": [88, 149, 191], "toolset": [88, 149, 152, 191, 216, 222], "cmake_generator_toolset": [88, 149, 191], "toolset_cuda": [88, 149, 191], "install_strip": [88, 149, 188], "strip": [88, 96, 149, 182, 188, 199, 203, 220, 230, 244], "launcher": [88, 149, 195, 196, 197, 207, 208, 227, 259, 262], "define_libcxx11_abi": [88, 149], "glibcxx_use_cxx11_abi": [88, 149], "host_triplet": [88, 149], "pkg_config": [88, 149, 210, 211, 220], "bazelrc_path": [88, 149, 213], "rcpath1": [88, 149, 213], "config1": [88, 149, 213], "installation_path": [88, 149, 216, 227], "setvars_arg": [88, 149, 216], "onto": [88, 149], "setvar": [88, 149, 216], "backend": [88, 117, 149, 220], "vs2010": [88, 149, 220], "vs2012": [88, 149], "vs2013": [88, 149], "vs2015": [88, 149, 220], "vs2017": [88, 149, 216, 220], "extra_machine_fil": [88, 149, 219], "bash": [88, 119, 149, 227, 240], "msy": [88, 149, 152, 240], "cygwin": [88, 149, 152], "wsl": [88, 149, 152], "sfu": [88, 149], "2019": [88, 149, 152, 216, 227], "max_cpu_count": [88, 135, 149, 150, 188, 223], "vs_version": [88, 149, 150, 152], "exclude_code_analysi": [88, 149, 224], "suppress": [88, 149, 191], "compile_opt": [88, 119, 135, 149, 225], "sudo_askpass": [88, 149, 234], "yum": [88, 149, 233], "pacman": [88, 149, 233], "choco": [88, 149, 234], "zypper": [88, 149, 233], "pkgutil": [88, 149, 233], "30": [88, 96, 102, 258], "test_fold": [89, 93, 251], "serv": [89, 117, 239, 245], "misus": 89, "mutual": [90, 101, 111, 115], "packagelist": [90, 115], "pgkg": 90, "resid": [91, 109], "my_project": [91, 96, 98, 99, 101, 105], "variou": [92, 136, 152, 265], "sb": 93, "this_pkg": 93, "slower": [93, 128], "y": [93, 98, 119, 253], "binary_remot": 94, "invalid_build": [94, 99], "homepag": [94, 99, 100, 130], "win_bash_run": 94, "options_descript": 94, "options_definit": [94, 100], "generators_fold": [94, 99, 100, 130, 190, 191, 224], "srcdir": [94, 99, 135], "resdir": [94, 99, 135, 191, 208, 220], "frameworkdir": [94, 99, 135], "framework": [94, 99, 123, 135, 136, 211, 224, 232, 244, 251, 259], "ffa77daf83a57094149707928bdce823": [94, 102], "1440f4f447208c8e6808936b4c6ff282": 94, "dc0e384f0551386cd76dc29cc964c95": [94, 98], "1703667991": 94, "3458598": 94, "1703668372": 94, "8517942": 94, "massiv": [94, 99], "spiffi": [94, 99], "delic": [94, 99], "unobtrus": [94, 99], "unencumb": [94, 99], "patent": [94, 99], "zlib774aa77541f8b": 94, "resolved_rang": 94, "replaced_requir": 94, "closest": [95, 98], "annot": 96, "doesnt": 96, "preserv": 96, "absenc": 96, "order_bi": 96, "06023034579559bb64357db3a53f88a4": 96, "54b9c3efd9ddd25eb6a8cbf01860b499": 96, "build_arg": 96, "ed8593b3f837c6c9aa766f231c917a5b": 96, "60778dfa43503cdcda3636d15124c19bf6546ae3": 96, "ad092d2e4aebcd9d48a5b1f3fd51ba9a": 96, "firstli": 96, "purpous": 96, "pref": [96, 117, 130, 167], "closest_binari": 98, "1692672717": [98, 102], "b647c43bfefae3f830561ca202b6cfd935b56205": 98, "package_filt": [99, 158], "df": 99, "dot": [99, 158, 272], "myproject_fold": 99, "binutil": 99, "0dc90586530d3e194d01d17cb70d9461": 99, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 99, "cci": 99, "degrad": 99, "gpl": 99, "assembl": 99, "objcopi": 99, "objdump": 99, "multilib": 99, "target_arch": 99, "target_o": 99, "target_triplet": 99, "with_libquadmath": 99, "binut53bd9b3ee9490": 99, "416618fa04d433c6bd94279ed2e93638": 99, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 99, "866f53e31e2d9b04d49d0bb18606e88": 99, "zlibbcf9063fcc882": 99, "digraph": 99, "vi": 99, "j": [99, 119, 152, 219], "css": 99, "cloudfar": 99, "cdnj": 99, "cloudflar": 99, "ajax": 99, "info_graph": 99, "basi": [99, 108], "neon": 100, "msa": 100, "sse": 100, "vsx": 100, "api_prefix": 100, "graphic": 100, "redirect": [100, 102, 116, 117, 144, 154, 188, 264, 274], "deployer_packag": 101, "recomput": 101, "myconan": [101, 119], "bzip2": [101, 130, 196, 197, 224, 227], "compound": 101, "left": [101, 117, 253, 266, 272], "highest": 101, "myprofile3": 101, "myprofile1": [101, 150], "myprofile2": [101, 150], "minim": [101, 108, 186, 262], "immedi": [101, 135, 141, 149, 150, 224, 262], "uniqu": [101, 119, 121, 134, 149, 245, 252, 257, 271], "strict": [101, 104, 106, 150, 199, 270, 274], "newpkg": 101, "gb": 102, "graph_binari": 102, "gr": 102, "graph_recip": 102, "5d": [102, 111], "dai": [102, 111], "4w": [102, 111, 267], "hour": [102, 111], "26": 102, "mycompani": 102, "20": [102, 150, 152, 163, 196, 250], "lite": 102, "shortest": 102, "46": 102, "53": [102, 116], "placehold": [102, 115, 194, 195], "8b23adc7acd6f1d6e220338a78e3a19": 102, "ce3665ce19f82598aa0f7ac0b71ee966": 102, "31ee767cb2828e539c42913a471e821a": 102, "05": [102, 246], "d77ee68739fcbe5bf37b8a4690eea6ea": 102, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 102, "implicit": [102, 203, 270], "e4e1703f72ed07c15d73a555ec3a2fa1": 102, "07": [102, 116], "45": [102, 246, 257, 272], "fdb823f07bc228621617c6397210a5c6c4c8807b": 102, "4834a9b0d050d7cf58c3ab391fe32e25": 102, "33": [102, 257, 258], "31": [102, 123, 271], "6a6451bbfcb0e591333827e9784d7dfa": 102, "29": [102, 246, 271], "67bb089d9d968cbc4ef69e657a03de84": 102, "47": [102, 246], "36": [102, 258], "5e196dbea832f1efee1e70e058a7eead": 102, "26475a416fa5b61cb962041623748d73": 102, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [102, 253], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 102, "human": 102, "zli": 102, "b58eeddfe2fd25ac3a105f72836b3360": 102, "01": [102, 206, 271], "d9b1e9044ee265092e81db7028ae10e0": 102, "192": [102, 117, 152, 163, 222], "denomin": 102, "deviat": [102, 119], "mypytool": 104, "manipul": [104, 106, 139, 199, 260], "moreov": 104, "scratch": [105, 263, 264], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 105, "1675126491": 105, "773": 105, "5f184bc602682bcea668356d75e7563b": 105, "1676913225": 105, "027": [105, 274], "733": 105, "e747928f85b03f48aaf227ff897d9634": 105, "1675126490": 105, "952": 105, "lock1": 106, "lock2": 106, "consolid": 106, "diverg": 106, "simplic": 106, "pkgb": 106, "app1": 106, "pkgawin": 106, "pkganix": 106, "gone": [106, 251, 262], "nix": [106, 199], "math": [107, 108, 136, 199, 269], "85d927a4a067a531b1a9c7619522c015": 107, "1702683583": 107, "3411012": 107, "fd2b006646a54397c16a1478ac4111ac": 107, "3544693": 107, "mytool": [107, 214], "othertool": 107, "downgrad": 107, "unlock": 107, "meson_lib": 108, "meson_ex": 108, "msbuild_ex": 108, "bazel_lib": 108, "bazel_ex": 108, "autotools_lib": 108, "autotools_ex": 108, "aid": 108, "boilerpl": [108, 119], "requires1": 108, "requires2": 108, "tool_requires1": 108, "tool_requires2": 108, "magic": 108, "mygam": 108, "mytempl": 108, "full_path": 108, "conan_vers": [108, 149], "brack": 108, "not_templ": 108, "image2": 108, "guess": [109, 150, 173, 243], "Be": [109, 125, 126, 147, 230, 252], "carlosz": 109, "ios_bas": 109, "ios_simul": 109, "clang_15": 109, "package_set": 109, "build_env": 109, "registri": [110, 239], "usernam": [110, 117, 150, 154, 174], "ap": 110, "allowed_packag": [110, 174], "insert": [110, 174], "conan_login_": 110, "expos": [110, 117, 130, 150, 230], "new_nam": [110, 174], "keyword": [111, 157, 203, 206], "intact": 111, "smell": [111, 271], "manifest": [115, 119, 261], "sys_vers": 116, "1316": 116, "mainli": [117, 240], "pro": [117, 238, 240], "conan_server_hom": 117, "server_dir": 117, "server_directori": 117, "prior": [117, 161], "hot": 117, "relaunch": 117, "jwt_secret": 117, "ijkhyoiouinmxcrtytrr": 117, "jwt_expire_minut": 117, "120": 117, "ssl_enabl": 117, "port": [117, 240], "9300": [117, 240], "public_port": 117, "host_nam": 117, "localhost": [117, 201, 239, 240], "authorize_timeout": 117, "1800": 117, "disk_storage_path": 117, "disk_authorize_timeout": 117, "updown_secret": 117, "hjhjujkjkjkjkluyyuuyhj": 117, "write_permiss": 117, "lasot": 117, "default_us": 117, "default_user2": 117, "read_permiss": 117, "jwt": 117, "random": [117, 190], "safe": [117, 119, 139, 186], "anytim": 117, "amount": 117, "ip": [117, 201], "domain": 117, "168": 117, "docker": [117, 239], "9999": 117, "p9300": 117, "traffic": 117, "somedir": [117, 210], "crt": 117, "pem": [117, 149], "reject": 117, "regist": 117, "plain": [117, 119], "premis": 117, "firewal": 117, "trust": 117, "sysadmin": 117, "restrict": [117, 119, 152], "comma": [117, 119], "allowed_user1": 117, "allowed_user2": 117, "packagea": 117, "john": [117, 119], "peter": 117, "custom_authent": 117, "authenticator_nam": 117, "collabor": [117, 166], "htpasswd": 117, "schiffner": 117, "uilianri": 117, "my_authent": 117, "get_class": 117, "myauthent": 117, "valid_us": 117, "plain_password": 117, "factori": 117, "custom_author": 117, "authorizer_nam": 117, "my_author": 117, "authenticationexcept": 117, "forbiddenexcept": 117, "myauthor": 117, "_check_conan": 117, "deni": [117, 199], "_check_packag": 117, "_check": 117, "check_read_conan": 117, "check_write_conan": 117, "check_delete_conan": 117, "check_read_packag": 117, "check_write_packag": 117, "check_delete_packag": 117, "conform": 117, "check_": 117, "conanfilerefer": 117, "meanwhil": 117, "_packag": 117, "packagerefer": 117, "443": 117, "server_nam": 117, "myservernam": 117, "mydomain": 117, "proxy_pass": 117, "ssl_certif": 117, "ssl_certificate_kei": 117, "mod_wsgi": 117, "apache2": 117, "site": [117, 119], "0_conan": 117, "virtualhost": 117, "80": 117, "wsgiscriptalia": 117, "dist": 117, "server_launch": 117, "wsgicallableobject": 117, "wsgipassauthor": 117, "grant": 117, "srv": 117, "helloconan": [118, 119, 182, 206, 258], "varieti": 118, "member": [118, 119, 130, 178], "_my_data": 118, "_my_help": 118, "lowercas": [119, 253, 272], "101": 119, "charact": [119, 154, 194, 195, 253], "shorter": [119, 195], "z0": 119, "9_": 119, "alphanumer": [119, 253], "ing": 119, "pkgname": [119, 224, 246], "pre1": [119, 253, 272], "build2": [119, 253], "pkgversion": 119, "programmat": 119, "mychannel": 119, "short": [119, 253], "incred": 119, "spdx": 119, "peopl": 119, "smith": 119, "protocinstallerconan": 119, "protoc_instal": 119, "buffer": 119, "rpc": 119, "eigenconan": 119, "eigen": 119, "tuxfamili": 119, "mylibconan": 119, "otherlib": 119, "otherus": 119, "bracket": [119, 272], "alpha": [119, 272], "tool_a": 119, "tool_b": 119, "gtest": [119, 123, 130, 136, 145, 224, 244, 251, 257, 262], "downstream": [119, 123, 135, 136, 178, 190, 269], "other_test_tool": 119, "pyreq": [119, 131, 159, 178], "myconanfilebas": [119, 131], "utilsbas": 119, "tmp": [119, 191, 199, 251, 252, 254, 255, 257, 260], "got": [119, 259, 265, 270], "shutil": [119, 139], "emul": [119, 152, 225, 270], "mistak": 119, "yaml": 119, "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 119, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 119, "opt": [119, 195, 215, 216, 272, 274], "7zip": [119, 145, 150], "7z": 119, "determin": [119, 136, 150, 194, 245], "gnu20": [119, 152], "get_saf": [119, 125, 126, 217, 247], "compiler_vers": [119, 150, 186], "feasibl": [119, 135], "is_android": 119, "option3": 119, "option4": 119, "comparison": [119, 238, 272], "encapsul": 119, "zwave": 119, "reference_pattern": 119, "option_nam": 119, "condition": [119, 121, 122, 126, 130, 139, 224, 225, 247, 249, 254, 261], "otherpkg": 119, "some_opt": 119, "overridden": [119, 178, 201], "123": [119, 150, 178], "conaninvalidconfigur": [119, 142, 143, 186, 247, 269], "word": [119, 131, 152, 271], "freez": 119, "overriden": [119, 201], "234": [119, 178], "particularli": [119, 132, 134], "explanatori": 119, "reference_conanfile_methods_package_id": 119, "package_id_python_mod": 119, "semver": [119, 231, 272, 274], "modif": [119, 134, 152, 191, 194, 246, 271, 274], "unrelated_mod": 119, "ever": 119, "pocotimerconan": 119, "foorecip": 119, "myrecip": 119, "methodconan": 119, "export_fold": [119, 128], "codebas": 119, "androidndk": [119, 135], "define_path": [119, 132, 135, 194], "fill": [119, 161, 177, 210], "append_path": [119, 135, 194], "runtime_var": 119, "flag3": [119, 135], "flag1": [119, 135, 149, 150, 215], "flag2": [119, 135, 149, 150], "expandattributedsourc": [119, 135], "unset": [119, 135, 149, 150, 152, 194, 207], "flag0": [119, 135], "pop": [119, 220, 245], "friendli": 119, "emit": 119, "taskflow": 119, "odr": [119, 136], "violat": [119, 136], "libressl": 119, "boringssl": 119, "libav": 119, "ffmpeg": [119, 157], "mariadb": 119, "mysql": 119, "libjpeg": 119, "9d": 119, "turbo": 119, "libjpegturbo": 119, "openbla": 119, "cbla": 119, "lapack": 119, "redund": 119, "myconsum": [119, 259], "my_android_ndk": 119, "var1": [119, 150], "green": 119, "neutral": 119, "white": [119, 154], "yellow": 119, "red": 119, "distinct": 119, "tend": 119, "auto_shared_fp": 119, "auto_header_onli": 119, "parenthes": 119, "extensions_properti": 119, "abi": [119, 152, 180, 244], "validate_build": 120, "mybuildsystem": 121, "interrupt": 121, "lift": 121, "info_build": 122, "myvalu": [122, 191, 194, 220], "fullsourc": 122, "theori": [123, 247], "parameter": 123, "ran": [123, 140, 160, 251, 257], "nutshel": [123, 208], "mylibrecip": 123, "myapprecip": 123, "myapp": [123, 274], "gettext": 123, "libgettext": 123, "constrain": [125, 252], "sse2": 125, "with_sse2": 125, "elif": 126, "deploy_fold": [127, 170, 194], "myfil": [129, 178, 199, 274], "export_conandata_patch": [129, 198], "conanvcvar": [130, 191, 220, 225, 226, 227], "repetit": [130, 135], "mygener": [130, 159], "mygen": [130, 159], "dylib": [130, 135, 182, 199, 206, 245, 252, 260], "dll": [130, 133, 135, 195, 245, 260], "xxxdir": 130, "indirectli": 130, "buildenv_info": [130, 132, 194, 196, 254, 259], "runenv_info": [130, 132, 194, 196, 197, 254, 259], "is_build_context": 130, "fashion": 130, "pcre": 130, "44": 130, "expat": 130, "35": [130, 258, 271], "1k": 130, "criteria": 130, "direct_host": 130, "direct_build": 130, "heavili": 130, "mycomp": 130, "mylicens": 131, "overwritten": [131, 135, 139], "baseconan": 131, "derivedconan": 131, "deriv": [131, 139], "uncondition": 131, "datafil": 131, "my": [131, 132, 135, 150, 152, 161, 178, 201, 208, 220], "awesom": 131, "me": 131, "__init__": [131, 159, 161, 183, 226], "constructor": [131, 192, 203, 206, 208, 221, 230, 234], "subdirectori": 132, "classic": [132, 152, 216, 256], "hopefulli": 132, "release64": 132, "stub": 132, "my_includ": 132, "sayconan": [132, 266], "mydata_path": 132, "obvious": 132, "mydata_path2": 132, "my_conf_fold": 132, "creating_packages_package_method": 133, "relax": [134, 270], "assumpt": [134, 247, 270], "couldn": 134, "disadvantag": [134, 273], "lose": 134, "although": [134, 195, 262], "predict": 134, "obj": 135, "preprocessor": [135, 185, 191, 208, 220, 225, 226], "property_nam": 135, "property_valu": 135, "xml": [135, 225], "pkg_config_nam": [135, 211], "zmq": 135, "zmq_static": 135, "ws2_32": 135, "get_properti": 135, "crypto": [135, 211, 214], "define_crypto": 135, "headers_ssl": 135, "obj_ext": 135, "prepend_path": [135, 194], "mypath": [135, 194, 259], "myarmarch": 135, "otherarch": 135, "my_android_arch": 135, "myrunpath": 135, "mypkghom": 135, "ti": 135, "former": [135, 270], "virtualrunenv": [135, 150, 179, 191, 193, 194, 195, 245, 254, 259], "transmit": [135, 274], "exceptionhandl": [135, 149], "async": [135, 149, 203], "bundl": [135, 239], "android_ndk": 135, "albeit": 135, "adequ": 135, "claus": 136, "catch2": [136, 251], "seem": 136, "ambigu": [136, 274], "priorit": [137, 138, 192, 199, 269, 270], "tarbal": [139, 230, 238, 271], "check_sha1": [139, 198], "pococonan": 139, "zip_nam": 139, "pocoproject": 139, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 139, "unlink": 139, "bypass": 139, "appar": 139, "problemat": [139, 272], "destroi": [139, 152, 163], "lead": [139, 247], "frozen": 139, "realiz": [140, 246, 270], "gtk": 140, "undesir": 140, "libgtk": 140, "pkg1": [140, 190, 234], "pkg2": [140, 190, 234], "prove": [141, 262], "succe": [142, 234], "cfc18fcc7a50ead278a7c1820be74e56": 142, "warn_tag": 144, "custom_tag": 144, "ignore_error": 144, "appropri": 144, "unnot": 144, "ninja_stdout": 144, "stringio": 144, "pin": [145, 246, 271, 273], "revision1": 145, "70": 145, "revision2": 145, "00": [145, 206, 271], "inde": 145, "aka": [146, 182], "project1": [147, 224], "project2": [147, 224], "unauthor": 148, "ask": [148, 154], "conan_login_usernam": [148, 154], "conan_login_username_": [148, 154], "conan_password": [148, 154], "conan_password_": [148, 154], "admin": [148, 239], "emptiv": 148, "getenv": [148, 150, 153, 195], "mytk": [148, 153], "mytoken": [148, 153], "whatev": [149, 150, 158, 216], "heaviest": 149, "dowload": 149, "danielm": 149, "my_conan_storage_fold": 149, "recurr": 149, "my_download_cach": 149, "confvar": [149, 150], "hint": [149, 150], "yyi": [149, 150], "ins": 149, "zzz": [149, 150], "everywher": [149, 150], "discret": 149, "establish": 149, "packagenam": [149, 190], "orgnam": 149, "_must_": 149, "cpu_count": 149, "myconf1": 149, "detect_o": [149, 150], "myconf2": 149, "detect_arch": [149, 150], "conan_home_fold": 149, "eval": 149, "integ": [149, 174, 231], "unmodifi": 149, "rid": [149, 150], "f1": 149, "f2": 149, "f0": 149, "pai": [149, 260], "tl": [149, 151, 201], "constitut": 149, "implic": [149, 252], "tool1": 150, "tool4": 150, "environmentvar1": 150, "dlib": 150, "ab": 150, "relpath": 150, "my_pkg_opt": 150, "myvalue12": 150, "mypath1": [150, 194], "path11": 150, "path12": 150, "comp": [150, 211], "chanel": 150, "ration": 150, "kitwar": 150, "3488ec5c2829b44387152a6c4b013767": 150, "20496b332552131b67fb99bf425f95f64d0d0818": 150, "profile_var": 150, "my_build_typ": 150, "referenc": [150, 190, 201], "loop": 150, "meant": [150, 253, 262], "judici": 150, "compiler_ex": 150, "detect_default_compil": 150, "default_msvc_runtim": 150, "default_compiler_vers": 150, "default_cppstd": 150, "detect_libcxx": 150, "v143": [150, 152], "gnu14": [150, 152, 208, 244], "default_msvc_ide_vers": 150, "digit": [150, 152, 272, 274], "zlib_clang_profil": 150, "my_var": [150, 259], "statement": 150, "gcc_49": 150, "my_remote_nam": 151, "windowsstor": 152, "windowsc": 152, "ios_vers": 152, "iphoneo": [152, 220], "iphonesimul": 152, "watchsimul": 152, "appletvo": 152, "appletvsimul": 152, "xrsimul": 152, "catalyst": 152, "aix": 152, "arduino": 152, "board": 152, "emscripten": 152, "neutrino": 152, "vxwork": 152, "ppc32be": 152, "ppc32": [152, 186, 234], "ppc64le": [152, 234], "ppc64": [152, 186], "armv4": 152, "armv4i": 152, "armv5el": [152, 180], "armv5hf": [152, 180], "armv6": [152, 180], "armv7hf": [152, 180, 234, 244], "armv7k": 152, "armv8_32": 152, "sparc": [152, 186, 191], "sparcv9": [152, 186], "mip": 152, "mips64": 152, "avr": 152, "s390": 152, "s390x": [152, 234], "wasm": 152, "sh4le": 152, "e2k": 152, "v5": 152, "v6": [152, 180], "v7": 152, "xtensalx6": 152, "xtensalx106": 152, "xtensalx7": 152, "sun": 152, "posix": 152, "libcstd": 152, "libstdcxx": 152, "libstlport": 152, "win32": 152, "dwarf2": 152, "sjlj": 152, "seh": 152, "98": 152, "gnu23": 152, "170": 152, "190": 152, "191": 152, "v110_xp": 152, "v120_xp": 152, "v140_xp": 152, "v141_xp": 152, "runtime_vers": 152, "v140": 152, "v141": 152, "v142": 152, "2021": [152, 216], "icx": [152, 216], "dpcpp": [152, 216], "gnu03": 152, "gpp": 152, "ne": 152, "accp": 152, "acpp": 152, "ecpp": 152, "mcst": 152, "lcc": 152, "relwithdebinfo": 152, "minsizerel": 152, "hardwar": 152, "microprocessor": 152, "microcontrol": 152, "famili": 152, "2015": 152, "2017": [152, 216, 243, 245, 247, 248], "finer": 152, "1913": 152, "dpc": [152, 216], "suppos": 152, "311": 152, "brief": [152, 239, 242], "arch_build": 152, "arch_target": 152, "powerpc": [152, 234], "endian": 152, "littl": [152, 158], "soft": 152, "float": 152, "swift": 152, "a6": 152, "a6x": 152, "chip": 152, "iphon": 152, "5c": 152, "ipad": 152, "k": 152, "aarch32": 152, "ilp32": 152, "a12": 152, "chipset": 152, "xr": [152, 199], "scalabl": [152, 238, 239], "microsystem": 152, "interlock": 152, "pipelin": [152, 154], "formerli": 152, "atmel": 152, "microchip": 152, "390": 152, "ibm": 152, "javascript": 152, "low": 152, "assembli": 152, "byte": [152, 199], "hitachi": 152, "superh": 152, "2000": 152, "512": 152, "vliw": 152, "2cm": 152, "2c": 152, "moscow": 152, "4c": 152, "8c": 152, "8c1": 152, "1c": 152, "1ck": 152, "8c2": 152, "8cb": 152, "2c3": 152, "12c": 152, "16c": 152, "32c": 152, "xtensa": 152, "lx6": 152, "dpu": 152, "esp32": 152, "esp8266": 152, "lx7": 152, "s2": 152, "s3": 152, "_glibcxx_use_cxx11_abi": [152, 191, 208], "wise": 152, "cento": [152, 234], "rogu": 152, "wave": 152, "stlport": 152, "apach": 152, "dinkum": 152, "abridg": 152, "rhel6": 152, "cache_vari": 152, "some_centos_flag": 152, "anymor": 152, "myo": 152, "mycompil": 152, "my_custom_compil": 152, "sync": [152, 203], "tarballnam": 153, "bearer": 153, "mypassword": 153, "hardcod": [153, 262, 272], "difficult": [153, 178, 251, 273], "remote_nam": [154, 174], "unauthent": 154, "unattend": 154, "stuck": 154, "autodetect": [154, 191], "tty": 154, "no_color": 154, "conan_color_dark": 154, "scheme": [154, 272, 274], "light": 154, "dark": 154, "mypythoncod": [155, 267], "altogeth": [155, 158, 191], "pre_build": [155, 161], "complement": 155, "qualiti": [155, 161], "facilit": [155, 160], "variat": [156, 269], "intercept": 157, "commmand": 157, "startswith": 157, "caller": 157, "heavy_pkg": 157, "qt": 157, "abseil": 157, "_commands_": 158, "cmd_": 158, "your_command_nam": 158, "cmd_hello": 158, "cmd_bye": 158, "topic_nam": 158, "topic1": 158, "topic2": 158, "cmd_command": 158, "output_json": 158, "parser": 158, "hello_moon": 158, "subpars": 158, "narg": 158, "mygroup": 158, "mycommand": 158, "mycommand_mysubcommand": 158, "add_my_common_arg": 158, "chose": 158, "format_graph_html": 158, "format_graph_info": 158, "field_filt": 158, "format_graph_json": 158, "format_graph_dot": 158, "graph_info": 158, "deps_graph": [158, 170], "command_subcommand": 158, "child": 158, "arg1": [158, 188, 216], "arg2": [158, 188, 216], "arg3": 158, "_conanfil": 159, "deps_info": 159, "repeatedli": [160, 274], "my_custom_deploy": 160, "hook_exampl": 161, "pre_export": 161, "field_valu": 161, "getattr": 161, "abort": 161, "hook_": 161, "replace_in_fil": [161, 198, 251], "post_packag": 161, "isdir": 161, "custom_modul": 161, "hook_print": 161, "my_print": 161, "hook_ful": 161, "pre_sourc": 161, "pre_packag": 161, "pre_package_info": 161, "post_package_info": 161, "artifacts_fold": 162, "signature_fold": 162, "conan_packag": [162, 243, 248], "written": [162, 254, 274], "twice": 162, "conan_sourc": 162, "signer": 162, "asc": 162, "listdir": 162, "isfil": 162, "profile_plugin": 163, "ordereddict": [163, 192], "profilesapi": [164, 173], "installapi": [164, 170], "graphapi": [164, 169], "exportapi": [164, 168], "newapi": [164, 172], "uploadapi": [164, 177], "downloadapi": [164, 167], "cache_fold": 165, "global_conf": 166, "settings_yml": 166, "pkgrefer": [167, 171], "download_ful": 167, "package_list": [167, 177], "load_root_test_conanfil": 169, "tested_refer": 169, "tested_python_requir": 169, "recipe_consum": 169, "load_graph": 169, "root_nod": 169, "check_upd": 169, "load_root_nod": 169, "analyze_binari": 169, "build_mod": 169, "build_modes_test": 169, "tested_graph": 169, "buildmod": 169, "install_binari": 170, "intal": 170, "install_system_requir": 170, "only_info": 170, "install_sourc": 170, "install_consum": 170, "deploy_packag": 170, "filter_packages_configur": 171, "pkg_configur": 171, "pkgconfigur": 171, "get_templ": 172, "template_fold": 172, "get_home_templ": 172, "template_nam": 172, "get_default_host": 173, "get_default_build": 173, "get_profil": 173, "get_path": 173, "sin": 173, "alphabet": [173, 272], "contact": 174, "user_xxx": 174, "only_en": 174, "user_login": 174, "user_logout": 174, "check_upstream": 177, "enabled_remot": 177, "upload_data": 177, "upload_ful": 177, "check_integr": 177, "dry_run": 177, "get_backup_sourc": 177, "mybas": 178, "cool": 178, "super": [178, 208], "pyreq_path": 178, "myfile_path": 178, "mynumb": 178, "gradual": 178, "hierarchi": 178, "is_apple_o": [179, 181], "to_apple_arch": [179, 181], "envvar": [179, 193, 194, 196, 197], "intelcc": 179, "basic_layout": 179, "nmaketoolchain": [179, 221], "sconsdep": 179, "armv5": 180, "lc_id_dylib": [182, 206], "lc_load_dylib": [182, 206], "rpath": [182, 191, 206, 245], "lc_rpath": [182, 206], "outlin": 182, "libnam": 182, "my_execut": 182, "add_rpath": 182, "executable_path": 182, "use_settings_target": 182, "ranlib": 182, "lipo": 182, "codesign": 182, "isysroot": [182, 220], "sdk_platform_path": 182, "sdk_platform_vers": 182, "libtool": 182, "alltarget": 183, "i386": [183, 220], "sdkroot": 183, "ios8": 183, "skd": 183, "conan_libpng": 184, "conan_libpng_libpng": 184, "conan_libpng_libpng_debug_x86_64": 184, "conan_libpng_libpng_release_x86_64": 184, "conan_zlib": [184, 224], "conan_zlib_zlib": 184, "conan_zlib_zlib_debug_x86_64": 184, "conan_zlib_zlib_release_x86_64": 184, "system_header_search_path": 184, "gcc_preprocessor_definit": 184, "other_cflag": 184, "other_cplusplusflag": 184, "framework_search_path": 184, "library_search_path": 184, "other_ldflag": 184, "conan_libpng_debug_x86_64": 184, "package_root_": 184, "releaseshar": [184, 190, 224, 261], "mycustomconfig": [184, 224], "conantoolchain_release_x86_64": 185, "conantoolchain_debug_x86_64": 185, "conan_global_flag": 185, "conantoolchain_": [185, 225], "_x86_64": 185, "clang_cxx_librari": 185, "clang_cxx_language_standard": 185, "macosx_deployment_target": 185, "mmacosx": 185, "_cpu_count": 186, "cgroup": 186, "skip_x64_x86": 186, "m1": [186, 220, 262], "gnu_extens": 186, "cppstd_default": 186, "dxxx": 188, "dvar": 188, "build_tool_arg": 188, "barg1": 188, "barg2": 188, "underli": 188, "diagnost": 188, "dcmake_verbose_makefil": 188, "maxcpucount": 188, "cmake_gener": 189, "shared_fals": 189, "shared_tru": 189, "chosen": [189, 216], "cmake_prefix_path": [190, 191], "cmake_module_path": [190, 191], "findxxx": 190, "conandeps_legaci": 190, "cmake_binary_dir": 190, "enumer": 190, "overal": 190, "releasedshar": 190, "my_tool": [190, 211, 214], "collid": [190, 211, 274], "capnproto": [190, 211], "_build": [190, 211], "81": 190, "fakecomp": 190, "cmake_module_file_nam": 190, "cmake_module_target_nam": 190, "dep_nam": 190, "get_cmake_package_nam": 190, "module_mod": 190, "get_find_mod": 190, "cmake_target_alias": 190, "rout": 190, "cmake_set_interface_link_directori": 190, "pragma": 190, "nosonam": 190, "sonam": 190, "cmake_config_version_compat": 190, "samemajorvers": 190, "sameminorvers": 190, "exactvers": 190, "configvers": 190, "myfilenam": [190, 201], "myfooalia": 190, "mycompon": [190, 211, 214], "varcompon": 190, "myfilenameconfig": 190, "findmyfilenam": 190, "zlibconan": 190, "alter": 190, "colon": 190, "new_component_target_nam": 190, "buildir": 190, "popul": [190, 244], "cmake_map_imported_config_": 190, "dcmake_map_imported_config_coverag": 190, "myvar_valu": 191, "mydefin": [191, 220], "mydef_valu": [191, 220], "cmake_path": 191, "cmake_position_independent_cod": 191, "nmake": [191, 192, 226], "easier": [191, 274], "schema": [191, 199, 225], "testpreset": 191, "jon": 191, "mydef": [191, 220], "myconfigdef": 191, "mydebugvalu": 191, "myreleasevalu": 191, "novalue_def": 191, "add_compile_definit": 191, "cachevari": 191, "foo2": 191, "ON": [191, 244, 265], "myconfigvar": 191, "sentenc": 191, "buildenv": [191, 194, 216, 244], "my_build_var": 191, "my_buildvar_value_overridden": 191, "runenv": [191, 194], "my_run_var": 191, "my_runvar_set_in_gener": 191, "my_env_var": 191, "my_env_var_valu": 191, "save_script": [191, 195], "other_env": 191, "compose_env": [191, 194], "extra_cxxflag": [191, 208, 226], "extra_cflag": [191, 208, 226], "extra_sharedlinkflag": 191, "extra_exelinkflag": 191, "clash": 191, "filepath": 191, "mytoolchainpackag": 191, "mytoolchain": 191, "mytoolrequir": 191, "toolchain1": 191, "toolchain2": 191, "yyyi": 191, "ninclud": 191, "generic_system": 191, "cmake_c_compil": 191, "cmake_cxx_compil": 191, "android_system": 191, "android_platform": 191, "android_stl": 191, "android_ndk_path": 191, "apple_system": 191, "cmake_osx_architectur": 191, "cmake_osx_sysroot": 191, "arch_flag": [191, 208], "m32": 191, "m64": 191, "vs_runtim": 191, "cmake_msvc_runtime_librari": 191, "cmake_cxx_extens": 191, "cmake_flags_init": 191, "cmake_xxx_flag": 191, "conan_xxx": 191, "cmake_cxx_flags_init": 191, "conan_cxx_flag": 191, "try_compil": 191, "in_try_compil": 191, "find_path": 191, "cmake_skip_rpath": 191, "skip_rpath": 191, "build_shared_lib": [191, 254, 265], "output_dir": 191, "cmake_install_xxx": 191, "cmake_install_bindir": 191, "cmake_install_sbindir": 191, "cmake_install_libexecdir": 191, "cmake_install_libdir": 191, "cmake_install_oldincludedir": 191, "cmake_install_datarootdir": 191, "mybin": [191, 208], "myinclud": [191, 208], "myre": [191, 208], "block_nam": 191, "new_tmp": 191, "other_toolset": 191, "generic_block": 191, "methodtyp": 191, "mygenericblock": 191, "helloworld": 191, "myblock": 191, "mynewblock": 191, "64bit": [191, 270], "32bit": [191, 270], "ppc": 191, "r23c": 191, "cmake_c_flags_init": 191, "add_definit": 191, "cmake_xcode_attribute_enable_bitcod": 191, "cmake_xcode_attribute_clang_enable_objc_arc": 191, "cmake_xcode_attribute_gcc_symbols_private_extern": 191, "cmake_sysroot": 191, "cmp0149": 191, "cmake_rc_compil": 191, "cmake_objc_compil": 191, "objcpp": [191, 220], "cmake_objcxx_compil": 191, "cmake_cuda_compil": 191, "cmake_fortran_compil": 191, "cmake_asm_compil": 191, "cmake_hip_compil": 191, "cmake_ispc_compil": 191, "collaps": 192, "aggregated_cpp_info": 192, "topological_sort": 192, "revers": 192, "dep_cppinfo": 192, "get_sorted_compon": 192, "fewer": 192, "other_cppinfo": 192, "myvar2": 194, "myvalue2": 194, "myvar3": 194, "myvalue3": 194, "myvar4": 194, "mypath2": 194, "mypath3": 194, "env1": [194, 195], "env2": 194, "prevail": [194, 269], "autootoolsdep": 194, "mypkg_data_dir": 194, "datadir": [194, 211, 220], "filesystem": [194, 201], "deploy_base_fold": 194, "my_env_fil": 195, "ps1": [195, 196, 197, 227, 248], "var2": 195, "variable_refer": 195, "penv": 195, "32k": 195, "2048": 195, "closer": 195, "varnam": 195, "ld_library_path": [196, 197, 245, 254, 259], "deactivate_conanbuildenv": [196, 244, 247, 248, 251], "accumul": [196, 197, 207, 232], "auto_gener": [196, 197], "dyld_library_path": [197, 245], "dyld_framework_path": [197, 245], "deactivate_conanrunenv": 197, "rm": 198, "rmdir": 198, "chdir": 198, "trim_conandata": 198, "collect_lib": 198, "check_md5": 198, "check_sha256": 198, "absolute_to_relative_symlink": [198, 260], "remove_external_symlink": 198, "remove_broken_symlink": 198, "ignore_cas": 199, "insensit": 199, "utf": [199, 225], "otherfil": 199, "robocopi": 199, "abe2h9f": 199, "file_path": [199, 200], "mydir": 199, "newdir": 199, "do_someth": 199, "tzb2": 199, "bz2": 199, "txz": 199, "xz": 199, "keep_permiss": [199, 201], "bigfil": 199, "danger": 199, "inter": 199, "libmylib": [199, 206], "stare": 199, "libmath": 199, "other_libdir": 199, "rwxr": 199, "lrwxr": 199, "md5sum": 200, "sha256sum": 200, "md5": 201, "ftp": 201, "impli": [201, 271, 274], "httpbasic": 201, "sha": 201, "someurl": 201, "somefil": 201, "e5d695597e9fa520209d1b41edad2a27": 201, "ia64": 201, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 201, "base_path": 203, "patch_str": 203, "fuzz": 203, "fuzzi": 203, "0001": 203, "buildflatbuff": 203, "0002": 203, "patch_typ": 203, "patch_sourc": 203, "flatbuff": 203, "5650": 203, "patch_descript": 203, "misc": 203, "1232": 203, "1292": 203, "g_test_add_func": 203, "paus": 203, "cancel": 203, "do_pause_cancel_test": 203, "g_test_add_data_func": 203, "steal": 203, "gint_to_point": 203, "do_stealing_test": 203, "length": 203, "do_response_informational_content_length_test": 203, "ret": 203, "g_test_run": 203, "0003": 203, "base_fold": 204, "configure_arg": 206, "make_arg": 206, "_conanbuild": [206, 208], "destdir": 206, "unix_path": [206, 221], "install_nam": 206, "cmdsize": 206, "48": 206, "offset": 206, "stamp": 206, "jan": 206, "1970": 206, "loader": 206, "wl": [206, 210], "conanautotoolsdep": 207, "undesired_valu": 207, "seamlessli": 208, "precalcul": 208, "my_argu": 208, "sbindir": [208, 220], "oldincludedir": 208, "datarootdir": 208, "he": 208, "extra_defin": [208, 226], "extra_ldflag": [208, 226], "gcc_cxx11_abi": 208, "build_type_flag": 208, "sysroot_flag": 208, "apple_arch_flag": [208, 220], "apple_isysroot_flag": [208, 220], "msvc_runtime_flag": [208, 221], "myflag": 208, "update_configure_arg": 208, "updated_flag": 208, "update_make_arg": 208, "update_autoreconf_arg": 208, "xxxxxx_arg": 208, "prune": [208, 270], "gold": [208, 220], "lld": [208, 220], "nvcc": 208, "fc": 208, "mk": 209, "conan_dep": 209, "conan_name_zlib": 209, "conan_version_zlib": 209, "conan_reference_zlib": 209, "conan_root_zlib": 209, "zlib273508b343e8c": 209, "conan_include_dirs_zlib": 209, "conan_include_dir_flag": 209, "conan_lib_dirs_zlib": 209, "conan_lib_dir_flag": 209, "conan_bin_dirs_zlib": 209, "conan_bin_dir_flag": 209, "conan_libs_zlib": 209, "conan_lib_flag": 209, "conan_include_dir": 209, "conan_lib_dir": 209, "conan_bin_dir": 209, "conan_lib": [209, 266], "conan_define_flag": 209, "conan_system_lib_flag": 209, "lz": [209, 211], "libastr": 210, "_use_libastr": 210, "astral": 210, "linkflag": [210, 232], "tmp_dir": 210, "is_system": 210, "rt": 210, "your_us": 211, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 211, "pkg_config_alias": 211, "xxxxx": [211, 215, 220], "freeform": 211, "component_vers": 211, "custom_cont": 211, "mynam": 211, "componentnam": 211, "alias1": 211, "alias2": 211, "rcpath": 213, "bz": [213, 214], "fresh": 213, "new_local_repositori": 214, "build_fil": 214, "cc_import": 214, "cc_librari": 214, "z_precompil": 214, "static_librari": 214, "libz": [214, 245], "hdr": 214, "glob": 214, "filegroup": 214, "zlib_binari": 214, "bazel_target_nam": 214, "bazel_repository_nam": 214, "my_target": 214, "my_repo": 214, "cxxopt": 215, "dynamic_mod": 215, "compilation_mod": 215, "force_p": 215, "copt": 215, "flagn": 215, "conlyopt": 215, "linkopt": 215, "dbg": 215, "crosstool_top": 215, "icpx": 216, "conanintelsetvar": 216, "intelprofil": 216, "ms_toolset": 216, "batch": 216, "argn": 216, "intel64": 216, "ia32": 216, "ia": 216, "mysrcfold": 217, "reconfigur": 219, "dprefix": 219, "conan_meson_cross": 219, "n_job": 219, "55": [220, 246], "default_librari": 220, "buildtyp": 220, "libexecdir": 220, "localedir": 220, "mandir": 220, "infodir": 220, "wrap_mod": 220, "nofallback": 220, "cpp_arg": 220, "c_arg": 220, "c_link_arg": 220, "cpp_link_arg": 220, "conan_meson_xxxx": 220, "with_msg": 220, "hi": 220, "everyon": 220, "contrast": 220, "packageopt": 220, "upon": 220, "mio": 220, "ios_host_profil": 220, "objc_arg": 220, "objc_link_arg": 220, "objcpp_arg": 220, "objcpp_link_arg": 220, "android_host_profil": 220, "c_ld": 220, "cc_ld": 220, "cpp_ld": 220, "cxx_ld": 220, "as_": 220, "AS": [220, 226], "windr": 220, "macosx": 220, "objcflag": 220, "objcxxflag": 220, "check_min_v": 221, "is_msvc": 221, "is_msvc_static_runtim": 221, "msvs_toolset": 221, "raise_invalid": 222, "visualstudio": 222, "worth": 222, "mt": [222, 225], "neither": 222, "myreleas": 223, "myplatform": 223, "conan_zlib_vars_release_x64": 224, "conanzlibxxxx": 224, "conanzlibincludedir": 224, "conanzliblib": 224, "conan_zlib_vars_debug_x64": 224, "conanzlib": 224, "conan_zlib_release_x64": 224, "conan_zlib_debug_x64": 224, "conan_bzip": 224, "bzip": 224, "conan_bzip2": 224, "conan_pkgname_compname_vars_release_x64": 224, "compnam": 224, "conan_pkgname_compname_release_x64": 224, "conan_pkgname_compnam": 224, "conan_pkgnam": 224, "conan_pkgname_vars_release_x64": 224, "gather": [224, 272], "catch": 224, "executablepath": 224, "binarydirectori": 224, "custombuild": 224, "caexcludepath": 224, "uncondit": 224, "conan_": 224, "_var": 224, "conantoolchain_release_x86": 225, "mtd": 225, "mdd": 225, "clcompil": 225, "windowstargetplatformvers": 225, "additionalopt": 225, "preprocessordefinit": 225, "vcvarsal": [225, 227], "includeextern": 225, "xmln": 225, "2003": 225, "itemdefinitiongroup": 225, "propertygroup": 225, "conannmakedep": 226, "_link_": 226, "conannmaketoolchain": 226, "my_flag": 226, "env_var": 226, "cl_env_var": 226, "winsdk": 227, "thin": [230, 253], "repourl": 230, "children": 230, "hidden_output": 230, "rev": 230, "get_remote_url": 230, "commit_in_remot": 230, "occurr": 230, "get_repo_root": 230, "toplevel": 230, "fetch_commit": 230, "qualifi": [231, 272], "sconscript_conandep": 232, "cpppath": 232, "binpath": 232, "frameworkpath": 232, "cppdefin": 232, "ccflag": 232, "shlinkflag": 232, "sconscript": 232, "mergeflag": 232, "chocolatei": 233, "libgl": 234, "libglvnd": 234, "devel": 234, "mesa": 234, "linuxmint": 234, "pidora": 234, "scientif": 234, "xenserv": 234, "amazon": 234, "oracl": 234, "amzn": 234, "almalinux": 234, "rocki": 234, "fedora": 234, "rhel": 234, "mageia": 234, "manjaro": 234, "opensus": 234, "sle": 234, "host_packag": 234, "install_substitut": 234, "packages_substitut": 234, "pkg3": 234, "_arch_nam": 234, "multiarch": 234, "arch_nam": 234, "libxcb": 234, "util0": 234, "packages_altern": 234, "amd64": 234, "conan_arch_set": 234, "apt_arch_set": 234, "86": 234, "armv7hl": 234, "lib32": 234, "c3i": 237, "profession": 238, "matrix": [238, 269, 270], "8081": 239, "8082": 239, "bintrai": 239, "jdk": 239, "dialog": 239, "bottl": 240, "wsgirefserv": 240, "ctrl": 240, "my_local_serv": 241, "lan": 241, "easiest": 243, "conan_export": 243, "f1fadf0d3b196dc0332750354ad8ab7b": [243, 248], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 243, "dd7bf2a1ab4eb5d1943598c09b616121": 243, "raspberri": 244, "pi": 244, "someprofil": 244, "gnueabihf": 244, "compressorrecip": [244, 246, 247], "identif": 244, "elf": 244, "lsb": 244, "eabi5": 244, "sysv": 244, "armhf": 244, "buildid": 244, "2a216076864a1b1f30211debf297ac37a9195196": 244, "different_configur": 245, "anywher": 245, "tutorial_us": 245, "zlib1": 245, "reinstal": 245, "dyld": 245, "41259": 245, "wonder": 245, "answer": 245, "li": [245, 272], "factor": 245, "breakdown": 245, "approxim": [246, 272], "87a7211557b6690ef5bf7fc599dd8349": 246, "f305019023c2db74d1001c5afa5cf362": 246, "82202701ea360c0863f1db5008067122": 246, "bd533fb124387a214816ab72c8d1df28": 246, "59": 246, "58": 246, "3b9e037ae1c615d045a06c67d88491a": 246, "chronolog": 246, "tediou": [246, 264, 273], "occas": 246, "4524fcdd41f33e8df88ece6e755a5dcc": 246, "1650538915": 246, "154": 246, "stai": 246, "conanfile_pi": 247, "neater": 247, "base64": 247, "auxiliari": 247, "v8": 247, "cmake_vers": 248, "3e3d8f3a848b2a60afafbe7a0955085a": 248, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 248, "48bc7191ec1ee467f1e951033d7d41b2": 248, "f2f48d9745706caf77ea883a5855538256e7f2d4": 248, "6c519070f013da19afd56b52c465b596": 248, "scaffold": 249, "walkthrough": 249, "peculiar": 249, "fanci": 250, "colour": [250, 261], "creating_packag": [250, 251, 252, 254, 255, 257, 258, 259, 260, 261, 262], "add_requir": 250, "check_max_cppstd": [250, 261], "check_min_cppstd": [250, 257, 261], "require_fmt": 250, "crimson": [250, 261], "emphasi": [250, 261], "bold": [250, 261], "__x86_64__": [250, 253, 255, 258, 265], "__cplusplu": 250, "201103": 250, "__gnuc__": 250, "__gnuc_minor__": 250, "__clang_major__": 250, "__clang_minor__": 250, "__apple_build_version__": 250, "13160021": 250, "build_method": 251, "with_test": 251, "with_fmt": [251, 252, 261], "novelti": 251, "compose_messag": 251, "add_subdirectori": 251, "googletest": [251, 257], "gtest_main": [251, 257], "hellotest": 251, "composemessag": 251, "expect_eq": 251, "c51d80ef47661865": 251, "3ad4c6873a47059c": 251, "tear": [251, 257], "82b6c0c858e739929f74f59c25c187b927d514f3": 251, "particular": 251, "uncommon": 251, "configure_options_set": 252, "met": 252, "ng": 252, "738feca714b7251063cc51448da0cf4811424e7c": 252, "7fe7f5af0ef27552": 252, "3bd9faedc711cbb4fdf10b295268246": 252, "e6b11fb0cb64e3777f8d62f4543cd6b3": 252, "5c497cbb5421cbda": 252, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 252, "19a2e552db727a2b": 252, "67b887a0805c2a535b58be404529c1f": 252, "c7796386fcad5369": 252, "depict": 252, "diagram": 252, "intuit": 252, "2a899fd0da3125064bf9328b8db681cd82899d56": 252, "f0d1385f4f90ae465341c15740552d7": 252, "8a55286c6595f662": 252, "601209640bd378c906638a8de90070f7": 252, "d1b3f3666400710fec06446a697f9eeddd1235aa": 252, "24a2edf207deeed4151bd87bca4af51c": 252, "concret": 253, "email": 253, "constraint": [253, 270, 274], "completitud": 253, "leverag": 253, "dcbfe21e5250264b26595d151796be70": 253, "__gnuc__4": [253, 255, 258, 265], "__gnuc_minor__2": [253, 255, 258, 265], "__clang_major__13": [253, 255, 258], "__clang_minor__1": [253, 255, 258], "__apple_build_version__13160021": [253, 255, 258], "6679492451b5d0750f14f9024fdbf84e19d2941b": 253, "customis": 253, "breakag": [253, 255], "package_inform": 254, "output_nam": 254, "a311fcf8a63f3206": 254, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [254, 260, 262], "44d78a68b16b25c5e6d7e8884b8f58b8": 254, "a8cb81b31dc10d96": 254, "handle_sourc": 255, "mutabl": 255, "0fcb5ffd11025446": 255, "update_sourc": 255, "369786d0fb355069": 255, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 255, "saw": [256, 257, 270], "other_packag": [257, 258, 259], "sumconan": 257, "sum": 257, "8d9f1fb3655adcb348befcd8374c5292": 257, "pid": [257, 258], "header_only_gtest": 257, "test_sum": 257, "9bf83ef65d5ff0d6": 257, "sumtest": 257, "basicsum": 257, "lack": 257, "3rd": 258, "circumst": 258, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 258, "deep": 258, "local_include_fold": 258, "local_lib_fold": 258, "prebuilt_binari": 258, "vendor_hello_librari": 258, "_o": 258, "_arch": 258, "9c7634dfe0369907f569c4e583f9bc50": 258, "522dcea5982a3f8a5b624c16477e47195da2f84f": 258, "63fead0844576fc02943e16909f08fcdddd6f44b": 258, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [258, 259], "28": 258, "a0cd51c51fe9010370187244af885b0efcc5b69b": 258, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 258, "dcf68e932572755309a5f69f3cee1bede410e907": 258, "somewher": 258, "prebuilt_remote_binari": 258, "base_url": 258, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 258, "secure_scannerrecip": 259, "secure_scann": 259, "scanner": 259, "secure_scannertestconan": 259, "my_consum": 259, "enviorn": 259, "overwrot": 259, "package_method": 260, "predetermin": 260, "b5857f2e70d1b2fd": 260, "bf7f5b9a3bb2c957742be4be216dfcbb": 260, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [260, 262], "47b4c4c61c8616e5": 260, "222db0532bba7cbc": 260, "50f91e204d09b64b24b29df3b87a2f3a": 260, "96ed9fb1f78bc96708b1abf4841523b0": 260, "21ec37b931782de8": 260, "preparing_the_build": 261, "optional_fmt": 261, "target_compile_definit": 261, "using_fmt": 261, "endl": 261, "debugshar": 261, "testing_packag": 262, "hellotestconan": 262, "cd132b054cf999f31bd2fd2424053ddc": 262, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 262, "1d9bb4c015de50bcb4a338c07229b3bc": 262, "4ff3fd65a1d37b52436bf62ea6eaac04": 262, "d136b3379fdb29bdfe31404b916b29e1": 262, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 262, "ee8cbd2bf32d1c89e553bdd9d5606127": 262, "costli": 263, "entir": 263, "depth": 263, "developing_packag": [264, 265, 266], "editable_packag": 264, "fledg": 264, "perspect": 264, "increment": 264, "trial": 265, "phase": 265, "local_package_development_flow": 265, "ve": 265, "cmakedeps_macro": 265, "f09ef573c22f3919ba26ee91ae444eaa": 265, "__cplusplus201103": 265, "__clang_major__14": 265, "__apple_build_version__14000029": 265, "po": 265, "examin": 266, "package_layout": 266, "sayb3ea744527a91": 266, "say830097e941e10": 266, "libsai": 266, "say8938ceae216fc": 266, "say_say_releas": 266, "local_fold": 266, "expir": 267, "increas": [267, 268], "oppos": [267, 274], "intent": 267, "intro": [269, 270], "credit": 269, "videogam": 269, "0fe4e6890766f7b8e21f764f0049aec7": 269, "d639998c2e55cf36d261ab319801c322": 269, "905c3f0babc520684c84127378fefdd0": [269, 270], "converg": 269, "mathemat": 270, "sound32": 270, "sound": 270, "1675278126": 270, "0552447": 270, "83d4b7bf607b3b60a6546f8b58b5cdd7": 270, "1675278904": 270, "0791488": 270, "1675278900": 270, "0103245": 270, "enforc": 270, "paramount": 270, "1675278901": 270, "7527816": 270, "harm": 270, "1675294635": 270, "6049662": 270, "1675294637": 270, "9775107": 270, "2475ece651f666f42c155623228c75d2": 271, "2b547b7f20f5541c16d0b5cbcf207502": 271, "licenc": 271, "1d674b4349d2b1ea06aa6419f5f99dd9": 271, "chat": 271, "17b45a168519b8e0ed178d822b7ad8c8": 271, "12f87e1b8a881da6b19cc7f229e16c76": 271, "ago": 271, "determinist": 271, "subsequ": 271, "8b8c3deef5ef47a8009d4afaebfe952": 271, "8e8d380347e6d067240c4c00132d42b1": 271, "c347faaedc1e7e3282d3bfed31700019": 271, "wast": 271, "apprecip": [272, 273], "newest": 272, "hold": 272, "letter": [272, 274], "becam": 272, "evid": 272, "demand": 272, "entiti": 272, "numer": 272, "tild": 272, "caret": 272, "include_prereleas": 272, "henc": 272, "fast": 273, "blown": 273, "intervent": 273, "excit": 274, "youtub": 274, "kkgglzm5ou": 274, "tribe": 274, "026": 274, "requirements_trait": 274, "modular": 274, "subapi": 274, "redesign": 274, "send": 274, "thorough": 274, "mydeploi": 274, "meaning": 274, "mylib_a": 274, "mylib_b": 274, "034": 274, "new_lockfil": 274, "enviro": 274, "shorten": 274, "short_path": 274, "incredibuild": 274, "sigstor": 274, "accur": 274, "bulk": 274, "teh": 274}, "objects": {"conan.api.conan_api": [[165, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[166, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[166, 1, 1, "", "global_conf"], [166, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[167, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.download.DownloadAPI": [[167, 2, 1, "", "download_full"], [167, 2, 1, "", "package"], [167, 2, 1, "", "recipe"]], "conan.api.subapi.export": [[168, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[169, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[169, 2, 1, "", "analyze_binaries"], [169, 2, 1, "", "load_graph"], [169, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[170, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[170, 2, 1, "", "install_binaries"], [170, 2, 1, "", "install_consumer"], [170, 2, 1, "", "install_sources"], [170, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[171, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[171, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[172, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[172, 2, 1, "", "get_home_template"], [172, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[173, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[173, 2, 1, "", "detect"], [173, 2, 1, "", "get_default_build"], [173, 2, 1, "", "get_default_host"], [173, 2, 1, "", "get_path"], [173, 2, 1, "", "get_profile"], [173, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[174, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[174, 2, 1, "", "add"], [174, 2, 1, "", "disable"], [174, 2, 1, "", "enable"], [174, 2, 1, "", "get"], [174, 2, 1, "", "list"], [174, 2, 1, "", "remove"], [174, 2, 1, "", "rename"], [174, 2, 1, "", "update"], [174, 2, 1, "", "user_login"], [174, 2, 1, "", "user_logout"]], "conan.api.subapi.remove": [[175, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[176, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[177, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[177, 2, 1, "", "check_upstream"], [177, 2, 1, "", "get_backup_sources"], [177, 2, 1, "", "prepare"], [177, 2, 1, "", "upload_full"]], "conan.tools.android": [[180, 3, 1, "", "android_abi"]], "conan.tools.apple": [[182, 0, 1, "", "XCRun"], [182, 3, 1, "", "fix_apple_shared_install_name"], [182, 3, 1, "", "is_apple_os"], [182, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[182, 1, 1, "", "ar"], [182, 1, 1, "", "cc"], [182, 1, 1, "", "cxx"], [182, 2, 1, "", "find"], [182, 1, 1, "", "install_name_tool"], [182, 1, 1, "", "libtool"], [182, 1, 1, "", "otool"], [182, 1, 1, "", "ranlib"], [182, 1, 1, "", "sdk_path"], [182, 1, 1, "", "sdk_platform_path"], [182, 1, 1, "", "sdk_platform_version"], [182, 1, 1, "", "sdk_version"], [182, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[183, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[183, 2, 1, "", "__init__"], [183, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[186, 3, 1, "", "check_max_cppstd"], [186, 3, 1, "", "check_min_cppstd"], [186, 3, 1, "", "default_cppstd"], [186, 3, 1, "", "supported_cppstd"], [186, 3, 1, "", "valid_max_cppstd"], [186, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[186, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[186, 3, 1, "", "can_run"], [186, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[188, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[188, 2, 1, "", "build"], [188, 2, 1, "", "configure"], [188, 2, 1, "", "ctest"], [188, 2, 1, "", "install"], [188, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[190, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[190, 2, 1, "", "generate"], [190, 2, 1, "", "get_cmake_package_name"], [190, 2, 1, "", "get_find_mode"], [190, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[189, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[191, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[191, 2, 1, "", "generate"]], "conan.tools.env.environment": [[195, 0, 1, "", "EnvVars"], [194, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[195, 2, 1, "", "apply"], [195, 2, 1, "", "get"], [195, 2, 1, "", "items"], [195, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[194, 2, 1, "", "append"], [194, 2, 1, "", "append_path"], [194, 2, 1, "", "compose_env"], [194, 2, 1, "", "define"], [194, 2, 1, "", "deploy_base_folder"], [194, 2, 1, "", "dumps"], [194, 2, 1, "", "prepend"], [194, 2, 1, "", "prepend_path"], [194, 2, 1, "", "remove"], [194, 2, 1, "", "unset"], [194, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[196, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[196, 2, 1, "", "environment"], [196, 2, 1, "", "generate"], [196, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[197, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[197, 2, 1, "", "environment"], [197, 2, 1, "", "generate"], [197, 2, 1, "", "vars"]], "conan.tools.files": [[199, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[199, 3, 1, "", "trim_conandata"], [199, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[199, 3, 1, "", "copy"]], "conan.tools.files.files": [[199, 3, 1, "", "chdir"], [200, 3, 1, "", "check_md5"], [200, 3, 1, "", "check_sha1"], [200, 3, 1, "", "check_sha256"], [201, 3, 1, "", "download"], [201, 3, 1, "", "ftp_download"], [201, 3, 1, "", "get"], [199, 3, 1, "", "load"], [199, 3, 1, "", "mkdir"], [199, 3, 1, "", "rename"], [199, 3, 1, "", "replace_in_file"], [199, 3, 1, "", "rm"], [199, 3, 1, "", "rmdir"], [199, 3, 1, "", "save"], [199, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[203, 3, 1, "", "apply_conandata_patches"], [203, 3, 1, "", "export_conandata_patches"], [203, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[204, 3, 1, "", "absolute_to_relative_symlinks"], [204, 3, 1, "", "remove_broken_symlinks"], [204, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[209, 0, 1, "", "MakeDeps"], [210, 0, 1, "", "PkgConfig"], [211, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[209, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[210, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[211, 1, 1, "", "content"], [211, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[206, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[206, 2, 1, "", "autoreconf"], [206, 2, 1, "", "configure"], [206, 2, 1, "", "install"], [206, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[207, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[207, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[208, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[208, 2, 1, "", "update_autoreconf_args"], [208, 2, 1, "", "update_configure_args"], [208, 2, 1, "", "update_make_args"]], "conan.tools.google": [[213, 0, 1, "", "Bazel"], [214, 0, 1, "", "BazelDeps"], [215, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[213, 2, 1, "", "build"], [213, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[214, 4, 1, "", "build_context_activated"], [214, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[215, 4, 1, "", "compilation_mode"], [215, 4, 1, "", "compiler"], [215, 4, 1, "", "conlyopt"], [215, 4, 1, "", "copt"], [215, 4, 1, "", "cppstd"], [215, 4, 1, "", "cpu"], [215, 4, 1, "", "crosstool_top"], [215, 4, 1, "", "cxxopt"], [215, 4, 1, "", "dynamic_mode"], [215, 4, 1, "", "force_pic"], [215, 2, 1, "", "generate"], [215, 4, 1, "", "linkopt"]], "conan.tools.intel": [[216, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[216, 4, 1, "", "arch"], [216, 1, 1, "", "command"], [216, 2, 1, "", "generate"], [216, 1, 1, "", "installation_path"], [216, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[219, 0, 1, "", "Meson"], [220, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[219, 2, 1, "", "build"], [219, 2, 1, "", "configure"], [219, 2, 1, "", "install"], [219, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[220, 4, 1, "", "apple_arch_flag"], [220, 4, 1, "", "apple_isysroot_flag"], [220, 4, 1, "", "apple_min_version_flag"], [220, 4, 1, "", "ar"], [220, 4, 1, "", "as_"], [220, 4, 1, "", "c"], [220, 4, 1, "", "c_args"], [220, 4, 1, "", "c_ld"], [220, 4, 1, "", "c_link_args"], [220, 4, 1, "", "cpp"], [220, 4, 1, "", "cpp_args"], [220, 4, 1, "", "cpp_ld"], [220, 4, 1, "", "cpp_link_args"], [220, 4, 1, "", "cross_build"], [220, 2, 1, "", "generate"], [220, 4, 1, "", "ld"], [220, 4, 1, "", "objc"], [220, 4, 1, "", "objc_args"], [220, 4, 1, "", "objc_link_args"], [220, 4, 1, "", "objcpp"], [220, 4, 1, "", "objcpp_args"], [220, 4, 1, "", "objcpp_link_args"], [220, 4, 1, "", "pkg_config_path"], [220, 4, 1, "", "pkgconfig"], [220, 4, 1, "", "preprocessor_definitions"], [220, 4, 1, "", "project_options"], [220, 4, 1, "", "properties"], [220, 4, 1, "", "strip"], [220, 4, 1, "", "windres"]], "conan.tools.microsoft": [[223, 0, 1, "", "MSBuild"], [224, 0, 1, "", "MSBuildDeps"], [225, 0, 1, "", "MSBuildToolchain"], [227, 0, 1, "", "VCVars"], [222, 3, 1, "", "unix_path"], [228, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[223, 2, 1, "", "build"], [223, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[224, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[225, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[227, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[222, 3, 1, "", "check_min_vs"], [222, 3, 1, "", "is_msvc"], [222, 3, 1, "", "is_msvc_static_runtime"], [222, 3, 1, "", "msvc_runtime_flag"], [222, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[231, 0, 1, "", "Version"]], "conan.tools.scm.git": [[230, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[230, 2, 1, "", "checkout"], [230, 2, 1, "", "checkout_from_conandata_coordinates"], [230, 2, 1, "", "clone"], [230, 2, 1, "", "commit_in_remote"], [230, 2, 1, "", "coordinates_to_conandata"], [230, 2, 1, "", "fetch_commit"], [230, 2, 1, "", "get_commit"], [230, 2, 1, "", "get_remote_url"], [230, 2, 1, "", "get_repo_root"], [230, 2, 1, "", "get_url_and_commit"], [230, 2, 1, "", "included_files"], [230, 2, 1, "", "is_dirty"], [230, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[234, 0, 1, "", "Apk"], [234, 0, 1, "", "Apt"], [234, 0, 1, "", "Brew"], [234, 0, 1, "", "Chocolatey"], [234, 0, 1, "", "PacMan"], [234, 0, 1, "", "Pkg"], [234, 0, 1, "", "PkgUtil"], [234, 0, 1, "", "Yum"], [234, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[234, 2, 1, "", "check"], [234, 2, 1, "", "install"], [234, 2, 1, "", "install_substitutes"], [234, 2, 1, "", "update"]], "conans.model.conf.Conf": [[135, 2, 1, "", "append"], [135, 2, 1, "", "define"], [135, 2, 1, "", "prepend"], [135, 2, 1, "", "remove"], [135, 2, 1, "", "unset"], [135, 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, 60, 274], "1": [1, 264], "0": [1, 264], "15": 1, "feb": 1, "2024": 1, "17": 1, "10": 1, "jan": 1, "16": 1, "21": 1, "dec": 1, "2023": 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, "22": 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, 274], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 58, 61, 89, 105, 117, 195, 239, 249, 253, 271], "an": [3, 247], "artifactori": [3, 68, 239], "backup": [3, 4, 87, 274], "repo": [3, 239], "your": [3, 5, 24, 36, 47, 48, 58, 117, 244, 251, 253], "sourc": [3, 4, 29, 36, 52, 61, 73, 113, 119, 139, 251, 254, 255, 265, 266, 274], "back": 4, "up": [4, 238, 240], "third": [4, 19, 274], "parti": [4, 19, 274], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 54, 56, 58, 60, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 159, 165, 180, 181, 182, 186, 187, 192, 193, 198, 199, 200, 201, 202, 203, 204, 205, 206, 212, 216, 217, 218, 220, 221, 222, 229, 232, 233, 234, 236, 237, 238, 239, 240, 243, 244, 248, 252, 253, 254, 260, 262, 265, 266, 267, 274], "configur": [4, 22, 23, 66, 83, 117, 126, 132, 146, 149, 160, 184, 190, 216, 224, 234, 245, 247, 252, 254, 270, 274], "overview": 4, "usag": 4, "set": [4, 24, 76, 81, 83, 101, 110, 119, 150, 152, 189, 238, 240, 245, 252, 254, 259], "necessari": 4, "config": [4, 50, 88, 166], "run": [4, 31, 36, 117, 136, 144, 195, 239, 251], "normal": 4, "upload": [4, 6, 13, 87, 115, 177, 241, 271], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 50, 58, 60, 73, 76, 102, 119, 133, 162, 234, 241, 242, 245, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 262, 263, 264, 265, 266, 267, 271, 274], "repositori": [4, 236, 255], "host": [5, 244], "own": [5, 117], "conancent": [5, 8], "binari": [5, 73, 80, 81, 83, 119, 156, 252, 258], "updat": [5, 61, 101, 110], "from": [5, 7, 13, 29, 36, 61, 81, 144, 161, 190, 255, 267], "upstream": 5, "manag": [6, 59, 60, 73, 208, 234, 260, 274], "metadata": [6, 90, 119, 274], "file": [6, 23, 50, 51, 146, 149, 178, 190, 191, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 207, 208, 209, 211, 214, 215, 220, 224, 255, 260, 274], "recip": [6, 31, 43, 81, 102, 144, 179, 251, 252, 254, 259], "hook": [6, 161], "ad": [6, 134, 152], "command": [6, 12, 31, 32, 68, 85, 144, 157, 158, 274], "download": [6, 13, 90, 149, 167, 201, 258], "remov": [6, 13, 91, 107, 110, 111, 175, 259, 267], "test_packag": 6, "save": [7, 87, 199], "restor": [7, 87], "cach": [7, 87, 139, 149, 253, 267, 274], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 50, 52, 54, 56, 61, 66, 89, 117, 159, 190, 191, 206, 220, 239, 243, 244, 245, 247, 248, 255, 260, 264, 271], "product": 8, "environ": [8, 22, 132, 154, 194, 195, 208, 226, 254, 274], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 81, 83, 108, 117, 152, 158, 159, 160, 184, 190, 191, 192, 207, 208, 209, 211, 214, 216, 220, 223, 224, 225, 226, 227, 274], "version": [9, 10, 39, 40, 81, 101, 116, 119, 231, 246, 268, 272, 273], "handl": [10, 255], "rang": [10, 246, 272], "pre": [10, 258], "releas": [10, 245], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 108], "list": [13, 88, 91, 102, 109, 110, 171, 267, 274], "them": 13, "one": 13, "remot": [13, 110, 151, 154, 174, 238, 255], "differ": [13, 39, 40, 76, 245, 271], "build": [13, 25, 26, 27, 29, 45, 47, 52, 54, 56, 68, 73, 83, 86, 89, 96, 97, 119, 121, 135, 136, 186, 191, 206, 220, 243, 244, 245, 248, 251, 258, 261, 264, 265, 266, 274], "conanfil": [14, 15, 16, 20, 26, 101, 118, 145, 247], "method": [14, 52, 81, 120, 234, 247, 251, 254, 260], "layout": [15, 16, 18, 19, 119, 132, 145, 217, 247, 266], "declar": [16, 18, 19, 194], "when": [16, 18, 19, 206], "i": [16, 84, 206], "insid": [16, 41, 50], "subfold": 16, "compon": [17, 21, 135, 184, 254], "edit": [17, 91, 239, 264], "we": 18, "have": 18, "multipl": [18, 21, 245, 254], "subproject": 18, "librari": [19, 21, 135, 152, 206, 245, 251, 252, 254, 257], "package_info": [20, 135, 254], "defin": [21, 184, 254], "provid": [21, 119, 254], "propag": [22, 254], "inform": [22, 59, 81, 119, 134, 135, 149, 192, 254], "consum": [22, 81, 119, 190, 242, 254], "settings_us": [24, 152], "yml": [24, 152, 255], "locat": [24, 31, 36, 158], "new": [24, 26, 108, 152, 172, 273, 274], "cross": [25, 27, 83, 191, 220, 244], "integr": [26, 62, 87, 274], "android": [26, 27, 63, 180, 220], "studio": [26, 29, 58, 71], "project": [26, 45, 47, 54, 56, 190, 243, 251], "introduc": [26, 245, 251, 254], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 81, 82, 119, 130, 224, 245, 250, 254, 264, 269], "txt": [26, 145, 247], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 50, 67, 187, 188, 190, 243, 260], "cmakelist": 26, "applic": [26, 244, 245], "ndk": 27, "develop": [28, 35, 263, 265], "tool": [28, 39, 40, 43, 44, 46, 51, 52, 53, 55, 57, 149, 179, 180, 181, 182, 186, 187, 192, 193, 198, 199, 200, 201, 202, 203, 204, 205, 212, 216, 217, 218, 221, 222, 229, 232, 233, 234, 248, 259, 260], "flow": [28, 265], "debug": [29, 245], "step": [29, 260], "visual": [29, 58, 71, 222], "extens": [30, 68, 155, 274], "clean": [31, 87], "old": 31, "revis": [31, 76, 102, 246, 271, 274], "code": [31, 36, 251], "tour": [31, 36], "parser": 31, "user": [31, 101, 110, 119, 149, 274], "input": 31, "output": [31, 89, 92, 102, 119, 144], "public": [31, 274], "api": [31, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 274], "builtin": 33, "deploy": [33, 34, 36, 101, 160, 274], "agnost": 35, "deploi": [35, 36, 127], "copi": [36, 199, 260], "all": [36, 73], "graph": [37, 94, 95, 96, 97, 98, 99, 102, 169, 274], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 89, 101, 119, 136, 140, 145, 178, 224, 247, 259, 273], "option": [39, 81, 83, 101, 119, 145, 150, 189, 220, 245, 252, 254, 269], "modul": [41, 161], "tool_requir": [41, 42, 119, 123, 145, 150], "transpar": 41, "autotool": [44, 45, 64, 206], "simpl": [45, 54, 56, 243, 259], "linux": [45, 76], "maco": [45, 206], "cmaketoolchain": [47, 48, 49, 50, 191], "cmakepreset": [47, 48], "gener": [47, 48, 68, 101, 119, 130, 145, 159, 190, 191, 192, 196, 197, 207, 208, 209, 211, 214, 215, 220, 224, 254], "toolchain": [47, 191], "extend": [48, 83, 178, 191], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 132, 154, 184, 191, 194, 195], "xxx": 50, "import": [50, 161, 190, 267], "consider": 50, "patch": [52, 203, 251], "replace_in_fil": [52, 199], "apply_conandata_patch": [52, 203], "googl": [53, 212], "bazel": [54, 65, 213], "meson": [55, 56, 70, 218, 219, 220], "microsoft": [57, 221, 222], "first": [58, 253], "msbuild": [58, 223], "captur": 59, "git": [59, 230, 255], "scm": [59, 229], "credenti": [59, 148], "c": [60, 152, 220, 239, 252], "document": [60, 73], "instal": [61, 66, 68, 88, 101, 170, 190, 260, 265], "pip": 61, "recommend": 61, "known": 61, "issu": 61, "pipx": 61, "system": [61, 73, 140, 152, 233, 234, 251, 274], "self": [61, 130, 132, 266], "contain": 61, "execut": 61, "android_logo": 63, "autotools_logo": 64, "bazel_logo": 65, "clion_logo": 66, "clion": 66, "introduct": [66, 73, 149, 150, 178, 246], "plugin": [66, 81, 163, 274], "cmake_logo": 67, "jfrog_logo": 68, "jfrog": 68, "info": [68, 94, 99, 119], "how": [68, 84, 206, 234, 244], "gnu_make_logo": 69, "makefil": 69, "meson_logo": 70, "visual_studio_logo": 71, "xcode_logo": 72, "xcode": 72, "open": 73, "decentr": 73, "platform": 73, "compil": [73, 152, 191, 244], "stabl": 73, "commun": [73, 239], "navig": 73, "knowledg": 74, "cheat": 75, "sheet": 75, "faq": 76, "troubleshoot": 76, "error": [76, 247], "miss": 76, "prebuilt": [76, 258], "invalid": 76, "authenticationexcept": 76, "obtain": [76, 194], "window": 76, "core": [77, 149], "guidelin": 77, "good": 77, "practic": 77, "forbidden": 77, "video": 78, "refer": [79, 102, 119, 165, 183, 188, 189, 190, 191, 194, 195, 196, 197, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 219, 220, 223, 224, 225, 227, 234], "The": [80, 81, 82], "model": [80, 83, 119, 244, 254, 274], "compat": [81, 124, 156, 252, 274], "erasur": [81, 134], "package_id": [81, 82, 84, 134, 178, 259, 274], "py": [81, 118, 247, 274], "global": [81, 149, 159], "default": [81, 136, 220], "mode": [81, 82, 264], "effect": [82, 178], "non": [82, 247], "emb": [82, 119], "v": [83, 247], "conf": [83, 101, 119, 149, 150, 183, 185, 188, 191, 201, 208, 210, 213, 215, 216, 219, 220, 223, 224, 225, 226, 227], "target": [83, 190], "comput": 84, "formatt": [85, 94, 158], "path": [87, 101, 109], "check": 87, "home": 88, "show": [88, 109], "add": [91, 104, 110, 152, 250], "export": [92, 93, 119, 128, 168, 265], "format": [92, 102], "pkg": [93, 234, 265], "json": [94, 102, 148, 151, 153], "order": [96, 97], "merg": [97, 106], "explain": 98, "inspect": 100, "profil": [101, 109, 150, 163, 173, 244, 274], "name": [101, 119, 158, 211, 214], "channel": [101, 119], "lockfil": [101, 246, 270, 274], "id": [102, 245, 252], "artifact": 102, "html": 102, "compact": 102, "lock": [103, 104, 105, 106, 107], "templat": [108, 149], "detect": 109, "auth": 110, "disabl": [110, 190], "enabl": 110, "login": [110, 154], "logout": 110, "renam": [110, 199], "search": [112, 176], "test": [114, 136, 141, 178, 251, 257, 262], "server": [117, 240], "paramet": [117, 158], "permiss": 117, "authent": 117, "author": [117, 119], "ssl": 117, "nginx": 117, "subdirectori": 117, "apach": 117, "attribut": [119, 208, 211, 220, 223, 225, 226], "descript": [119, 149], "licens": [119, 260], "topic": 119, "homepag": 119, "url": 119, "build_requir": [119, 123], "test_requir": [119, 123, 145], "python_requir": [119, 159, 178, 267], "python_requires_extend": 119, "exports_sourc": 119, "conan_data": 119, "source_buildenv": 119, "package_typ": [119, 136], "default_opt": 119, "default_build_opt": 119, "options_descript": 119, "package_id_": 119, "non_emb": 119, "python": [119, 164, 178, 274], "unknown": 119, "_mode": 119, "build_polici": 119, "win_bash": 119, "win_bash_run": 119, "folder": [119, 132, 266], "source_fold": 119, "export_sources_fold": 119, "build_fold": 119, "package_fold": 119, "recipe_fold": 119, "recipe_metadata_fold": 119, "package_metadata_fold": 119, "no_copy_sourc": 119, "cpp": [119, 132, 266], "cpp_info": [119, 130, 135], "buildenv_info": [119, 135], "runenv_info": [119, 135], "conf_info": [119, 135], "deprec": [119, 150], "other": [119, 256, 267], "content": [119, 191, 236, 242, 249, 256, 268], "revision_mod": 119, "upload_polici": 119, "required_conan_vers": 119, "implement": [119, 125, 126, 134], "alia": 119, "extension_properti": 119, "build_id": 122, "host_vers": 123, "config_opt": 125, "avail": [125, 126, 134, 234], "automat": [125, 126, 134], "auto_shared_fp": [125, 126], "export_sourc": 129, "interfac": [130, 161], "iter": [130, 195], "init": 131, "auto_header_onli": 134, "partial": 134, "properti": [135, 190, 211, 213, 214, 234, 254], "trait": [136, 224], "header": [136, 252, 257], "lib": 136, "visibl": 136, "transitive_head": 136, "transitive_lib": 136, "package_id_mod": 136, "forc": [136, 139], "overrid": [136, 269], "direct": 136, "infer": 136, "each": 136, "kind": 136, "set_nam": 137, "set_vers": 138, "retriev": 139, "system_requir": 140, "collect": 140, "valid": [142, 247], "validate_build": 143, "text": 144, "conanrc": 147, "storage_path": 149, "download_cach": 149, "data": [149, 220], "type": [149, 220, 256], "oper": [149, 152, 199], "pattern": [149, 150], "about": [149, 206, 253], "built": [149, 160, 206, 258], "network": 149, "client": 149, "certif": 149, "ux": 149, "skip": 149, "warn": 149, "section": 150, "system_tool": 150, "buildenv": 150, "runenv": 150, "replace_requir": 150, "replace_tool_requir": 150, "platform_requir": 150, "platform_tool_requir": 150, "render": 150, "includ": 150, "msvc": 152, "intel": [152, 216], "cc": 152, "architectur": 152, "standard": 152, "aka": 152, "libcxx": 152, "sub": 152, "valu": 152, "source_credenti": 153, "conan_hom": 154, "conan_default_profil": 154, "termin": 154, "color": 154, "log": 154, "wrapper": [157, 274], "scope": 158, "decor": 158, "conan_command": 158, "group": 158, "none": 158, "conan_subcommand": 158, "argument": [158, 220], "definit": [158, 194], "pars": 158, "full_deploi": 160, "direct_deploi": 160, "structur": 161, "storag": 161, "activ": 161, "share": [161, 206, 245], "offici": 161, "sign": [162, 274], "base": 178, "class": 178, "reus": 178, "resolut": 178, "android_abi": 180, "appl": [181, 182, 220], "fix_apple_shared_install_nam": 182, "is_apple_o": 182, "to_apple_arch": 182, "xcrun": 182, "xcodebuild": 183, "xcodedep": 184, "addit": 184, "support": [184, 224, 247], "xcodetoolchain": 185, "build_job": 186, "cross_build": 186, "can_run": 186, "cppstd": 186, "check_min_cppstd": 186, "check_max_cppstd": 186, "valid_min_cppstd": 186, "valid_max_cppstd": 186, "default_cppstd": 186, "supported_cppstd": 186, "cmake_layout": 189, "multi": [189, 270, 274], "cmakedep": 190, "build_context_activ": [190, 211, 214], "build_context_suffix": [190, 211], "build_context_build_modul": 190, "check_components_exist": 190, "overwrit": 190, "side": 190, "set_properti": 190, "For": 190, "map": 190, "": [190, 274], "preprocessor_definit": [191, 220], "cache_vari": 191, "user_presets_path": 191, "presets_build_environ": 191, "presets_run_environ": 191, "extra": 191, "flag": [191, 209], "presets_prefix": 191, "advanc": 191, "block": 191, "cppinfo": 192, "aggreg": 192, "env": 193, "composit": 194, "envvar": 195, "appli": 195, "virtualbuildenv": 196, "virtualrunenv": 197, "basic": 199, "load": 199, "rm": 199, "mkdir": 199, "rmdir": 199, "chdir": 199, "unzip": 199, "update_conandata": 199, "trim_conandata": 199, "collect_lib": 199, "checksum": 200, "check_md5": 200, "check_sha1": 200, "check_sha256": 200, "get": 201, "ftp_download": 201, "autopackag": 202, "export_conandata_patch": 203, "symlink": [204, 260], "absolute_to_relative_symlink": 204, "remove_external_symlink": 204, "remove_broken_symlink": 204, "gnu": 205, "A": [206, 253, 259], "note": [206, 253], "relocat": 206, "helper": 206, "why": 206, "thi": 206, "problem": 206, "address": 206, "autotoolsdep": 207, "autotoolstoolchain": 208, "configure_arg": 208, "make_arg": 208, "autoreconf_arg": 208, "makedep": 209, "pkgconfig": 210, "pkgconfigdep": 211, "bazeldep": 214, "bazeltoolchain": 215, "intelcc": 216, "predefin": 217, "basic_layout": 217, "mesontoolchain": 220, "conan_meson_n": 220, "ini": 220, "conan_meson_cross": 220, "directori": 220, "project_opt": 220, "proper": 220, "object": 220, "check_min_v": 222, "msvc_runtime_flag": 222, "is_msvc": 222, "is_msvc_static_runtim": 222, "msvs_toolset": 222, "subsystem": 222, "unix_path": 222, "msbuilddep": 224, "msbuildtoolchain": 225, "nmakedep": 226, "nmaketoolchain": 226, "constructor": 226, "vcvar": 227, "vs_layout": 228, "scon": 232, "sconsdep": 232, "package_manag": 234, "affect": 234, "ar": 234, "invok": 234, "apk": 234, "apt": 234, "yum": 234, "dnf": 234, "pacman": 234, "zypper": 234, "brew": 234, "pkgutil": 234, "chocolatei": 234, "tutori": 235, "work": [236, 264], "tabl": [236, 242, 249, 256, 268], "contribut": 237, "center": 237, "ce": 239, "context": 244, "two": 244, "static": 245, "modifi": 245, "its": 245, "link": 245, "between": 245, "concept": 245, "understand": [247, 266], "flexibl": 247, "rais": 247, "condit": 247, "chang": [251, 254], "condition": 251, "select": 251, "onli": [252, 257], "specif": 254, "zip": 255, "store": 255, "branch": 255, "conandata": 255, "local": [258, 263], "alreadi": 258, "prepar": 261, "put": 264, "sai": 264, "revert": 264, "featur": 267, "unus": 267, "conflict": 269, "resolv": 269, "evolv": 270, "semant": 272, "express": 272, "autom": 273, "what": 274, "migrat": 274, "cli": 274, "checker": 274, "immut": 274, "optim": 274}, "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.1.0 (15-Feb-2024)": [[1, "feb-2024"]], "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, "id77"]], "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, "id159"]], "2.0.11 (18-Sept-2023)": [[1, "id171"]], "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, "id257"]], "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, "id326"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id386"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id435"]], "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"], [90, "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"], [268, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [108, "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"], [254, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [254, "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"], [145, "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"]], "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"], [158, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [160, "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"], [127, "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"]], "CMakeToolchain: Using xxx-config.cmake files inside packages": [[50, "cmaketoolchain-using-xxx-config-cmake-files-inside-packages"]], "Important considerations": [[50, "important-considerations"]], "tools.files": [[51, "tools-files"]], "Patching sources": [[52, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[52, "patching-using-replace-in-file"]], "in source() method": [[52, "in-source-method"]], "in build() method": [[52, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[52, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[52, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[53, "tools-google"]], "Build a simple Bazel project using Conan": [[54, "build-a-simple-bazel-project-using-conan"]], "tools.meson": [[55, "tools-meson"]], "Build a simple Meson project using Conan": [[56, "build-a-simple-meson-project-using-conan"]], "tools.microsoft": [[57, "tools-microsoft"]], "Create your first Conan package with Visual Studio/MSBuild": [[58, "create-your-first-conan-package-with-visual-studio-msbuild"]], "Capturing Git scm information": [[59, "capturing-git-scm-information"]], "Credentials management": [[59, "credentials-management"]], "Conan 2 - C and C++ Package Manager Documentation": [[60, "conan-2-c-and-c-package-manager-documentation"]], "Install": [[61, "install"]], "Install with pip (recommended)": [[61, "install-with-pip-recommended"]], "Known installation issues with pip": [[61, "known-installation-issues-with-pip"]], "Update": [[61, "update"], [101, "update"]], "Install with pipx": [[61, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[61, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[61, "install-from-source"]], "Integrations": [[62, "integrations"]], "android_logo Android": [[63, "android-logo-android"]], "autotools_logo Autotools": [[64, "autotools-logo-autotools"]], "bazel_logo Bazel": [[65, "bazel-logo-bazel"]], "clion_logo CLion": [[66, "clion-logo-clion"]], "Introduction": [[66, "introduction"], [73, "introduction"], [178, "introduction"]], "Installing the plugin": [[66, "installing-the-plugin"]], "Configuring the plugin": [[66, "configuring-the-plugin"]], "Using the plugin": [[66, "using-the-plugin"]], "cmake_logo CMake": [[67, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[68, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[68, "artifactory-build-info"]], "How to install the build info extension commands": [[68, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[68, "generating-a-build-info"]], "gnu_make_logo Makefile": [[69, "gnu-make-logo-makefile"]], "meson_logo Meson": [[70, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[71, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[72, "xcode-logo-xcode"]], "Open Source": [[73, "open-source"]], "Decentralized package manager": [[73, "decentralized-package-manager"]], "Binary management": [[73, "binary-management"]], "All platforms, all build systems and compilers": [[73, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[73, "stable"]], "Community": [[73, "community"]], "Navigating the documentation": [[73, "navigating-the-documentation"]], "Knowledge": [[74, "knowledge"]], "Cheat sheet": [[75, "cheat-sheet"]], "FAQ": [[76, "faq"]], "Troubleshooting": [[76, "troubleshooting"]], "ERROR: Missing prebuilt package": [[76, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[76, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[76, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[76, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[77, "core-guidelines"]], "Good practices": [[77, "good-practices"]], "Forbidden practices": [[77, "forbidden-practices"]], "Videos": [[78, "videos"]], "Reference": [[79, "reference"], [183, "reference"], [188, "reference"], [189, "reference"], [190, "reference"], [191, "reference"], [194, "reference"], [195, "reference"], [196, "reference"], [197, "reference"], [206, "reference"], [207, "reference"], [208, "reference"], [209, "reference"], [210, "reference"], [211, "reference"], [213, "reference"], [214, "reference"], [215, "reference"], [216, "reference"], [219, "reference"], [220, "reference"], [223, "reference"], [224, "reference"], [225, "reference"], [227, "reference"], [234, "reference"], [234, "id4"], [234, "id6"], [234, "id7"], [234, "id8"], [234, "id9"], [234, "id10"], [234, "id11"], [234, "id12"]], "The binary model": [[80, "the-binary-model"]], "Customizing the binary compatibility": [[81, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[81, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[81, "information-erasure-in-package-id-method"]], "The compatibility() method": [[81, "the-compatibility-method"]], "The compatibility.py plugin": [[81, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[81, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[81, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[81, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[81, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[82, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[82, "non-embed-mode"]], "Embed mode": [[82, "embed-mode"]], "Extending the binary model": [[83, "extending-the-binary-model"]], "Custom settings": [[83, "custom-settings"]], "Custom options": [[83, "custom-options"]], "Settings vs options vs conf": [[83, "settings-vs-options-vs-conf"]], "Custom configuration": [[83, "custom-configuration"]], "Cross build target settings": [[83, "cross-build-target-settings"]], "How the package_id is computed": [[84, "how-the-package-id-is-computed"]], "Commands": [[85, "commands"]], "Command formatters": [[85, "command-formatters"]], "conan build": [[86, "conan-build"], [265, "conan-build"]], "conan cache": [[87, "conan-cache"]], "conan cache path": [[87, "conan-cache-path"]], "conan cache clean": [[87, "conan-cache-clean"]], "conan cache check-integrity": [[87, "conan-cache-check-integrity"]], "conan cache backup-upload": [[87, "conan-cache-backup-upload"]], "conan cache save": [[87, "conan-cache-save"]], "conan cache restore": [[87, "conan-cache-restore"]], "conan config": [[88, "conan-config"]], "conan config home": [[88, "conan-config-home"]], "conan config install": [[88, "conan-config-install"]], "conan config list": [[88, "conan-config-list"]], "conan config show": [[88, "conan-config-show"]], "conan create": [[89, "conan-create"]], "Using conan create with build requirements": [[89, "using-conan-create-with-build-requirements"]], "Conan create output": [[89, "conan-create-output"]], "conan download": [[90, "conan-download"]], "conan editable": [[91, "conan-editable"]], "conan editable add": [[91, "conan-editable-add"]], "conan editable remove": [[91, "conan-editable-remove"]], "conan editable list": [[91, "conan-editable-list"]], "conan export": [[92, "conan-export"]], "Output Formats": [[92, "output-formats"]], "conan export-pkg": [[93, "conan-export-pkg"], [265, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[94, "formatter-graph-info-json"]], "conan graph": [[95, "conan-graph"]], "conan graph build-order": [[96, "conan-graph-build-order"]], "conan graph build-order-merge": [[97, "conan-graph-build-order-merge"]], "conan graph explain": [[98, "conan-graph-explain"]], "conan graph info": [[99, "conan-graph-info"]], "conan inspect": [[100, "conan-inspect"]], "conan install": [[101, "conan-install"], [265, "conan-install"]], "Conanfile path or \u2013requires": [[101, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[101, "profiles-settings-options-conf"]], "Generators and deployers": [[101, "generators-and-deployers"]], "Name, version, user, channel": [[101, "name-version-user-channel"]], "Lockfiles": [[101, "lockfiles"], [246, "lockfiles"], [270, "lockfiles"]], "conan list": [[102, "conan-list"]], "Listing recipe references": [[102, "listing-recipe-references"]], "Listing recipe revisions": [[102, "listing-recipe-revisions"]], "Listing package IDs": [[102, "listing-package-ids"]], "Listing package revisions": [[102, "listing-package-revisions"]], "Listing graph artifacts": [[102, "listing-graph-artifacts"]], "List json output format": [[102, "list-json-output-format"]], "List html output format": [[102, "list-html-output-format"]], "List compact output format": [[102, "list-compact-output-format"]], "conan lock": [[103, "conan-lock"]], "conan lock add": [[104, "conan-lock-add"]], "conan lock create": [[105, "conan-lock-create"]], "conan lock merge": [[106, "conan-lock-merge"]], "conan lock remove": [[107, "conan-lock-remove"]], "conan new": [[108, "conan-new"], [108, "id1"]], "Custom templates": [[108, "custom-templates"]], "conan profile": [[109, "conan-profile"]], "conan profile detect": [[109, "conan-profile-detect"]], "conan profile list": [[109, "conan-profile-list"]], "conan profile path": [[109, "conan-profile-path"]], "conan profile show": [[109, "conan-profile-show"]], "conan remote": [[110, "conan-remote"]], "conan remote add": [[110, "conan-remote-add"]], "conan remote auth": [[110, "conan-remote-auth"]], "conan remote disable": [[110, "conan-remote-disable"]], "conan remote enable": [[110, "conan-remote-enable"]], "conan remote list": [[110, "conan-remote-list"]], "conan remote list-users": [[110, "conan-remote-list-users"]], "conan remote login": [[110, "conan-remote-login"]], "conan remote logout": [[110, "conan-remote-logout"]], "conan remote remove": [[110, "conan-remote-remove"]], "conan remote rename": [[110, "conan-remote-rename"]], "conan remote set-user": [[110, "conan-remote-set-user"]], "conan remote update": [[110, "conan-remote-update"]], "conan remove": [[111, "conan-remove"]], "conan search": [[112, "conan-search"]], "conan source": [[113, "conan-source"], [265, "conan-source"]], "conan test": [[114, "conan-test"]], "conan upload": [[115, "conan-upload"]], "conan version": [[116, "conan-version"]], "Conan Server": [[117, "conan-server"]], "Configuration": [[117, "configuration"]], "Server Parameters": [[117, "server-parameters"]], "Permissions Parameters": [[117, "permissions-parameters"]], "Authentication": [[117, "authentication"]], "Create Your Own Custom Authenticator": [[117, "create-your-own-custom-authenticator"]], "Authorizations": [[117, "authorizations"]], "Create Your Own Custom Authorizer": [[117, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[117, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[117, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[117, "running-conan-server-using-apache"]], "conanfile.py": [[118, "conanfile-py"]], "Attributes": [[119, "attributes"], [211, "attributes"], [220, "attributes"], [225, "attributes"], [226, "attributes"]], "Package reference": [[119, "package-reference"]], "name": [[119, "name"]], "version": [[119, "version"]], "user": [[119, "user"]], "channel": [[119, "channel"]], "Metadata": [[119, "metadata"]], "description": [[119, "description"]], "license": [[119, "license"]], "author": [[119, "author"]], "topics": [[119, "topics"]], "homepage": [[119, "homepage"]], "url": [[119, "url"]], "Requirements": [[119, "requirements"]], "requires": [[119, "requires"]], "tool_requires": [[119, "tool-requires"]], "build_requires": [[119, "build-requires"]], "test_requires": [[119, "test-requires"], [123, "test-requires"]], "python_requires": [[119, "python-requires"], [267, "python-requires"]], "python_requires_extend": [[119, "python-requires-extend"]], "Sources": [[119, "sources"]], "exports": [[119, "exports"]], "exports_sources": [[119, "exports-sources"]], "conan_data": [[119, "conan-data"]], "source_buildenv": [[119, "source-buildenv"]], "Binary model": [[119, "binary-model"]], "package_type": [[119, "package-type"]], "settings": [[119, "settings"]], "options": [[119, "options"]], "default_options": [[119, "default-options"]], "default_build_options": [[119, "default-build-options"]], "options_description": [[119, "options-description"]], "info": [[119, "info"]], "package_id_{embed,non_embed,python,unknown}_mode": [[119, "package-id-embed-non-embed-python-unknown-mode"]], "Build": [[119, "build"]], "generators": [[119, "generators"]], "build_policy": [[119, "build-policy"]], "win_bash": [[119, "win-bash"]], "win_bash_run": [[119, "win-bash-run"]], "Folders and layout": [[119, "folders-and-layout"]], "source_folder": [[119, "source-folder"]], "export_sources_folder": [[119, "export-sources-folder"]], "build_folder": [[119, "build-folder"]], "package_folder": [[119, "package-folder"]], "recipe_folder": [[119, "recipe-folder"]], "recipe_metadata_folder": [[119, "recipe-metadata-folder"]], "package_metadata_folder": [[119, "package-metadata-folder"]], "no_copy_source": [[119, "no-copy-source"]], "Layout": [[119, "layout"]], "folders": [[119, "folders"]], "cpp": [[119, "cpp"]], "layouts": [[119, "layouts"]], "Package information for consumers": [[119, "package-information-for-consumers"]], "cpp_info": [[119, "cpp-info"]], "buildenv_info": [[119, "buildenv-info"]], "runenv_info": [[119, "runenv-info"]], "conf_info": [[119, "conf-info"], [135, "conf-info"]], "deprecated": [[119, "deprecated"]], "provides": [[119, "provides"]], "Other": [[119, "other"]], "dependencies": [[119, "dependencies"]], "conf": [[119, "conf"], [183, "conf"], [185, "conf"], [188, "conf"], [191, "conf"], [201, "conf"], [208, "conf"], [210, "conf"], [213, "conf"], [215, "conf"], [216, "conf"], [219, "conf"], [220, "conf"], [223, "conf"], [224, "conf"], [225, "conf"], [226, "conf"], [227, "conf"]], "Output": [[119, "output"]], "Output contents": [[119, "output-contents"]], "revision_mode": [[119, "revision-mode"]], "upload_policy": [[119, "upload-policy"]], "required_conan_version": [[119, "required-conan-version"]], "implements": [[119, "implements"]], "alias": [[119, "alias"]], "extension_properties": [[119, "extension-properties"]], "Methods": [[120, "methods"]], "build()": [[121, "build"]], "build_id()": [[122, "build-id"]], "build_requirements()": [[123, "build-requirements"]], "tool_requires()": [[123, "tool-requires"]], "": [[123, "host-version"]], "compatibility()": [[124, "compatibility"]], "config_options()": [[125, "config-options"]], "Available automatic implementations": [[125, "available-automatic-implementations"], [126, "available-automatic-implementations"], [134, "available-automatic-implementations"]], "auto_shared_fpic": [[125, "auto-shared-fpic"], [126, "auto-shared-fpic"]], "configure()": [[126, "configure"]], "export()": [[128, "export"]], "export_sources()": [[129, "export-sources"]], "generate()": [[130, "generate"]], "self.dependencies": [[130, "self-dependencies"]], "Dependencies interface": [[130, "dependencies-interface"]], "Iterating dependencies": [[130, "iterating-dependencies"]], "Dependencies cpp_info interface": [[130, "dependencies-cpp-info-interface"]], "init()": [[131, "init"]], "layout()": [[132, "layout"]], "self.folders": [[132, "self-folders"], [266, "self-folders"]], "self.cpp": [[132, "self-cpp"], [266, "self-cpp"]], "Environment variables and configuration": [[132, "environment-variables-and-configuration"]], "package()": [[133, "package"]], "package_id()": [[134, "package-id"]], "auto_header_only": [[134, "auto-header-only"]], "Information erasure": [[134, "information-erasure"]], "Partial information erasure": [[134, "partial-information-erasure"]], "Adding information": [[134, "adding-information"]], "package_info()": [[135, "package-info"]], "cpp_info: Library and build information": [[135, "cpp-info-library-and-build-information"]], "Properties": [[135, "properties"], [190, "properties"], [211, "properties"], [213, "properties"], [214, "properties"]], "Components": [[135, "components"]], "buildenv_info, runenv_info": [[135, "buildenv-info-runenv-info"]], "requirements()": [[136, "requirements"]], "Requirement traits": [[136, "requirement-traits"]], "headers": [[136, "headers"]], "libs": [[136, "libs"]], "build": [[136, "build"]], "run": [[136, "run"]], "visible": [[136, "visible"]], "transitive_headers": [[136, "transitive-headers"]], "transitive_libs": [[136, "transitive-libs"]], "test": [[136, "test"]], "package_id_mode": [[136, "package-id-mode"]], "force": [[136, "force"]], "override": [[136, "override"]], "direct": [[136, "direct"]], "package_type trait inferring": [[136, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[136, "default-traits-for-each-kind-of-requires"]], "set_name()": [[137, "set-name"]], "set_version()": [[138, "set-version"]], "source()": [[139, "source"]], "Source caching": [[139, "source-caching"]], "Forced retrieval of sources": [[139, "forced-retrieval-of-sources"]], "system_requirements()": [[140, "system-requirements"]], "Collecting system requirements": [[140, "collecting-system-requirements"]], "test()": [[141, "test"]], "validate()": [[142, "validate"]], "validate_build()": [[143, "validate-build"]], "Running and output": [[144, "running-and-output"]], "Output text from recipes": [[144, "output-text-from-recipes"]], "Running commands": [[144, "running-commands"]], "[requires]": [[145, "requires"]], "[tool_requires]": [[145, "tool-requires"], [150, "tool-requires"]], "[test_requires]": [[145, "test-requires"]], "[generators]": [[145, "generators"]], "[options]": [[145, "options"], [150, "options"]], "[layout]": [[145, "layout"]], "Configuration files": [[146, "configuration-files"]], ".conanrc": [[147, "conanrc"]], "credentials.json": [[148, "credentials-json"]], "global.conf": [[149, "global-conf"]], "Introduction to configuration": [[149, "introduction-to-configuration"]], "Description of configurations": [[149, "description-of-configurations"]], "core.cache:storage_path": [[149, "core-cache-storage-path"]], "core.download:download_cache": [[149, "core-download-download-cache"]], "User/Tools configurations": [[149, "user-tools-configurations"]], "Configuration file template": [[149, "configuration-file-template"]], "Configuration data types": [[149, "configuration-data-types"]], "Configuration data operators": [[149, "configuration-data-operators"]], "Configuration patterns": [[149, "configuration-patterns"]], "Information about built-in confs": [[149, "information-about-built-in-confs"]], "Networking confs": [[149, "networking-confs"]], "Configuration of client certificates": [[149, "configuration-of-client-certificates"]], "UX confs": [[149, "ux-confs"]], "Skip warnings": [[149, "skip-warnings"]], "profiles": [[150, "profiles"]], "Introduction to profiles": [[150, "introduction-to-profiles"]], "Profile sections": [[150, "profile-sections"]], "[settings]": [[150, "settings"]], "[system_tools] (DEPRECATED)": [[150, "system-tools-deprecated"]], "[buildenv]": [[150, "buildenv"]], "[runenv]": [[150, "runenv"]], "[conf]": [[150, "conf"]], "[replace_requires]": [[150, "replace-requires"]], "[replace_tool_requires]": [[150, "replace-tool-requires"]], "[platform_requires]": [[150, "platform-requires"]], "[platform_tool_requires]": [[150, "platform-tool-requires"]], "Profile rendering": [[150, "profile-rendering"]], "Profile patterns": [[150, "profile-patterns"]], "Profile includes": [[150, "profile-includes"]], "remotes.json": [[151, "remotes-json"]], "settings.yml": [[152, "settings-yml"]], "Operating systems": [[152, "operating-systems"]], "Compilers": [[152, "compilers"]], "msvc": [[152, "msvc"]], "intel-cc": [[152, "intel-cc"]], "Architectures": [[152, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[152, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[152, "customizing-settings"]], "Adding new settings": [[152, "adding-new-settings"]], "Adding new sub-settings": [[152, "adding-new-sub-settings"]], "Add new values": [[152, "add-new-values"]], "settings_user.yml": [[152, "settings-user-yml"]], "source_credentials.json": [[153, "source-credentials-json"]], "Environment variables": [[154, "environment-variables"]], "CONAN_HOME": [[154, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[154, "conan-default-profile"]], "Remote login variables": [[154, "remote-login-variables"]], "Terminal color variables": [[154, "terminal-color-variables"]], "Logging": [[154, "logging"]], "Extensions": [[155, "extensions"]], "Binary compatibility": [[156, "binary-compatibility"]], "Command wrapper": [[157, "command-wrapper"], [274, "command-wrapper"]], "Location and naming": [[158, "location-and-naming"]], "Scoping": [[158, "scoping"]], "Decorators": [[158, "decorators"]], "conan_command(group=None, formatters=None)": [[158, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[158, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[158, "argument-definition-and-parsing"]], "Formatters": [[158, "formatters"]], "Commands parameters": [[158, "commands-parameters"]], "Custom Conan generators": [[159, "custom-conan-generators"]], "Custom generators as python_requires": [[159, "custom-generators-as-python-requires"]], "Using global custom generators": [[159, "using-global-custom-generators"]], "Deployers": [[160, "deployers"]], "Built-in deployers": [[160, "built-in-deployers"]], "full_deploy": [[160, "full-deploy"]], "direct_deploy": [[160, "direct-deploy"]], "configuration": [[160, "configuration"], [190, "configuration"]], "Hooks": [[161, "hooks"]], "Hook structure": [[161, "hook-structure"]], "Importing from a module": [[161, "importing-from-a-module"]], "Hook interface": [[161, "hook-interface"]], "Storage, activation and sharing": [[161, "storage-activation-and-sharing"]], "Official Hooks": [[161, "official-hooks"]], "Package signing": [[162, "package-signing"], [274, "package-signing"]], "Profile plugin": [[163, "profile-plugin"]], "Python API": [[164, "python-api"]], "Conan API Reference": [[165, "conan-api-reference"]], "Config API": [[166, "config-api"]], "Download API": [[167, "download-api"]], "Export API": [[168, "export-api"]], "Graph API": [[169, "graph-api"]], "Install API": [[170, "install-api"]], "List API": [[171, "list-api"]], "New API": [[172, "new-api"]], "Profiles API": [[173, "profiles-api"]], "Remotes API": [[174, "remotes-api"]], "Remove API": [[175, "remove-api"]], "Search API": [[176, "search-api"]], "Upload API": [[177, "upload-api"]], "Python requires": [[178, "python-requires"]], "Extending base classes": [[178, "extending-base-classes"]], "Reusing files": [[178, "reusing-files"]], "Testing python-requires": [[178, "testing-python-requires"]], "Effect in package_id": [[178, "effect-in-package-id"]], "Resolution of python_requires": [[178, "resolution-of-python-requires"]], "Recipe tools": [[179, "recipe-tools"]], "conan.tools.android": [[180, "conan-tools-android"]], "android_abi()": [[180, "android-abi"]], "conan.tools.apple": [[181, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[182, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[182, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[182, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[182, "conan-tools-apple-xcrun"]], "XcodeBuild": [[183, "xcodebuild"]], "XcodeDeps": [[184, "xcodedeps"]], "Additional variables defined": [[184, "additional-variables-defined"]], "Components support": [[184, "components-support"]], "Custom configurations": [[184, "custom-configurations"], [216, "custom-configurations"]], "XcodeToolchain": [[185, "xcodetoolchain"]], "conan.tools.build": [[186, "conan-tools-build"]], "Building": [[186, "building"]], "conan.tools.build.build_jobs()": [[186, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[186, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[186, "conan-tools-build-can-run"]], "Cppstd": [[186, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[186, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[186, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[186, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[186, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[186, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[186, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[187, "conan-tools-cmake"]], "CMake": [[188, "cmake"]], "cmake_layout": [[189, "cmake-layout"]], "Multi-setting/option cmake_layout": [[189, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[190, "cmakedeps"]], "Generated files": [[190, "generated-files"], [191, "generated-files"], [196, "generated-files"], [197, "generated-files"], [207, "generated-files"], [208, "generated-files"], [209, "generated-files"], [211, "generated-files"], [214, "generated-files"], [215, "generated-files"], [220, "generated-files"], [224, "generated-files"]], "Customization": [[190, "customization"], [191, "customization"], [207, "customization"], [208, "customization"], [209, "customization"], [211, "customization"], [214, "customization"], [220, "customization"], [223, "customization"], [224, "customization"], [225, "customization"], [227, "customization"]], "build_context_activated": [[190, "build-context-activated"], [211, "build-context-activated"], [214, "build-context-activated"]], "build_context_suffix": [[190, "build-context-suffix"], [211, "build-context-suffix"]], "build_context_build_modules": [[190, "build-context-build-modules"]], "check_components_exist": [[190, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[190, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[190, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[190, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[191, "cmaketoolchain"]], "preprocessor_definitions": [[191, "preprocessor-definitions"], [220, "preprocessor-definitions"]], "cache_variables": [[191, "cache-variables"]], "variables": [[191, "variables"]], "user_presets_path": [[191, "user-presets-path"]], "presets_build_environment, presets_run_environment": [[191, "presets-build-environment-presets-run-environment"]], "Extra compilation flags": [[191, "extra-compilation-flags"]], "presets_prefix": [[191, "presets-prefix"]], "Using a custom toolchain file": [[191, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[191, "extending-and-advanced-customization"]], "Customizing the content blocks": [[191, "customizing-the-content-blocks"]], "Cross building": [[191, "cross-building"]], "conan.tools.CppInfo": [[192, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[192, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[193, "conan-tools-env"]], "Environment": [[194, "environment"]], "Variable declaration": [[194, "variable-declaration"]], "Composition": [[194, "composition"]], "Obtaining environment variables": [[194, "obtaining-environment-variables"]], "Environment definition": [[194, "environment-definition"]], "EnvVars": [[195, "envvars"]], "Creating environment files": [[195, "creating-environment-files"]], "Running with environment files": [[195, "running-with-environment-files"]], "Applying the environment variables": [[195, "applying-the-environment-variables"]], "Iterating the variables": [[195, "iterating-the-variables"]], "VirtualBuildEnv": [[196, "virtualbuildenv"]], "VirtualRunEnv": [[197, "virtualrunenv"]], "conan.tools.files": [[198, "conan-tools-files"]], "conan.tools.files basic operations": [[199, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[199, "conan-tools-files-copy"]], "conan.tools.files.load()": [[199, "conan-tools-files-load"]], "conan.tools.files.save()": [[199, "conan-tools-files-save"]], "conan.tools.files.rename()": [[199, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[199, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[199, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[199, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[199, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[199, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[199, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[199, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[199, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[199, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[200, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[200, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[200, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[200, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[201, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[201, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[201, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[201, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[202, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[203, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[203, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[203, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[203, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[204, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[204, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[204, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[204, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[205, "conan-tools-gnu"]], "Autotools": [[206, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[206, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[206, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[206, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[207, "autotoolsdeps"]], "AutotoolsToolchain": [[208, "autotoolstoolchain"]], "Customizing the environment": [[208, "customizing-the-environment"], [226, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[208, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[209, "makedeps"]], "Flags": [[209, "flags"]], "PkgConfig": [[210, "pkgconfig"]], "PkgConfigDeps": [[211, "pkgconfigdeps"]], "Naming": [[211, "naming"], [214, "naming"]], "conan.tools.google": [[212, "conan-tools-google"]], "Bazel": [[213, "bazel"]], "BazelDeps": [[214, "bazeldeps"]], "BazelToolchain": [[215, "bazeltoolchain"]], "conan.tools.intel": [[216, "conan-tools-intel"]], "IntelCC": [[216, "intelcc"]], "conan.tools.layout": [[217, "conan-tools-layout"]], "Predefined layouts": [[217, "predefined-layouts"]], "basic_layout": [[217, "basic-layout"]], "conan.tools.meson": [[218, "conan-tools-meson"]], "Meson": [[219, "meson"]], "MesonToolchain": [[220, "mesontoolchain"]], "conan_meson_native.ini": [[220, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[220, "conan-meson-cross-ini"]], "Default directories": [[220, "default-directories"]], "project_options": [[220, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[220, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[220, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[220, "objective-c-arguments"]], "conan.tools.microsoft": [[221, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[222, "conan-tools-microsoft-visual"]], "check_min_vs": [[222, "check-min-vs"]], "msvc_runtime_flag": [[222, "msvc-runtime-flag"]], "is_msvc": [[222, "is-msvc"]], "is_msvc_static_runtime": [[222, "is-msvc-static-runtime"]], "msvs_toolset": [[222, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[222, "conan-tools-microsoft-subsystems"]], "unix_path": [[222, "unix-path"]], "MSBuild": [[223, "msbuild"]], "attributes": [[223, "attributes"]], "MSBuildDeps": [[224, "msbuilddeps"]], "Requirement traits support": [[224, "requirement-traits-support"]], "Configurations": [[224, "configurations"]], "Dependencies": [[224, "dependencies"]], "MSBuildToolchain": [[225, "msbuildtoolchain"]], "NMakeDeps": [[226, "nmakedeps"]], "NMakeToolchain": [[226, "nmaketoolchain"]], "constructor": [[226, "constructor"]], "VCVars": [[227, "vcvars"]], "vs_layout": [[228, "vs-layout"]], "conan.tools.scm": [[229, "conan-tools-scm"]], "Git": [[230, "git"]], "Version": [[231, "version"]], "conan.tools.scons": [[232, "conan-tools-scons"]], "SConsDeps": [[232, "sconsdeps"]], "conan.tools.system": [[233, "conan-tools-system"]], "conan.tools.system.package_manager": [[234, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[234, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[234, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[234, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[234, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[234, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[234, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[234, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[234, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[234, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[234, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[234, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[234, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[235, "tutorial"]], "Working with Conan repositories": [[236, "working-with-conan-repositories"]], "Table of contents": [[236, null], [242, null], [249, null], [256, null], [268, null]], "Contributing to Conan Center": [[237, "contributing-to-conan-center"]], "Setting up a Conan remote": [[238, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[239, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[239, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[239, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[240, "setting-up-a-conan-server"]], "Uploading Packages": [[241, "uploading-packages"]], "Consuming packages": [[242, "consuming-packages"]], "Build a simple CMake project using Conan": [[243, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[244, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[244, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[244, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[245, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[245, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[245, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[245, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[245, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[246, "introduction-to-versioning"]], "Version ranges": [[246, "version-ranges"], [272, "version-ranges"]], "Revisions": [[246, "revisions"], [271, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[247, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[247, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[247, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[247, "conditional-requirements-using-a-conanfile-py"]], "Using build tools as Conan packages": [[248, "using-build-tools-as-conan-packages"]], "Creating packages": [[249, "creating-packages"]], "Add dependencies to packages": [[250, "add-dependencies-to-packages"]], "Build packages: the build() method": [[251, "build-packages-the-build-method"]], "Build and run tests for your project": [[251, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[251, "changes-introduced-in-the-recipe"], [254, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[251, "changes-introduced-in-the-library-sources"], [254, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[251, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[251, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[252, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[252, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[252, "c-libraries"]], "Header-only libraries": [[252, "header-only-libraries"]], "Create your first Conan package": [[253, "create-your-first-conan-package"]], "A note about the Conan cache": [[253, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[254, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[254, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[254, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[254, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[255, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[255, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[255, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[255, "using-the-conandata-yml-file"]], "Other types of packages": [[256, "other-types-of-packages"]], "Header-only packages": [[257, "header-only-packages"]], "Header-only library with tests": [[257, "header-only-library-with-tests"]], "Package prebuilt binaries": [[258, "package-prebuilt-binaries"]], "Locally building binaries": [[258, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[258, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[258, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[259, "tool-requires-packages"]], "A simple tool require recipe": [[259, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[259, "removing-settings-in-package-id"]], "Package files: the package() method": [[260, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[260, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[260, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[260, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[261, "preparing-the-build"]], "Testing Conan packages": [[262, "testing-conan-packages"]], "Developing packages locally": [[263, "developing-packages-locally"]], "Packages in editable mode": [[264, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[264, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[264, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[264, "working-with-editable-packages"]], "Building editable dependencies": [[264, "building-editable-dependencies"]], "Revert the editable mode": [[264, "revert-the-editable-mode"]], "Package Development Flow": [[265, "package-development-flow"]], "Understanding the Conan Package layout": [[266, "understanding-the-conan-package-layout"]], "cpp.package": [[266, "cpp-package"]], "cpp.source and cpp.build": [[266, "cpp-source-and-cpp-build"]], "Other important Conan features": [[267, "other-important-conan-features"]], "Packages lists": [[267, "packages-lists"]], "Removing unused packages from the cache": [[267, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[269, "dependencies-conflicts"]], "Resolving conflicts": [[269, "resolving-conflicts"]], "Overriding options": [[269, "overriding-options"]], "Multi-configuration lockfiles": [[270, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[270, "evolving-lockfiles"]], "Creating different revisions": [[271, "creating-different-revisions"]], "Using revisions": [[271, "using-revisions"]], "Uploading revisions": [[271, "uploading-revisions"]], "Package revisions": [[271, "package-revisions"]], "Semantic versioning": [[272, "semantic-versioning"]], "Range expressions": [[272, "range-expressions"]], "Versions": [[273, "versions"]], "Automating versions": [[273, "automating-versions"]], "Requiring the new versions": [[273, "requiring-the-new-versions"]], "What\u2019s new in Conan 2": [[274, "what-s-new-in-conan-2"]], "Conan 2 migration guide": [[274, "conan-2-migration-guide"]], "New graph model": [[274, "new-graph-model"]], "New public Python API": [[274, "new-public-python-api"]], "New build system integrations": [[274, "new-build-system-integrations"]], "New custom user commands": [[274, "new-custom-user-commands"]], "New CLI": [[274, "new-cli"]], "New deployers": [[274, "new-deployers"]], "New package_id": [[274, "new-package-id"]], "compatibility.py": [[274, "compatibility-py"]], "New lockfiles": [[274, "new-lockfiles"]], "New configuration and environment management": [[274, "new-configuration-and-environment-management"]], "Multi-revision cache": [[274, "multi-revision-cache"]], "New extensions plugins": [[274, "new-extensions-plugins"]], "Profile checker": [[274, "profile-checker"]], "Package immutability optimizations": [[274, "package-immutability-optimizations"]], "Package lists": [[274, "package-lists"]], "Metadata files": [[274, "metadata-files"]], "Third party backup sources": [[274, "third-party-backup-sources"]]}, "indexentries": {"append() (conf method)": [[135, "conans.model.conf.Conf.append"]], "define() (conf method)": [[135, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[135, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[135, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[135, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[135, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[165, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[166, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[166, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[166, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[167, "conan.api.subapi.download.DownloadAPI"]], "download_full() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.download_full"]], "package() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.package"]], "recipe() (downloadapi method)": [[167, "conan.api.subapi.download.DownloadAPI.recipe"]], "exportapi (class in conan.api.subapi.export)": [[168, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[169, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[169, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[170, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[170, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[171, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[171, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[172, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[172, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[172, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[173, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[173, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[174, "conan.api.subapi.remotes.RemotesAPI"]], "add() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.add"]], "disable() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.disable"]], "enable() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.enable"]], "get() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.get"]], "list() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.list"]], "remove() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.remove"]], "rename() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.rename"]], "update() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.update"]], "user_login() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.user_login"]], "user_logout() (remotesapi method)": [[174, "conan.api.subapi.remotes.RemotesAPI.user_logout"]], "removeapi (class in conan.api.subapi.remove)": [[175, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[176, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[177, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.prepare"]], "upload_full() (uploadapi method)": [[177, "conan.api.subapi.upload.UploadAPI.upload_full"]], "android_abi() (in module conan.tools.android)": [[180, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[182, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[182, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[182, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[182, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[182, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[182, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[182, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[182, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[182, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[182, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[182, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[182, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[182, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[182, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[183, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[186, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[186, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[186, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[186, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[188, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[188, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[189, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[190, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[191, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[191, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[194, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[194, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[194, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[194, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[194, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[194, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[194, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[194, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[194, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[194, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[194, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[194, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[195, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[195, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[196, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[197, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[199, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[199, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[199, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[199, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[199, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[203, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[204, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[206, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[206, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[207, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[207, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[208, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[209, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[209, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[210, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[210, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[211, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[211, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[211, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[213, "conan.tools.google.Bazel"]], "build() (bazel method)": [[213, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[213, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[214, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[214, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[214, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[215, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[215, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[215, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[216, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[216, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[216, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[216, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[216, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[216, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[219, "conan.tools.meson.Meson"]], "build() (meson method)": [[219, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[219, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[219, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[219, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[220, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[220, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[220, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[222, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[222, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[223, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[223, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[223, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[224, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[225, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[225, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[227, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[227, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[228, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[230, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[230, "conan.tools.scm.git.Git.checkout"]], "checkout_from_conandata_coordinates() (git method)": [[230, "conan.tools.scm.git.Git.checkout_from_conandata_coordinates"]], "clone() (git method)": [[230, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[230, "conan.tools.scm.git.Git.commit_in_remote"]], "coordinates_to_conandata() (git method)": [[230, "conan.tools.scm.git.Git.coordinates_to_conandata"]], "fetch_commit() (git method)": [[230, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[230, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[230, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[230, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[230, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[230, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[230, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[230, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[231, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[234, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[234, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[234, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[234, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[234, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[234, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[234, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[234, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[234, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[234, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[234, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[234, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[234, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[234, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[234, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[234, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[234, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[234, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[234, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[234, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[234, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[234, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[234, "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/cmake/cmake_toolchain/use_package_config_cmake", "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/build_simple_meson_project", "examples/tools/meson/create_your_first_package", "examples/tools/meson/meson", "examples/tools/microsoft/msbuild", "examples/tools/microsoft/msbuild/create_your_first_package", "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/cmake/cmake_toolchain/use_package_config_cmake.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/build_simple_meson_project.rst", "examples/tools/meson/create_your_first_package.rst", "examples/tools/meson/meson.rst", "examples/tools/microsoft/msbuild.rst", "examples/tools/microsoft/msbuild/create_your_first_package.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", "CMakeToolchain: Using xxx-config.cmake files inside packages", "tools.files", "Patching sources", "tools.google", "Build a simple Bazel project using Conan", "Build a simple Meson project using Conan", "Create your first Conan package with Meson", "tools.meson", "tools.microsoft", "Create your first Conan package with Visual Studio/MSBuild", "Capturing Git scm information", "Conan 2 - 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"], "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, 50, 52, 54, 55, 56, 59, 60, 62, 67, 68, 74, 77, 78, 79, 84, 85, 88, 89, 90, 91, 97, 100, 103, 109, 110, 112, 116, 118, 120, 121, 122, 123, 124, 126, 127, 131, 132, 133, 135, 136, 140, 145, 146, 148, 150, 151, 153, 155, 156, 159, 160, 161, 162, 164, 179, 184, 185, 186, 190, 191, 192, 195, 196, 200, 202, 207, 208, 209, 212, 215, 217, 218, 220, 221, 224, 225, 226, 227, 231, 233, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 62, 65, 66, 67, 69, 70, 71, 72, 73, 74, 77, 78, 82, 83, 84, 85, 86, 88, 89, 90, 91, 94, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 109, 112, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151, 152, 153, 155, 156, 157, 159, 161, 162, 163, 170, 171, 175, 178, 179, 180, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 204, 205, 207, 209, 212, 214, 215, 217, 218, 221, 225, 231, 234, 239, 240, 242, 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, 272, 273, 274, 275], "look": [0, 1, 4, 6, 13, 16, 18, 19, 21, 24, 35, 36, 41, 42, 45, 50, 52, 54, 55, 56, 59, 67, 85, 87, 90, 92, 93, 94, 97, 99, 100, 102, 103, 105, 106, 107, 115, 120, 149, 150, 151, 152, 153, 158, 159, 161, 170, 192, 215, 216, 235, 244, 245, 248, 249, 254, 255, 256, 263, 266], "doe": [0, 1, 6, 8, 10, 21, 24, 35, 39, 40, 45, 50, 54, 60, 62, 68, 69, 78, 82, 83, 84, 87, 88, 89, 90, 97, 99, 100, 101, 102, 105, 106, 107, 109, 115, 118, 120, 123, 124, 130, 131, 140, 141, 149, 150, 151, 164, 175, 178, 179, 191, 196, 200, 207, 209, 231, 235, 247, 248, 249, 251, 253, 268, 273, 275], "exist": [0, 1, 6, 7, 8, 21, 60, 62, 74, 77, 82, 84, 87, 88, 89, 90, 94, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 115, 116, 120, 122, 124, 125, 126, 127, 129, 131, 135, 137, 140, 148, 149, 150, 151, 153, 157, 159, 168, 170, 174, 175, 178, 183, 187, 191, 192, 195, 196, 200, 207, 209, 211, 221, 231, 242, 247, 253, 254, 259, 263, 270, 271, 272, 274, 275], "wa": [0, 1, 2, 4, 24, 39, 40, 42, 52, 56, 59, 60, 69, 79, 82, 83, 88, 90, 99, 102, 107, 123, 134, 135, 138, 139, 145, 153, 157, 164, 185, 186, 192, 200, 203, 207, 231, 246, 249, 251, 252, 254, 255, 258, 263, 266, 270, 271, 272, 273, 274], "remov": [0, 1, 5, 7, 10, 12, 31, 35, 62, 74, 82, 84, 86, 87, 88, 89, 90, 93, 94, 97, 99, 100, 102, 104, 106, 107, 110, 115, 116, 120, 126, 127, 135, 136, 150, 153, 156, 157, 159, 162, 164, 165, 175, 179, 183, 192, 195, 200, 202, 203, 205, 208, 209, 221, 236, 242, 248, 253, 254, 257, 258, 259, 261, 262, 265, 267, 271, 272, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 81, 82, 83, 84, 85, 88, 89, 90, 91, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 167, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 215, 216, 217, 218, 220, 221, 224, 225, 226, 227, 228, 231, 233, 235, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "our": [0, 3, 6, 10, 13, 26, 27, 29, 36, 45, 47, 48, 54, 55, 60, 67, 74, 83, 88, 97, 107, 140, 153, 179, 185, 190, 217, 218, 225, 237, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 266, 267, 271, 274], "refer": [0, 1, 3, 4, 8, 13, 18, 24, 31, 36, 40, 47, 56, 59, 60, 61, 65, 66, 68, 69, 70, 71, 72, 73, 74, 76, 79, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 104, 105, 106, 107, 108, 111, 112, 113, 115, 116, 119, 124, 125, 128, 131, 134, 135, 136, 141, 146, 150, 151, 153, 156, 157, 159, 163, 165, 170, 172, 178, 179, 180, 182, 188, 194, 200, 206, 213, 218, 219, 222, 241, 242, 245, 246, 248, 249, 251, 253, 254, 255, 256, 261, 262, 265, 266, 273, 275], "tree": [0, 69, 151, 161, 191], "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, 53, 56, 57, 59, 60, 61, 63, 65, 66, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 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, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 170, 175, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 193, 195, 196, 197, 198, 200, 201, 202, 203, 205, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 235, 236, 237, 241, 242, 243, 247, 250, 251, 252, 253, 254, 255, 258, 259, 260, 262, 263, 264, 266, 267, 268, 269, 270, 271, 273, 274, 275], "search": [0, 1, 31, 35, 52, 67, 78, 86, 103, 110, 118, 120, 148, 152, 156, 165, 183, 200, 207, 240, 242, 244, 246, 253, 255, 267, 275], "bar": [0, 118, 200, 209, 227], "desir": [0, 1, 4, 40, 49, 56, 59, 84, 91, 102, 109, 118, 120, 121, 135, 153, 161, 196, 197, 198, 233], "topic": [0, 1, 9, 74, 95, 100, 101, 159, 254], "If": [0, 1, 2, 4, 5, 6, 7, 10, 16, 17, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 41, 42, 47, 48, 49, 50, 52, 56, 59, 60, 62, 67, 74, 77, 78, 82, 83, 84, 85, 88, 89, 90, 91, 97, 99, 100, 102, 103, 105, 106, 107, 109, 111, 112, 113, 116, 118, 120, 123, 125, 126, 127, 129, 130, 131, 133, 135, 136, 137, 138, 139, 140, 141, 143, 148, 149, 150, 151, 152, 153, 154, 155, 157, 159, 168, 175, 178, 183, 184, 185, 186, 187, 190, 191, 192, 195, 196, 197, 198, 200, 201, 202, 204, 207, 208, 209, 211, 212, 217, 218, 221, 223, 225, 227, 231, 235, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 259, 260, 265, 266, 267, 268, 270, 271, 272, 274, 275], "think": [0, 42, 77], "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, 50, 52, 54, 55, 56, 59, 60, 61, 62, 63, 67, 68, 69, 72, 73, 74, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 231, 232, 233, 235, 236, 237, 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, 272, 273, 274, 275], "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, 50, 52, 54, 55, 56, 59, 60, 61, 62, 63, 67, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 113, 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, 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, 178, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 204, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "an": [0, 1, 4, 6, 7, 8, 18, 19, 21, 27, 31, 35, 36, 39, 40, 47, 50, 56, 59, 60, 61, 67, 74, 77, 78, 82, 83, 86, 87, 88, 89, 90, 93, 94, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 115, 116, 118, 120, 123, 126, 131, 132, 133, 134, 135, 137, 138, 139, 143, 145, 146, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 162, 163, 164, 170, 174, 175, 183, 186, 189, 191, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 215, 217, 221, 224, 227, 228, 231, 232, 235, 243, 244, 245, 246, 247, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 270, 271, 272, 273, 275], "error": [0, 1, 6, 21, 31, 39, 40, 60, 62, 83, 87, 88, 89, 90, 93, 94, 97, 98, 99, 100, 101, 102, 106, 110, 115, 118, 120, 122, 131, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 153, 155, 162, 164, 170, 175, 191, 200, 202, 207, 221, 235, 243, 246, 251, 253, 265, 266, 269, 270, 271, 275], "should": [0, 1, 3, 4, 6, 7, 17, 24, 26, 29, 31, 35, 36, 42, 45, 50, 52, 54, 55, 56, 59, 60, 62, 67, 70, 74, 78, 82, 84, 85, 90, 97, 102, 103, 109, 118, 120, 122, 123, 124, 125, 126, 127, 128, 129, 131, 134, 135, 136, 137, 138, 139, 140, 141, 143, 145, 149, 154, 155, 161, 162, 163, 164, 170, 178, 179, 184, 186, 189, 191, 192, 197, 200, 204, 210, 215, 220, 221, 227, 231, 240, 244, 245, 246, 248, 251, 252, 253, 254, 255, 258, 265, 266, 267, 270, 271, 272, 273, 274, 275], "pleas": [0, 1, 6, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 52, 54, 55, 60, 62, 64, 65, 68, 70, 72, 73, 74, 77, 78, 79, 91, 97, 105, 110, 111, 116, 118, 120, 131, 150, 151, 157, 162, 163, 192, 218, 221, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 275], "open": [0, 4, 5, 8, 26, 29, 48, 55, 59, 60, 61, 67, 77, 120, 122, 145, 150, 154, 163, 200, 226, 231, 237, 239, 241, 244, 246, 265], "issu": [0, 1, 6, 8, 39, 40, 50, 61, 74, 77, 84, 118, 131, 132, 133, 150, 153, 157, 191, 254, 256, 271, 272], "For": [1, 3, 4, 7, 8, 13, 21, 29, 35, 36, 45, 50, 60, 62, 65, 67, 69, 70, 72, 73, 78, 82, 83, 84, 88, 89, 91, 97, 100, 102, 103, 105, 106, 107, 108, 109, 110, 111, 116, 120, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 146, 148, 149, 150, 151, 153, 154, 155, 158, 159, 161, 162, 164, 170, 179, 183, 184, 185, 186, 187, 190, 192, 193, 196, 200, 204, 209, 210, 212, 215, 217, 218, 221, 224, 225, 228, 235, 239, 240, 242, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 261, 263, 265, 266, 267, 269, 270, 271, 272, 273, 275], "more": [1, 4, 6, 7, 8, 13, 18, 19, 27, 31, 36, 42, 45, 47, 52, 60, 62, 64, 67, 69, 74, 77, 79, 81, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 122, 124, 126, 127, 128, 132, 133, 134, 135, 136, 140, 142, 146, 148, 149, 150, 151, 153, 154, 156, 157, 158, 159, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 186, 187, 191, 192, 193, 197, 198, 200, 207, 210, 212, 214, 215, 216, 218, 220, 221, 225, 227, 238, 239, 243, 244, 247, 248, 249, 252, 253, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 268, 271, 272, 273, 275], "detail": [1, 8, 42, 50, 52, 62, 67, 69, 74, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 150, 153, 186, 200, 221, 224, 249, 253, 254, 256, 259, 261, 263, 267], "descript": [1, 95, 100, 101, 109, 131, 132, 162, 212, 254], "major": [1, 5, 35, 39, 40, 60, 74, 79, 102, 110, 120, 151, 179, 192, 239, 244, 270, 273, 275], "chang": [1, 5, 6, 7, 8, 10, 13, 17, 19, 21, 26, 31, 35, 36, 48, 50, 52, 60, 74, 76, 77, 78, 82, 83, 84, 85, 88, 90, 95, 97, 101, 105, 106, 107, 109, 110, 117, 118, 120, 123, 124, 126, 127, 128, 135, 136, 140, 149, 150, 151, 153, 154, 155, 157, 158, 159, 161, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 183, 190, 191, 192, 193, 196, 200, 207, 209, 210, 212, 214, 215, 216, 217, 221, 224, 227, 231, 235, 244, 246, 247, 248, 251, 253, 254, 256, 258, 259, 261, 262, 264, 265, 267, 269, 270, 271, 272, 274, 275], "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, 50, 52, 53, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 95, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 208, 209, 210, 212, 214, 215, 216, 220, 224, 225, 226, 227, 228, 231, 236, 242, 243, 246, 247, 248, 250, 251, 252, 256, 258, 259, 260, 262, 264, 265, 269, 270, 271, 272, 273, 274], "bring": [1, 63, 151, 256], "compar": [1, 153, 187, 232, 272, 273], "x": [1, 62, 74, 76, 89, 94, 120, 150, 153, 162, 191, 200, 203, 223, 254, 258, 271, 273, 275], "read": [1, 3, 4, 6, 8, 18, 19, 24, 31, 36, 42, 45, 47, 54, 55, 56, 59, 62, 67, 74, 78, 82, 84, 87, 88, 89, 90, 92, 94, 102, 103, 106, 110, 114, 115, 118, 120, 124, 125, 127, 130, 131, 133, 135, 136, 138, 139, 141, 145, 146, 150, 151, 157, 163, 179, 187, 189, 200, 204, 207, 209, 211, 217, 231, 238, 240, 242, 244, 253, 256, 260, 265, 266, 274, 275], "what": [1, 4, 5, 13, 24, 60, 61, 74, 79, 82, 96, 97, 99, 102, 103, 116, 120, 121, 155, 192, 195, 196, 203, 245, 247, 248, 249, 253, 254, 255, 258, 259, 262, 267, 270, 271, 272], "": [1, 3, 4, 6, 8, 10, 13, 17, 18, 21, 24, 26, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 48, 49, 52, 54, 55, 56, 59, 60, 61, 62, 64, 66, 67, 69, 74, 77, 79, 83, 84, 85, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 106, 107, 109, 110, 111, 115, 116, 118, 120, 124, 125, 135, 136, 137, 143, 144, 145, 148, 150, 151, 152, 153, 156, 158, 159, 161, 164, 183, 185, 186, 187, 192, 202, 207, 209, 214, 215, 216, 217, 221, 225, 226, 231, 235, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274], "new": [1, 3, 5, 6, 8, 10, 13, 23, 27, 31, 36, 45, 47, 56, 59, 61, 62, 67, 74, 77, 78, 79, 82, 83, 84, 85, 86, 88, 102, 104, 105, 106, 107, 108, 110, 111, 120, 134, 135, 151, 156, 158, 159, 161, 163, 165, 167, 175, 179, 183, 185, 186, 190, 191, 192, 193, 195, 197, 198, 209, 217, 225, 226, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 259, 262, 266, 267, 269, 270, 271, 272, 273], "featur": [1, 4, 6, 7, 13, 27, 31, 47, 48, 49, 61, 62, 67, 68, 69, 74, 90, 101, 117, 120, 124, 125, 126, 127, 128, 135, 136, 148, 149, 150, 151, 153, 154, 157, 162, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 187, 189, 193, 203, 210, 214, 215, 216, 236, 240, 245, 248, 255, 258, 263, 264, 265, 266, 267, 275], "implement": [1, 2, 7, 8, 41, 50, 74, 78, 83, 88, 94, 109, 118, 125, 131, 134, 140, 153, 157, 161, 164, 179, 180, 184, 192, 218, 224, 232, 239, 241, 254, 256, 258, 259, 268, 270, 275], "multi": [1, 47, 48, 50, 107, 136, 161, 185, 188, 189, 191, 225, 246, 248, 259, 265, 267, 269], "config": [1, 7, 17, 24, 26, 27, 31, 35, 41, 42, 43, 45, 46, 48, 54, 55, 56, 65, 66, 68, 69, 73, 77, 78, 82, 86, 109, 110, 118, 131, 136, 146, 150, 151, 153, 156, 158, 159, 160, 161, 164, 165, 184, 186, 189, 190, 191, 192, 211, 212, 214, 216, 217, 225, 226, 241, 244, 246, 248, 249, 251, 252, 255, 259, 263, 265, 267, 275], "tool": [1, 5, 6, 11, 16, 18, 26, 27, 35, 36, 37, 38, 41, 42, 45, 48, 49, 50, 54, 55, 56, 60, 61, 62, 65, 66, 67, 68, 70, 71, 72, 73, 74, 79, 80, 82, 84, 87, 89, 90, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 110, 115, 120, 122, 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 146, 147, 151, 153, 156, 158, 160, 161, 162, 179, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 207, 208, 209, 210, 211, 212, 214, 215, 216, 220, 221, 224, 225, 226, 227, 228, 231, 236, 240, 243, 244, 245, 246, 248, 250, 251, 252, 254, 256, 257, 258, 259, 262, 263, 266, 267, 274, 275], "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, 50, 53, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 77, 78, 79, 80, 82, 83, 85, 86, 88, 89, 92, 93, 94, 95, 96, 99, 100, 102, 103, 104, 105, 106, 107, 108, 110, 115, 119, 121, 123, 124, 127, 128, 129, 131, 133, 134, 135, 139, 140, 142, 143, 144, 145, 146, 150, 151, 153, 156, 158, 159, 160, 161, 162, 170, 174, 179, 180, 181, 183, 184, 185, 186, 188, 189, 190, 191, 193, 195, 196, 197, 198, 200, 204, 206, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 219, 220, 223, 224, 225, 226, 227, 228, 231, 233, 235, 236, 238, 243, 247, 248, 250, 251, 253, 254, 255, 256, 257, 258, 260, 261, 263, 264, 268, 270, 271, 272, 273, 274], "xxxx": [1, 7, 50, 72, 84, 86, 89, 95, 120, 131, 138, 139, 192, 214, 216, 225, 275], "flag": [1, 49, 88, 89, 100, 126, 135, 136, 150, 153, 183, 184, 186, 191, 207, 208, 209, 212, 216, 220, 221, 223, 226, 227, 233, 253], "cmaketoolchain": [1, 16, 17, 18, 26, 27, 35, 38, 41, 42, 43, 46, 52, 60, 68, 73, 77, 84, 87, 89, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 131, 136, 146, 150, 151, 153, 180, 188, 189, 190, 191, 244, 245, 246, 247, 248, 249, 252, 254, 256, 258, 260, 262, 263, 266, 267, 275], "15654": 1, "add": [1, 4, 5, 6, 17, 21, 24, 29, 45, 52, 56, 59, 60, 67, 77, 84, 86, 88, 89, 104, 106, 107, 108, 109, 112, 118, 120, 135, 136, 150, 154, 159, 162, 163, 175, 184, 185, 189, 191, 192, 195, 200, 202, 207, 209, 210, 212, 214, 215, 216, 220, 221, 225, 227, 235, 236, 240, 245, 247, 248, 249, 250, 252, 253, 255, 260, 262, 263, 265, 267, 270, 271, 274], "abil": 1, "pass": [1, 4, 13, 26, 36, 39, 45, 49, 54, 55, 68, 84, 88, 89, 90, 97, 102, 109, 110, 118, 120, 127, 132, 133, 140, 145, 149, 150, 158, 159, 161, 167, 175, 183, 184, 185, 186, 189, 190, 192, 193, 202, 204, 207, 209, 210, 214, 217, 221, 224, 231, 235, 244, 252, 253, 254, 255, 256, 258, 262, 263, 265, 271, 275], "pattern": [1, 6, 7, 13, 31, 84, 87, 88, 89, 90, 91, 92, 97, 99, 100, 102, 103, 106, 108, 111, 112, 115, 116, 118, 120, 134, 135, 140, 145, 146, 147, 175, 178, 191, 200, 202, 225, 231, 232, 246, 253, 261, 268], "updat": [1, 4, 6, 8, 26, 39, 40, 63, 67, 74, 78, 87, 89, 90, 93, 94, 97, 99, 100, 105, 106, 115, 118, 120, 132, 136, 137, 141, 150, 151, 153, 157, 170, 175, 183, 193, 200, 209, 235, 247, 255, 269, 273, 274, 275], "15652": 1, "doc": [1, 8, 61, 62, 74, 77, 118, 157, 207, 240, 248, 249, 275], "here": [1, 4, 19, 27, 41, 42, 50, 61, 86, 97, 103, 120, 127, 131, 132, 133, 137, 153, 162, 179, 191, 192, 196, 200, 212, 215, 235, 246, 248, 251, 253, 254, 256, 259, 266, 267], "format": [1, 6, 7, 13, 52, 69, 76, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 110, 111, 112, 113, 115, 116, 117, 120, 125, 131, 136, 140, 141, 149, 153, 154, 158, 179, 193, 196, 200, 202, 210, 212, 218, 221, 226, 239, 252, 259, 260, 268, 275], "json": [1, 3, 4, 6, 13, 21, 47, 48, 60, 69, 80, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 105, 107, 110, 111, 112, 113, 115, 116, 117, 131, 132, 140, 141, 147, 159, 175, 189, 190, 192, 259, 265, 266, 267, 268, 275], "formatt": [1, 45, 91, 100, 116, 156], "15651": 1, "ad": [1, 3, 5, 8, 10, 24, 56, 60, 67, 70, 72, 73, 74, 77, 90, 102, 105, 106, 109, 120, 126, 127, 132, 134, 137, 150, 151, 157, 158, 159, 161, 163, 174, 175, 179, 183, 185, 186, 192, 195, 204, 207, 209, 216, 225, 226, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 260, 261, 262, 271, 275], "cross_build": [1, 89, 150, 221, 245, 263], "decid": [1, 82, 89, 118, 120, 124, 135, 138, 139, 150, 248, 252, 270, 272, 273], "whether": [1, 87, 89, 90, 93, 94, 99, 100, 102, 106, 118, 131, 141, 150, 185, 187, 223, 248, 252, 255, 262, 267, 275], "cross": [1, 11, 26, 42, 55, 56, 61, 62, 64, 74, 89, 122, 135, 136, 140, 150, 151, 187, 188, 191, 209, 212, 216, 219, 220, 235, 236, 243, 246, 263], "regardless": [1, 88, 89, 150, 253], "intern": [1, 50, 54, 78, 89, 118, 140, 151, 153, 154, 183, 184, 221, 224, 235, 245, 247, 258, 272], "mechan": [1, 7, 13, 60, 74, 77, 78, 84, 118, 120, 125, 131, 139, 140, 151, 154, 156, 161, 179, 193, 196, 231, 246, 247, 253, 269, 271, 272, 274, 275], "15616": 1, "option": [1, 4, 7, 8, 11, 31, 37, 42, 49, 52, 59, 60, 67, 71, 72, 73, 77, 81, 83, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 121, 123, 124, 125, 126, 127, 129, 130, 131, 132, 133, 135, 136, 143, 144, 150, 152, 156, 157, 159, 161, 162, 174, 175, 185, 186, 187, 188, 189, 191, 192, 200, 202, 207, 209, 216, 217, 219, 224, 225, 226, 236, 239, 243, 248, 250, 252, 254, 256, 258, 260, 262, 269, 272, 273, 275], "cach": [1, 2, 4, 6, 10, 13, 18, 19, 24, 29, 31, 35, 42, 47, 50, 52, 56, 59, 60, 61, 62, 67, 74, 78, 83, 85, 86, 87, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 112, 115, 120, 123, 128, 129, 130, 131, 133, 134, 138, 139, 149, 151, 154, 155, 156, 157, 158, 161, 162, 163, 164, 168, 170, 172, 174, 178, 186, 189, 192, 196, 200, 207, 214, 221, 226, 231, 236, 237, 242, 244, 246, 247, 248, 249, 250, 253, 255, 258, 259, 261, 263, 264, 265, 266, 267, 270, 271, 272, 273, 274], "path": [1, 4, 6, 16, 18, 19, 26, 27, 29, 35, 36, 39, 40, 47, 48, 49, 50, 52, 54, 59, 60, 62, 78, 85, 86, 87, 89, 90, 92, 93, 94, 97, 99, 100, 101, 103, 106, 107, 109, 114, 115, 118, 120, 130, 131, 132, 133, 134, 136, 137, 138, 139, 142, 148, 150, 151, 159, 161, 162, 163, 170, 174, 179, 180, 183, 184, 189, 191, 192, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 211, 214, 215, 216, 217, 218, 221, 223, 227, 228, 244, 246, 248, 249, 252, 254, 255, 258, 259, 260, 261, 263, 265, 266, 267, 275], "15613": 1, "order": [1, 4, 8, 13, 31, 36, 96, 102, 104, 105, 108, 118, 119, 120, 122, 135, 136, 150, 153, 154, 157, 161, 174, 175, 179, 192, 193, 196, 200, 209, 245, 247, 265, 271, 272, 273], "argument": [1, 6, 7, 10, 26, 29, 31, 35, 36, 47, 49, 68, 77, 78, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 128, 138, 139, 145, 149, 150, 155, 156, 157, 158, 160, 161, 163, 170, 174, 178, 184, 185, 189, 190, 191, 192, 193, 195, 196, 200, 207, 209, 214, 217, 218, 224, 231, 235, 245, 246, 248, 252, 253, 254, 256, 259, 265, 266, 268, 271, 273, 274], "graph": [1, 6, 8, 10, 11, 13, 36, 39, 40, 42, 61, 77, 78, 82, 84, 86, 89, 90, 101, 102, 104, 105, 106, 107, 110, 120, 121, 127, 131, 136, 137, 140, 141, 143, 146, 150, 151, 156, 159, 161, 165, 171, 185, 196, 225, 235, 243, 244, 245, 247, 249, 253, 268, 269, 270, 271, 272, 274], "15602": 1, "provid": [1, 4, 6, 8, 10, 13, 14, 19, 20, 26, 35, 38, 39, 40, 45, 48, 49, 50, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 78, 79, 82, 84, 87, 88, 90, 92, 93, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 109, 112, 113, 114, 115, 118, 121, 122, 128, 131, 134, 136, 137, 138, 139, 146, 149, 150, 151, 153, 154, 157, 158, 161, 170, 175, 189, 191, 192, 193, 195, 196, 200, 202, 204, 209, 211, 212, 221, 233, 246, 247, 248, 250, 259, 261, 262, 269, 271, 274, 275], "reduc": [1, 78, 97, 98, 141], "exclus": [1, 35, 87, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 103, 106, 107, 112, 115, 116, 120, 121, 124, 136, 137, 140, 225], "packag": [1, 2, 5, 10, 11, 12, 14, 15, 16, 18, 20, 24, 26, 27, 29, 30, 32, 35, 37, 39, 40, 41, 42, 43, 45, 46, 47, 49, 52, 54, 55, 57, 58, 60, 62, 65, 67, 68, 69, 71, 72, 73, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 99, 100, 102, 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 118, 119, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 150, 151, 153, 155, 156, 157, 158, 159, 160, 161, 162, 168, 170, 171, 172, 175, 178, 179, 183, 185, 186, 189, 191, 192, 193, 195, 196, 198, 200, 203, 207, 209, 211, 212, 214, 215, 218, 220, 221, 225, 226, 231, 234, 236, 237, 238, 239, 240, 241, 244, 245, 247, 262, 269, 270, 271, 273, 274], "need": [1, 3, 4, 5, 6, 8, 13, 17, 18, 21, 26, 27, 31, 36, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 55, 56, 60, 62, 67, 68, 72, 74, 78, 81, 82, 83, 86, 89, 94, 96, 97, 98, 100, 101, 105, 106, 109, 112, 116, 118, 120, 124, 126, 127, 132, 133, 135, 136, 137, 138, 139, 141, 145, 146, 150, 153, 154, 155, 156, 159, 160, 179, 183, 190, 191, 192, 193, 195, 204, 208, 209, 210, 217, 221, 224, 227, 231, 235, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 262, 265, 266, 267, 270, 272, 273, 274, 275], "built": [1, 4, 6, 7, 8, 13, 17, 18, 19, 21, 24, 27, 29, 31, 36, 42, 45, 50, 54, 56, 59, 60, 62, 69, 74, 77, 78, 80, 82, 84, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 102, 103, 106, 109, 112, 115, 120, 122, 125, 129, 130, 131, 133, 136, 140, 141, 144, 146, 147, 156, 157, 163, 170, 179, 181, 185, 189, 191, 193, 200, 206, 214, 220, 225, 244, 245, 246, 248, 249, 250, 252, 253, 254, 255, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 272, 275], "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, 50, 52, 54, 55, 56, 59, 60, 61, 65, 66, 67, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 146, 148, 149, 150, 151, 152, 153, 154, 156, 159, 160, 161, 163, 168, 170, 172, 173, 175, 178, 179, 180, 181, 183, 184, 185, 186, 187, 189, 190, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 235, 236, 237, 238, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 272, 273, 274, 275], "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, 51, 54, 55, 56, 59, 60, 61, 77, 78, 79, 86, 87, 88, 89, 90, 94, 96, 97, 98, 99, 100, 102, 103, 106, 109, 110, 115, 118, 119, 121, 122, 129, 130, 131, 133, 136, 143, 150, 151, 154, 162, 163, 170, 171, 178, 179, 189, 190, 191, 192, 196, 197, 200, 202, 204, 208, 209, 212, 218, 231, 236, 237, 238, 239, 240, 241, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 258, 259, 260, 261, 262, 263, 264, 265, 269, 272, 274], "15573": 1, "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, 50, 52, 54, 56, 59, 60, 61, 62, 63, 65, 66, 72, 73, 74, 77, 78, 80, 81, 82, 83, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 129, 130, 131, 134, 135, 136, 140, 143, 144, 151, 153, 154, 155, 162, 167, 170, 174, 179, 182, 184, 186, 187, 189, 190, 192, 197, 198, 202, 207, 209, 211, 214, 216, 220, 221, 222, 223, 224, 226, 228, 231, 234, 236, 237, 240, 243, 244, 245, 249, 250, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 269, 270, 272, 273, 274], "specifi": [1, 6, 10, 13, 18, 26, 27, 31, 36, 40, 45, 52, 77, 82, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 102, 103, 106, 108, 110, 111, 112, 113, 114, 115, 116, 118, 120, 124, 126, 127, 131, 133, 135, 136, 137, 145, 146, 150, 151, 152, 153, 161, 168, 178, 187, 189, 190, 191, 192, 196, 200, 201, 202, 207, 209, 210, 212, 215, 217, 220, 221, 227, 231, 242, 244, 245, 246, 247, 248, 256, 258, 273, 274], "cuda": [1, 89, 150, 192, 209], "toolkit": 1, "visual": [1, 28, 35, 43, 50, 58, 61, 63, 74, 76, 84, 89, 131, 136, 150, 153, 180, 189, 190, 191, 192, 209, 217, 218, 221, 222, 224, 225, 226, 228, 229, 244, 246, 248, 249, 254, 267], "studio": [1, 11, 25, 27, 28, 35, 43, 50, 58, 61, 63, 64, 74, 84, 89, 131, 136, 150, 153, 189, 190, 191, 192, 209, 217, 218, 221, 223, 224, 225, 226, 228, 229, 244, 246, 248, 249, 254, 267], "cmake": [1, 10, 11, 16, 17, 18, 19, 21, 27, 29, 35, 37, 42, 43, 47, 48, 52, 54, 55, 56, 59, 60, 61, 63, 67, 72, 73, 74, 77, 78, 79, 80, 84, 87, 89, 90, 94, 97, 99, 100, 102, 106, 108, 109, 110, 115, 120, 122, 124, 131, 133, 134, 135, 136, 137, 146, 150, 151, 153, 158, 180, 190, 192, 197, 204, 218, 236, 243, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 265, 266, 267, 275], "gener": [1, 2, 3, 4, 6, 16, 17, 18, 19, 21, 24, 26, 27, 35, 38, 39, 40, 41, 42, 43, 45, 46, 49, 50, 54, 55, 56, 59, 60, 65, 66, 68, 70, 71, 72, 73, 74, 78, 80, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 107, 109, 110, 115, 116, 118, 121, 122, 123, 125, 127, 132, 133, 135, 136, 137, 140, 141, 150, 151, 153, 154, 155, 156, 157, 158, 161, 162, 163, 164, 171, 179, 180, 181, 185, 186, 188, 189, 190, 194, 195, 196, 200, 206, 207, 213, 217, 218, 219, 220, 222, 226, 227, 228, 231, 233, 239, 240, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 273, 275], "15572": 1, "import": [1, 6, 7, 8, 16, 17, 18, 24, 26, 31, 36, 38, 39, 40, 41, 42, 46, 49, 52, 59, 60, 61, 62, 63, 65, 66, 70, 71, 72, 73, 74, 77, 82, 84, 86, 97, 100, 102, 106, 109, 118, 119, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 144, 147, 149, 151, 153, 156, 157, 159, 160, 163, 179, 180, 181, 183, 184, 185, 186, 189, 190, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 220, 221, 224, 225, 226, 227, 228, 233, 235, 236, 245, 247, 248, 251, 252, 254, 256, 258, 259, 260, 261, 262, 263, 267, 271, 273, 274, 275], "valu": [1, 21, 26, 27, 39, 49, 77, 78, 82, 84, 87, 89, 90, 97, 99, 100, 102, 103, 106, 109, 110, 115, 116, 118, 120, 122, 123, 124, 125, 126, 127, 131, 132, 133, 135, 136, 137, 138, 139, 140, 143, 144, 145, 146, 148, 149, 150, 151, 152, 155, 157, 159, 164, 167, 181, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 200, 202, 207, 208, 209, 216, 218, 220, 221, 223, 224, 225, 226, 227, 232, 235, 246, 248, 252, 253, 254, 255, 258, 260, 262, 263, 266, 267, 270, 272], "definit": [1, 17, 65, 67, 68, 70, 71, 74, 79, 84, 89, 94, 102, 109, 110, 111, 120, 127, 136, 140, 150, 151, 153, 156, 175, 186, 192, 194, 196, 197, 198, 208, 209, 221, 225, 226, 227, 231, 248, 262, 265, 267, 274], "higher": [1, 67, 84, 102, 136, 137, 145, 149, 231, 271, 273], "preced": [1, 120, 148, 180, 192, 195, 209, 212], "over": [1, 6, 8, 10, 76, 78, 84, 88, 89, 91, 102, 120, 132, 135, 140, 148, 150, 151, 155, 157, 158, 161, 174, 179, 184, 192, 202, 209, 211, 212, 231, 252, 255, 256, 261, 268, 270, 273, 275], "regular": [1, 41, 120, 131, 133, 136, 151, 155, 162, 179, 191, 202, 212, 225, 241, 243, 245, 258], "15571": 1, "displai": [1, 13, 67, 85, 86, 89, 96, 103, 120, 141, 158, 164, 254, 271], "messag": [1, 4, 17, 26, 31, 38, 41, 42, 45, 49, 52, 77, 83, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 145, 150, 162, 249, 251, 252, 253, 256, 260, 262, 265, 272, 275], "when": [1, 4, 5, 6, 8, 10, 13, 14, 15, 29, 38, 39, 40, 41, 45, 47, 49, 50, 52, 60, 62, 74, 77, 78, 82, 83, 84, 85, 87, 88, 89, 90, 92, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 111, 115, 116, 118, 120, 121, 124, 126, 127, 128, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 149, 150, 151, 153, 154, 155, 159, 161, 163, 164, 175, 179, 181, 183, 185, 186, 187, 189, 191, 192, 196, 197, 198, 200, 202, 209, 212, 214, 215, 217, 220, 221, 223, 225, 226, 232, 235, 237, 240, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274, 275], "call": [1, 3, 4, 13, 21, 26, 31, 36, 38, 39, 40, 41, 42, 47, 50, 52, 54, 56, 59, 60, 65, 67, 72, 73, 78, 83, 86, 87, 91, 94, 102, 109, 110, 114, 118, 121, 122, 123, 124, 126, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 141, 142, 145, 154, 157, 158, 159, 161, 162, 163, 178, 179, 184, 189, 191, 192, 193, 196, 197, 198, 203, 207, 209, 214, 216, 217, 220, 224, 226, 227, 228, 231, 235, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 269, 270, 272, 275], "deactivate_conanvcvar": 1, "15557": 1, "self": [1, 6, 16, 17, 18, 19, 21, 35, 38, 39, 40, 41, 42, 48, 49, 50, 52, 56, 59, 60, 78, 82, 84, 102, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 150, 151, 153, 154, 156, 158, 159, 160, 161, 162, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 270, 271, 272, 274, 275], "info": [1, 6, 13, 24, 31, 36, 54, 56, 59, 60, 63, 77, 82, 83, 84, 85, 86, 89, 90, 96, 99, 101, 103, 106, 131, 135, 136, 137, 140, 141, 143, 144, 145, 150, 159, 162, 170, 179, 202, 221, 233, 235, 245, 253, 254, 258, 260, 271, 272], "inform": [1, 2, 4, 6, 7, 8, 11, 13, 14, 18, 20, 21, 31, 43, 45, 47, 50, 54, 55, 62, 64, 67, 68, 72, 73, 77, 78, 79, 80, 85, 86, 90, 91, 93, 95, 96, 97, 100, 101, 102, 103, 105, 106, 109, 110, 111, 116, 117, 119, 121, 122, 123, 124, 126, 127, 128, 131, 132, 133, 134, 140, 141, 142, 143, 146, 147, 148, 149, 151, 153, 154, 156, 157, 159, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 183, 185, 189, 192, 195, 198, 200, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 225, 231, 233, 236, 239, 242, 244, 245, 246, 248, 249, 250, 253, 254, 256, 258, 262, 263, 266, 267, 268, 272, 273, 275], "package_id": [1, 6, 7, 13, 31, 78, 80, 81, 84, 88, 89, 91, 95, 97, 99, 100, 103, 112, 116, 120, 121, 123, 127, 131, 137, 143, 144, 150, 156, 170, 246, 253, 257, 258, 270, 272], "serial": [1, 7, 120], "output": [1, 6, 10, 13, 17, 35, 36, 45, 47, 52, 55, 60, 67, 69, 74, 78, 80, 86, 87, 88, 89, 91, 92, 94, 95, 97, 98, 99, 100, 101, 102, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 131, 135, 140, 150, 151, 155, 159, 161, 162, 179, 200, 202, 204, 211, 218, 221, 231, 244, 246, 248, 249, 251, 252, 255, 262, 263, 267, 272, 275], "forward": [1, 6, 45, 54, 55, 74, 179, 202, 270, 274], "list": [1, 4, 5, 6, 7, 8, 11, 12, 19, 24, 31, 36, 45, 49, 54, 56, 59, 61, 65, 67, 70, 72, 73, 77, 83, 84, 85, 86, 88, 91, 97, 101, 105, 107, 109, 112, 113, 116, 118, 120, 121, 125, 131, 132, 135, 136, 145, 146, 149, 150, 151, 152, 156, 157, 159, 165, 168, 170, 174, 175, 178, 186, 187, 189, 190, 191, 192, 196, 200, 202, 207, 209, 210, 212, 214, 216, 221, 224, 225, 226, 227, 231, 233, 235, 236, 242, 247, 254, 255, 258, 259, 265, 266, 271, 272, 274], "15553": 1, "log": [1, 6, 26, 60, 91, 111, 118, 145, 154, 156, 267, 275], "git": [1, 11, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 43, 45, 48, 49, 50, 52, 54, 55, 62, 69, 74, 77, 78, 89, 102, 109, 110, 120, 139, 140, 150, 154, 180, 200, 230, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 274], "command": [1, 4, 7, 10, 11, 13, 24, 26, 27, 30, 36, 45, 47, 48, 49, 54, 56, 59, 61, 62, 65, 66, 71, 72, 73, 74, 76, 77, 78, 80, 83, 84, 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, 115, 116, 117, 118, 119, 120, 121, 122, 128, 129, 130, 131, 133, 134, 138, 139, 140, 143, 149, 151, 152, 153, 155, 156, 160, 162, 164, 166, 170, 173, 184, 185, 186, 189, 191, 192, 196, 207, 214, 215, 216, 217, 220, 224, 225, 226, 228, 231, 233, 235, 242, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 268, 271, 272, 273, 274], "run": [1, 6, 10, 13, 17, 18, 19, 21, 26, 27, 32, 34, 38, 39, 40, 42, 45, 47, 48, 50, 52, 54, 55, 56, 59, 60, 62, 67, 68, 74, 78, 80, 84, 89, 90, 95, 99, 100, 106, 112, 116, 119, 120, 121, 122, 123, 124, 131, 133, 135, 136, 139, 142, 148, 150, 151, 153, 156, 158, 159, 161, 162, 186, 187, 189, 191, 192, 194, 195, 198, 207, 212, 214, 215, 216, 217, 220, 224, 225, 227, 228, 231, 235, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 271, 272, 274, 275], "verbos": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 136, 145, 150, 151, 155, 184, 189, 209, 220, 224, 267], "mode": [1, 17, 21, 74, 77, 89, 92, 103, 120, 131, 133, 140, 141, 150, 153, 217, 235, 236, 246, 264, 267, 275], "15514": 1, "debug": [1, 6, 11, 17, 26, 28, 35, 47, 48, 50, 52, 67, 77, 78, 102, 106, 109, 110, 120, 123, 136, 145, 151, 153, 157, 164, 184, 185, 186, 190, 191, 192, 197, 198, 200, 209, 221, 224, 225, 226, 236, 243, 248, 251, 253, 254, 258, 259, 260, 262, 265, 266, 267], "vvv": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "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, 46, 47, 49, 52, 54, 55, 56, 59, 60, 61, 62, 65, 66, 67, 68, 69, 71, 72, 73, 74, 77, 78, 80, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 109, 110, 112, 115, 116, 117, 118, 119, 120, 121, 122, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 145, 146, 148, 149, 151, 152, 153, 154, 155, 156, 157, 159, 160, 161, 162, 163, 164, 174, 175, 178, 180, 183, 184, 185, 186, 188, 189, 190, 193, 194, 195, 206, 207, 211, 213, 214, 217, 218, 219, 220, 222, 224, 226, 228, 231, 233, 236, 240, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 262, 263, 265, 266, 267, 268, 271, 272, 273, 274], "copi": [1, 4, 5, 6, 8, 13, 16, 17, 18, 19, 24, 26, 30, 31, 34, 35, 38, 41, 42, 56, 59, 60, 62, 74, 78, 83, 88, 89, 102, 103, 109, 118, 120, 121, 128, 129, 130, 131, 133, 134, 140, 150, 156, 161, 179, 199, 203, 204, 242, 243, 250, 254, 255, 256, 258, 259, 260, 262, 264, 275], "15513": 1, "defin": [1, 4, 6, 10, 14, 17, 19, 20, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 49, 50, 54, 56, 59, 60, 74, 78, 81, 82, 84, 88, 89, 92, 94, 95, 100, 102, 103, 105, 107, 109, 110, 111, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 146, 148, 149, 150, 151, 153, 154, 155, 156, 157, 159, 161, 164, 167, 174, 175, 179, 182, 184, 186, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 204, 207, 208, 209, 210, 211, 212, 215, 217, 218, 221, 225, 226, 227, 228, 231, 236, 243, 244, 245, 246, 248, 250, 251, 252, 253, 254, 256, 259, 260, 261, 262, 263, 265, 266, 267, 269, 270, 271, 272, 273, 274, 275], "python_requir": [1, 78, 95, 101, 105, 106, 107, 108, 121, 131, 132, 156, 170, 192, 218, 236, 247, 271, 273], "tested_reference_str": [1, 179, 260, 263], "explicit": [1, 41, 88, 102, 134, 149, 203, 227, 268, 269, 271, 274, 275], "test_packag": [1, 21, 27, 42, 50, 56, 59, 60, 78, 90, 94, 109, 110, 115, 121, 142, 170, 179, 250, 251, 253, 254, 255, 256, 258, 259, 260, 262, 263, 265, 266], "15485": 1, "presets_build": 1, "run_environ": 1, "modifi": [1, 3, 4, 6, 10, 17, 26, 27, 29, 48, 52, 67, 77, 78, 84, 88, 118, 120, 123, 124, 131, 136, 153, 155, 158, 162, 164, 185, 192, 193, 200, 208, 243, 247, 248, 252, 253, 254, 256, 261, 262, 270, 272, 273, 274, 275], "cmakepreset": [1, 43, 46, 68, 89, 131, 150, 189, 190, 192, 248, 265, 266, 267, 275], "environ": [1, 2, 6, 13, 14, 20, 35, 45, 55, 61, 62, 65, 80, 84, 89, 100, 109, 110, 118, 120, 131, 136, 145, 148, 149, 150, 151, 154, 180, 189, 191, 192, 194, 197, 198, 208, 211, 217, 221, 222, 226, 228, 244, 245, 246, 248, 249, 250, 252, 258, 260, 262, 263, 266], "method": [1, 4, 6, 11, 16, 17, 18, 19, 21, 31, 36, 39, 40, 45, 47, 50, 56, 59, 60, 61, 65, 72, 74, 78, 80, 84, 86, 87, 88, 94, 101, 102, 109, 110, 114, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 151, 156, 157, 160, 161, 162, 163, 175, 179, 183, 184, 185, 186, 189, 191, 192, 195, 196, 197, 198, 200, 203, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 234, 236, 243, 250, 251, 253, 254, 256, 258, 259, 260, 262, 263, 265, 266, 267, 270, 274], "15470": 1, "allow": [1, 3, 4, 6, 13, 49, 50, 55, 56, 59, 67, 72, 74, 78, 79, 84, 86, 87, 89, 90, 92, 97, 99, 100, 102, 103, 105, 106, 110, 111, 115, 118, 120, 121, 122, 123, 124, 129, 130, 133, 135, 136, 149, 150, 151, 153, 154, 155, 156, 157, 158, 164, 171, 175, 179, 190, 191, 192, 193, 195, 200, 207, 221, 223, 225, 226, 235, 244, 247, 248, 254, 256, 266, 268, 271, 273, 274, 275], "packg": 1, "remot": [1, 3, 4, 6, 7, 8, 12, 31, 45, 54, 60, 74, 77, 80, 86, 87, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 112, 113, 115, 116, 118, 147, 149, 150, 151, 156, 165, 168, 170, 171, 172, 178, 200, 231, 236, 237, 240, 241, 242, 244, 246, 249, 250, 253, 259, 266, 273, 275], "limit": [1, 35, 50, 103, 112, 120, 136, 187, 196, 200, 221, 244, 275], "suppli": [1, 4, 5, 87, 88, 90, 97, 99, 100, 102, 104, 105, 106, 108, 115, 161, 275], "15464": 1, "initi": [1, 6, 60, 67, 121, 132, 136, 138, 139, 170, 221, 229, 274], "document": [1, 3, 4, 26, 27, 62, 69, 78, 79, 84, 91, 112, 120, 128, 131, 136, 141, 153, 156, 164, 179, 180, 192, 193, 200, 203, 217, 221, 239, 240, 248, 249, 253, 267, 275], "make": [1, 6, 8, 26, 27, 29, 38, 39, 40, 45, 50, 60, 62, 63, 65, 70, 74, 89, 94, 102, 103, 105, 120, 127, 129, 131, 134, 135, 138, 141, 145, 150, 151, 153, 156, 158, 163, 179, 186, 191, 195, 207, 209, 210, 221, 231, 246, 248, 251, 252, 253, 261, 264, 265, 267, 274, 275], "remotesapi": [1, 31, 165, 175], "publicli": [1, 4], "avail": [1, 3, 4, 8, 24, 26, 36, 52, 56, 67, 74, 76, 77, 89, 94, 99, 101, 103, 108, 109, 112, 118, 120, 125, 133, 137, 146, 150, 151, 162, 175, 179, 183, 187, 192, 234, 244, 247, 248, 253, 254, 258, 259, 260, 265, 266, 273, 275], "experiment": [1, 6, 7, 13, 31, 74, 89, 95, 101, 109, 116, 117, 120, 124, 126, 127, 128, 135, 136, 146, 149, 150, 151, 153, 154, 157, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 191, 192, 193, 210, 214, 215, 216, 217, 231, 275], "15462": 1, "support": [1, 8, 17, 26, 27, 47, 48, 49, 52, 61, 63, 64, 67, 68, 69, 70, 74, 77, 84, 100, 103, 109, 118, 124, 133, 136, 138, 139, 143, 146, 150, 151, 153, 155, 156, 157, 160, 161, 164, 175, 182, 187, 191, 209, 212, 217, 221, 223, 235, 243, 251, 256, 262, 265, 266, 267, 275], "vcvar": [1, 89, 131, 150, 153, 180, 222, 224, 226], "env": [1, 24, 26, 39, 40, 54, 78, 80, 89, 111, 136, 137, 142, 145, 150, 151, 155, 180, 189, 192, 195, 196, 197, 198, 209, 226, 227, 228, 233, 244, 246, 249, 260, 263, 266], "variabl": [1, 26, 35, 36, 43, 45, 46, 61, 65, 80, 82, 84, 89, 109, 118, 120, 131, 135, 136, 148, 149, 150, 151, 154, 182, 186, 189, 191, 193, 194, 197, 198, 208, 209, 210, 211, 212, 214, 216, 217, 220, 221, 224, 225, 226, 227, 228, 235, 245, 246, 248, 249, 252, 260, 261, 262, 263, 272, 273, 275], "powershel": [1, 89, 150, 196, 197, 198, 228, 249], "15461": 1, "exclud": [1, 39, 40, 87, 88, 89, 90, 97, 99, 100, 102, 106, 115, 120, 150, 200, 225, 231, 247, 273], "avoid": [1, 5, 6, 10, 50, 60, 62, 74, 78, 87, 89, 90, 94, 97, 99, 100, 101, 102, 106, 109, 112, 115, 118, 119, 120, 123, 124, 127, 131, 132, 137, 140, 150, 154, 155, 157, 163, 179, 191, 192, 196, 200, 207, 209, 218, 249, 252, 253, 258, 263, 265, 270, 271, 272, 273], "dirti": [1, 6, 60, 89, 120, 150, 231], "helper": [1, 18, 45, 54, 55, 56, 59, 65, 66, 68, 71, 72, 73, 74, 77, 89, 120, 122, 130, 131, 140, 141, 145, 150, 153, 154, 159, 184, 187, 189, 191, 192, 195, 196, 200, 206, 209, 211, 214, 216, 220, 223, 224, 231, 232, 258], "15457": 1, "core": [1, 3, 4, 10, 31, 45, 54, 61, 75, 82, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 135, 145, 149, 151, 155, 168, 178, 179, 231, 273], "scm": [1, 11, 43, 80, 89, 102, 120, 139, 150, 180, 200, 231, 251, 256, 272, 274], "revision_mod": [1, 95, 100, 101, 272], "recip": [1, 4, 5, 7, 8, 10, 11, 13, 17, 21, 24, 29, 30, 32, 36, 38, 39, 40, 41, 42, 47, 49, 50, 52, 56, 59, 60, 61, 68, 73, 74, 77, 78, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 102, 105, 106, 107, 109, 110, 111, 112, 113, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 135, 136, 137, 138, 139, 140, 141, 143, 146, 150, 151, 152, 153, 154, 156, 157, 158, 159, 160, 161, 162, 163, 168, 170, 172, 178, 179, 183, 187, 189, 190, 191, 192, 195, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 212, 214, 215, 216, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 235, 236, 237, 242, 244, 246, 247, 248, 249, 250, 251, 254, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "python_package_id_mod": 1, "per": [1, 6, 72, 74, 84, 109, 122, 131, 134, 136, 140, 151, 178, 179, 185, 214, 215, 225], "effect": [1, 6, 8, 49, 77, 80, 81, 82, 102, 120, 131, 135, 140, 150, 156, 225, 235, 253, 271], "consum": [1, 6, 8, 14, 20, 21, 35, 38, 41, 45, 50, 56, 59, 60, 61, 68, 72, 73, 83, 86, 90, 110, 119, 121, 124, 131, 133, 136, 137, 144, 146, 151, 170, 171, 179, 185, 193, 195, 207, 210, 212, 215, 225, 233, 236, 246, 247, 248, 249, 250, 251, 254, 258, 259, 260, 263, 264, 265, 267, 270, 272, 274, 275], "15453": 1, "cmakeexecut": [1, 192], "preset": [1, 29, 47, 48, 68, 89, 122, 133, 150, 190, 192, 265, 266, 267], "15447": 1, "conf": [1, 3, 4, 7, 10, 26, 27, 36, 45, 49, 72, 78, 80, 82, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 122, 127, 131, 132, 135, 136, 145, 147, 153, 155, 161, 167, 174, 182, 190, 196, 197, 198, 207, 219, 222, 235, 241, 249, 252, 258, 275], "line": [1, 8, 10, 21, 26, 29, 31, 49, 60, 65, 66, 71, 72, 73, 74, 77, 78, 84, 87, 90, 97, 99, 100, 102, 106, 109, 110, 115, 118, 120, 122, 138, 139, 149, 150, 155, 158, 159, 160, 164, 184, 185, 189, 191, 192, 200, 207, 214, 215, 220, 224, 226, 228, 244, 246, 249, 251, 252, 254, 256, 261, 272, 273, 274, 275], "via": [1, 4, 7, 10, 13, 31, 38, 49, 50, 62, 68, 69, 74, 78, 82, 84, 89, 94, 120, 131, 133, 137, 150, 159, 161, 164, 179, 189, 191, 192, 193, 195, 238, 244, 245, 273, 275], "cli": [1, 10, 13, 31, 74, 95, 100, 150, 152, 155, 159, 189, 214, 240, 274], "15441": 1, "detect_api": [1, 150, 151], "detect_msvc_upd": [1, 151], "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, 50, 52, 55, 56, 59, 60, 61, 62, 63, 67, 69, 74, 77, 78, 79, 81, 83, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 103, 104, 105, 106, 107, 108, 109, 110, 112, 114, 115, 116, 118, 121, 124, 125, 131, 132, 135, 137, 139, 140, 141, 143, 144, 146, 150, 151, 153, 154, 156, 157, 158, 160, 161, 164, 170, 179, 180, 183, 186, 187, 190, 191, 192, 195, 200, 203, 204, 207, 211, 212, 217, 221, 223, 226, 227, 228, 230, 231, 235, 236, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 275], "15435": 1, "job": [1, 7, 60, 78, 89, 150, 151, 187, 189, 220, 275], "buildpreset": [1, 48, 192], "15422": 1, "nest": [1, 77, 153, 200, 265], "ani": [1, 4, 6, 7, 8, 10, 13, 21, 24, 35, 36, 42, 50, 56, 59, 60, 74, 77, 78, 82, 83, 84, 88, 89, 90, 91, 95, 101, 102, 103, 105, 107, 109, 110, 112, 113, 116, 118, 120, 122, 123, 124, 129, 130, 131, 132, 136, 138, 139, 140, 141, 145, 148, 150, 151, 153, 155, 156, 157, 159, 162, 179, 180, 186, 189, 190, 191, 192, 197, 200, 202, 205, 207, 210, 212, 214, 215, 217, 221, 225, 226, 232, 235, 240, 242, 244, 246, 247, 251, 253, 254, 258, 259, 260, 264, 265, 268, 270, 271, 272, 273, 274, 275], "set": [1, 7, 8, 10, 11, 13, 16, 17, 18, 21, 23, 26, 27, 35, 38, 41, 42, 47, 48, 49, 52, 56, 59, 60, 67, 68, 71, 72, 73, 78, 80, 81, 83, 85, 86, 87, 89, 90, 91, 94, 95, 97, 99, 100, 101, 103, 106, 110, 112, 115, 116, 118, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 143, 144, 145, 147, 148, 149, 150, 154, 156, 157, 159, 161, 164, 167, 174, 181, 183, 184, 185, 186, 187, 188, 189, 191, 192, 195, 196, 197, 198, 202, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 233, 235, 236, 237, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 261, 262, 263, 266, 267, 271, 272], "yml": [1, 4, 7, 11, 23, 52, 60, 67, 77, 78, 80, 84, 89, 120, 129, 130, 131, 132, 140, 147, 151, 163, 200, 204, 231, 250], "15415": 1, "coordinates_to_conandata": [1, 231], "checkout_from_conandata_coordin": [1, 231], "simplifi": [1, 13, 107, 146, 253, 254, 275], "base": [1, 4, 8, 35, 36, 39, 42, 47, 54, 55, 62, 74, 83, 84, 87, 91, 100, 101, 102, 103, 106, 112, 116, 120, 131, 132, 134, 137, 151, 156, 159, 161, 168, 178, 181, 184, 186, 190, 192, 217, 221, 223, 224, 226, 244, 246, 252, 262, 275], "flow": [1, 5, 6, 11, 13, 18, 29, 35, 60, 61, 74, 87, 94, 102, 114, 131, 136, 186, 191, 226, 236, 240, 252, 264, 271, 275], "15377": 1, "autotoolstoolchain": [1, 45, 65, 89, 150, 180, 195, 206, 207, 252], "automat": [1, 3, 6, 31, 41, 47, 62, 67, 74, 84, 87, 89, 90, 94, 97, 99, 100, 101, 102, 105, 106, 109, 115, 118, 120, 129, 136, 137, 140, 149, 150, 151, 153, 162, 174, 179, 183, 189, 190, 191, 192, 195, 196, 198, 203, 204, 207, 210, 211, 212, 214, 216, 217, 220, 226, 235, 238, 244, 246, 247, 249, 252, 253, 255, 256, 260, 263, 268, 269, 270, 271, 272, 273, 275], "inject": [1, 39, 40, 43, 46, 66, 67, 89, 120, 135, 136, 145, 149, 150, 151, 154, 156, 158, 179, 216, 227, 249, 252, 262], "f": [1, 31, 36, 39, 40, 60, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 109, 110, 111, 112, 113, 115, 116, 117, 120, 136, 140, 154, 160, 162, 163, 179, 192, 212, 227], "v": [1, 26, 48, 50, 59, 79, 82, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 125, 135, 146, 150, 153, 155, 179, 220, 221, 225, 226, 227, 231, 236, 243, 244, 246, 249, 254, 275], "15375": 1, "upload": [1, 3, 5, 7, 12, 29, 60, 69, 74, 77, 78, 84, 86, 89, 91, 93, 110, 111, 112, 118, 120, 129, 130, 150, 152, 156, 163, 165, 207, 236, 237, 238, 240, 247, 258, 259, 265, 268, 269, 275], "parallel": [1, 67, 78, 84, 89, 97, 116, 150, 155, 156, 158, 168, 178, 187, 192, 275], "faster": [1, 13, 84, 231, 247, 274], "15360": 1, "intel": [1, 42, 74, 80, 89, 150, 180, 223], "oneapi": [1, 89, 150, 153, 217], "compil": [1, 6, 8, 16, 17, 18, 24, 26, 27, 35, 38, 39, 40, 41, 42, 45, 49, 52, 55, 56, 59, 60, 61, 68, 77, 78, 82, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 106, 109, 110, 112, 115, 116, 120, 123, 125, 127, 131, 134, 135, 136, 137, 140, 144, 147, 150, 151, 157, 164, 172, 183, 184, 185, 186, 187, 189, 190, 191, 195, 197, 198, 204, 207, 208, 209, 210, 212, 214, 215, 216, 217, 220, 221, 223, 224, 225, 226, 227, 228, 233, 236, 243, 244, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 267, 275], "detect": [1, 6, 60, 74, 78, 89, 150, 151, 174, 187, 192, 211, 221, 244, 245, 246, 255], "improv": [1, 6, 74, 122, 275], "15358": 1, "progress": 1, "long": [1, 4, 7, 74, 77, 120, 133, 153, 179, 271, 273, 275], "15354": 1, "extension_properti": [1, 157], "attribut": [1, 19, 21, 48, 78, 80, 82, 84, 101, 119, 122, 124, 126, 127, 129, 130, 131, 132, 133, 135, 136, 137, 138, 139, 145, 146, 157, 162, 179, 185, 190, 191, 192, 204, 215, 218, 222, 246, 248, 251, 254, 255, 256, 258, 261, 263, 266, 267, 274], "extens": [1, 4, 11, 31, 35, 36, 38, 61, 62, 74, 78, 80, 81, 82, 89, 102, 120, 157, 158, 159, 160, 161, 162, 163, 164, 187, 196, 200, 245, 253, 260, 266], "15348": 1, "compatibility_cppstd": [1, 120, 157], "compat": [1, 8, 24, 27, 45, 67, 74, 79, 80, 81, 83, 84, 87, 90, 91, 97, 99, 100, 102, 106, 115, 116, 120, 121, 135, 151, 153, 156, 162, 191, 192, 207, 212, 221, 246, 248, 250, 260], "py": [1, 6, 16, 17, 18, 19, 21, 24, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 56, 59, 60, 61, 62, 67, 74, 78, 80, 84, 86, 87, 88, 90, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 109, 110, 114, 115, 118, 120, 125, 129, 131, 132, 133, 138, 139, 140, 141, 142, 143, 146, 151, 154, 156, 157, 158, 159, 160, 161, 162, 163, 164, 170, 171, 179, 185, 186, 191, 197, 198, 204, 208, 209, 210, 212, 214, 215, 216, 217, 225, 226, 228, 233, 235, 236, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 272, 273, 274], "plugin": [1, 26, 50, 63, 74, 78, 80, 86, 89, 118, 125, 135, 145, 156, 157, 158, 163, 260], "disabl": [1, 50, 89, 90, 118, 120, 150, 152, 155, 157, 161, 175, 192, 202, 209, 258], "fallback": [1, 102, 153, 184, 275], "other": [1, 3, 6, 7, 8, 13, 18, 21, 24, 31, 35, 38, 42, 45, 48, 50, 56, 59, 60, 61, 62, 70, 74, 77, 78, 82, 83, 84, 87, 88, 89, 90, 91, 94, 97, 98, 99, 100, 102, 103, 106, 107, 109, 110, 112, 115, 116, 118, 119, 122, 123, 124, 125, 127, 128, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 144, 150, 151, 153, 154, 155, 156, 159, 179, 180, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 207, 208, 209, 214, 221, 226, 227, 231, 235, 236, 240, 242, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 260, 262, 264, 265, 266, 267, 271, 272, 274, 275], "cppstd": [1, 24, 26, 27, 56, 59, 77, 82, 95, 100, 110, 120, 127, 135, 151, 153, 157, 164, 180, 186, 192, 209, 216, 227, 244, 245, 246, 253, 254, 258, 275], "get_commit": [1, 231], "repositori": [1, 3, 5, 7, 8, 13, 16, 17, 18, 19, 21, 24, 29, 30, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 61, 62, 69, 74, 77, 78, 89, 91, 102, 111, 116, 120, 140, 154, 156, 159, 162, 215, 231, 235, 236, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "true": [1, 6, 10, 19, 21, 36, 39, 40, 41, 42, 52, 60, 77, 83, 84, 85, 87, 89, 90, 94, 95, 97, 99, 100, 101, 102, 103, 106, 110, 115, 118, 120, 122, 124, 126, 127, 131, 132, 135, 136, 137, 140, 141, 145, 146, 149, 150, 151, 152, 174, 175, 183, 185, 187, 189, 190, 191, 192, 196, 197, 198, 200, 202, 204, 209, 211, 214, 216, 220, 221, 223, 225, 226, 231, 235, 246, 248, 249, 252, 253, 254, 256, 258, 262, 266, 270, 271, 273], "obtain": [1, 39, 40, 60, 85, 86, 88, 121, 135, 141, 151, 175, 183, 184, 189, 194, 196, 197, 198, 221, 224, 226, 231, 246, 274], "commit": [1, 19, 60, 69, 74, 78, 120, 133, 140, 200, 231, 251, 252, 255, 256, 262, 266, 267, 272, 274], "folder": [1, 4, 6, 7, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 38, 39, 40, 45, 47, 49, 50, 54, 55, 56, 59, 60, 62, 67, 77, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 109, 110, 114, 115, 118, 119, 121, 123, 128, 129, 130, 131, 134, 140, 148, 150, 151, 155, 156, 158, 159, 160, 161, 162, 163, 164, 173, 183, 189, 190, 191, 192, 195, 200, 202, 204, 205, 207, 209, 215, 218, 220, 221, 228, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 270, 271, 275], "15304": 1, "ensur": [1, 4, 8, 36, 42, 62, 67, 82, 90, 124, 153, 192, 200, 214, 217, 246, 248, 273], "edit": [1, 3, 14, 15, 21, 26, 29, 52, 62, 74, 77, 78, 86, 110, 111, 118, 120, 131, 133, 136, 140, 151, 153, 164, 179, 236, 239, 241, 244, 247, 264, 267, 272], "cascad": [1, 87, 90, 97, 99, 100, 102, 106, 115, 265], "work": [1, 4, 7, 16, 18, 19, 24, 26, 29, 36, 38, 39, 40, 41, 42, 45, 50, 52, 60, 61, 62, 63, 71, 74, 77, 78, 86, 91, 92, 102, 107, 109, 110, 111, 112, 116, 118, 120, 121, 129, 130, 131, 133, 140, 143, 144, 149, 151, 153, 157, 159, 162, 179, 187, 189, 191, 192, 196, 215, 218, 221, 231, 236, 241, 244, 245, 246, 248, 253, 254, 256, 259, 261, 264, 266, 267, 270, 275], "togeth": [1, 60, 71, 74, 88, 98, 110, 120, 129, 130, 140, 157, 178, 179, 189, 192, 220, 227, 247, 254, 268, 275], "15300": 1, "differ": [1, 4, 6, 7, 8, 9, 11, 12, 18, 21, 24, 26, 29, 31, 35, 37, 41, 42, 45, 49, 50, 52, 56, 59, 60, 62, 65, 66, 68, 69, 70, 71, 73, 74, 78, 79, 81, 82, 83, 84, 85, 86, 88, 89, 94, 97, 98, 99, 100, 102, 103, 106, 107, 108, 110, 116, 118, 120, 121, 122, 123, 124, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 144, 146, 150, 151, 153, 155, 156, 157, 159, 160, 161, 162, 179, 185, 186, 190, 191, 192, 196, 197, 198, 200, 204, 212, 217, 218, 223, 225, 226, 231, 235, 240, 243, 244, 245, 248, 249, 250, 253, 254, 255, 258, 259, 260, 262, 263, 265, 267, 268, 269, 270, 271, 273, 274, 275], "sort": [1, 97, 105, 107, 108, 136, 163, 193, 200, 271, 275], "binari": [1, 4, 6, 7, 8, 13, 24, 35, 39, 40, 45, 49, 52, 54, 56, 59, 60, 61, 62, 64, 77, 78, 79, 80, 83, 85, 86, 87, 88, 89, 90, 91, 94, 95, 96, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 119, 121, 122, 123, 124, 125, 128, 131, 134, 135, 136, 137, 140, 141, 142, 143, 144, 150, 151, 152, 153, 156, 161, 168, 171, 179, 183, 186, 191, 200, 207, 212, 221, 236, 237, 238, 239, 240, 242, 244, 245, 246, 248, 249, 250, 252, 254, 255, 256, 257, 258, 260, 261, 263, 265, 266, 267, 268, 270, 272, 275], "group": [1, 31, 89, 120, 275], "revis": [1, 6, 7, 8, 13, 24, 30, 32, 56, 59, 60, 78, 82, 83, 85, 86, 87, 88, 90, 91, 97, 99, 100, 102, 104, 105, 106, 107, 108, 110, 112, 115, 116, 120, 131, 135, 146, 153, 159, 170, 178, 179, 200, 236, 243, 244, 249, 253, 254, 255, 258, 260, 261, 266, 268, 269, 271], "15270": 1, "past": [1, 26, 79, 88, 103], "timestamp": [1, 13, 99, 103, 105, 107], "compact": [1, 88], "lock": [1, 8, 74, 86, 87, 90, 94, 97, 99, 100, 101, 102, 110, 115, 170, 179, 247, 271], "15262": 1, "fix": [1, 5, 8, 35, 74, 120, 140, 154, 179, 183, 204, 246, 247, 270], "guarante": [1, 4, 7, 60, 84, 107, 110, 135, 151, 179, 256, 269, 272], "execut": [1, 6, 17, 21, 26, 27, 31, 35, 39, 40, 41, 42, 45, 50, 55, 56, 59, 60, 67, 78, 82, 83, 84, 88, 89, 94, 101, 102, 109, 116, 120, 123, 124, 126, 127, 128, 132, 134, 135, 136, 137, 138, 139, 140, 142, 145, 146, 150, 151, 155, 158, 159, 162, 163, 178, 183, 186, 189, 192, 196, 197, 198, 207, 209, 211, 214, 220, 221, 225, 227, 231, 233, 235, 246, 248, 249, 252, 253, 254, 255, 258, 260, 263, 265, 266, 267, 275], "15678": 1, "solv": [1, 29, 60, 62, 78, 79, 137, 151, 156, 159, 191, 212, 270, 272], "platform_tool_requir": 1, "profil": [1, 24, 26, 27, 39, 40, 42, 45, 49, 54, 56, 60, 62, 67, 74, 78, 80, 82, 84, 86, 87, 89, 90, 94, 97, 99, 100, 106, 115, 120, 124, 127, 136, 147, 150, 153, 155, 156, 157, 161, 165, 167, 170, 192, 195, 209, 216, 217, 220, 221, 223, 227, 243, 244, 246, 248, 249, 253, 258, 270, 271, 272, 273], "context": [1, 6, 13, 42, 78, 84, 87, 90, 94, 95, 97, 99, 100, 102, 106, 110, 115, 120, 124, 131, 136, 137, 140, 146, 150, 151, 161, 181, 191, 192, 195, 196, 197, 198, 200, 212, 215, 221, 223, 225, 236, 243, 246, 260], "discard": [1, 89, 137, 150], "platform_requir": 1, "15665": 1, "gcc": [1, 24, 39, 40, 45, 74, 78, 82, 84, 85, 87, 88, 90, 91, 94, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 120, 125, 135, 140, 144, 151, 153, 164, 172, 187, 202, 209, 245], "conda": 1, "15664": 1, "handl": [1, 6, 9, 60, 77, 118, 120, 136, 153, 195, 204, 236, 250, 252, 267], "download": [1, 4, 5, 7, 12, 19, 24, 26, 27, 29, 60, 61, 62, 67, 74, 78, 86, 88, 89, 93, 94, 96, 97, 100, 102, 103, 110, 112, 118, 120, 129, 130, 140, 151, 152, 154, 156, 163, 165, 170, 180, 199, 231, 237, 240, 242, 244, 247, 248, 249, 253, 256, 257, 260, 264, 266, 268, 270, 272, 275], "backup": [1, 7, 89, 118, 150, 178], "15601": 1, "relativ": 1, "15592": 1, "none": [1, 31, 36, 38, 49, 50, 82, 89, 95, 100, 101, 102, 120, 131, 133, 143, 145, 150, 151, 162, 166, 168, 170, 171, 174, 175, 178, 183, 184, 187, 189, 190, 191, 192, 195, 196, 200, 202, 204, 205, 207, 209, 210, 211, 214, 220, 221, 223, 224, 231, 235], "preprocessor_definit": 1, "map": [1, 83, 131, 136, 179, 184, 189, 192, 209, 221, 224, 227, 235, 259, 267], "without": [1, 4, 5, 6, 13, 24, 31, 35, 36, 39, 40, 50, 60, 72, 74, 78, 84, 86, 89, 91, 94, 96, 100, 102, 103, 104, 105, 108, 110, 111, 112, 116, 118, 120, 123, 124, 129, 131, 135, 137, 138, 139, 141, 143, 145, 150, 151, 153, 155, 157, 162, 167, 175, 179, 191, 192, 195, 200, 204, 223, 235, 247, 248, 254, 256, 261, 262, 264, 265, 266, 271, 272, 273, 274], "15545": 1, "text": [1, 103, 118, 119, 120, 139, 150, 151, 159, 179, 200, 274], "15538": 1, "rais": [1, 6, 21, 36, 60, 87, 89, 90, 93, 94, 97, 99, 100, 101, 102, 106, 115, 118, 120, 122, 131, 140, 141, 143, 144, 145, 150, 153, 162, 164, 175, 187, 191, 200, 201, 202, 223, 231, 235, 243, 251, 253, 270], "help": [1, 8, 31, 36, 45, 48, 50, 62, 65, 66, 70, 71, 72, 74, 77, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 159, 186, 195, 209, 217, 226, 248, 249, 260, 268, 269], "reachabl": 1, "case": [1, 4, 6, 13, 17, 21, 26, 29, 31, 35, 36, 38, 39, 40, 41, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 67, 79, 82, 84, 87, 88, 89, 90, 91, 94, 97, 99, 100, 101, 102, 103, 105, 106, 107, 112, 115, 118, 120, 122, 123, 124, 125, 126, 131, 133, 134, 135, 136, 137, 138, 139, 140, 148, 150, 151, 153, 154, 156, 158, 160, 161, 162, 164, 170, 178, 179, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 197, 200, 202, 207, 221, 223, 224, 225, 226, 235, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "user": [1, 2, 3, 4, 5, 7, 8, 18, 21, 24, 26, 29, 35, 39, 40, 42, 50, 54, 60, 61, 62, 74, 76, 77, 78, 79, 81, 82, 84, 86, 87, 89, 90, 92, 93, 94, 95, 97, 99, 100, 103, 106, 108, 109, 110, 114, 118, 121, 124, 129, 130, 131, 134, 135, 136, 137, 138, 139, 140, 147, 148, 149, 151, 152, 153, 154, 155, 156, 161, 162, 164, 173, 174, 175, 191, 192, 195, 200, 202, 204, 209, 212, 221, 225, 231, 232, 240, 241, 244, 246, 247, 249, 252, 253, 254, 255, 256, 258, 260, 261, 265, 266, 270, 273], "want": [1, 3, 4, 5, 6, 7, 13, 16, 17, 21, 24, 26, 29, 31, 38, 39, 40, 41, 42, 48, 49, 52, 62, 67, 77, 82, 84, 90, 91, 97, 99, 103, 106, 107, 118, 120, 122, 123, 124, 125, 135, 136, 137, 138, 139, 140, 141, 150, 151, 153, 170, 179, 185, 190, 191, 192, 193, 200, 209, 217, 225, 227, 231, 233, 235, 239, 242, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 259, 260, 261, 265, 266, 267, 268, 270, 271, 272, 273, 274], "offlin": [1, 74], "15516": 1, "miss": [1, 5, 26, 35, 36, 42, 45, 54, 55, 82, 83, 84, 85, 87, 88, 90, 95, 96, 97, 99, 100, 102, 106, 115, 120, 141, 151, 162, 235, 244, 245, 246, 248, 249, 251, 252, 253, 255, 258, 259, 261, 262, 270, 272, 275], "stacktrac": 1, "metadata": [1, 2, 7, 61, 69, 88, 116, 119, 135, 168, 178, 254, 272], "15501": 1, "lockfil": [1, 8, 86, 87, 90, 93, 94, 97, 99, 100, 101, 104, 105, 106, 107, 108, 110, 115, 170, 179, 236, 243, 269], "intend": [1, 2, 4, 6, 7, 16, 17, 18, 19, 29, 41, 63, 74, 78, 84, 88, 89, 102, 103, 120, 124, 128, 129, 130, 131, 142, 151, 162, 179, 189, 191, 192, 196, 214, 220, 231, 235, 246, 249, 252, 260, 271], "public": [1, 3, 4, 42, 50, 54, 60, 74, 78, 86, 101, 110, 118, 119, 156, 159, 180, 191, 193, 215, 221, 241, 261, 262], "usag": [1, 6, 27, 31, 35, 37, 39, 40, 41, 50, 67, 74, 78, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 123, 133, 136, 137, 149, 150, 151, 153, 155, 161, 193, 200, 202, 204, 207, 211, 218, 227, 247, 260, 265], "15499": 1, "check_typ": 1, "int": [1, 29, 42, 45, 54, 55, 187, 204, 244, 246, 258, 263], "bool": [1, 152, 187, 214, 220, 221, 223], "15378": 1, "pkg": [1, 6, 7, 19, 24, 38, 39, 40, 45, 50, 55, 56, 65, 82, 84, 86, 87, 88, 89, 90, 91, 95, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 115, 116, 120, 122, 126, 127, 128, 129, 130, 131, 132, 134, 135, 136, 138, 139, 140, 143, 144, 150, 151, 153, 160, 178, 179, 181, 185, 186, 191, 192, 197, 198, 200, 208, 209, 210, 211, 212, 215, 216, 217, 225, 226, 227, 228, 233, 234, 255, 259, 265, 273, 274], "entri": [1, 61, 67, 87, 89, 90, 94, 97, 99, 100, 102, 106, 115, 120, 131, 149, 154, 183, 190, 191, 192, 202, 204, 217, 273], "machin": [1, 6, 29, 62, 84, 94, 110, 118, 120, 128, 153, 155, 187, 191, 207, 212, 220, 221, 225, 235, 237, 242, 245, 246, 263, 272], "mesontoolchain": [1, 55, 56, 71, 89, 150, 180, 219, 220], "due": [1, 85, 120, 267], "pkgconfig": [1, 56, 89, 150, 180, 206, 221], "being": [1, 6, 8, 10, 13, 31, 50, 74, 78, 82, 83, 84, 85, 87, 90, 97, 99, 100, 102, 105, 106, 115, 120, 124, 129, 130, 131, 133, 136, 137, 138, 139, 140, 153, 155, 157, 162, 163, 170, 179, 183, 189, 190, 200, 214, 215, 220, 246, 254, 259, 263, 270, 274, 275], "deprec": [1, 74, 89, 95, 97, 145, 150, 153, 179, 203, 209, 221], "sinc": [1, 47, 48, 67, 79, 100, 192, 207, 235, 242, 265, 266, 267, 272], "meson": [1, 11, 43, 61, 63, 74, 78, 80, 89, 109, 150, 151, 180, 244, 252, 254], "15369": 1, "explain": [1, 5, 56, 59, 60, 67, 74, 77, 82, 85, 96, 140, 150, 151, 153, 186, 193, 203, 235, 237, 243, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 259, 261, 262, 263, 264, 267, 269, 271, 274], "show": [1, 21, 31, 39, 40, 42, 47, 48, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 111, 112, 113, 114, 115, 116, 117, 124, 150, 151, 218, 231, 243, 246, 248, 250, 254, 256, 262, 264, 265, 266, 267], "some": [1, 4, 5, 6, 7, 8, 13, 18, 21, 29, 31, 35, 39, 40, 41, 42, 45, 49, 50, 62, 63, 68, 69, 74, 77, 78, 79, 82, 83, 84, 85, 86, 87, 89, 90, 93, 94, 97, 99, 100, 101, 102, 103, 106, 107, 109, 115, 120, 121, 122, 123, 124, 126, 127, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 160, 162, 175, 179, 185, 191, 192, 193, 195, 200, 202, 207, 208, 209, 211, 212, 216, 217, 218, 221, 227, 231, 235, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "requir": [1, 6, 7, 8, 10, 11, 21, 26, 27, 35, 36, 37, 38, 41, 45, 47, 48, 50, 52, 54, 55, 56, 59, 60, 62, 65, 67, 68, 69, 74, 78, 79, 80, 81, 82, 83, 84, 85, 87, 88, 92, 93, 94, 95, 97, 99, 100, 101, 104, 105, 106, 107, 108, 109, 110, 118, 119, 121, 124, 125, 131, 132, 133, 135, 136, 143, 144, 150, 151, 152, 153, 154, 156, 159, 160, 161, 162, 170, 185, 187, 189, 191, 192, 197, 198, 200, 208, 210, 211, 212, 215, 217, 221, 226, 227, 228, 233, 235, 240, 242, 243, 244, 245, 246, 247, 249, 250, 251, 252, 253, 254, 255, 257, 258, 262, 263, 265, 266, 267, 269, 270, 271, 272, 273, 275], "15355": 1, "did": [1, 47, 88, 179, 245, 246, 249, 251, 254, 256, 267, 274], "match": [1, 4, 10, 17, 26, 31, 35, 45, 54, 62, 82, 84, 86, 87, 88, 89, 90, 91, 96, 97, 99, 100, 102, 103, 106, 111, 112, 115, 116, 118, 120, 124, 135, 136, 140, 145, 149, 150, 151, 153, 154, 164, 175, 187, 191, 200, 201, 202, 204, 224, 227, 244, 246, 247, 248, 249, 253, 254, 260, 267, 271], "15353": 1, "upload_polici": [1, 95], "skip": [1, 4, 36, 89, 90, 91, 94, 95, 100, 120, 122, 145, 168, 178, 183, 191, 192, 231, 237, 245, 252, 253, 258, 263], "15336": 1, "accept": [1, 5, 7, 93, 101, 102, 103, 106, 111, 113, 120, 145, 148, 151, 153, 184, 189, 192, 200, 204, 212, 217, 220, 224, 235], "onli": [1, 4, 6, 7, 8, 13, 17, 21, 26, 29, 31, 35, 45, 47, 48, 50, 52, 54, 56, 59, 60, 67, 74, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 90, 91, 97, 98, 99, 100, 101, 102, 103, 106, 109, 111, 112, 115, 116, 119, 120, 123, 124, 125, 127, 128, 129, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 145, 146, 150, 151, 153, 155, 158, 159, 161, 162, 163, 170, 171, 175, 179, 180, 185, 186, 187, 189, 190, 191, 192, 193, 197, 198, 200, 202, 207, 208, 209, 211, 212, 215, 216, 221, 225, 233, 235, 243, 245, 246, 247, 249, 250, 252, 254, 255, 256, 257, 259, 260, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "15312": 1, "build_typ": [1, 16, 17, 18, 24, 26, 29, 35, 38, 41, 42, 47, 48, 49, 52, 56, 59, 60, 69, 77, 82, 84, 85, 95, 99, 100, 101, 102, 103, 110, 120, 123, 127, 135, 136, 144, 151, 153, 157, 164, 184, 185, 186, 189, 190, 191, 192, 195, 197, 198, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 228, 233, 244, 245, 246, 247, 248, 252, 253, 254, 256, 258, 259, 260, 263, 265, 267, 272], "releas": [1, 4, 5, 9, 17, 21, 24, 26, 35, 42, 45, 47, 48, 50, 52, 56, 59, 61, 63, 69, 74, 77, 79, 83, 85, 89, 95, 99, 100, 102, 103, 106, 109, 110, 120, 123, 133, 135, 136, 140, 150, 151, 153, 157, 161, 164, 179, 184, 185, 186, 189, 190, 191, 192, 197, 198, 202, 208, 209, 217, 221, 224, 225, 226, 231, 236, 243, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273], "system": [1, 5, 7, 8, 27, 35, 39, 40, 42, 45, 50, 52, 54, 55, 56, 59, 60, 61, 63, 65, 67, 68, 72, 77, 80, 84, 89, 102, 110, 117, 118, 120, 121, 122, 124, 131, 134, 136, 137, 140, 145, 147, 148, 150, 151, 154, 156, 160, 161, 162, 174, 180, 181, 183, 184, 185, 186, 189, 191, 192, 193, 195, 196, 200, 208, 209, 211, 225, 244, 245, 246, 248, 249, 250, 253, 254, 255, 259, 261, 262, 265, 266, 271, 272], "14780": 1, "bugfix": [1, 8, 74], "msbuilddep": [1, 59, 72, 89, 131, 150, 180, 222], "compon": [1, 14, 15, 20, 131, 133, 182, 189, 191, 193, 210, 211, 212, 215, 225, 250], "depend": [1, 6, 8, 10, 11, 13, 17, 21, 28, 30, 33, 34, 37, 41, 42, 43, 45, 46, 50, 52, 54, 55, 56, 59, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 88, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 112, 115, 121, 124, 127, 129, 132, 135, 136, 137, 140, 141, 143, 146, 150, 151, 158, 160, 161, 162, 170, 171, 174, 179, 183, 185, 186, 190, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 210, 212, 215, 216, 217, 220, 221, 222, 227, 233, 235, 236, 240, 243, 244, 245, 247, 248, 249, 250, 252, 253, 254, 259, 260, 262, 263, 266, 267, 268, 269, 271, 272, 273, 274, 275], "15626": 1, "tool_requir": [1, 11, 27, 35, 37, 39, 40, 56, 78, 83, 84, 90, 94, 97, 99, 100, 102, 106, 109, 110, 121, 131, 135, 136, 137, 140, 179, 191, 192, 197, 208, 212, 215, 225, 245, 246, 247, 248, 249, 260, 263, 273], "themselv": [1, 8, 109, 179, 253], "15575": 1, "scope": [1, 120, 133, 145, 146, 150, 151, 192, 195, 196, 197, 198, 217, 223, 228], "o": [1, 6, 13, 16, 17, 18, 19, 21, 24, 26, 27, 35, 36, 38, 39, 40, 41, 42, 49, 52, 56, 59, 60, 77, 78, 84, 85, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 101, 102, 103, 106, 107, 110, 112, 115, 116, 120, 123, 126, 127, 130, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 149, 150, 151, 153, 154, 162, 163, 164, 172, 179, 183, 184, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 200, 207, 208, 209, 210, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 228, 233, 240, 244, 245, 246, 247, 248, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270], "microsoft": [1, 11, 43, 72, 80, 89, 120, 131, 136, 150, 151, 153, 180, 189, 192, 207, 217, 224, 225, 226, 227, 228], "15568": 1, "wrong": [1, 96, 99, 134, 140], "propag": [1, 8, 14, 20, 50, 79, 120, 124, 136, 137, 146, 195, 212, 250, 258, 270], "visibl": [1, 39, 40, 79, 83, 89, 95, 118, 124, 150, 192, 215], "fals": [1, 13, 17, 31, 36, 39, 40, 42, 52, 59, 60, 77, 84, 85, 89, 95, 97, 99, 100, 101, 103, 110, 112, 118, 120, 124, 126, 127, 131, 132, 134, 136, 137, 145, 150, 151, 152, 157, 161, 170, 171, 175, 178, 183, 185, 187, 189, 191, 192, 197, 198, 200, 202, 204, 209, 211, 220, 221, 223, 225, 231, 232, 235, 248, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 270, 273], "header": [1, 6, 17, 35, 39, 40, 42, 50, 78, 79, 83, 84, 85, 95, 120, 124, 133, 134, 135, 136, 142, 143, 154, 183, 191, 193, 202, 225, 250, 254, 255, 257, 259, 260, 261, 265, 267, 275], "15564": 1, "store": [1, 4, 6, 13, 60, 67, 69, 74, 82, 88, 89, 102, 109, 110, 118, 120, 136, 149, 150, 160, 162, 192, 200, 204, 207, 231, 236, 237, 242, 244, 246, 250, 253, 254, 255, 259, 265, 267, 271, 274, 275], "temporari": [1, 6, 7, 24, 78, 88, 120, 134, 137, 200, 202, 253, 261, 266, 270], "insid": [1, 6, 11, 14, 15, 17, 18, 19, 29, 35, 37, 39, 40, 43, 46, 78, 83, 85, 89, 103, 109, 120, 124, 133, 136, 148, 150, 153, 159, 160, 162, 183, 192, 196, 200, 205, 218, 235, 241, 248, 250, 253, 254, 261, 265, 267, 271, 275], "storage_path": [1, 89], "so": [1, 4, 5, 6, 10, 13, 17, 18, 21, 26, 27, 31, 35, 36, 38, 39, 40, 42, 45, 47, 49, 50, 52, 54, 55, 56, 59, 60, 62, 74, 77, 81, 82, 83, 84, 88, 91, 92, 94, 101, 102, 105, 107, 108, 109, 112, 116, 118, 120, 122, 126, 127, 129, 132, 133, 135, 136, 137, 138, 139, 140, 141, 143, 145, 146, 149, 150, 151, 153, 154, 158, 159, 161, 162, 179, 184, 185, 186, 190, 191, 192, 193, 196, 197, 198, 200, 207, 209, 211, 212, 215, 225, 228, 231, 235, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 267, 268, 270, 271, 272, 273, 274, 275], "clean": [1, 6, 7, 30, 32, 60, 62, 87, 90, 94, 97, 99, 100, 102, 106, 107, 115, 120, 200, 214, 259, 265, 271, 272], "also": [1, 3, 4, 6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 27, 35, 41, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 68, 70, 73, 74, 77, 82, 83, 84, 86, 87, 88, 89, 90, 91, 95, 97, 98, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 118, 120, 122, 123, 124, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 148, 150, 151, 153, 154, 155, 156, 160, 162, 163, 179, 181, 183, 185, 186, 189, 190, 191, 192, 195, 196, 197, 198, 200, 207, 208, 209, 210, 212, 215, 216, 217, 221, 225, 226, 227, 228, 233, 235, 237, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 266, 267, 269, 270, 271, 272, 273, 274, 275], "find": [1, 4, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 77, 83, 84, 99, 102, 120, 134, 136, 153, 156, 183, 191, 193, 207, 211, 217, 221, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 271], "them": [1, 3, 5, 6, 7, 8, 12, 16, 17, 18, 19, 21, 24, 27, 29, 31, 36, 39, 40, 42, 45, 48, 52, 54, 55, 59, 60, 62, 67, 73, 74, 77, 78, 79, 83, 84, 85, 88, 89, 91, 94, 107, 109, 110, 111, 118, 120, 122, 124, 126, 127, 131, 132, 135, 136, 141, 146, 151, 153, 158, 159, 160, 162, 174, 175, 178, 179, 184, 185, 186, 190, 191, 192, 196, 200, 202, 207, 209, 218, 221, 224, 225, 226, 235, 236, 237, 238, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 269, 271, 273, 274], "correctli": [1, 17, 18, 24, 29, 42, 50, 56, 67, 78, 90, 107, 142, 191, 192, 193, 200, 207, 246, 248, 250, 254, 258, 259, 263], "15505": 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, 50, 52, 54, 56, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 78, 80, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 115, 116, 117, 118, 119, 120, 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, 148, 149, 150, 151, 152, 153, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 168, 170, 175, 179, 180, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 236, 238, 240, 241, 244, 245, 246, 247, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "export": [1, 5, 6, 7, 10, 16, 38, 50, 60, 78, 86, 88, 90, 95, 105, 110, 121, 130, 131, 132, 133, 134, 138, 139, 140, 156, 162, 163, 165, 179, 200, 204, 231, 251, 254, 255, 256, 259, 262, 264, 265, 267, 272, 274], "now": [1, 3, 4, 6, 10, 13, 17, 19, 24, 26, 31, 36, 39, 40, 42, 45, 48, 54, 55, 56, 59, 60, 62, 63, 69, 83, 85, 88, 97, 99, 100, 120, 161, 163, 179, 185, 191, 215, 217, 240, 242, 244, 245, 246, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 263, 265, 266, 267, 270, 271, 272, 273, 274, 275], "return": [1, 6, 26, 29, 31, 42, 45, 54, 55, 82, 85, 86, 88, 89, 96, 97, 98, 101, 103, 110, 117, 118, 120, 125, 131, 145, 151, 157, 158, 159, 167, 170, 172, 174, 175, 179, 181, 183, 184, 187, 191, 192, 193, 195, 196, 197, 198, 200, 208, 209, 217, 223, 224, 227, 231, 235, 244, 246, 248, 258, 260, 263, 272], "statu": [1, 38, 49, 145, 231], "after": [1, 6, 10, 24, 26, 36, 42, 45, 62, 63, 67, 74, 102, 124, 126, 131, 136, 142, 143, 150, 159, 162, 186, 189, 191, 192, 196, 197, 198, 207, 216, 221, 226, 233, 243, 244, 246, 248, 249, 250, 252, 254, 258, 261, 263, 265, 266, 267, 275], "15504": 1, "follow": [1, 4, 6, 8, 10, 26, 27, 31, 35, 36, 38, 41, 42, 45, 49, 52, 55, 56, 59, 60, 62, 68, 74, 77, 82, 83, 88, 89, 100, 101, 102, 103, 105, 108, 109, 117, 118, 119, 120, 121, 122, 123, 124, 126, 127, 131, 135, 136, 140, 141, 143, 145, 149, 150, 154, 155, 157, 159, 161, 185, 186, 190, 191, 192, 195, 197, 198, 202, 209, 210, 212, 214, 215, 217, 221, 224, 225, 226, 227, 231, 233, 235, 240, 244, 248, 254, 255, 256, 259, 260, 263, 268, 270, 273, 274], "same": [1, 4, 6, 7, 8, 11, 13, 16, 18, 21, 26, 35, 36, 37, 45, 47, 49, 50, 52, 56, 59, 60, 62, 74, 77, 78, 82, 83, 84, 85, 88, 89, 90, 91, 98, 99, 100, 102, 106, 112, 120, 121, 123, 124, 125, 131, 133, 135, 137, 138, 139, 140, 145, 146, 150, 151, 153, 155, 157, 158, 159, 161, 162, 163, 179, 183, 185, 186, 187, 189, 191, 193, 200, 207, 209, 212, 215, 218, 221, 225, 226, 231, 235, 242, 244, 245, 246, 247, 248, 249, 253, 254, 255, 256, 258, 259, 260, 261, 263, 266, 267, 269, 270, 271, 272, 273, 274, 275], "behavior": [1, 8, 47, 74, 78, 82, 84, 98, 105, 106, 107, 120, 123, 126, 127, 131, 135, 136, 146, 150, 155, 157, 158, 162, 187, 191, 212, 215, 221, 231, 235, 256, 275], "creat": [1, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 27, 29, 30, 31, 33, 36, 38, 39, 40, 41, 42, 43, 45, 47, 49, 50, 52, 54, 55, 57, 58, 60, 61, 67, 69, 73, 74, 77, 78, 79, 82, 83, 84, 86, 88, 93, 94, 95, 100, 102, 103, 104, 105, 107, 108, 109, 110, 120, 121, 122, 123, 124, 129, 130, 131, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 146, 150, 151, 152, 153, 156, 159, 160, 161, 162, 166, 170, 179, 185, 186, 189, 191, 192, 193, 194, 197, 198, 200, 202, 211, 212, 214, 215, 216, 217, 221, 226, 227, 228, 231, 233, 236, 237, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 273, 274, 275], "test": [1, 5, 6, 7, 10, 13, 21, 26, 27, 41, 42, 50, 52, 56, 59, 62, 74, 78, 86, 89, 90, 91, 94, 95, 100, 103, 107, 110, 118, 120, 121, 122, 123, 124, 131, 135, 146, 150, 156, 170, 189, 192, 204, 214, 220, 225, 231, 236, 241, 245, 250, 251, 254, 255, 256, 257, 259, 260, 262, 265, 266, 271, 275], "fail": [1, 4, 6, 21, 50, 60, 62, 77, 83, 87, 90, 97, 99, 100, 102, 106, 110, 115, 120, 122, 141, 143, 155, 157, 158, 161, 170, 175, 189, 223, 235, 253, 258, 259, 265, 270, 271], "calcul": [1, 136, 197, 198, 204, 209, 227, 253, 258], "valid": [1, 6, 8, 10, 56, 59, 77, 78, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 131, 144, 150, 153, 154, 157, 164, 170, 187, 192, 202, 209, 210, 212, 221, 223, 226, 243, 251, 254, 258, 259, 262, 263, 266, 270, 271, 273], "apple_min_version_flag": [1, 221], "15465": 1, "subset": [1, 84, 127, 135, 153, 192], "build_id": [1, 13, 95, 100, 121], "15439": 1, "get": [1, 4, 6, 10, 19, 31, 36, 39, 45, 52, 54, 55, 60, 62, 74, 77, 78, 84, 88, 89, 100, 110, 112, 118, 120, 135, 140, 141, 149, 150, 151, 154, 162, 172, 175, 178, 181, 183, 187, 189, 190, 191, 193, 196, 199, 204, 207, 212, 215, 217, 221, 223, 224, 227, 231, 233, 235, 244, 246, 247, 252, 256, 258, 259, 260, 265, 266, 267, 270, 272, 275], "conan_login_username_remot": 1, "15388": 1, "don": [1, 5, 10, 13, 24, 31, 39, 40, 45, 67, 77, 83, 99, 102, 103, 111, 119, 120, 140, 149, 151, 159, 179, 191, 193, 244, 245, 246, 247, 258, 259, 261, 265, 268], "t": [1, 4, 5, 6, 7, 10, 13, 21, 24, 29, 31, 35, 39, 40, 45, 47, 48, 49, 50, 56, 59, 60, 62, 67, 74, 77, 78, 79, 82, 83, 84, 88, 89, 94, 97, 98, 99, 100, 102, 103, 105, 106, 107, 111, 112, 118, 119, 120, 124, 126, 127, 131, 134, 135, 136, 137, 140, 143, 144, 149, 151, 153, 157, 159, 162, 178, 179, 180, 187, 189, 190, 191, 192, 193, 196, 200, 201, 202, 209, 216, 218, 221, 225, 231, 244, 245, 246, 247, 253, 254, 255, 256, 258, 259, 260, 261, 263, 265, 266, 267, 268, 270, 271, 272, 275], "take": [1, 6, 21, 29, 30, 60, 85, 89, 90, 97, 107, 112, 116, 118, 120, 131, 138, 139, 142, 148, 149, 150, 153, 184, 185, 190, 191, 192, 195, 209, 212, 225, 232, 235, 245, 246, 248, 253, 254, 260, 262, 263, 268, 275], "consider": [1, 7, 46], "15349": 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, 50, 52, 54, 56, 59, 60, 62, 69, 78, 83, 84, 86, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 103, 105, 106, 109, 110, 111, 113, 114, 118, 121, 124, 131, 132, 133, 135, 136, 138, 139, 140, 141, 143, 144, 146, 149, 150, 151, 152, 153, 155, 156, 158, 160, 161, 162, 174, 175, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 207, 208, 209, 210, 211, 216, 217, 221, 224, 225, 226, 228, 231, 233, 235, 240, 244, 245, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 267, 270, 271, 272, 273, 274, 275], "15337": 1, "get_url_and_commit": [1, 60, 231], "15271": 1, "direct": [1, 36, 95, 102, 118, 120, 124, 131, 136, 161, 185, 191, 192, 197, 225, 270], "host": [1, 8, 13, 24, 30, 35, 42, 74, 87, 89, 90, 94, 95, 97, 99, 100, 102, 106, 110, 115, 120, 124, 131, 136, 137, 140, 150, 151, 161, 170, 174, 181, 187, 191, 192, 193, 198, 202, 209, 212, 217, 221, 223, 225, 227, 235, 236, 239, 240, 243, 246, 260], "shouldn": [1, 6, 35, 39, 40, 60, 62, 78, 79, 84, 112, 120, 124, 127, 134, 136, 180, 225, 231, 247, 258, 272], "non": [1, 50, 74, 78, 82, 88, 89, 107, 120, 134, 150, 187, 198, 243, 251, 273, 275], "c": [1, 4, 6, 13, 26, 27, 29, 36, 45, 47, 49, 54, 55, 56, 59, 69, 74, 79, 82, 85, 87, 89, 90, 94, 97, 99, 100, 102, 103, 106, 110, 112, 115, 116, 118, 120, 127, 135, 136, 140, 141, 147, 150, 151, 157, 183, 186, 190, 191, 192, 193, 196, 204, 209, 216, 217, 220, 225, 226, 227, 228, 239, 241, 242, 243, 244, 245, 248, 249, 250, 251, 252, 254, 256, 257, 258, 259, 262, 266, 268, 272, 273, 275], "librari": [1, 4, 6, 8, 10, 14, 15, 17, 20, 26, 27, 35, 36, 38, 39, 40, 42, 45, 52, 54, 55, 56, 59, 60, 62, 67, 74, 77, 78, 79, 82, 83, 84, 85, 89, 95, 100, 101, 102, 109, 120, 121, 123, 124, 127, 131, 132, 133, 134, 135, 137, 140, 141, 142, 143, 146, 147, 150, 151, 154, 159, 183, 185, 186, 191, 192, 193, 196, 200, 206, 211, 212, 215, 217, 225, 236, 243, 244, 245, 248, 249, 250, 251, 254, 256, 257, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 271, 274, 275], "artifact": [1, 6, 7, 13, 29, 56, 69, 74, 78, 83, 88, 89, 91, 102, 112, 116, 120, 121, 123, 128, 133, 134, 135, 137, 150, 161, 163, 178, 192, 239, 240, 254, 259, 261, 265, 266, 267, 272, 275], "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, 50, 59, 60, 65, 67, 68, 69, 70, 72, 73, 74, 77, 78, 79, 82, 83, 84, 85, 86, 88, 89, 90, 91, 99, 100, 102, 103, 104, 105, 107, 108, 109, 110, 112, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 145, 146, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 160, 162, 164, 170, 171, 172, 175, 179, 180, 181, 183, 184, 185, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 209, 211, 212, 214, 215, 216, 217, 218, 221, 224, 225, 226, 227, 233, 235, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "imag": [1, 67, 74, 85, 101, 109, 136, 240], "time": [1, 6, 8, 10, 24, 26, 42, 54, 60, 67, 74, 78, 79, 85, 94, 103, 110, 112, 118, 120, 123, 124, 128, 129, 130, 131, 132, 133, 136, 137, 151, 156, 163, 179, 189, 191, 192, 197, 198, 202, 207, 212, 244, 247, 248, 249, 253, 256, 259, 260, 261, 264, 265, 267, 268, 269, 270, 272, 273, 275], "resourc": [1, 8, 61, 100, 136, 243, 272], "15128": 1, "save": [1, 2, 6, 31, 39, 40, 54, 60, 61, 74, 94, 104, 110, 118, 120, 123, 130, 150, 151, 160, 191, 192, 196, 199, 202, 212, 221], "subfold": [1, 7, 14, 15, 17, 19, 89, 133, 161, 162, 183, 190, 200, 204, 207, 240, 256, 259, 267], "tgz": [1, 7, 88, 140, 163, 178, 200, 202, 244, 249, 259], "doesn": [1, 6, 7, 35, 49, 50, 56, 59, 60, 77, 78, 84, 94, 97, 100, 106, 107, 118, 120, 124, 126, 127, 131, 135, 137, 143, 144, 149, 153, 157, 162, 178, 179, 187, 190, 192, 196, 200, 201, 202, 218, 225, 231, 246, 247, 253, 254, 256, 258, 260, 263, 270, 271, 272, 275], "15409": 1, "libcxx": [1, 24, 26, 27, 31, 77, 95, 100, 110, 120, 127, 135, 147, 151, 186, 192, 209, 217, 221, 244, 245, 246, 253, 254], "cc": [1, 42, 54, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 183, 209, 215, 217, 221, 227, 245, 252, 258], "cxx": [1, 19, 21, 27, 42, 89, 150, 153, 183, 209, 217, 221, 227, 245, 252, 253, 254, 255, 258, 261, 262, 263, 266, 267], "var": [1, 39, 40, 78, 89, 111, 118, 137, 150, 151, 155, 191, 192, 195, 196, 197, 198, 208, 217, 227], "15418": 1, "winsdk_vers": [1, 89, 150, 192, 226, 228], "bug": [1, 8, 61, 74], "cmake_minimum_requir": [1, 21, 26, 38, 41, 42, 49, 67, 191, 244, 249, 252, 255, 261, 262, 263], "15373": 1, "trait": [1, 37, 39, 78, 79, 82, 120, 124, 270, 275], "15357": 1, "includ": [1, 4, 13, 16, 17, 18, 21, 26, 27, 29, 35, 36, 38, 41, 42, 45, 47, 48, 49, 50, 54, 55, 56, 59, 62, 63, 67, 69, 74, 77, 78, 79, 82, 83, 84, 85, 88, 89, 90, 95, 100, 102, 103, 104, 105, 112, 120, 124, 131, 133, 134, 135, 136, 137, 147, 153, 161, 178, 179, 185, 186, 190, 191, 192, 193, 200, 208, 209, 210, 211, 212, 215, 217, 221, 225, 226, 244, 245, 246, 248, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273, 274, 275], "thru": 1, "15356": 1, "item": [1, 4, 36, 74, 84, 89, 102, 104, 108, 112, 131, 135, 150, 153, 155, 160, 192, 196, 273], "dump": [1, 159, 195], "reproduc": [1, 4, 6, 60, 74, 110, 120, 123, 179, 200, 231, 243, 247, 259, 269, 271, 272, 274, 275], "independ": [1, 21, 79, 84, 118, 129, 130, 135, 140, 161, 193, 267, 275], "were": [1, 6, 24, 29, 50, 60, 94, 127, 149, 161, 175, 215, 244, 246, 252, 255, 261, 270, 273, 275], "declar": [1, 14, 15, 21, 47, 52, 56, 74, 82, 88, 120, 125, 126, 127, 131, 133, 135, 136, 137, 151, 153, 155, 156, 159, 160, 179, 185, 186, 187, 189, 190, 191, 192, 194, 196, 212, 215, 221, 225, 227, 243, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 267, 270, 275], "revert": [1, 74, 155], "default": [1, 4, 6, 8, 10, 13, 21, 26, 27, 29, 31, 39, 40, 41, 45, 47, 48, 49, 50, 54, 56, 59, 67, 74, 77, 81, 83, 84, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 105, 106, 109, 110, 112, 113, 115, 116, 118, 120, 128, 132, 133, 135, 136, 140, 141, 146, 149, 150, 151, 152, 153, 155, 157, 164, 170, 174, 175, 178, 179, 181, 183, 185, 186, 187, 189, 190, 191, 192, 195, 196, 200, 202, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 224, 225, 226, 227, 231, 235, 240, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 258, 260, 261, 262, 265, 267, 268, 270, 271, 272, 273, 275], "source_buildenv": 1, "15319": 1, "15284": 1, "ctest": [1, 189, 252], "launch": [1, 21, 118, 145, 149, 184, 217, 240, 241, 250, 252], "directli": [1, 6, 7, 8, 13, 17, 27, 35, 49, 50, 62, 67, 72, 78, 86, 92, 94, 97, 99, 100, 102, 105, 106, 110, 122, 131, 137, 151, 153, 160, 184, 189, 200, 204, 214, 221, 226, 244, 247, 248, 259, 260, 265, 266, 270, 274], "instead": [1, 4, 5, 8, 19, 35, 60, 62, 67, 72, 74, 78, 84, 88, 89, 92, 97, 99, 100, 102, 106, 109, 112, 118, 120, 131, 135, 136, 145, 150, 153, 175, 179, 184, 189, 191, 192, 196, 225, 231, 246, 247, 248, 249, 251, 252, 254, 255, 256, 262, 265, 266, 267, 270, 271, 273, 274], "target": [1, 8, 17, 18, 19, 21, 27, 42, 50, 54, 60, 67, 74, 78, 89, 102, 109, 120, 122, 135, 153, 161, 181, 184, 187, 189, 207, 214, 215, 216, 217, 220, 221, 224, 231, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 261, 262, 263, 266, 267, 272, 275], "run_test": [1, 122, 189], "15282": 1, "track": [1, 6, 69, 74, 124, 247, 272], "syntax": [1, 31, 72, 73, 77, 102, 109, 120, 124, 131, 137, 149, 157, 167, 179, 186, 191, 192, 196, 210, 212, 226, 244, 247, 254, 270, 274], "host_vers": [1, 42], "15274": 1, "given": [1, 6, 8, 31, 36, 42, 82, 83, 84, 87, 88, 89, 90, 92, 97, 99, 100, 102, 105, 106, 107, 108, 115, 126, 135, 136, 143, 145, 151, 154, 155, 157, 170, 174, 175, 192, 193, 196, 200, 202, 204, 209, 215, 221, 223, 231, 247, 268, 271, 272, 274, 275], "15272": 1, "pkglist": [1, 6, 13, 91, 93, 112, 116, 268], "15266": 1, "conan_log_level": [1, 155], "abl": [1, 3, 6, 7, 18, 24, 26, 29, 31, 35, 36, 39, 40, 41, 42, 60, 62, 78, 82, 105, 106, 108, 130, 136, 137, 140, 145, 149, 151, 191, 193, 195, 200, 217, 221, 231, 254, 263, 265, 269, 275], "global": [1, 3, 4, 7, 10, 42, 62, 77, 80, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 125, 131, 135, 147, 151, 155, 156, 162, 167, 179, 192, 193, 211, 212, 215, 225, 252, 258, 275], "level": [1, 13, 16, 18, 21, 27, 29, 67, 74, 77, 84, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 120, 121, 125, 130, 135, 141, 145, 150, 153, 154, 155, 179, 184, 191, 202, 212, 215, 267, 275], "15263": 1, "xxx": [1, 6, 13, 43, 46, 91, 136, 138, 139, 150, 151, 189, 191, 192, 195, 221], "request": [1, 31, 61, 74, 77, 89, 99, 102, 111, 112, 118, 120, 125, 149, 150, 155, 162, 238], "15257": 1, "oper": [1, 6, 8, 49, 62, 63, 68, 69, 74, 84, 88, 102, 110, 112, 119, 122, 128, 147, 151, 154, 162, 175, 180, 186, 192, 195, 199, 231, 235, 237, 244, 245, 246, 253, 254, 256, 259, 264, 268, 271, 273, 275], "conanfil": [1, 6, 11, 13, 17, 18, 19, 21, 24, 35, 36, 38, 39, 40, 41, 42, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 61, 67, 74, 78, 80, 82, 84, 86, 87, 88, 89, 90, 92, 93, 94, 95, 97, 99, 100, 101, 104, 105, 106, 109, 110, 114, 115, 120, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 143, 144, 150, 151, 153, 154, 157, 158, 160, 161, 162, 163, 167, 170, 171, 179, 181, 183, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 233, 235, 236, 243, 244, 245, 247, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "15221": 1, "cmakedep": [1, 17, 21, 26, 35, 41, 42, 50, 60, 68, 73, 102, 120, 131, 136, 146, 161, 180, 188, 189, 192, 244, 245, 247, 248, 249, 251, 252, 254, 255, 258, 263, 266, 275], "conandep": [1, 59, 185, 210, 225, 233], "aggreg": [1, 24, 54, 107, 110, 136, 174, 180, 185, 186, 196, 208, 225, 244, 249, 266], "all": [1, 5, 6, 7, 8, 13, 24, 26, 27, 29, 30, 31, 34, 35, 42, 45, 50, 52, 54, 60, 61, 62, 65, 66, 67, 68, 69, 71, 73, 77, 78, 79, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 94, 97, 99, 100, 101, 102, 103, 105, 106, 107, 110, 111, 112, 113, 115, 116, 118, 120, 123, 127, 128, 129, 130, 131, 133, 135, 136, 138, 139, 140, 146, 148, 149, 150, 151, 153, 155, 158, 159, 160, 161, 162, 167, 170, 174, 175, 178, 179, 180, 183, 184, 185, 186, 191, 192, 193, 196, 197, 198, 200, 202, 204, 208, 209, 210, 211, 212, 214, 215, 216, 217, 221, 225, 226, 228, 233, 235, 236, 239, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 260, 262, 263, 265, 266, 267, 268, 270, 272, 275], "style": [1, 87, 90, 97, 99, 100, 102, 106, 111, 115, 183, 200], "15207": 1, "15192": 1, "warn": [1, 24, 54, 60, 67, 77, 83, 89, 110, 112, 120, 138, 139, 145, 151, 162, 200, 221, 231, 253, 275], "about": [1, 4, 6, 18, 19, 21, 24, 31, 37, 42, 45, 47, 52, 54, 55, 56, 59, 60, 67, 68, 69, 73, 74, 78, 79, 80, 82, 84, 86, 87, 90, 92, 94, 96, 100, 102, 106, 109, 110, 114, 115, 117, 120, 121, 122, 124, 126, 127, 131, 132, 133, 135, 136, 140, 141, 143, 146, 147, 151, 153, 155, 159, 164, 192, 206, 212, 218, 221, 233, 238, 240, 243, 244, 246, 248, 250, 252, 253, 255, 256, 258, 262, 263, 265, 266, 269, 272, 273, 275], "potenti": [1, 5, 40, 62, 91, 123, 137, 138, 139, 178, 192, 196, 272], "migrat": [1, 74, 120, 223, 248], "would": [1, 4, 5, 6, 10, 13, 16, 18, 19, 21, 31, 39, 40, 50, 60, 62, 77, 78, 84, 94, 97, 102, 105, 107, 112, 118, 120, 122, 124, 128, 129, 131, 135, 136, 137, 138, 139, 140, 150, 151, 153, 154, 157, 158, 161, 163, 179, 190, 192, 193, 196, 207, 215, 231, 244, 245, 246, 247, 252, 255, 258, 260, 261, 270, 271, 272, 273, 274], "print": [1, 4, 26, 39, 40, 45, 49, 54, 76, 83, 100, 103, 109, 112, 120, 145, 155, 159, 163, 164, 211, 221, 251, 260, 262], "everi": [1, 3, 4, 8, 13, 31, 36, 48, 50, 67, 74, 78, 84, 85, 88, 89, 102, 120, 131, 134, 135, 149, 150, 151, 154, 161, 163, 185, 186, 192, 196, 214, 215, 225, 226, 244, 248, 249, 259, 260, 264, 265, 268, 271, 272, 274, 275], "15174": 1, "deploi": [1, 30, 33, 54, 60, 87, 100, 102, 121, 135, 161, 171, 244, 249, 260, 266], "deploy": [1, 6, 11, 30, 35, 78, 80, 87, 88, 89, 91, 100, 128, 140, 150, 156, 196, 221], "15172": 1, "15153": 1, "access": [1, 3, 4, 6, 16, 18, 19, 27, 35, 36, 39, 40, 60, 88, 118, 119, 120, 124, 127, 131, 140, 153, 161, 179, 200, 202, 208, 211, 223, 225, 262], "content": [1, 3, 4, 7, 18, 19, 21, 26, 27, 54, 55, 60, 61, 62, 78, 88, 89, 109, 118, 119, 130, 133, 151, 156, 162, 163, 179, 180, 200, 204, 212, 215, 221, 226, 244, 246, 247, 248, 254, 256, 263, 264, 266, 267, 272], "settings_us": [1, 11, 23, 77, 84, 147], "configapi": [1, 165, 167], "15151": 1, "builtin": [1, 11, 30, 74, 89, 150, 153], "redirect_stdout": 1, "integr": [1, 6, 7, 11, 25, 27, 35, 49, 56, 59, 61, 62, 64, 67, 68, 69, 72, 73, 74, 77, 84, 109, 116, 122, 131, 136, 142, 153, 160, 163, 181, 238, 253, 254, 263, 271], "15150": 1, "warnings_as_error": [1, 89, 145, 150], "15149": 1, "ftp_tl": 1, "secur": [1, 6, 52, 111, 150, 154, 175, 202, 260, 273, 275], "ftp_download": [1, 199], "commun": [1, 3, 8, 77, 89, 118, 136, 150, 153, 228, 239, 241], "15137": 1, "replace_requir": 1, "replace_tool_requir": 1, "redefin": [1, 102, 151], "replac": [1, 19, 35, 49, 52, 77, 89, 120, 151, 155, 167, 179, 192, 196, 200, 261], "zlibng": [1, 151], "zlib": [1, 4, 5, 6, 10, 13, 26, 29, 35, 36, 42, 55, 74, 77, 83, 85, 88, 89, 91, 95, 97, 99, 100, 102, 103, 106, 112, 113, 116, 120, 131, 136, 137, 146, 150, 151, 152, 160, 185, 191, 197, 198, 210, 212, 215, 225, 228, 233, 243, 244, 245, 246, 247, 248, 249, 254], "conflict": [1, 39, 40, 62, 78, 102, 119, 120, 124, 137, 151, 170, 191, 195, 212, 221, 236, 258, 269], "altern": [1, 60, 74, 90, 94, 96, 99, 120, 138, 139, 151, 179, 196, 231, 259], "wrap": [1, 122, 145, 151, 196, 217, 221, 228, 275], "anoth": [1, 7, 13, 35, 41, 52, 83, 120, 123, 124, 131, 141, 151, 153, 159, 191, 195, 207, 215, 235, 237, 242, 244, 245, 252, 253, 255, 259, 261, 262, 265, 272], "15136": 1, "stderr": [1, 74, 145, 189, 275], "captur": [1, 6, 11, 43, 90, 106, 140, 197, 198, 200, 231, 235, 245, 247, 248, 249, 252, 256, 271], "15121": 1, "platform": [1, 8, 17, 39, 40, 55, 61, 62, 63, 71, 72, 77, 78, 84, 88, 99, 110, 126, 129, 130, 131, 134, 136, 140, 149, 150, 151, 153, 183, 192, 221, 223, 224, 225, 226, 235, 243, 244, 245, 248, 252, 263, 265, 272], "14871": 1, "14694": 1, "cpp_info": [1, 17, 21, 38, 39, 40, 41, 42, 50, 90, 95, 100, 133, 185, 191, 192, 193, 198, 200, 209, 210, 211, 212, 215, 248, 254, 255, 256, 258, 259, 260, 267], "13994": 1, "15297": 1, "separ": [1, 21, 60, 86, 90, 112, 118, 120, 123, 133, 150, 151, 155, 190, 191, 195, 196, 221, 241, 249, 255, 267, 273], "15296": 1, "rang": [1, 8, 9, 74, 78, 82, 84, 87, 89, 90, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 115, 120, 135, 137, 146, 150, 151, 153, 179, 236, 243, 248, 254, 269, 271, 274], "escap": [1, 111, 155], "report": [1, 6, 13, 61, 62, 74, 89, 99, 102, 118, 141, 150, 153, 171, 235], "involv": [1, 265, 266], "15222": 1, "hard": [1, 153], "set_nam": [1, 101, 121, 131], "set_vers": [1, 101, 120, 121, 131, 179, 231, 274], "mutat": 1, "15211": 1, "stdout": [1, 74, 101, 103, 109, 117, 120, 145, 189, 275], "15170": 1, "cmake_policy_default_cmp0091": 1, "unus": [1, 87, 90, 94, 97, 99, 100, 102, 106, 107, 115, 236, 271], "15127": 1, "system_tool": [1, 249], "favor": [1, 120], "align": [1, 7, 153], "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, 50, 52, 54, 55, 56, 59, 60, 62, 67, 69, 74, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 90, 97, 99, 100, 102, 103, 105, 106, 107, 108, 109, 110, 111, 112, 115, 118, 120, 124, 127, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 143, 145, 146, 149, 150, 151, 153, 154, 155, 159, 160, 162, 170, 179, 183, 185, 186, 191, 192, 200, 202, 207, 209, 212, 215, 217, 218, 221, 225, 226, 235, 237, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 270, 271, 272, 273, 274, 275], "least": [1, 3, 87, 90, 97, 99, 100, 102, 104, 105, 106, 115, 120, 137, 231, 247, 251, 258, 262, 268], "is_dirti": [1, 231], "sure": [1, 8, 24, 29, 38, 42, 50, 62, 103, 131, 134, 141, 145, 163, 179, 200, 221, 274], "process": [1, 5, 7, 26, 54, 56, 60, 62, 67, 74, 78, 84, 95, 105, 107, 109, 118, 120, 121, 122, 127, 136, 151, 155, 159, 161, 162, 178, 192, 197, 221, 242, 246, 247, 248, 250, 254, 259, 261, 271, 274, 275], "current": [1, 6, 18, 26, 35, 38, 39, 40, 41, 49, 56, 59, 60, 62, 68, 70, 71, 72, 73, 74, 77, 78, 82, 84, 88, 89, 94, 102, 105, 109, 111, 118, 120, 121, 128, 129, 130, 131, 133, 135, 137, 138, 139, 140, 143, 144, 148, 150, 151, 157, 164, 178, 179, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 218, 220, 221, 223, 224, 225, 226, 227, 228, 229, 231, 235, 242, 244, 245, 246, 248, 249, 251, 252, 254, 260, 265, 267, 271], "whole": [1, 6, 10, 17, 74, 82, 84, 88, 102, 120, 143, 178, 179, 191, 192, 196, 211], "repo": [1, 4, 5, 6, 16, 60, 62, 69, 74, 109, 110, 120, 162, 231, 267, 274], "similarli": [1, 151, 198, 240, 273], "15289": 1, "clear": [1, 111, 120, 135, 136, 143, 195, 248, 253, 258, 271], "15285": 1, "restor": [1, 2, 61, 196, 197, 198, 246, 247, 249], "portabl": [1, 74, 120], "across": [1, 8, 55, 150, 156, 157, 244], "window": [1, 8, 13, 17, 26, 27, 29, 35, 39, 40, 42, 48, 55, 56, 59, 62, 63, 74, 78, 84, 85, 88, 89, 91, 103, 106, 107, 112, 116, 120, 123, 126, 131, 134, 136, 140, 143, 150, 151, 153, 157, 164, 172, 196, 198, 200, 208, 209, 217, 221, 235, 240, 241, 244, 246, 248, 249, 252, 253, 254, 255, 256, 259, 260, 265, 267, 272, 275], "oss": [1, 107, 136, 153, 272], "15253": 1, "do": [1, 4, 5, 6, 7, 13, 21, 26, 29, 31, 36, 39, 40, 41, 49, 50, 55, 60, 62, 67, 74, 77, 78, 82, 83, 84, 87, 88, 89, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 105, 106, 108, 112, 115, 116, 120, 122, 123, 127, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 145, 149, 150, 151, 153, 154, 155, 159, 161, 175, 179, 187, 191, 192, 195, 200, 207, 221, 231, 235, 242, 244, 245, 246, 247, 249, 250, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 265, 267, 268, 270, 271, 272, 274, 275], "absolut": [1, 35, 36, 49, 89, 109, 131, 148, 150, 151, 161, 173, 191, 192, 200, 202, 204, 205, 261], "15244": 1, "architectur": [1, 8, 24, 26, 27, 35, 42, 52, 68, 74, 84, 85, 89, 123, 126, 135, 147, 150, 151, 183, 184, 186, 187, 192, 209, 217, 221, 224, 235, 244, 245, 246, 248, 259, 263, 271], "ignor": [1, 6, 29, 54, 78, 128, 138, 139, 155, 189, 204, 205, 231, 235, 271], "toolchain": [1, 26, 27, 45, 46, 56, 59, 65, 66, 68, 72, 73, 84, 89, 122, 131, 133, 150, 151, 153, 186, 189, 207, 209, 216, 221, 226, 244, 245, 246, 248, 249, 250, 253, 254, 260, 262, 266], "15215": 1, "html": [1, 45, 62, 77, 100, 159, 248, 275], "mislead": 1, "node": [1, 13, 95, 97, 141, 170], "15196": 1, "15185": 1, "nmakedep": [1, 180, 193, 222], "quot": [1, 103, 111], "15140": 1, "lru": [1, 103, 112, 268], "data": [1, 6, 8, 84, 118, 120, 123, 130, 131, 132, 133, 136, 147, 187, 191, 200, 212, 219, 241, 256, 275], "15135": 1, "package_metadata_fold": [1, 6], "15126": 1, "pyinstal": [1, 62], "broken": [1, 5, 69, 74, 97, 133, 140, 205, 261, 272], "python": [1, 8, 31, 52, 60, 62, 65, 72, 74, 78, 80, 82, 87, 89, 104, 105, 108, 117, 118, 132, 145, 150, 151, 156, 158, 159, 160, 162, 164, 170, 189, 192, 196, 207, 209, 212, 214, 221, 224, 227, 248], "useless": [1, 132, 191], "distutil": 1, "15116": 1, "download_cach": [1, 4, 89], "15109": 1, "riscv64": 1, "riscv32": 1, "manag": [1, 2, 3, 7, 8, 31, 39, 40, 43, 45, 47, 50, 54, 55, 62, 65, 66, 67, 69, 70, 71, 72, 78, 79, 82, 84, 86, 89, 102, 104, 109, 110, 111, 116, 120, 121, 126, 127, 135, 136, 140, 141, 150, 151, 152, 153, 161, 175, 179, 181, 185, 192, 193, 195, 196, 200, 208, 217, 221, 223, 231, 234, 239, 243, 244, 245, 248, 250, 254, 260, 268, 269, 271, 272, 273, 274], "autotool": [1, 11, 43, 61, 63, 74, 89, 109, 131, 150, 180, 183, 193, 195, 196, 206, 208, 209, 244, 252, 254], "15053": 1, "one": [1, 3, 4, 7, 12, 16, 17, 18, 21, 24, 27, 29, 31, 39, 40, 42, 45, 48, 50, 54, 55, 56, 59, 67, 72, 74, 77, 78, 79, 82, 83, 84, 85, 87, 88, 89, 90, 91, 95, 96, 97, 99, 100, 102, 103, 104, 105, 106, 107, 108, 109, 112, 115, 116, 118, 120, 122, 123, 124, 127, 131, 133, 134, 135, 136, 137, 140, 143, 146, 150, 151, 154, 156, 157, 158, 159, 161, 164, 175, 179, 183, 185, 187, 189, 190, 191, 192, 193, 195, 197, 198, 200, 202, 207, 208, 209, 211, 215, 217, 220, 224, 225, 226, 227, 233, 235, 244, 245, 246, 247, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 270, 271, 272, 273, 274, 275], "simultan": [1, 191, 265, 270], "databas": [1, 89, 150, 235], "connect": [1, 54, 77, 89, 100, 111, 118, 150, 175, 240], "15029": 1, "which": [1, 3, 4, 6, 7, 8, 10, 13, 17, 18, 21, 30, 31, 36, 41, 42, 45, 50, 54, 55, 56, 59, 60, 62, 65, 66, 67, 70, 76, 77, 78, 83, 84, 86, 87, 88, 89, 90, 93, 97, 99, 100, 101, 102, 103, 105, 106, 109, 112, 115, 117, 118, 120, 122, 124, 127, 129, 130, 133, 134, 136, 137, 140, 144, 145, 148, 149, 150, 151, 153, 154, 156, 158, 161, 162, 163, 167, 178, 179, 183, 184, 189, 191, 192, 195, 200, 202, 207, 209, 211, 214, 215, 216, 217, 218, 220, 221, 224, 225, 227, 235, 244, 246, 247, 248, 250, 253, 254, 255, 259, 265, 266, 268, 270, 273, 275], "thei": [1, 6, 7, 13, 17, 21, 24, 29, 35, 39, 40, 56, 60, 65, 66, 69, 70, 71, 73, 74, 77, 78, 79, 82, 83, 84, 88, 90, 91, 94, 96, 100, 101, 102, 104, 105, 107, 118, 120, 122, 124, 125, 127, 131, 133, 136, 137, 140, 141, 146, 149, 150, 151, 153, 154, 155, 159, 161, 162, 170, 175, 179, 181, 183, 186, 189, 192, 200, 205, 214, 218, 221, 226, 231, 235, 242, 246, 247, 248, 250, 253, 254, 255, 256, 258, 259, 260, 267, 268, 270, 271, 272, 273, 275], "15013": 1, "better": [1, 5, 6, 24, 27, 31, 36, 60, 68, 86, 102, 107, 120, 122, 135, 138, 139, 154, 196, 241, 259, 260, 270, 271, 275], "ux": [1, 113, 147], "15011": 1, "15007": 1, "14984": 1, "extra": [1, 4, 6, 35, 36, 39, 40, 42, 89, 90, 109, 120, 135, 138, 139, 145, 150, 189, 204, 209, 214, 216, 221, 226, 227, 231, 251, 258, 262], "14966": 1, "load": [1, 16, 41, 45, 54, 60, 66, 102, 120, 129, 130, 132, 138, 139, 150, 151, 162, 173, 174, 179, 192, 199, 202, 207, 215, 217, 233, 246, 248, 274], "ci": [1, 2, 4, 5, 6, 7, 8, 60, 69, 78, 97, 99, 110, 120, 122, 150, 153, 154, 155, 271, 275], "workflow": [1, 60, 162, 266], "move": [1, 7, 35, 74, 78, 140, 179, 200, 254, 256, 261, 266, 267, 270, 271, 272, 274], "air": [1, 7, 13], "gap": [1, 7, 13], "14923": 1, "comput": [1, 10, 13, 27, 35, 49, 60, 74, 77, 80, 81, 82, 96, 97, 100, 102, 103, 104, 106, 110, 120, 121, 127, 131, 135, 137, 140, 143, 151, 153, 164, 170, 174, 179, 197, 198, 208, 209, 242, 244, 246, 247, 249, 253, 254, 263, 272], "intersect": [1, 10], "14912": 1, "multipl": [1, 4, 6, 8, 14, 15, 20, 26, 72, 73, 74, 78, 87, 90, 91, 97, 99, 100, 102, 106, 115, 118, 120, 131, 133, 135, 151, 154, 161, 179, 185, 189, 191, 192, 193, 197, 207, 209, 218, 221, 225, 235, 236, 237, 240, 243, 250, 265, 267, 271, 273, 275], "14883": 1, "maco": [1, 8, 24, 26, 27, 35, 42, 44, 55, 62, 63, 77, 85, 95, 100, 103, 110, 151, 153, 183, 206, 217, 221, 235, 244, 246, 248, 249, 252, 254, 255, 259, 265, 267], "14858": 1, "pkgconfigdep": [1, 45, 55, 56, 65, 71, 136, 180, 206, 221, 252], "listen": [1, 118, 211, 214, 241], "system_package_vers": [1, 191, 212], "properti": [1, 21, 42, 50, 59, 71, 72, 95, 100, 120, 131, 133, 137, 167, 183, 192, 208, 217, 221, 225, 226, 234, 250, 261, 262, 266], "14808": 1, "shorthand": 1, "14727": 1, "control": [1, 4, 5, 49, 60, 74, 77, 82, 90, 120, 133, 139, 153, 155, 185, 192, 225, 259, 271, 273, 275], "14054": 1, "overwrit": [1, 7, 24, 82, 87, 90, 94, 97, 99, 100, 102, 106, 109, 110, 115, 120, 140, 179, 195, 212], "layout": [1, 6, 11, 14, 17, 26, 35, 42, 47, 54, 56, 59, 80, 119, 121, 131, 134, 136, 140, 180, 189, 190, 192, 204, 209, 215, 221, 229, 236, 243, 245, 254, 256, 258, 259, 260, 263, 264, 265, 266], "nor": [1, 36, 74, 128, 132, 140, 141, 178, 235], "15058": 1, "astra": 1, "elbru": [1, 153], "altlinux": 1, "distribut": [1, 7, 35, 45, 60, 62, 74, 110, 140, 153, 164, 235, 241], "apt": [1, 62, 89, 121, 141, 150, 234], "systempackagemanag": 1, "15051": 1, "linux": [1, 8, 26, 27, 35, 44, 48, 55, 62, 63, 74, 84, 85, 89, 91, 99, 103, 106, 107, 141, 143, 150, 151, 153, 187, 202, 217, 235, 244, 245, 246, 248, 249, 252, 255, 259, 265, 267, 272], "mint": [1, 62], "15026": 1, "check": [1, 5, 6, 8, 16, 18, 19, 21, 26, 27, 29, 30, 31, 42, 45, 48, 49, 52, 60, 62, 64, 65, 67, 68, 69, 70, 72, 73, 74, 77, 78, 82, 89, 90, 94, 99, 100, 101, 102, 105, 110, 111, 116, 118, 120, 122, 133, 135, 136, 140, 141, 143, 144, 150, 151, 153, 155, 156, 157, 159, 162, 164, 170, 171, 175, 178, 186, 187, 191, 196, 200, 201, 202, 207, 215, 217, 218, 221, 223, 231, 235, 239, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 268, 271, 272, 275], "server": [1, 4, 5, 6, 7, 8, 13, 29, 54, 60, 61, 69, 74, 78, 80, 84, 86, 87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 102, 106, 109, 110, 111, 112, 115, 116, 120, 129, 130, 135, 149, 150, 154, 155, 163, 170, 175, 178, 202, 207, 236, 239, 240, 242, 244, 247, 256, 258, 268, 272, 275], "even": [1, 4, 6, 35, 36, 47, 50, 52, 62, 63, 74, 77, 78, 83, 85, 91, 102, 107, 111, 116, 120, 122, 124, 127, 131, 137, 138, 139, 140, 141, 150, 151, 152, 153, 158, 161, 162, 175, 179, 200, 218, 225, 231, 242, 245, 247, 248, 252, 253, 254, 258, 269, 270, 271, 272, 273, 274], "shallow": 1, "clone": [1, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 89, 102, 140, 154, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272], "15023": 1, "appl": [1, 24, 42, 73, 74, 77, 80, 85, 89, 95, 100, 103, 110, 150, 151, 153, 180, 184, 185, 186, 190, 192, 207, 209, 219, 244, 246, 254], "15015": 1, "extraflag": 1, "prioriti": [1, 102, 108, 120, 127, 136, 137, 138, 139, 149, 150, 151, 155, 174, 195, 231, 270], "15005": 1, "color": [1, 31, 120, 251, 252, 255, 262, 263], "15002": 1, "sqlite3": [1, 131], "unsupport": [1, 256], "less": [1, 6, 35, 56, 59, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 150, 274], "than": [1, 8, 50, 56, 59, 60, 67, 74, 77, 82, 84, 89, 90, 91, 98, 102, 105, 112, 116, 120, 123, 125, 126, 132, 135, 136, 138, 139, 144, 145, 150, 153, 154, 161, 179, 186, 187, 191, 192, 209, 212, 226, 227, 235, 244, 247, 253, 257, 263, 272, 273, 275], "2012": 1, "14950": 1, "db": 1, "alwai": [1, 8, 26, 29, 31, 56, 59, 60, 74, 78, 79, 84, 102, 108, 109, 120, 123, 124, 129, 131, 135, 137, 138, 139, 140, 146, 151, 153, 154, 162, 180, 187, 189, 190, 192, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 220, 221, 223, 224, 225, 226, 227, 228, 229, 235, 244, 246, 247, 248, 258, 259, 268, 270, 272, 273, 275], "slash": 1, "uniform": 1, "14940": 1, "re": [1, 6, 13, 31, 36, 42, 60, 67, 78, 82, 83, 102, 120, 123, 124, 150, 151, 179, 192, 209, 215, 221, 255, 265, 266, 275], "forc": [1, 6, 31, 36, 41, 78, 87, 89, 90, 95, 97, 99, 100, 102, 106, 108, 109, 110, 111, 115, 116, 118, 120, 124, 149, 150, 151, 153, 155, 175, 178, 192, 209, 217, 244, 247, 265, 270, 271, 272], "rebuild": [1, 5, 83, 120, 259, 265, 275], "while": [1, 4, 6, 8, 17, 19, 21, 29, 49, 62, 74, 78, 79, 81, 82, 84, 89, 102, 108, 120, 121, 127, 136, 137, 145, 150, 151, 153, 161, 204, 212, 218, 243, 246, 262, 264, 265, 266, 268, 273, 274, 275], "previou": [1, 2, 6, 7, 13, 56, 59, 74, 82, 99, 102, 103, 105, 107, 153, 159, 175, 185, 190, 191, 192, 195, 221, 226, 235, 242, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 273, 274], "still": [1, 5, 29, 39, 40, 50, 60, 62, 105, 112, 120, 123, 124, 127, 135, 136, 153, 170, 178, 231, 258, 265, 272, 273, 275], "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, 50, 52, 53, 56, 57, 59, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 82, 84, 89, 90, 109, 118, 120, 121, 133, 136, 150, 161, 179, 184, 185, 186, 190, 207, 210, 214, 215, 216, 217, 218, 221, 225, 226, 229, 236, 237, 239, 240, 242, 243, 245, 246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 270, 271, 273, 275], "14938": 1, "affect": [1, 5, 6, 10, 62, 82, 84, 85, 97, 102, 120, 126, 127, 135, 137, 151, 153, 179, 186, 189, 191, 192, 200, 212, 214, 215, 216, 220, 221, 224, 225, 226, 227, 228, 234, 245, 248, 250, 252, 253, 255, 258, 265, 267], "14932": 1, "instal": [1, 4, 6, 7, 13, 16, 18, 24, 26, 27, 29, 35, 36, 42, 45, 47, 48, 50, 54, 55, 56, 59, 60, 61, 63, 74, 77, 78, 82, 83, 84, 85, 86, 87, 90, 91, 94, 95, 97, 99, 100, 103, 104, 105, 106, 109, 110, 115, 118, 120, 121, 122, 128, 131, 133, 134, 137, 138, 139, 140, 141, 143, 144, 146, 150, 151, 153, 156, 158, 160, 161, 162, 163, 164, 165, 170, 183, 184, 185, 186, 189, 190, 192, 197, 198, 207, 208, 209, 211, 214, 215, 216, 217, 220, 221, 225, 226, 228, 233, 235, 241, 242, 244, 245, 246, 247, 248, 249, 250, 253, 254, 255, 256, 258, 259, 260, 262, 265, 267, 270, 271, 273, 274, 275], "fill_cpp_info": [1, 211], "xorg": 1, "veri": [1, 6, 7, 8, 26, 29, 39, 40, 45, 50, 54, 55, 56, 59, 60, 74, 79, 82, 84, 100, 106, 120, 131, 136, 151, 153, 155, 179, 190, 218, 239, 240, 241, 244, 251, 252, 266, 272, 273, 274, 275], "noisi": 1, "quiet": [1, 89, 145, 150, 184, 189, 220, 224], "14924": 1, "necessari": [1, 2, 6, 13, 17, 19, 21, 27, 29, 35, 36, 39, 40, 49, 50, 52, 56, 60, 62, 67, 73, 74, 77, 78, 82, 84, 89, 90, 94, 97, 100, 102, 103, 105, 107, 109, 112, 116, 120, 121, 122, 124, 129, 130, 131, 132, 134, 135, 136, 140, 141, 143, 144, 146, 149, 150, 151, 153, 154, 171, 178, 181, 191, 192, 193, 197, 198, 200, 221, 227, 231, 233, 244, 246, 248, 249, 253, 254, 255, 256, 258, 259, 263, 266, 268, 270, 271, 272, 273, 274, 275], "buildinfo": 1, "14886": 1, "ha": [1, 4, 5, 6, 8, 10, 19, 21, 24, 26, 31, 35, 36, 38, 39, 40, 50, 52, 56, 62, 63, 69, 74, 78, 84, 88, 90, 91, 99, 102, 106, 109, 112, 116, 118, 120, 124, 131, 135, 136, 137, 140, 142, 143, 144, 145, 149, 150, 151, 153, 154, 155, 157, 160, 162, 164, 171, 174, 179, 183, 185, 191, 195, 196, 197, 209, 211, 221, 225, 231, 235, 239, 240, 246, 247, 248, 252, 253, 254, 256, 259, 260, 263, 266, 268, 271, 272, 275], "14852": 1, "min": [1, 100, 186, 221], "xro": [1, 153], "simul": [1, 50], "14776": 1, "unnecessari": [1, 60, 123], "could": [1, 5, 6, 8, 10, 13, 18, 21, 24, 29, 35, 36, 39, 41, 42, 60, 82, 84, 86, 88, 94, 100, 102, 105, 107, 109, 120, 122, 123, 124, 125, 130, 131, 132, 133, 135, 136, 137, 139, 140, 141, 143, 149, 150, 151, 153, 158, 160, 161, 174, 179, 191, 192, 193, 196, 200, 209, 218, 220, 225, 242, 245, 246, 248, 252, 254, 256, 258, 259, 261, 262, 267, 270, 271, 272, 273, 274], "transit": [1, 13, 36, 50, 78, 90, 91, 102, 124, 131, 137, 151, 179, 185, 191, 197, 208, 225, 243, 265], "15082": 1, "15042": 1, "download_sourc": [1, 36, 89, 140, 150], "15004": 1, "incorrectli": 1, "xcconfig": [1, 73, 185, 186], "14898": 1, "export_sourc": [1, 7, 16, 18, 60, 88, 120, 121, 129, 131, 133, 204], "been": [1, 4, 6, 8, 13, 26, 50, 62, 63, 69, 74, 78, 79, 82, 88, 90, 94, 98, 102, 103, 112, 127, 131, 136, 137, 140, 142, 143, 144, 151, 153, 171, 179, 185, 191, 197, 246, 247, 253, 254, 255, 265, 266, 268, 272, 275], "14850": 1, "properli": [1, 101, 150, 254, 263], "candid": 1, "14846": 1, "end": [1, 4, 74, 77, 78, 124, 137, 150, 151, 161, 162, 192, 196, 220, 246, 255, 263, 272, 273], "activ": [1, 8, 29, 35, 41, 49, 60, 62, 67, 74, 84, 89, 120, 131, 136, 145, 150, 153, 155, 156, 185, 189, 191, 192, 195, 197, 198, 212, 215, 225, 227, 228, 245, 246, 249, 260], "pre": [1, 9, 45, 54, 60, 62, 74, 77, 86, 89, 94, 110, 120, 140, 149, 150, 156, 162, 196, 218, 248, 250, 257, 266, 267, 273], "resolut": [1, 79, 129, 156], "full": [1, 5, 6, 24, 36, 39, 40, 52, 65, 69, 70, 72, 73, 74, 83, 84, 88, 90, 94, 97, 102, 103, 105, 109, 120, 125, 131, 135, 141, 146, 153, 157, 161, 163, 165, 170, 179, 191, 192, 195, 211, 217, 231, 253, 261, 265, 274], "14814": 1, "lower": [1, 218, 247, 259, 273], "bound": [1, 273], "upper": [1, 273], "newer": [1, 8, 74, 87, 90, 97, 99, 100, 102, 104, 105, 106, 108, 115, 120, 153, 170, 260, 273, 274], "clang": [1, 24, 26, 27, 42, 45, 74, 77, 84, 85, 89, 95, 100, 103, 110, 112, 117, 144, 150, 151, 153, 164, 183, 190, 192, 204, 221, 244, 246, 254], "introduc": [1, 29, 52, 79, 81, 118, 140, 243, 253, 258, 266, 267, 269, 270, 271, 272, 273, 274, 275], "14837": 1, "14781": 1, "dry": [1, 112, 116], "14760": 1, "host_tool": 1, "package_manag": [1, 89, 120, 136, 141, 150, 180, 234], "indic": [1, 4, 26, 67, 77, 89, 90, 94, 137, 150, 152, 189, 195, 200, 214, 215, 228, 246, 248, 260, 270], "14752": 1, "try": [1, 4, 16, 24, 39, 40, 42, 54, 55, 62, 74, 77, 83, 99, 100, 102, 106, 111, 120, 129, 130, 132, 140, 143, 151, 153, 155, 164, 170, 179, 183, 190, 192, 217, 235, 242, 244, 246, 249, 252, 253, 255, 259, 262, 263, 266, 270, 271, 274], "14819": 1, "set_properti": [1, 17, 21, 41, 50, 136, 212, 215, 255], "14813": 1, "minor": [1, 74, 82, 83, 120, 151, 153, 179, 270, 273, 275], "14797": 1, "prettier": 1, "14787": 1, "settings_target": [1, 84, 135, 183, 260], "14825": 1, "first": [1, 4, 5, 6, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 29, 31, 36, 39, 40, 42, 43, 45, 48, 52, 54, 55, 57, 58, 60, 62, 67, 81, 83, 89, 90, 102, 104, 105, 107, 108, 120, 123, 134, 135, 138, 139, 150, 151, 154, 155, 157, 162, 163, 164, 174, 185, 186, 192, 197, 198, 202, 204, 209, 217, 220, 226, 231, 235, 236, 237, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 274], "found": [1, 4, 21, 26, 27, 39, 40, 49, 50, 54, 62, 87, 90, 93, 94, 97, 99, 100, 101, 102, 106, 110, 115, 133, 136, 141, 142, 148, 151, 154, 157, 161, 175, 189, 191, 192, 200, 207, 218, 221, 244, 246, 249, 258, 267, 271], "14800": 1, "reus": [1, 29, 41, 74, 120, 121, 131, 132, 134, 136, 140, 156, 237, 244, 254, 255, 263, 268], "session": [1, 62], "conanrequest": 1, "speed": [1, 6], "up": [1, 2, 10, 54, 61, 67, 82, 89, 118, 124, 148, 150, 161, 236, 237, 242, 246, 252, 255, 258], "14795": 1, "rel": [1, 5, 18, 35, 36, 67, 85, 97, 109, 118, 120, 121, 122, 133, 136, 138, 139, 148, 151, 161, 162, 183, 191, 192, 195, 200, 204, 205, 261, 266, 267, 270, 272], "partial": [1, 83, 87, 90, 93, 94, 97, 99, 100, 101, 102, 105, 106, 107, 108, 115, 151, 271, 275], "directori": [1, 26, 27, 35, 36, 38, 47, 62, 102, 109, 118, 120, 129, 130, 131, 133, 136, 138, 139, 140, 148, 150, 151, 152, 159, 191, 200, 204, 205, 215, 218, 231, 246, 248, 252, 258, 259, 264, 265, 266], "14782": 1, "14743": 1, "arg": [1, 31, 89, 97, 122, 155, 159, 207, 214, 217, 228, 231, 235, 274], "cmd": [1, 26, 120, 136, 142, 151, 158, 196, 207, 224, 231, 241, 263], "14737": 1, "block": [1, 52, 275], "interfac": [1, 6, 60, 67, 74, 83, 118, 156, 157, 193], "select": [1, 21, 26, 67, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 110, 111, 112, 113, 115, 116, 117, 120, 181, 190, 192, 200, 217, 224, 240, 250, 261, 268], "kei": [1, 60, 89, 109, 118, 120, 131, 136, 150, 154, 159, 192, 204, 209, 221, 226, 227, 231, 240, 256, 264, 265], "14731": 1, "larg": [1, 6, 10, 118, 120, 135, 151, 196, 264, 274], "14716": 1, "14692": 1, "cl": [1, 74, 227], "14682": 1, "transform": [1, 155, 200, 221], "cpp": [1, 16, 17, 18, 19, 21, 26, 27, 35, 42, 45, 50, 52, 54, 56, 59, 67, 74, 79, 83, 89, 136, 142, 150, 151, 153, 190, 192, 209, 218, 221, 227, 240, 251, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 265, 266, 272], "ld": [1, 54, 100, 209, 221, 245], "blank": [1, 118, 195, 221], "string": [1, 6, 26, 42, 45, 52, 55, 84, 89, 103, 109, 118, 120, 135, 138, 139, 145, 150, 151, 152, 178, 189, 190, 192, 195, 196, 200, 204, 209, 212, 216, 221, 244, 245, 252, 254, 274, 275], "14676": 1, "nobara": 1, "distro": [1, 62, 150, 153, 235], "dnf": [1, 89, 150, 234], "14668": 1, "b_vscrt": [1, 221], "14664": 1, "regex": [1, 84, 120, 135, 191], "14621": 1, "makedep": [1, 70, 180, 206], "tweak": [1, 192], "14605": 1, "jinja": [1, 49, 149, 150, 151, 154, 196], "templat": [1, 26, 47, 49, 74, 85, 86, 100, 110, 120, 147, 151, 154, 173, 190, 192, 196], "14578": 1, "14532": 1, "14740": 1, "conanapi": [1, 31, 159, 165, 166], "init": [1, 60, 121, 131, 179, 274], "failur": [1, 74, 89, 150, 202], "14735": 1, "alreadi": [1, 4, 6, 7, 24, 54, 74, 78, 89, 91, 94, 97, 102, 107, 109, 110, 111, 116, 120, 126, 127, 132, 150, 151, 168, 170, 175, 178, 181, 185, 191, 192, 200, 209, 212, 235, 236, 237, 242, 246, 248, 249, 251, 252, 253, 254, 257, 260, 261, 263, 267, 270, 272, 274, 275], "duplic": [1, 39, 40, 54, 111, 136], "alias": [1, 120, 179, 191, 212], "14644": 1, "regress": [1, 74], "win_bash": [1, 89, 95, 150], "14756": 1, "14728": 1, "share": [1, 7, 8, 18, 26, 27, 42, 52, 59, 60, 74, 77, 78, 79, 82, 83, 84, 85, 89, 95, 99, 100, 101, 103, 106, 109, 110, 112, 120, 124, 127, 131, 134, 136, 137, 138, 146, 151, 153, 156, 160, 179, 185, 186, 189, 190, 191, 192, 196, 206, 209, 212, 216, 221, 225, 235, 236, 237, 242, 243, 244, 245, 248, 252, 253, 254, 255, 256, 262, 268, 270, 275], "test_requir": [1, 78, 121, 131, 137, 245, 248, 252, 258, 260, 273], "diamond": [1, 120, 270], "14721": 1, "crash": [1, 6, 78, 270], "14712": 1, "otherwis": [1, 6, 8, 13, 29, 97, 98, 110, 118, 120, 127, 128, 140, 151, 153, 158, 163, 187, 191, 192, 196, 200, 202, 221, 223, 224, 231, 242, 246, 263, 270], "chain": [1, 5, 145, 275], "those": [1, 5, 6, 7, 13, 18, 21, 29, 36, 39, 40, 42, 45, 50, 55, 56, 60, 62, 66, 74, 78, 82, 88, 89, 90, 94, 97, 98, 101, 102, 103, 105, 106, 111, 112, 118, 120, 122, 127, 129, 130, 131, 133, 134, 135, 136, 137, 140, 141, 143, 150, 153, 155, 156, 159, 160, 161, 178, 179, 183, 185, 186, 191, 192, 193, 197, 198, 200, 209, 210, 212, 221, 225, 227, 231, 235, 238, 244, 245, 246, 247, 248, 249, 250, 253, 254, 255, 258, 260, 261, 265, 266, 268, 269, 270, 271, 272, 275], "14673": 1, "cpu": [1, 8, 89, 150, 153, 187, 216, 224], "nativ": [1, 26, 27, 50, 55, 72, 78, 89, 150, 179, 187, 215, 220, 221, 228], "arm64": [1, 26, 42, 153, 181, 184, 224], "14667": 1, "ones": [1, 6, 10, 30, 31, 42, 43, 46, 66, 74, 78, 82, 86, 88, 89, 97, 99, 112, 120, 125, 137, 141, 150, 151, 153, 161, 162, 167, 175, 181, 191, 192, 195, 196, 200, 205, 212, 217, 223, 224, 225, 242, 247, 261, 266, 267, 271, 272, 273, 274], "14643": 1, "unnecessarili": [1, 84], "decor": [1, 156], "sequenc": [1, 45, 96, 118], "14642": 1, "14622": 1, "patch_us": [1, 204], "conandata": [1, 4, 52, 60, 67, 78, 120, 129, 130, 131, 132, 140, 163, 200, 204, 231, 250], "patch": [1, 6, 19, 43, 51, 74, 78, 82, 83, 88, 120, 122, 130, 140, 151, 153, 179, 180, 183, 199, 207, 250, 256, 273, 275], "apply_conandata_patch": [1, 130, 140, 199], "14576": 1, "xcode": [1, 61, 63, 87, 89, 90, 94, 97, 99, 100, 102, 106, 110, 115, 150, 184, 185, 186, 189, 190, 217, 221], "io": [1, 5, 8, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 63, 69, 74, 77, 89, 95, 100, 101, 120, 152, 153, 159, 183, 184, 221, 238, 239, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "tvo": [1, 153, 183], "watcho": [1, 153, 183, 221], "14538": 1, "incorrect": [1, 74], "conancent": [1, 2, 13, 29, 50, 60, 61, 74, 77, 83, 85, 95, 99, 100, 103, 113, 120, 136, 150, 152, 238, 244, 247, 249], "web": [1, 4, 6, 62, 120, 153, 239, 240], "url": [1, 3, 4, 60, 88, 89, 95, 100, 101, 109, 111, 118, 131, 140, 150, 152, 154, 162, 175, 200, 202, 231, 240, 241, 251, 252, 254, 255, 256, 259, 262], "14531": 1, "too": [1, 5, 8, 18, 29, 31, 45, 56, 59, 60, 74, 78, 84, 109, 118, 120, 136, 146, 151, 162, 179, 185, 195, 196, 225, 247, 265, 271], "14529": 1, "rrev": [1, 31, 95, 103], "rrev_timestamp": [1, 95], "prev_timestamp": [1, 95], "14526": 1, "resolv": [1, 8, 10, 87, 88, 89, 90, 92, 93, 94, 97, 99, 100, 101, 102, 105, 106, 108, 115, 118, 124, 150, 151, 174, 196, 200, 247, 269, 271, 272, 273], "14510": 1, "verifi": [1, 5, 50, 52, 56, 78, 88, 89, 144, 150, 152, 156, 163, 202, 256, 259, 263, 275], "14508": 1, "visiono": [1, 153, 183], "14504": 1, "unknown": [1, 82, 95, 100, 145], "14493": 1, "skip_binari": [1, 36, 89, 150], "14466": 1, "symlink": [1, 89, 150, 161, 180, 199, 200, 250], "14461": 1, "14413": 1, "cli_arg": [1, 189], "14397": 1, "14394": 1, "credenti": [1, 3, 4, 43, 77, 80, 111, 118, 147, 154, 231, 240], "14392": 1, "apk": [1, 89, 150, 234], "alpin": [1, 235], "14382": 1, "msvc": [1, 50, 56, 59, 85, 89, 103, 120, 136, 150, 151, 164, 209, 223, 226, 248], "invok": [1, 42, 45, 89, 102, 150, 151, 161, 171, 183, 225, 234, 245, 246, 249, 251, 252, 256, 261, 263, 266], "within": [1, 89, 118, 120, 128, 151, 183, 193, 200, 248, 273], "prompt": [1, 31, 155, 192, 224, 227, 228], "where": [1, 4, 8, 19, 21, 31, 42, 45, 52, 55, 62, 74, 84, 88, 89, 101, 102, 118, 120, 122, 131, 133, 136, 148, 150, 151, 152, 153, 159, 179, 184, 191, 192, 193, 195, 196, 200, 202, 207, 209, 214, 215, 217, 218, 220, 221, 224, 231, 240, 244, 245, 246, 248, 253, 254, 255, 256, 267, 272], "point": [1, 4, 8, 29, 35, 39, 40, 60, 61, 67, 74, 84, 89, 100, 102, 107, 109, 120, 131, 151, 161, 162, 170, 183, 192, 200, 205, 207, 231, 245, 247, 259, 261, 267, 270, 275], "14364": 1, "14358": 1, "14347": 1, "default_build_opt": 1, "14340": 1, "channel": [1, 5, 61, 74, 77, 87, 90, 92, 93, 94, 95, 97, 99, 100, 103, 106, 114, 118, 131, 151, 247], "14338": 1, "makefil": [1, 45, 61, 63, 74, 189, 190, 207, 209, 210, 227, 248], "14133": 1, "14594": 1, "v2": [1, 153, 162, 187, 241], "readi": [1, 30, 54, 55, 77, 151, 209, 218, 244, 254], "center": [1, 5, 8, 60, 67, 74, 77, 95, 100, 101, 152, 153, 156, 236, 237, 244, 249], "link": [1, 4, 17, 19, 21, 26, 27, 35, 42, 45, 54, 56, 59, 61, 78, 83, 84, 100, 120, 124, 133, 136, 137, 142, 157, 185, 191, 192, 193, 200, 212, 221, 226, 227, 240, 243, 245, 252, 253, 254, 255, 258, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "14593": 1, "inspect": [1, 6, 7, 36, 67, 86, 88, 110, 170, 227], "14572": 1, "hyphen": [1, 212, 215], "14561": 1, "user_toolchain": [1, 49, 89, 150, 192], "14556": 1, "boolean": [1, 89, 120, 131, 150, 175, 191, 192, 214, 216, 221, 275], "14530": 1, "14511": 1, "14491": 1, "14444": 1, "conf_info": [1, 95, 131, 133, 150, 192, 255, 262], "14442": 1, "msbuildtoolchain": [1, 59, 72, 89, 120, 136, 150, 180, 222], "resourcecompil": [1, 226], "14378": 1, "result": [1, 4, 6, 8, 13, 45, 62, 74, 77, 78, 82, 83, 84, 90, 91, 97, 98, 102, 103, 104, 105, 107, 108, 109, 110, 116, 120, 122, 131, 133, 135, 140, 141, 145, 150, 151, 153, 157, 159, 170, 174, 179, 192, 193, 209, 221, 231, 246, 248, 249, 253, 255, 256, 261, 266, 272, 275], "14376": 1, "processor": [1, 153, 187, 221], "armv8": [1, 26, 27, 42, 45, 84, 100, 110, 120, 136, 151, 153, 181, 187, 221, 235, 248, 259, 263], "aarch64": [1, 100, 153, 235], "14362": 1, "mandat": [1, 195], "final": [1, 13, 17, 26, 31, 35, 39, 40, 42, 45, 50, 54, 56, 60, 67, 74, 81, 102, 103, 107, 120, 122, 123, 124, 127, 128, 129, 130, 132, 133, 134, 135, 136, 140, 151, 153, 174, 191, 193, 200, 209, 212, 220, 237, 244, 249, 251, 254, 260, 263, 264, 266, 269, 270, 273, 275], "14342": 1, "default_opt": [1, 42, 52, 60, 84, 95, 101, 127, 132, 185, 189, 192, 221, 225, 252, 253, 254, 256, 262, 270], "xcrun": [1, 180, 182], "14326": 1, "abspath": 1, "14183": 1, "14555": 1, "except": [1, 26, 31, 39, 40, 49, 82, 84, 89, 118, 120, 124, 125, 127, 133, 140, 145, 146, 150, 151, 153, 155, 175, 179, 187, 189, 200, 231, 235, 244, 248, 253, 270], "vtrace": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "14522": 1, "confirm": [1, 31, 112, 116], "interact": [1, 89, 111, 149, 150, 155], "14512": 1, "filter": [1, 6, 89, 100, 112, 120, 131, 143, 159, 178, 200, 271], "just": [1, 5, 6, 18, 19, 21, 39, 40, 41, 45, 50, 62, 72, 74, 77, 78, 83, 84, 89, 91, 102, 107, 108, 109, 112, 118, 120, 122, 123, 124, 135, 137, 140, 146, 153, 155, 158, 162, 164, 179, 185, 191, 202, 207, 225, 232, 235, 240, 242, 244, 245, 246, 249, 252, 253, 256, 260, 261, 262, 263, 265, 271, 274, 275], "onc": [1, 4, 5, 6, 10, 26, 29, 45, 52, 60, 67, 78, 84, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 122, 123, 129, 130, 134, 137, 140, 144, 162, 171, 179, 200, 202, 238, 240, 258, 265, 266, 272], "14478": 1, "14443": 1, "14441": 1, "14410": 1, "script": [1, 4, 5, 18, 26, 35, 38, 39, 40, 41, 42, 45, 50, 52, 56, 59, 65, 78, 89, 120, 122, 123, 131, 134, 136, 137, 139, 150, 158, 162, 164, 191, 192, 195, 196, 197, 198, 207, 208, 209, 216, 217, 221, 226, 227, 228, 240, 245, 246, 254, 262, 263, 271], "14391": 1, "14337": 1, "14320": 1, "14302": 1, "outsid": [1, 8, 60, 74, 82, 118, 120, 135, 148, 205], "scm_folder": [1, 120], "14330": 1, "trace": [1, 145, 259], "14322": 1, "flush": 1, "stream": [1, 74, 189], "write": [1, 4, 27, 45, 54, 74, 78, 79, 102, 109, 118, 123, 133, 156, 163, 179, 191, 192, 200, 209, 248, 254, 256, 262, 266], "14310": 1, "sign": [1, 80, 118, 156], "14331": 1, "cmakeuserpreset": [1, 21, 47, 48, 60, 88, 192, 259, 265, 266, 267], "inherit": [1, 48, 78, 132, 179, 192, 248], "typo": 1, "14325": 1, "conanpreset": [1, 48, 192], "contain": [1, 2, 4, 6, 7, 8, 17, 18, 19, 26, 27, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50, 54, 55, 56, 59, 60, 65, 66, 70, 74, 82, 83, 84, 85, 87, 89, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 104, 105, 106, 107, 109, 113, 114, 115, 118, 120, 121, 123, 127, 131, 132, 133, 136, 137, 148, 150, 153, 155, 156, 161, 163, 164, 167, 175, 179, 183, 185, 191, 192, 193, 197, 198, 204, 208, 209, 210, 212, 215, 216, 217, 221, 225, 226, 231, 233, 244, 245, 247, 251, 254, 258, 259, 260, 262, 263, 265, 266, 267, 271, 273, 274, 275], "14296": 1, "prefix": [1, 100, 112, 120, 151, 159, 192, 209, 210, 211, 212, 215, 216, 221, 253, 261], "param": [1, 31, 159, 171, 178, 189, 195, 220], "unix": [1, 151, 189, 190, 200, 248], "14295": 1, "invalid": [1, 6, 100, 118, 121, 143, 144, 187, 191, 270], "loglevel": 1, "14289": 1, "14252": 1, "let": [1, 4, 6, 10, 13, 17, 18, 21, 24, 29, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 52, 54, 55, 56, 59, 60, 67, 83, 84, 85, 88, 97, 100, 102, 103, 107, 124, 135, 150, 151, 158, 159, 164, 185, 191, 215, 225, 240, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274], "pkg_config_custom_cont": [1, 212], "pc": [1, 45, 55, 210, 211, 212], "14233": 1, "dict": [1, 89, 120, 131, 136, 150, 159, 172, 192, 209, 212, 221, 226, 227], "object": [1, 6, 19, 21, 27, 42, 45, 95, 100, 118, 120, 131, 132, 133, 134, 135, 136, 145, 157, 158, 159, 161, 162, 170, 175, 178, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 201, 202, 205, 207, 208, 209, 210, 211, 212, 214, 215, 216, 220, 223, 224, 225, 226, 227, 228, 229, 235, 245, 246, 252, 253, 254, 255, 258, 263, 266, 267], "fix_apple_shared_install_nam": [1, 180, 182, 207], "otool": [1, 183, 207], "install_name_tool": [1, 183, 207], "program": [1, 29, 45, 54, 55, 89, 132, 150, 207, 228, 244, 246], "14195": 1, "fpic": [1, 42, 52, 60, 77, 84, 85, 95, 100, 101, 103, 120, 126, 127, 189, 192, 209, 216, 221, 252, 253, 254, 256, 262], "header_onli": [1, 84, 120, 127, 135, 258], "14194": 1, "id": [1, 13, 24, 26, 29, 42, 47, 50, 59, 63, 67, 68, 73, 77, 82, 83, 84, 85, 89, 95, 100, 120, 122, 123, 135, 136, 141, 150, 151, 153, 179, 183, 185, 191, 192, 225, 226, 243, 248, 250, 258, 259, 260, 265, 275], "type": [1, 6, 37, 68, 74, 83, 89, 93, 98, 110, 120, 135, 136, 147, 161, 179, 189, 191, 192, 197, 198, 212, 219, 236, 239, 240, 246, 247, 248, 249, 250, 252, 253, 275], "cmake_package_version_compat": 1, "anynewervers": [1, 191], "14176": 1, "14152": 1, "14272": 1, "longer": [1, 4, 40, 74, 77, 161, 247, 275], "won": [1, 4, 29, 39, 40, 50, 74, 105, 112, 118, 120, 151, 153, 159, 191, 200, 221, 245, 253, 261, 265], "14261": 1, "permit": [1, 273], "empti": [1, 4, 6, 89, 90, 111, 112, 120, 136, 150, 151, 159, 170, 178, 209, 212, 215, 225, 258, 259, 270, 271, 274], "14254": 1, "rm_safe": [1, 42, 84, 120, 126, 127, 135, 253], "never": [1, 74, 78, 82, 83, 87, 90, 94, 97, 99, 100, 102, 103, 106, 115, 120, 146, 171, 235, 247, 253, 259], "14238": 1, "gnu": [1, 45, 65, 70, 80, 84, 89, 100, 150, 153, 180, 187, 195, 196, 202, 207, 208, 209, 210, 211, 212, 216, 245], "make_program": [1, 89, 150], "14223": 1, "package_typ": [1, 38, 42, 95, 100, 101, 132, 135, 143, 160, 179, 260, 275], "lib": [1, 17, 21, 26, 35, 42, 50, 59, 88, 95, 99, 100, 118, 120, 124, 131, 133, 134, 136, 153, 183, 191, 192, 193, 200, 208, 209, 210, 211, 212, 215, 227, 233, 245, 253, 254, 255, 256, 258, 259, 261, 267, 275], "14215": 1, "clarif": [1, 74], "shown": [1, 4, 36, 100, 101, 125, 221], "queri": [1, 88, 89, 91, 100, 103, 112, 113, 116, 172], "14199": 1, "enabl": [1, 8, 10, 67, 77, 89, 120, 150, 152, 175, 187, 192, 200, 209, 235, 258, 273], "code": [1, 6, 16, 17, 18, 19, 26, 29, 32, 34, 35, 45, 50, 52, 55, 60, 62, 67, 74, 77, 78, 83, 88, 89, 109, 120, 121, 131, 136, 140, 141, 143, 150, 153, 154, 156, 179, 184, 190, 191, 192, 193, 202, 212, 217, 225, 231, 235, 244, 246, 247, 248, 250, 251, 253, 254, 256, 258, 262, 263, 265, 266, 267, 268, 269, 271, 272, 274], "function": [1, 6, 8, 21, 26, 38, 41, 42, 56, 59, 60, 63, 66, 74, 78, 83, 90, 109, 118, 120, 124, 130, 134, 138, 139, 142, 145, 146, 150, 151, 154, 156, 157, 159, 161, 162, 163, 164, 179, 181, 187, 190, 191, 196, 200, 204, 207, 215, 221, 248, 252, 254, 255, 256, 258, 261, 270, 271, 275], "14177": 1, "xcodedep": [1, 73, 180, 182, 186], "14168": 1, "respect": [1, 31, 36, 77, 107, 120, 151, 155, 156, 192, 195, 221, 245, 270, 272], "locat": [1, 4, 6, 17, 18, 19, 21, 23, 26, 27, 29, 32, 34, 35, 42, 47, 49, 50, 56, 59, 67, 92, 102, 109, 110, 118, 120, 131, 133, 134, 136, 138, 139, 150, 151, 152, 153, 155, 156, 157, 158, 161, 163, 164, 174, 183, 184, 185, 189, 191, 192, 200, 207, 209, 218, 227, 244, 245, 246, 248, 249, 254, 255, 256, 259, 260, 261, 267, 272], "14164": 1, "runner": [1, 26], "13985": 1, "leak": [1, 60, 154], "cmake_find_library_suffix": 1, "14253": 1, "custom": [1, 4, 5, 6, 11, 17, 23, 26, 30, 36, 45, 67, 69, 74, 77, 78, 79, 80, 81, 86, 89, 102, 110, 112, 119, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 131, 135, 147, 150, 151, 155, 156, 157, 158, 162, 164, 166, 179, 180, 182, 188, 190, 195, 204, 206, 213, 219, 222, 250, 253, 255, 261, 262, 267], "14227": 1, "14190": 1, "osx": [1, 35, 62, 74, 131, 136, 192, 246], "14187": 1, "keyerror": 1, "14185": 1, "arm64ec": [1, 153], "cmake_generator_platform": [1, 153, 192], "14114": 1, "cppinfo": [1, 21, 80, 120, 131, 136, 180, 191, 255], "14101": 1, "14082": 1, "both": [1, 6, 8, 10, 17, 18, 21, 27, 35, 36, 39, 40, 42, 47, 48, 49, 59, 76, 83, 84, 87, 88, 89, 90, 94, 97, 99, 100, 102, 103, 104, 106, 107, 109, 110, 112, 115, 120, 123, 131, 132, 133, 134, 136, 138, 139, 145, 150, 151, 153, 155, 161, 179, 183, 185, 186, 187, 191, 195, 215, 231, 239, 242, 244, 246, 248, 249, 255, 259, 260, 261, 263, 265, 267, 270, 271, 274, 275], "summari": [1, 4, 8, 82, 217, 255], "delet": [1, 31, 42, 62, 78, 112, 118, 120, 127, 253], "thing": [1, 13, 18, 21, 29, 50, 67, 68, 74, 77, 78, 102, 107, 120, 135, 171, 179, 180, 192, 196, 207, 244, 246, 248, 250, 252, 254, 255, 260, 261, 262, 267, 275], "excluded_url": 1, "14020": 1, "learn": [1, 21, 26, 68, 74, 77, 79, 120, 218, 237, 242, 243, 245, 246, 252, 254, 258, 260, 263, 264, 265, 271, 275], "14011": 1, "express": [1, 42, 49, 84, 108, 120, 133, 145, 146, 151, 192, 247, 269, 275], "14004": 1, "equival": [1, 60, 88, 89, 102, 103, 106, 113, 120, 122, 124, 129, 130, 136, 137, 146, 153, 175, 179, 189, 193, 195, 231, 245, 246, 247, 248, 254, 255, 266, 267, 271], "14002": 1, "13999": 1, "small": [1, 60, 74, 118, 129, 200, 241, 254, 259, 263, 270, 271], "13989": 1, "packageslist": [1, 168], "input": [1, 8, 59, 78, 82, 84, 89, 91, 93, 98, 100, 102, 103, 104, 105, 106, 108, 109, 112, 116, 135, 140, 149, 150, 155, 200, 221, 226, 246, 248, 258, 268, 272], "13928": 1, "associ": [1, 3, 6, 109, 111, 112, 151, 153, 192, 247, 275], "13918": 1, "13757": 1, "split": [1, 151], "two": [1, 6, 18, 45, 52, 74, 83, 84, 88, 93, 118, 120, 123, 124, 151, 160, 161, 179, 187, 192, 195, 204, 209, 225, 226, 235, 243, 244, 246, 252, 253, 258, 265, 267, 271], "13729": 1, "bindir": [1, 18, 39, 40, 95, 100, 136, 142, 190, 192, 209, 212, 218, 221, 255, 258, 260, 263], "13623": 1, "autopackag": [1, 180, 199], "remnant": 1, "14083": 1, "14075": 1, "space": [1, 62, 74, 102, 111, 118, 120, 134, 153, 195, 273], "14063": 1, "trail": 1, "xxx_folder": 1, "break": [1, 5, 6, 7, 13, 31, 62, 74, 77, 101, 117, 124, 126, 127, 128, 135, 149, 151, 153, 154, 161, 163, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 193, 210, 214, 215, 216, 217, 223], "subsystem": [1, 89, 120, 136, 150, 153, 180, 196, 222], "msys2": [1, 89, 150, 153, 235, 243], "14061": 1, "intermedi": [1, 102], "aggregated_compon": [1, 193], "14060": 1, "14053": 1, "pyyaml": 1, "broke": 1, "13990": 1, "13946": 1, "latest": [1, 5, 8, 13, 31, 60, 62, 74, 83, 85, 87, 88, 90, 91, 97, 99, 100, 102, 103, 106, 108, 109, 110, 112, 115, 116, 120, 153, 159, 197, 198, 231, 240, 244, 247, 261, 269, 271, 272, 273, 274, 275], "14110": 1, "doubl": [1, 29, 111, 191, 240, 253], "setup": [1, 7, 41, 50, 55, 60, 220, 237], "14109": 1, "quietli": 1, "noth": [1, 17, 31, 39, 40, 50, 200, 254], "14106": 1, "overlap": [1, 221], "14095": 1, "freebsd": [1, 8, 62, 74, 151, 153, 235], "14065": 1, "through": [1, 24, 94, 109, 120, 152, 162, 192, 220, 236, 242, 252, 254, 263], "root": [1, 10, 16, 18, 19, 27, 36, 38, 56, 59, 87, 89, 92, 94, 95, 100, 102, 133, 136, 150, 151, 153, 159, 161, 170, 171, 191, 209, 215, 217, 218, 244, 245, 247, 249, 253, 254, 259], "14051": 1, "irrespect": [1, 120, 135, 138, 139, 141, 225, 231, 248, 254], "problem": [1, 4, 6, 8, 74, 124, 241, 246, 263], "parent": [1, 120, 133, 148, 200, 256], "13983": 1, "libdir1": 1, "includedir1": 1, "index": [1, 5, 8, 60, 62, 74, 77, 95, 100, 101, 111, 156, 175, 183, 238], "libdir": [1, 17, 21, 95, 100, 131, 133, 136, 190, 192, 193, 200, 209, 211, 212, 218, 221, 255, 258, 259, 260, 267], "includedir": [1, 17, 21, 95, 100, 131, 133, 136, 190, 192, 193, 209, 211, 212, 221, 225, 255, 259, 267], "cmake_program": [1, 89, 150, 189, 192], "13940": 1, "str": [1, 17, 31, 36, 120, 135, 161, 168, 172, 175, 185, 196, 200, 217, 218, 220, 221, 223, 224, 225, 228, 248, 252, 259, 267], "13964": 1, "layer": [1, 153, 159, 254, 275], "local": [1, 4, 6, 13, 17, 18, 19, 24, 27, 29, 31, 35, 38, 54, 56, 59, 60, 61, 74, 77, 78, 83, 84, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 103, 106, 110, 112, 114, 115, 118, 120, 122, 131, 133, 136, 138, 139, 140, 151, 161, 162, 170, 174, 186, 200, 202, 207, 211, 217, 218, 226, 231, 236, 237, 240, 242, 244, 245, 246, 248, 249, 252, 253, 254, 255, 257, 258, 261, 265, 266, 267, 272, 273, 274, 275], "13944": 1, "unzip": [1, 6, 19, 27, 62, 120, 140, 199, 202, 240, 256, 266], "13937": 1, "13929": 1, "13967": 1, "13966": 1, "source_fold": [1, 6, 16, 17, 18, 36, 38, 41, 52, 59, 89, 95, 100, 101, 133, 134, 140, 171, 192, 200, 204, 207, 220, 248, 252, 258, 259, 261], "13953": 1, "complet": [1, 4, 5, 6, 24, 39, 40, 54, 56, 60, 74, 90, 100, 102, 103, 105, 107, 112, 120, 131, 135, 136, 138, 139, 140, 143, 151, 153, 161, 162, 178, 192, 235, 239, 240, 248, 255, 259, 262, 265, 267, 275], "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, 50, 52, 54, 55, 60, 62, 69, 74, 77, 89, 95, 100, 101, 109, 118, 120, 140, 150, 152, 154, 159, 162, 202, 204, 226, 238, 240, 241, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "github": [1, 4, 5, 6, 16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 61, 62, 69, 74, 89, 95, 100, 101, 118, 120, 131, 140, 153, 156, 159, 162, 204, 238, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "com": [1, 3, 4, 5, 16, 17, 18, 19, 21, 24, 26, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 69, 74, 89, 95, 100, 101, 118, 120, 140, 151, 159, 162, 204, 226, 238, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 275], "pull": [1, 74, 77, 204, 238, 271], "13898": 1, "overrid": [1, 39, 40, 78, 87, 89, 90, 94, 95, 97, 99, 100, 102, 106, 115, 118, 120, 124, 150, 151, 189, 192, 235, 246, 269], "specif": [1, 6, 7, 8, 13, 21, 36, 39, 40, 45, 56, 59, 62, 67, 74, 84, 88, 89, 91, 100, 103, 108, 111, 116, 118, 120, 131, 133, 135, 136, 146, 150, 151, 153, 157, 158, 161, 189, 192, 196, 197, 198, 200, 218, 221, 225, 228, 235, 242, 246, 248, 249, 250, 254, 256, 259, 260, 267, 273], "13923": 1, "13839": 1, "13836": 1, "step": [1, 3, 4, 6, 11, 13, 28, 45, 54, 60, 67, 118, 120, 126, 127, 151, 189, 207, 217, 248, 250, 253, 259, 262, 265, 266], "13833": 1, "relocat": [1, 29, 35, 206, 261], "build_polici": [1, 94, 95, 259], "debugg": 1, "13810": 1, "possible_valu": [1, 120], "possibl": [1, 4, 5, 6, 7, 13, 17, 27, 29, 35, 40, 41, 49, 50, 56, 59, 60, 62, 74, 77, 78, 82, 84, 86, 87, 88, 89, 90, 91, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 112, 115, 116, 120, 122, 123, 124, 127, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 150, 151, 153, 154, 156, 157, 158, 159, 163, 167, 170, 178, 179, 181, 185, 187, 189, 191, 193, 195, 196, 217, 221, 225, 232, 235, 246, 247, 252, 253, 256, 264, 265, 267, 268, 270, 271, 272, 273, 274, 275], "13796": 1, "optim": [1, 74, 94, 120, 123, 258], "hit": [1, 196, 241], "13771": 1, "sh": [1, 35, 39, 40, 45, 54, 89, 131, 150, 153, 195, 196, 197, 198, 208, 209, 217, 227, 240, 245, 246, 248, 249, 252, 260, 266, 267], "shell": [1, 35, 39, 40, 42, 62, 65, 89, 120, 145, 150, 195, 196, 200, 208, 209, 217], "13764": 1, "13748": 1, "auto": [1, 42, 77, 78, 89, 110, 150, 151, 153, 244], "home": [1, 4, 26, 27, 31, 60, 61, 77, 109, 110, 118, 120, 136, 148, 150, 152, 153, 155, 159, 173, 175, 210, 244, 245, 246, 254], "13746": 1, "render": [1, 21, 103, 109, 147, 149, 150, 154], "profile_nam": [1, 151], "13721": 1, "13718": 1, "understand": [1, 24, 31, 36, 47, 65, 70, 77, 81, 99, 107, 120, 146, 150, 161, 208, 209, 227, 236, 243, 254, 264], "13716": 1, "13712": 1, "skip_warn": [1, 89, 145, 150], "silenc": 1, "13706": 1, "info_invalid": [1, 95, 100], "13688": 1, "13680": 1, "mono": [1, 120], "13562": 1, "demonstr": [1, 248], "13529": 1, "build_script": 1, "13901": 1, "13880": 1, "feed": [1, 78], "field": [1, 50, 86, 90, 97, 100, 101, 103, 110, 113, 119, 120, 131, 133, 136, 149, 152, 153, 154, 162, 183, 192, 204, 207, 212, 231, 275], "13870": 1, "compiler_execut": [1, 89, 150, 151, 192, 209, 221, 227, 244], "13867": 1, "13857": 1, "suffix": [1, 159, 191, 212], "13841": 1, "unkown": 1, "13832": 1, "13778": 1, "renam": [1, 175, 191, 199, 212], "d": [1, 7, 13, 27, 47, 56, 59, 83, 87, 88, 100, 102, 109, 118, 120, 132, 151, 179, 190, 192, 210, 240, 254, 259, 272], "13740": 1, "omit": [1, 21, 120, 150, 267], "l": [1, 87, 88, 90, 91, 93, 94, 97, 99, 100, 101, 102, 106, 112, 115, 116, 207, 208, 210, 212, 231], "libpath": [1, 233], "13704": 1, "13855": 1, "out": [1, 26, 29, 31, 36, 54, 55, 60, 74, 76, 84, 87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 115, 118, 131, 217, 221, 252, 256, 267, 271], "13853": 1, "13846": 1, "13844": 1, "13779": 1, "merg": [1, 5, 8, 24, 96, 97, 104, 193, 238, 267, 271, 275], "alia": [1, 109, 191, 207], "13763": 1, "dep": [1, 21, 36, 41, 54, 83, 99, 131, 143, 151, 160, 161, 185, 189, 191, 193, 215, 225, 227, 248, 252, 254], "13762": 1, "cmake_system_nam": [1, 89, 150, 192], "baremet": [1, 153], "13739": 1, "deactiv": [1, 49, 162, 192, 197, 198, 246, 273], "13707": 1, "13597": 1, "extend": [1, 43, 46, 77, 80, 81, 90, 97, 106, 121, 132, 156, 162, 188, 271, 273, 275], "13669": 1, "13608": 1, "bat": [1, 35, 39, 40, 45, 89, 131, 150, 192, 195, 196, 197, 198, 208, 209, 217, 221, 226, 227, 228, 240, 246, 248, 249], "13607": 1, "preliminari": 1, "dev": [1, 141, 153, 235], "premake5": 1, "13390": 1, "old": [1, 30, 32, 120, 153, 167, 268, 271], "login": [1, 86, 118, 149, 175, 202, 240], "13671": 1, "msg": [1, 145, 159], "13668": 1, "correct": [1, 40, 42, 77, 78, 82, 120, 133, 134, 136, 138, 139, 163, 183, 185, 191, 192, 196, 200, 220, 227, 245, 246, 255, 256, 259, 261, 265], "origin": [1, 4, 6, 8, 13, 24, 60, 62, 89, 102, 120, 124, 134, 149, 153, 195, 196, 221, 231, 247, 256, 259, 275], "13667": 1, "13661": 1, "respond": [1, 74], "forbidden": [1, 75, 105, 107, 124], "13626": 1, "13622": 1, "direct_deploi": [1, 102, 275], "13612": 1, "13605": 1, "p": [1, 4, 7, 13, 21, 24, 29, 42, 52, 72, 88, 91, 95, 100, 103, 111, 112, 116, 150, 210, 224, 240, 252, 253, 255, 256, 258, 259, 261, 267], "had": [1, 13, 56, 59, 60, 94, 120, 124, 248, 253, 256, 265, 267, 270], "13662": 1, "13657": 1, "close": [1, 94, 120, 200], "13631": 1, "13618": 1, "full_deploi": [1, 35, 102, 275], "collis": [1, 119, 191, 207, 209], "13610": 1, "13601": 1, "temp": [1, 88], "everyth": [1, 5, 13, 19, 42, 60, 62, 69, 74, 77, 88, 107, 112, 124, 133, 151, 180, 231, 248, 265], "13581": 1, "dictionari": [1, 89, 97, 120, 131, 136, 150, 159, 189, 192, 200, 202], "semant": [1, 120, 153, 254, 269], "13571": 1, "sdk": [1, 26, 35, 89, 150, 153, 183, 184, 186, 209, 221], "13531": 1, "13526": 1, "13505": 1, "legaci": [1, 123, 150, 192, 223], "13502": 1, "13470": 1, "side": [1, 6, 7, 8, 50, 118, 120, 136, 150, 244, 245, 252, 262, 272], "third": [1, 2, 14, 15, 52, 60, 61, 100, 120, 140, 154, 202, 231, 259, 266, 267], "parti": [1, 2, 14, 15, 52, 60, 61, 100, 120, 140, 154, 231, 259, 266, 267], "13461": 1, "android": [1, 8, 11, 25, 61, 63, 74, 80, 89, 120, 136, 150, 153, 180, 192, 219, 245], "cmake_legacy_toolchain": [1, 89, 150, 192], "android_use_legacy_toolchain_fil": [1, 89, 150, 192], "It": [1, 6, 7, 8, 13, 17, 18, 29, 31, 35, 36, 39, 40, 45, 50, 52, 56, 59, 60, 62, 66, 67, 68, 72, 73, 74, 76, 77, 78, 82, 83, 84, 85, 86, 88, 89, 90, 91, 97, 99, 100, 102, 105, 107, 108, 109, 110, 112, 113, 116, 120, 122, 123, 124, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 150, 151, 153, 155, 156, 157, 159, 162, 178, 179, 184, 185, 186, 187, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 203, 204, 207, 208, 209, 210, 211, 214, 215, 216, 221, 223, 224, 225, 226, 227, 231, 232, 233, 235, 239, 240, 241, 244, 246, 247, 248, 252, 253, 254, 256, 258, 259, 260, 263, 265, 268, 270, 271, 272, 273, 274, 275], "cflag": [1, 45, 89, 95, 100, 136, 150, 151, 186, 192, 208, 209, 212, 216, 221, 226, 227], "cxxflag": [1, 49, 84, 89, 95, 100, 136, 150, 186, 192, 193, 208, 209, 216, 221, 226, 227, 233], "prevent": [1, 118, 120, 192], "13459": 1, "13458": 1, "authent": [1, 3, 60, 77, 110, 111, 149, 152, 154, 155, 175, 202, 239, 240], "13421": 1, "wai": [1, 4, 5, 6, 7, 8, 13, 21, 35, 42, 52, 60, 62, 68, 77, 82, 86, 88, 89, 90, 99, 103, 118, 120, 122, 131, 133, 134, 151, 153, 154, 155, 156, 160, 179, 192, 211, 218, 225, 231, 240, 242, 244, 246, 248, 251, 252, 253, 256, 258, 264, 265, 270, 272, 273, 275], "python_requires_extend": [1, 78, 132, 179], "13487": 1, "again": [1, 4, 13, 21, 26, 31, 52, 88, 90, 118, 143, 145, 163, 215, 217, 231, 242, 246, 258, 259, 261, 265, 270, 272], "mydep": [1, 82, 131, 227], "someopt": 1, "13467": 1, "cpp_std": 1, "vc": 1, "vs2019": [1, 89, 150, 217, 221], "vs2022": 1, "rather": [1, 8, 50, 82, 89, 135, 150, 153, 209, 227, 257, 267], "13450": 1, "conan_shared_found_librari": 1, "find_librari": [1, 26], "13596": 1, "13574": 1, "cmd_wrapper": [1, 156, 158, 275], "paramet": [1, 31, 54, 66, 86, 136, 156, 161, 170, 172, 175, 181, 183, 184, 187, 189, 190, 191, 193, 195, 196, 197, 198, 200, 201, 202, 204, 205, 207, 209, 210, 211, 214, 215, 216, 220, 221, 223, 224, 225, 226, 228, 229, 231, 235, 254], "13564": 1, "becaus": [1, 6, 13, 17, 24, 29, 31, 35, 42, 47, 48, 50, 56, 60, 62, 63, 67, 74, 82, 85, 88, 97, 103, 105, 106, 120, 127, 134, 135, 136, 137, 141, 150, 151, 153, 163, 179, 187, 191, 192, 212, 217, 246, 247, 249, 253, 258, 259, 260, 261, 265, 266, 267, 270, 271, 272, 273], "13544": 1, "subcommand": [1, 96, 104, 159, 275], "underscor": [1, 254], "13516": 1, "13496": 1, "build_folder_var": [1, 26, 48, 89, 133, 150, 190, 192], "13488": 1, "composit": [1, 132, 153, 194], "13468": 1, "13415": 1, "13409": 1, "build_script_fold": [1, 189, 207, 258], "autoreconf": [1, 207, 209, 252], "class": [1, 6, 16, 17, 18, 19, 24, 31, 38, 39, 40, 41, 42, 49, 50, 52, 60, 74, 78, 82, 84, 102, 109, 118, 119, 120, 122, 124, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 143, 144, 151, 153, 156, 159, 160, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 181, 183, 184, 185, 186, 189, 191, 192, 193, 195, 196, 197, 198, 200, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 224, 225, 226, 227, 228, 231, 232, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 262, 263, 266, 267, 270, 271, 272, 273, 274], "mirror": [1, 4, 202], "That": [1, 8, 13, 17, 24, 38, 66, 78, 102, 120, 140, 155, 157, 164, 185, 191, 196, 212, 217, 226, 245, 246, 247, 258, 262, 271, 274, 275], "13403": 1, "13386": 1, "13354": 1, "jinja2": [1, 109, 110, 150, 151], "inclus": [1, 225], "13336": 1, "13324": 1, "version_rang": [1, 10, 89, 120, 150, 273], "resolve_prereleas": [1, 10, 89, 120, 150, 273], "prereleas": [1, 10, 273], "13321": 1, "13433": 1, "corrupt": 1, "13432": 1, "13430": 1, "13423": 1, "_detect_compiler_vers": 1, "13396": 1, "libc": [1, 24, 77, 95, 100, 110, 151, 153, 192, 221, 244, 246, 254], "13359": 1, "vswhere": [1, 89, 150], "13355": 1, "convers": [1, 79, 86], "13323": 1, "13230": 1, "msbuild": [1, 43, 50, 58, 63, 72, 74, 89, 109, 136, 150, 151, 153, 180, 189, 222, 225, 226, 228, 254], "13435": 1, "nonexist": [1, 21], "13434": 1, "individu": [1, 40, 74, 124, 131, 135, 149, 174, 266, 273], "13428": 1, "fatal": [1, 26], "malform": 1, "13365": 1, "system_lib": [1, 95, 100, 136, 193, 210, 211], "13364": 1, "virtualbuildenv": [1, 39, 40, 45, 120, 136, 151, 180, 192, 194, 195, 196, 245, 246, 249, 255, 260], "instanti": [1, 50, 120, 131, 185, 186, 191, 192, 193, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 227, 228, 233], "13346": 1, "nicer": 1, "13328": 1, "qcc": [1, 153], "13326": 1, "insecur": [1, 89, 111], "ssl": [1, 89, 111, 136, 150, 152, 175, 202, 215], "13270": 1, "conanignor": [1, 89], "13269": 1, "traceback": 1, "vv": [1, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "13226": 1, "13299": 1, "telemetri": 1, "hang": [1, 74, 118], "13293": 1, "schema2": 1, "13288": 1, "logger": 1, "13287": 1, "auth": [1, 74, 154, 155, 202], "13285": 1, "unexpect": [1, 77, 78, 145, 221, 271], "13282": 1, "runtime_typ": [1, 56, 59, 153, 164, 209], "reli": [1, 4, 50, 74, 78, 103, 138, 139, 212, 244, 259, 261], "13277": 1, "txt": [1, 6, 16, 17, 18, 19, 21, 24, 35, 38, 41, 42, 45, 47, 48, 49, 50, 54, 55, 61, 67, 68, 78, 80, 85, 87, 88, 92, 97, 99, 100, 102, 106, 109, 110, 120, 130, 134, 138, 139, 151, 160, 163, 171, 179, 185, 186, 189, 190, 191, 192, 197, 198, 200, 208, 209, 210, 212, 215, 216, 217, 218, 225, 226, 228, 233, 236, 243, 244, 245, 249, 251, 252, 253, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 272, 273, 274, 275], "pars": [1, 31, 74, 103, 150, 151, 156, 211, 231, 232, 256], "13266": 1, "unifi": [1, 6, 153], "13264": 1, "13249": 1, "13214": 1, "explicitli": [1, 6, 13, 41, 74, 78, 84, 88, 89, 91, 97, 102, 103, 105, 112, 120, 122, 126, 127, 129, 131, 135, 136, 137, 140, 141, 150, 179, 191, 193, 244, 247, 255, 270, 272, 273, 274], "state": [1, 7, 137, 175, 179, 192, 221, 247], "13211": 1, "13207": 1, "readm": [1, 162, 202, 266], "13186": 1, "13298": 1, "certain": [1, 62, 102, 108, 112, 131, 136, 150, 151, 153, 162, 225, 247, 253, 255, 262], "13284": 1, "13278": 1, "13267": 1, "13263": 1, "win": [1, 62, 107, 259], "drive": [1, 56, 59], "13248": 1, "13191": 1, "gnu17": [1, 42, 95, 100, 110, 151, 153, 187, 244], "13185": 1, "13180": 1, "13178": 1, "13176": 1, "13172": 1, "etc": [1, 4, 6, 7, 8, 18, 29, 31, 35, 37, 42, 61, 68, 71, 74, 78, 86, 89, 102, 106, 107, 110, 118, 120, 121, 123, 127, 131, 133, 134, 135, 136, 142, 150, 151, 153, 155, 156, 163, 183, 184, 191, 192, 193, 195, 197, 198, 208, 209, 212, 221, 225, 228, 239, 240, 243, 244, 253, 256, 258, 259, 262, 267, 272, 274, 275], "12746": 1, "basic": [1, 5, 31, 42, 45, 47, 55, 67, 74, 76, 78, 100, 105, 107, 109, 118, 120, 128, 154, 162, 180, 192, 193, 199, 202, 218, 243, 244, 250, 252, 258, 271, 272], "13135": 1, "main": [1, 5, 19, 26, 29, 35, 42, 45, 50, 52, 54, 55, 56, 59, 60, 61, 67, 69, 90, 91, 100, 102, 107, 117, 120, 132, 134, 153, 159, 180, 185, 186, 191, 204, 214, 226, 244, 246, 248, 249, 252, 254, 256, 258, 263, 266, 267, 272, 273, 275], "13117": 1, "13112": 1, "13110": 1, "13109": 1, "assign": [1, 78, 82, 120, 126, 135, 138, 139, 190, 191, 192, 211, 221, 231, 253, 260], "13099": 1, "ui": [1, 31, 239, 240], "13093": 1, "13090": 1, "13074": 1, "13066": 1, "13050": 1, "customiz": [1, 153, 275], "presets_prefix": 1, "prepend": [1, 136, 150, 151, 195, 196, 211], "13015": 1, "section": [1, 2, 3, 4, 6, 7, 9, 13, 21, 26, 31, 37, 56, 59, 65, 68, 70, 72, 73, 74, 79, 81, 82, 84, 85, 86, 89, 90, 91, 95, 101, 103, 106, 110, 111, 116, 117, 118, 120, 124, 126, 127, 128, 131, 135, 137, 146, 147, 148, 149, 150, 153, 154, 155, 157, 159, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 186, 192, 193, 195, 200, 207, 209, 210, 212, 214, 215, 216, 220, 221, 226, 236, 237, 242, 243, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 273, 274], "your": [1, 2, 4, 6, 8, 10, 11, 19, 21, 23, 26, 27, 29, 30, 31, 34, 42, 43, 45, 46, 52, 54, 57, 58, 60, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 74, 77, 78, 79, 84, 88, 90, 100, 109, 110, 119, 120, 121, 122, 126, 127, 129, 130, 131, 132, 135, 136, 140, 145, 150, 151, 153, 156, 159, 160, 161, 162, 163, 164, 179, 181, 184, 185, 186, 187, 190, 192, 200, 207, 209, 215, 216, 217, 218, 220, 221, 225, 227, 231, 233, 235, 236, 237, 242, 243, 244, 246, 248, 249, 250, 253, 256, 258, 259, 261, 262, 263, 264, 265, 266, 268, 275], "own": [1, 4, 8, 13, 19, 29, 36, 42, 48, 60, 62, 74, 77, 78, 79, 81, 84, 85, 100, 109, 110, 119, 120, 122, 123, 131, 140, 150, 151, 153, 156, 159, 160, 161, 162, 179, 181, 191, 192, 218, 231, 237, 239, 250, 254, 259, 263, 265, 267, 275], "10166": 1, "13084": 1, "hash": [1, 81, 85, 95, 100, 101, 120, 140, 179, 202, 246, 247, 253, 255, 256, 272, 275], "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, 67, 78, 89, 150, 155, 271, 275], "12930": 1, "against": [1, 5, 8, 10, 21, 36, 42, 78, 111, 120, 128, 136, 145, 149, 152, 153, 158, 175, 233, 246, 254, 255, 263, 270, 271], "12913": 1, "system_requir": [1, 95, 100, 121, 131, 235], "12912": 1, "tar": [1, 4, 8, 120, 200, 202], "pax": 1, "python3": [1, 62, 118], "12899": 1, "unix_path_package_info_legaci": 1, "package_info": [1, 11, 14, 17, 21, 38, 41, 42, 50, 78, 94, 120, 121, 133, 162, 179, 185, 191, 192, 193, 195, 200, 209, 211, 212, 215, 236, 250, 254, 256, 258, 259, 260, 267], "In": [1, 4, 7, 8, 13, 17, 19, 21, 24, 26, 27, 31, 35, 36, 39, 40, 45, 47, 48, 49, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 82, 84, 85, 88, 90, 94, 99, 102, 104, 106, 108, 118, 119, 120, 122, 123, 124, 125, 131, 132, 133, 134, 135, 136, 137, 138, 139, 141, 146, 151, 153, 160, 161, 162, 170, 179, 184, 185, 187, 190, 191, 192, 195, 196, 207, 209, 217, 221, 223, 226, 235, 237, 242, 244, 245, 246, 248, 249, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 273, 274, 275], "perform": [1, 4, 69, 88, 89, 102, 105, 107, 110, 111, 112, 116, 118, 120, 150, 155, 162, 175, 178, 183, 200, 216, 231, 235, 239, 240, 248, 264, 266, 275], "12886": 1, "12883": 1, "cmake_": 1, "ex": [1, 35, 39, 40, 47, 55, 74, 120, 192, 244, 246, 248, 249, 260, 265], "12875": 1, "tempor": 1, "12808": 1, "barebon": 1, "12802": 1, "pkgid": [1, 103], "12801": 1, "prev": [1, 13, 31, 95, 97, 100, 103], "12781": 1, "12780": 1, "12836": 1, "triplet": [1, 89, 150, 209], "12881": 1, "ref": [1, 13, 19, 40, 45, 52, 77, 92, 95, 97, 100, 118, 120, 131, 134, 141, 143, 146, 158, 160, 163, 168, 171, 256, 265, 266, 267], "12722": 1, "12699": 1, "required_conan_vers": [1, 89, 150], "between": [1, 7, 13, 27, 52, 82, 89, 99, 102, 120, 125, 131, 135, 136, 150, 179, 202, 239, 243, 245, 265, 270, 275], "12695": 1, "cleanup": 1, "organ": [1, 2, 4, 8, 82, 154, 192, 239, 248], "12666": 1, "12636": 1, "conaninfo": [1, 24, 85, 88, 244, 249, 253, 261], "12616": 1, "conanapiv2": 1, "12615": 1, "refactor": 1, "12554": 1, "12572": 1, "build_modul": [1, 191], "12578": 1, "12525": 1, "api": [1, 6, 27, 69, 74, 78, 80, 120, 151, 156, 159, 162, 239, 240, 248], "12468": 1, "env_info": 1, "user_info": 1, "fake": [1, 39, 40, 260], "12351": 1, "12379": 1, "reciperefer": [1, 168, 170], "equal": [1, 88, 109, 120, 140, 157, 195, 273], "12506": 1, "compress": [1, 6, 55, 62, 89, 95, 100, 150, 178, 200, 202, 244, 245, 246, 248, 249], "uncompress": [1, 55, 62, 244, 246, 248, 249], "12378": 1, "12475": 1, "proper": [1, 7, 136, 207, 209, 219, 245], "lockfileapi": 1, "sever": [1, 6, 7, 21, 24, 27, 41, 60, 62, 63, 67, 72, 77, 84, 85, 86, 91, 96, 97, 102, 104, 107, 120, 123, 150, 151, 159, 179, 185, 191, 192, 215, 231, 235, 239, 240, 244, 246, 252, 254, 256, 261, 263, 266, 268, 269, 270, 273, 275], "loos": 1, "12502": 1, "produc": [1, 77, 78, 84, 88, 89, 102, 104, 105, 107, 120, 123, 131, 133, 136, 150, 153, 179, 191, 192, 197, 198, 200, 256, 270], "drop": [1, 50, 102, 151], "compat_app": 1, "12484": 1, "transitive_head": [1, 95, 275], "12508": 1, "transitive_lib": [1, 95, 275], "static": [1, 8, 19, 21, 27, 38, 52, 59, 79, 82, 83, 84, 85, 95, 100, 106, 120, 127, 134, 136, 137, 153, 172, 174, 185, 190, 209, 225, 236, 243, 244, 248, 252, 253, 254, 255, 267, 270, 275], "uncommit": [1, 120], "12267": 1, "12263": 1, "12243": 1, "included_fil": [1, 231], "12246": 1, "12251": 1, "12152": 1, "convent": [1, 126, 127, 140, 150, 153], "12235": 1, "12080": 1, "decoupl": 1, "12046": 1, "special": [1, 6, 7, 17, 52, 82, 84, 109, 120, 121, 124, 145, 150, 151, 179, 191, 195, 207, 212, 246, 248, 273], "char": [1, 29, 42, 55, 204, 244], "12053": 1, "12032": 1, "clicolor_forc": [1, 155], "12028": 1, "12050": 1, "output_fold": [1, 36, 87, 92, 94, 102, 161, 171], "11977": 1, "12019": 1, "11720": 1, "11728": 1, "11680": 1, "11615": 1, "conanrc": [1, 80, 147], "11675": 1, "11672": 1, "max": [1, 89, 150, 153], "11610": 1, "post_build_fail": 1, "hook": [1, 74, 78, 80, 89, 156], "11593": 1, "pre_gener": [1, 162], "post_gener": [1, 162], "cover": [1, 69, 133, 153, 237, 243, 260, 264], "around": [1, 8, 65, 66, 71, 72, 73, 74, 184, 189, 207, 214, 224, 235, 250], "brought": 1, "back": [1, 2, 10, 18, 56, 59, 61, 74, 82, 89, 108, 150, 274], "11575": 1, "11522": 1, "model": [1, 17, 21, 61, 74, 77, 79, 80, 85, 118, 119, 125, 131, 135, 136, 137, 141, 153, 157, 243, 250, 253, 254], "relationship": [1, 120, 275], "linkag": [1, 246], "autom": [1, 5, 13, 26, 74, 103, 120, 140, 141, 155, 226, 269, 271, 275], "flexibl": [1, 56, 59, 120, 146, 236, 243, 273, 275], "power": [1, 13, 74, 102, 156, 159, 192, 243, 275], "transpar": [1, 4, 11, 37, 56, 68, 244, 265, 275], "pythonapi": 1, "cleaner": [1, 275], "structur": [1, 6, 18, 42, 45, 52, 54, 55, 56, 59, 78, 97, 101, 102, 103, 117, 120, 136, 148, 151, 156, 170, 190, 215, 244, 248, 249, 254, 255, 256, 258, 259, 267, 270, 275], "account": [1, 6, 29, 82, 118, 120, 131, 134, 153, 179, 184, 190, 192, 195, 232, 245, 253, 260, 262, 268, 275], "simpler": [1, 5, 6, 41, 113, 131, 137], "immut": [1, 6, 19, 78, 82, 140, 154, 247, 251, 252, 255, 256, 262, 266, 272], "tutori": [2, 10, 21, 27, 29, 42, 47, 52, 54, 55, 56, 59, 61, 68, 74, 87, 90, 92, 94, 102, 105, 106, 107, 111, 114, 115, 116, 120, 122, 124, 126, 127, 131, 133, 134, 135, 136, 140, 142, 143, 218, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 274, 275], "aim": [2, 74, 95, 124, 146, 150, 153, 215, 262], "develop": [2, 4, 6, 7, 8, 10, 11, 18, 26, 29, 30, 33, 50, 54, 55, 60, 61, 69, 74, 78, 87, 88, 94, 102, 103, 114, 118, 120, 122, 128, 133, 136, 138, 139, 140, 150, 153, 155, 161, 164, 181, 186, 191, 217, 218, 226, 228, 236, 239, 240, 241, 244, 245, 249, 252, 259, 265, 271], "engin": [2, 21, 108, 150, 270, 271], "administr": [2, 3, 240], "architect": 2, "adopt": 2, "design": [2, 18, 74, 132, 153, 248, 267, 275], "product": [2, 5, 6, 35, 61, 74, 78, 90, 107, 110, 124, 128, 135, 267], "team": [2, 5, 8, 50, 55, 74, 77, 82, 108, 109, 110, 118, 120, 153, 239, 240, 241, 244, 259], "plan": [2, 97, 131, 136], "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, 50, 52, 54, 55, 56, 59, 60, 62, 63, 67, 69, 78, 79, 82, 83, 84, 85, 88, 97, 99, 102, 103, 106, 107, 108, 109, 118, 120, 123, 125, 127, 132, 133, 135, 136, 137, 138, 139, 140, 141, 143, 144, 150, 151, 153, 170, 179, 185, 187, 190, 191, 192, 193, 196, 212, 215, 217, 218, 225, 231, 235, 237, 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, 270, 271, 272, 273, 274], "ll": [3, 4, 31, 45, 54, 55, 67, 100, 151, 159, 192, 217, 226, 228, 244, 266], "free": [3, 4, 74, 95, 100, 118, 239, 240, 241], "tab": [3, 67], "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, 50, 52, 54, 55, 56, 59, 60, 61, 64, 67, 68, 69, 71, 74, 77, 78, 79, 82, 84, 85, 86, 87, 88, 89, 90, 91, 94, 95, 97, 99, 100, 102, 103, 105, 106, 107, 108, 110, 115, 116, 118, 120, 123, 124, 125, 126, 127, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 146, 148, 149, 150, 151, 153, 157, 158, 159, 161, 162, 163, 164, 171, 183, 184, 185, 186, 190, 191, 192, 193, 196, 197, 200, 204, 210, 211, 212, 215, 218, 221, 223, 224, 225, 231, 235, 236, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 273, 274, 275], "imagin": [3, 10, 99, 191, 215, 248, 253, 261], "give": [3, 4, 8, 74, 86, 99, 110, 117, 197, 198], "upload_url": [3, 4, 89, 150], "myteam": [3, 4, 150], "myorg": [3, 4, 150], "next": [3, 26, 29, 45, 74, 85, 107, 120, 209, 225, 231, 245, 251, 252, 253, 260, 274], "anonym": [3, 118, 149, 154, 155], "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, 50, 52, 54, 60, 62, 67, 69, 77, 83, 84, 85, 86, 89, 90, 91, 97, 101, 102, 103, 106, 110, 112, 116, 117, 118, 120, 124, 126, 127, 128, 134, 135, 136, 140, 142, 148, 149, 150, 151, 153, 154, 157, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 191, 192, 193, 200, 207, 209, 210, 212, 214, 215, 216, 220, 221, 226, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 260, 261, 262, 263, 265, 266, 267, 268, 270, 271, 272, 273, 274], "offici": [3, 31, 101, 156, 159, 217, 237, 275], "guid": [3, 4, 61, 236], "how": [3, 4, 5, 6, 8, 16, 18, 19, 21, 24, 26, 27, 31, 36, 38, 42, 47, 48, 52, 54, 56, 59, 60, 64, 67, 68, 74, 77, 79, 80, 81, 82, 84, 90, 94, 97, 103, 106, 107, 111, 116, 119, 120, 133, 137, 148, 150, 151, 152, 153, 156, 161, 179, 191, 215, 218, 234, 236, 237, 238, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 262, 263, 264, 265, 266, 267, 269, 270, 271, 272, 273, 274], "token": [3, 60, 118, 149, 154, 231], "live": [3, 13, 19, 120, 140, 146, 225, 275], "source_credenti": [3, 4, 80, 147], "cmvmdgtu1234567890abcdefghijklmnopqrstuvwxyz": 3, "And": [3, 6, 13, 21, 35, 41, 48, 52, 62, 69, 88, 91, 109, 120, 131, 143, 146, 150, 151, 153, 160, 162, 164, 179, 185, 186, 195, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 228, 245, 247, 254, 255, 265, 270, 271], "last": [3, 7, 103, 137, 153, 174, 175, 216, 226, 268, 273, 275], "permiss": [3, 4, 62, 74, 78, 200, 239, 240], "feel": [3, 136], "accord": [3, 45, 67, 68, 84, 140, 151, 184, 191, 192, 228, 255, 273], "With": [3, 4, 7, 17, 21, 35, 36, 50, 62, 67, 74, 149, 151, 153, 204, 217, 246, 252, 260, 265], "common": [4, 6, 8, 13, 17, 18, 27, 35, 52, 77, 78, 84, 88, 89, 103, 120, 129, 130, 131, 135, 136, 139, 153, 156, 158, 159, 179, 184, 218, 224, 231, 235, 246, 247, 254, 261, 268, 269], "practic": [4, 5, 6, 7, 8, 13, 19, 29, 35, 60, 74, 75, 82, 84, 88, 90, 103, 105, 107, 109, 110, 118, 122, 123, 124, 127, 128, 129, 130, 131, 132, 134, 136, 137, 140, 143, 146, 151, 154, 179, 221, 236, 245, 247, 249, 251, 252, 255, 256, 260, 262, 266, 270, 271, 272, 273, 274], "canon": [4, 191], "page": [4, 27, 61, 120, 240], "keep": [4, 6, 18, 26, 60, 69, 78, 107, 108, 132, 153, 162, 179, 190, 191, 192, 200, 244, 247, 248, 259, 260, 268, 274, 275], "record": 4, "traceabl": [4, 6, 74, 260, 269, 274, 275], "purpos": [4, 7, 62, 78, 120, 127, 129, 131, 132, 150, 154, 156, 231, 235, 236, 237, 242, 260, 267, 271, 274, 275], "howev": [4, 5, 21, 35, 39, 40, 62, 63, 69, 97, 100, 118, 123, 146, 150, 153, 162, 191, 247, 248, 249, 253, 256, 270, 271, 272, 274], "often": [4, 29, 133, 273], "term": [4, 7, 254], "futur": [4, 7, 36, 60, 70, 77, 78, 79, 97, 109, 110, 120, 151, 157, 158, 161, 163, 179, 203, 248, 256], "mai": [4, 8, 19, 21, 26, 62, 74, 77, 91, 117, 120, 122, 126, 127, 136, 153, 185, 191, 192, 232, 241, 243, 246, 248, 249, 255, 256, 262], "encount": [4, 120], "thu": [4, 8, 78, 118, 120, 123, 129, 130, 207, 210, 275], "retriev": [4, 6, 7, 8, 60, 78, 88, 91, 100, 118, 120, 125, 202, 231, 244, 246, 249, 250, 251, 254, 256, 259, 272], "addition": [4, 8, 100, 124, 137, 145, 150, 191, 212], "alongsid": [4, 215, 236], "infrastructur": [4, 6], "trigger": [4, 145, 275], "sha256": [4, 120, 201, 202, 256], "signatur": [4, 161, 163, 164, 201], "few": [4, 36, 84, 155, 156, 158, 179, 260], "download_url": [4, 89, 150], "repres": [4, 6, 78, 82, 84, 85, 120, 191, 192, 193, 196, 221, 235, 246, 272, 275], "fetch": [4, 6, 62, 74, 86, 88, 101, 140, 231, 246], "either": [4, 8, 36, 109, 118, 120, 122, 131, 135, 136, 137, 145, 155, 163, 174, 178, 181, 195, 247, 273], "present": [4, 13, 36, 45, 50, 77, 79, 88, 89, 101, 102, 120, 137, 153, 155, 178, 187, 249], "prefer": [4, 47, 48, 62, 67, 82, 97, 154, 184, 192, 209, 231, 259, 265, 266, 267, 273], "ahead": [4, 10], "Being": [4, 179], "might": [4, 6, 7, 10, 13, 17, 18, 26, 27, 29, 35, 36, 39, 40, 49, 50, 52, 56, 60, 62, 74, 77, 78, 79, 82, 84, 88, 90, 97, 99, 102, 103, 105, 106, 107, 109, 118, 120, 123, 127, 130, 131, 133, 134, 135, 136, 139, 140, 141, 150, 151, 153, 170, 181, 195, 209, 221, 225, 226, 241, 246, 254, 259, 260, 265, 266, 270, 274], "exclude_url": [4, 88, 89, 150], "start": [4, 5, 6, 17, 29, 45, 54, 55, 60, 62, 78, 97, 109, 119, 120, 135, 136, 151, 153, 154, 159, 162, 170, 200, 202, 212, 217, 221, 240, 241, 244, 254, 265, 266, 267, 270, 271, 272, 274, 275], "begin": [4, 74, 89, 150, 151, 243, 250], "someth": [4, 6, 13, 18, 39, 40, 47, 48, 50, 67, 74, 78, 84, 85, 107, 118, 120, 127, 130, 131, 133, 135, 136, 140, 146, 149, 150, 151, 153, 159, 164, 181, 183, 192, 211, 217, 231, 244, 246, 247, 265, 266, 267, 271, 272, 274], "A": [4, 6, 13, 47, 52, 56, 59, 69, 74, 84, 88, 89, 91, 95, 99, 100, 103, 106, 107, 112, 116, 118, 120, 124, 126, 128, 135, 137, 139, 140, 141, 145, 150, 151, 158, 162, 170, 175, 178, 179, 189, 192, 195, 200, 202, 206, 223, 226, 235, 240, 244, 247, 250, 252, 253, 255, 257, 258, 259, 263, 265, 268, 271, 273, 275], "put": [4, 6, 17, 29, 36, 62, 88, 89, 94, 109, 120, 131, 133, 136, 140, 149, 150, 151, 156, 163, 196, 215, 216, 218, 254, 260, 263, 267, 268, 272], "its": [4, 13, 24, 29, 31, 36, 39, 40, 50, 59, 60, 62, 63, 74, 77, 81, 83, 84, 85, 86, 87, 88, 90, 91, 97, 101, 102, 110, 112, 120, 123, 131, 135, 136, 137, 140, 142, 149, 150, 151, 159, 161, 162, 179, 191, 192, 195, 207, 226, 243, 245, 247, 248, 254, 263, 265, 267, 268, 271], "strongli": [4, 8, 62, 82, 120, 123, 154, 221, 256], "recommend": [4, 5, 6, 7, 8, 13, 24, 29, 31, 35, 36, 54, 55, 60, 63, 74, 78, 82, 84, 89, 97, 102, 103, 107, 110, 118, 120, 123, 128, 129, 134, 135, 137, 138, 140, 150, 151, 155, 162, 179, 191, 203, 235, 239, 240, 241, 249, 252, 254, 259, 265, 271, 273], "below": [4, 5, 6, 8, 67, 74, 82, 84, 85, 88, 125, 137, 140, 148, 150, 183, 185, 186, 192, 200, 209, 212, 215, 253], "relev": [4, 21, 56, 59, 61, 65, 66, 70, 71, 72, 73, 84, 150, 251, 252, 253, 255, 256, 260, 262, 263, 271], "els": [4, 6, 17, 26, 31, 39, 40, 52, 74, 118, 120, 134, 135, 136, 140, 151, 178, 187, 235, 246, 248, 251, 252, 255, 260, 262], "each": [4, 6, 8, 17, 18, 21, 24, 26, 27, 39, 40, 45, 52, 54, 62, 66, 74, 77, 89, 95, 97, 102, 109, 118, 120, 123, 125, 131, 133, 135, 136, 146, 151, 152, 153, 159, 161, 185, 186, 191, 192, 204, 209, 216, 221, 233, 235, 245, 248, 253, 254, 255, 256, 259, 260, 265, 271, 272, 273], "blob": [4, 69, 275], "belong": [4, 88, 91, 103, 107, 120, 178, 180, 191, 200, 212, 245, 254, 260, 263, 275], "artifactori": [4, 13, 63, 74, 118, 156, 239, 241], "describ": [4, 5, 6, 8, 10, 45, 55, 81, 83, 86, 98, 120, 131, 133, 139, 149, 187, 192, 193, 221, 267, 274], "approach": [4, 6, 8, 13, 29, 41, 50, 60, 74, 77, 78, 79, 82, 84, 102, 120, 133, 134, 135, 136, 137, 138, 140, 151, 153, 159, 179, 189, 191, 203, 231, 245, 252, 259, 260, 271, 274], "deal": [4, 9, 79, 123, 135], "worker": 4, "abov": [4, 5, 6, 7, 8, 13, 16, 52, 54, 59, 60, 74, 83, 84, 85, 88, 91, 100, 106, 109, 112, 118, 120, 131, 132, 135, 137, 146, 150, 153, 163, 179, 185, 186, 189, 191, 192, 196, 197, 200, 215, 225, 235, 246, 255, 256, 261, 262, 265, 267, 270, 271, 272, 274, 275], "travers": [4, 148], "until": [4, 8, 67, 78, 148, 149, 154, 157, 254], "client": [4, 7, 13, 31, 50, 67, 74, 77, 86, 89, 110, 117, 118, 120, 149, 162, 240, 241, 246, 254], "regard": [4, 74, 79, 106, 153, 162, 200, 261], "capabl": [4, 7, 101, 102, 151, 192, 248, 275], "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, 50, 52, 54, 55, 56, 59, 60, 69, 74, 76, 77, 79, 82, 83, 85, 88, 89, 90, 91, 95, 97, 98, 99, 100, 102, 103, 105, 106, 107, 108, 109, 112, 113, 116, 117, 118, 120, 124, 131, 132, 135, 136, 137, 139, 140, 143, 144, 146, 150, 151, 152, 153, 160, 161, 162, 179, 185, 187, 189, 190, 191, 192, 195, 197, 198, 200, 202, 204, 207, 210, 212, 215, 221, 223, 225, 226, 227, 228, 231, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 273, 274, 275], "3": [4, 10, 19, 21, 26, 29, 35, 38, 39, 40, 41, 42, 47, 48, 49, 52, 60, 62, 67, 74, 77, 83, 84, 85, 90, 97, 102, 103, 105, 106, 107, 109, 117, 118, 120, 124, 131, 141, 146, 151, 153, 179, 184, 185, 191, 192, 197, 202, 212, 215, 217, 244, 245, 247, 248, 249, 252, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 271, 273, 274, 275], "ruben": 4, "conan2": [4, 21, 24, 29, 42, 62, 77, 89, 95, 100, 110, 155, 210, 244, 246, 252, 253, 254, 255, 256, 258, 261], "zlib0f4e45286ecd1": 4, "src": [4, 6, 16, 17, 19, 21, 26, 27, 29, 35, 38, 42, 45, 50, 52, 54, 55, 56, 59, 83, 88, 120, 128, 133, 134, 191, 200, 215, 244, 248, 249, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 272], "net": [4, 89, 95, 100, 118, 150], "fossil": 4, "gz": [4, 120, 200, 202], "madler": 4, "v1": [4, 187], "newli": 4, "therefor": [4, 8, 67, 123, 200, 235, 258], "dure": [4, 8, 26, 56, 60, 67, 79, 120, 127, 137, 189, 221, 254, 266, 273], "address": [4, 8, 135, 153, 269], "scenario": [4, 7, 40, 41, 42, 60, 62, 84, 120, 122, 123, 136, 137, 151, 157, 248, 259, 275], "ce": [4, 74, 239], "simpl": [4, 13, 17, 24, 36, 42, 43, 44, 49, 53, 56, 57, 59, 60, 66, 71, 74, 77, 78, 90, 97, 109, 118, 120, 121, 122, 124, 132, 137, 146, 159, 162, 179, 214, 215, 216, 218, 236, 239, 241, 243, 246, 248, 250, 254, 256, 257, 258, 262, 265, 266, 273, 274], "suffici": [4, 118], "instruct": [4, 62, 67, 77, 121, 134, 153, 246], "author": [4, 6, 8, 50, 60, 95, 132, 154, 254], "agent": [4, 60, 97], "done": [5, 6, 36, 38, 50, 52, 74, 77, 78, 81, 97, 105, 107, 112, 118, 122, 123, 124, 131, 136, 137, 139, 140, 149, 151, 153, 155, 160, 161, 162, 171, 179, 183, 191, 192, 196, 197, 198, 207, 238, 245, 247, 248, 252, 254, 255, 263, 265, 266, 267, 268, 273, 274, 275], "much": [5, 6, 78, 122, 129, 140, 179, 254, 266, 275], "fulli": [5, 35, 60, 74, 105, 107, 120, 137, 138, 139, 161, 185, 186, 192, 197, 198, 208, 209, 210, 212, 215, 216, 217, 225, 226, 227, 228, 233, 265, 275], "fork": [5, 8, 120], "maintain": [5, 8, 18, 74, 97, 105, 120, 135, 146, 151, 162, 212, 247, 268], "pr": [5, 42, 49, 56, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 151, 215, 217, 245], "2": [5, 6, 8, 10, 13, 17, 26, 35, 39, 40, 41, 42, 45, 48, 54, 55, 60, 62, 63, 67, 74, 76, 77, 79, 83, 85, 88, 89, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 112, 113, 116, 117, 118, 120, 124, 129, 131, 132, 134, 136, 137, 139, 143, 146, 150, 151, 152, 153, 160, 163, 179, 185, 191, 197, 198, 202, 203, 207, 210, 212, 215, 223, 225, 228, 244, 245, 246, 247, 248, 249, 251, 254, 258, 259, 265, 270, 271, 272, 273, 274], "13": [5, 6, 13, 24, 35, 42, 83, 85, 88, 91, 99, 100, 102, 103, 106, 110, 112, 113, 116, 117, 124, 146, 151, 153, 160, 210, 244, 247, 251], "part": [5, 17, 21, 31, 38, 39, 40, 42, 56, 59, 60, 74, 84, 89, 90, 91, 103, 112, 120, 121, 124, 127, 129, 130, 133, 134, 135, 137, 150, 151, 153, 179, 237, 239, 251, 252, 253, 254, 255, 256, 262, 263, 266, 267, 272, 274], "mostli": [5, 31, 45, 120, 137, 153, 162, 235], "proprietari": [5, 74, 154, 211], "idea": [5, 131, 150, 271, 275], "further": [5, 82, 120, 124, 153, 192, 275], "soon": [5, 63, 74, 275], "straightforward": [5, 81, 90, 102, 131, 264, 270], "mani": [5, 6, 45, 49, 50, 60, 62, 69, 74, 77, 78, 79, 84, 105, 109, 131, 151, 179, 196, 242, 265, 268, 271, 275], "advantag": [5, 62, 160, 186, 226, 248], "mitig": [5, 50, 196], "risk": [5, 50, 60, 77, 150, 273], "befor": [5, 6, 7, 10, 26, 45, 54, 55, 60, 116, 120, 122, 126, 131, 133, 140, 143, 151, 161, 162, 179, 196, 200, 209, 214, 217, 221, 227, 231, 235, 245, 246, 248, 249, 252, 253, 256, 260, 267, 271, 275], "No": [5, 24, 50, 120, 127, 246, 258, 274], "central": [5, 74, 237], "outag": 5, "adapt": [5, 81, 109, 110, 120], "perfectli": [5, 50, 77, 146], "minut": [5, 103, 112], "week": [5, 103, 112, 268], "appli": [5, 8, 49, 50, 52, 78, 79, 84, 86, 87, 88, 90, 94, 97, 99, 100, 102, 105, 106, 107, 110, 115, 118, 120, 122, 123, 127, 130, 131, 136, 140, 150, 151, 153, 185, 192, 194, 204, 217, 245, 246, 247, 249, 250, 252, 253, 258, 259, 262, 270, 273, 275], "wouldn": [5, 50, 62, 67, 120, 189], "elimin": [5, 265], "attack": 5, "audit": [5, 8], "analyz": [5, 31, 54, 156], "diff": [5, 52, 99, 103, 204], "trim": [5, 106], "fire": [5, 97, 140, 179, 267], "effici": [5, 35, 55, 74, 82, 120, 135, 225, 244, 275], "thank": [5, 26, 39, 40, 45, 55, 84, 156, 159, 259], "secondari": [5, 74], "Then": [5, 6, 13, 24, 26, 27, 29, 41, 45, 60, 67, 69, 78, 97, 109, 124, 126, 127, 132, 135, 136, 149, 151, 160, 161, 191, 193, 200, 207, 217, 226, 237, 240, 241, 243, 244, 245, 247, 248, 250, 253, 254, 255, 261, 263, 269, 270, 273, 274], "good": [5, 19, 60, 74, 75, 82, 107, 109, 118, 120, 122, 124, 125, 131, 132, 136, 137, 150, 170, 226, 228, 239, 251, 252, 255, 262, 266, 270, 271, 274], "subject": [6, 7, 13, 31, 74, 95, 101, 117, 124, 126, 127, 128, 135, 149, 151, 153, 154, 157, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 191, 193, 210, 214, 215, 216, 217], "stabil": [6, 7, 13, 31, 69, 74, 101, 103, 110, 117, 124, 126, 127, 128, 135, 148, 149, 151, 153, 154, 157, 161, 163, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 193, 200, 210, 214, 215, 216, 268], "typic": [6, 8, 13, 27, 39, 40, 50, 59, 60, 62, 67, 77, 84, 120, 126, 129, 130, 131, 133, 136, 137, 151, 154, 163, 183, 184, 190, 191, 193, 196, 212, 218, 224, 229, 235, 245, 246, 248, 252, 253, 255, 258, 259, 260, 265, 266, 268, 275], "compos": [6, 102, 136, 150, 151, 167, 174, 184, 192, 195, 231, 258], "But": [6, 7, 13, 29, 39, 40, 50, 60, 74, 84, 94, 103, 108, 120, 123, 131, 142, 144, 145, 151, 159, 163, 191, 212, 215, 245, 247, 248, 254, 258, 260, 270, 271, 272], "normal": [6, 35, 42, 71, 77, 112, 120, 128, 159, 162, 195, 265, 273], "consumpt": [6, 21, 74, 121, 146, 248], "complianc": [6, 123, 275], "technic": [6, 120], "busi": [6, 275], "reason": [6, 8, 41, 50, 60, 77, 78, 90, 94, 107, 140, 154, 260, 267, 270, 272], "suit": [6, 146, 151, 218, 252, 258], "heavi": [6, 29, 74, 120, 122, 158], "pdb": [6, 29], "coverag": [6, 191, 275], "sanit": 6, "analysi": [6, 89, 150], "exact": [6, 47, 48, 78, 82, 88, 105, 107, 112, 120, 123, 151, 175, 186, 200, 226, 231, 247, 254, 265, 266, 267, 272, 274], "relat": [6, 45, 62, 71, 79, 120, 131, 150, 175, 186, 192, 200, 212, 221, 248, 253, 254, 266, 275], "There": [6, 7, 17, 21, 27, 29, 39, 40, 42, 50, 60, 62, 67, 74, 76, 77, 84, 89, 97, 102, 109, 112, 118, 120, 122, 129, 133, 134, 135, 143, 144, 150, 155, 162, 179, 191, 192, 195, 218, 235, 239, 240, 248, 252, 253, 255, 259, 260, 265, 269, 270, 272, 275], "regul": 6, "larger": 6, "happen": [6, 8, 13, 19, 31, 49, 60, 77, 85, 90, 112, 122, 129, 130, 131, 134, 135, 136, 149, 154, 155, 159, 196, 244, 247, 249, 253, 254, 258, 265, 267, 270, 271, 273, 275], "lot": [6, 8, 262, 273, 275], "impact": [6, 8], "experi": [6, 120, 122, 241, 273, 275], "cost": [6, 78], "furthermor": [6, 54, 78, 275], "append": [6, 26, 49, 62, 89, 118, 120, 136, 138, 139, 150, 151, 157, 163, 189, 191, 192, 195, 196, 200, 208, 209, 210, 226, 227, 260], "highlight": [6, 26, 145, 195, 215, 256], "probabl": [6, 31, 192, 218, 225, 247], "scan": [6, 205], "recipe_metadata_fold": 6, "0": [6, 7, 8, 10, 13, 16, 17, 18, 19, 21, 24, 26, 27, 31, 35, 38, 39, 40, 41, 42, 45, 47, 49, 50, 52, 55, 56, 59, 60, 63, 67, 74, 76, 79, 82, 83, 88, 91, 95, 97, 99, 100, 101, 102, 103, 105, 106, 107, 108, 109, 110, 117, 118, 120, 124, 131, 132, 135, 137, 140, 141, 143, 144, 146, 151, 153, 160, 161, 179, 189, 190, 191, 192, 195, 197, 198, 200, 202, 204, 207, 212, 215, 221, 223, 225, 226, 227, 228, 235, 241, 242, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 273, 274, 275], "def": [6, 16, 17, 18, 19, 21, 26, 31, 36, 38, 39, 40, 41, 42, 48, 49, 50, 52, 54, 56, 59, 60, 82, 84, 102, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 151, 153, 154, 157, 158, 159, 160, 161, 162, 163, 164, 179, 181, 183, 184, 185, 186, 189, 190, 191, 192, 193, 195, 196, 197, 198, 200, 202, 204, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 218, 220, 221, 223, 224, 225, 226, 227, 228, 231, 233, 235, 245, 247, 248, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, 262, 263, 266, 267, 270, 271, 272, 274], "Or": [6, 89, 122, 131, 151, 192, 211, 227, 233], "cmake_layout": [6, 17, 18, 19, 26, 35, 42, 47, 52, 60, 89, 146, 150, 180, 188, 192, 218, 245, 248, 254, 256, 258, 260, 263, 265, 266, 267], "mybuild": [6, 120], "recipe_fold": [6, 16, 18, 60, 95, 100, 129, 130, 131, 132, 138, 139], "dst": [6, 17, 38, 59, 120, 128, 200, 261], "join": [6, 16, 17, 18, 19, 36, 39, 40, 52, 59, 77, 120, 130, 132, 133, 134, 136, 138, 139, 142, 151, 162, 163, 179, 191, 192, 195, 200, 218, 248, 252, 258, 259, 260, 261, 263, 267], "stuff": 6, "srclog": 6, "most": [6, 7, 13, 18, 21, 29, 31, 35, 39, 40, 45, 54, 55, 63, 65, 66, 70, 71, 72, 73, 74, 78, 84, 86, 90, 103, 104, 106, 120, 125, 134, 135, 137, 138, 147, 150, 157, 179, 190, 192, 193, 200, 218, 227, 235, 236, 244, 251, 260, 263, 264, 266, 270, 271], "mylog": 6, "build_fold": [6, 17, 59, 78, 95, 100, 101, 131, 133, 134, 162, 190, 200, 215, 220, 258, 259, 260, 261], "note": [6, 13, 17, 18, 31, 35, 36, 38, 39, 40, 47, 48, 49, 50, 56, 59, 62, 67, 79, 82, 84, 88, 97, 98, 100, 102, 105, 107, 109, 112, 118, 120, 122, 132, 135, 136, 140, 142, 145, 146, 151, 153, 161, 163, 179, 185, 191, 192, 206, 221, 235, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 258, 261, 263, 265, 266, 267, 268, 270, 271, 272, 273, 275], "clutter": [6, 218], "accross": [6, 82], "sai": [6, 13, 16, 18, 38, 41, 52, 84, 88, 99, 102, 107, 120, 150, 151, 185, 225, 253, 267], "no_copy_sourc": [6, 122, 258], "As": [6, 8, 17, 21, 24, 39, 40, 42, 45, 54, 59, 74, 77, 83, 84, 85, 88, 97, 98, 103, 108, 109, 120, 140, 151, 153, 154, 161, 179, 181, 186, 191, 192, 196, 215, 235, 244, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 259, 261, 262, 263, 264, 265, 267, 270, 271, 272, 274, 275], "post_export": [6, 162], "post_sourc": [6, 162], "post_build": [6, 156, 162], "similar": [6, 8, 18, 56, 59, 62, 69, 74, 91, 94, 107, 116, 118, 120, 133, 141, 151, 159, 179, 191, 193, 195, 231, 244, 251, 253, 256, 258, 267, 273], "To": [6, 24, 26, 29, 31, 36, 55, 60, 62, 67, 68, 77, 103, 107, 110, 112, 120, 124, 132, 133, 140, 145, 150, 151, 154, 157, 162, 185, 190, 191, 192, 197, 198, 200, 207, 208, 209, 218, 244, 246, 248, 249, 255, 256, 265, 267, 271, 273, 274], "achiev": [6, 8, 39, 60, 78, 122, 135, 161, 186, 191, 200, 226, 243, 248, 254, 258, 271, 274, 275], "didn": [6, 47, 50, 60, 77, 83, 254, 258], "far": [6, 246, 247, 248, 251, 253, 265, 275], "r": [6, 13, 31, 35, 60, 69, 77, 83, 85, 87, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 106, 112, 113, 115, 116, 231, 240, 242, 247, 268, 272], "da39a3ee5e6b4b0d3255bfef95601890afd80709": [6, 31, 258], "By": [6, 21, 41, 48, 56, 74, 77, 82, 87, 88, 89, 90, 94, 97, 99, 100, 102, 103, 106, 110, 115, 116, 118, 120, 136, 149, 150, 155, 179, 191, 192, 195, 207, 209, 210, 212, 214, 221, 231, 235, 271, 272], "situat": [6, 13, 35, 39, 40, 84, 105, 112, 120, 122, 134, 135, 139, 151, 179, 191, 212, 269, 270], "sometim": [6, 7, 29, 52, 77, 90, 120, 141, 247, 252, 256, 258, 264], "mix": [6, 84, 179], "recov": [6, 60, 200], "previous": [6, 13, 24, 31, 36, 62, 102, 107, 149, 151, 153, 192, 195, 217, 249, 256, 259, 270], "under": [6, 8, 36, 65, 70, 72, 73, 74, 85, 118, 120, 133, 135, 151, 159, 162, 204, 221, 231, 235, 241, 244, 254, 259, 264, 273], "collect": [6, 36, 100, 102, 131, 136, 140, 200, 210, 253, 262], "recal": [6, 50, 105, 107, 112, 124, 127, 151, 155, 185, 189, 192], "At": [6, 10, 21, 26, 67, 74, 78, 107, 120, 131, 153, 200, 208, 216, 217], "moment": [6, 7, 35, 78, 118, 120, 131, 136, 153, 208, 216], "addit": [6, 8, 62, 63, 89, 90, 104, 120, 137, 150, 151, 153, 175, 182, 192, 200, 202, 209, 221, 226, 227, 228, 248, 249, 255], "quit": [6, 150, 179, 241], "ineffici": 6, "prone": 6, "sensit": 6, "race": 6, "condit": [6, 8, 78, 102, 107, 120, 124, 129, 130, 132, 134, 140, 146, 185, 186, 243, 252, 253, 271, 273], "metatada": 6, "best": [6, 7, 13, 35, 60, 82, 84, 88, 90, 103, 105, 110, 122, 123, 124, 127, 128, 129, 130, 131, 132, 134, 135, 136, 137, 140, 143, 151, 154, 174, 179, 249, 260, 270, 272, 274], "mandatori": [6, 36, 50, 56, 59, 84, 105, 109, 120, 158, 161, 179, 254], "frequent": [6, 8, 200], "excepcion": 6, "decompress": [6, 200, 202, 244, 249, 264], "consid": [6, 7, 8, 21, 45, 74, 82, 83, 84, 88, 97, 120, 123, 125, 157, 185, 187, 192, 221, 248, 272], "zip": [6, 8, 19, 52, 89, 110, 116, 120, 140, 154, 200, 202, 239, 240, 250, 266], "yourself": [6, 56, 59], "categori": [6, 245], "illustr": [6, 83, 274], "later": [6, 7, 13, 26, 67, 69, 90, 97, 98, 100, 120, 123, 127, 130, 136, 145, 151, 175, 200, 231, 237, 242, 247, 248, 252, 253, 259, 269, 271], "necessarili": [6, 120, 271], "ton": 6, "assum": [6, 29, 35, 56, 67, 74, 78, 82, 83, 88, 91, 99, 103, 112, 116, 120, 132, 136, 141, 151, 153, 155, 157, 185, 191, 215, 225, 244, 246, 248, 249, 274], "stage": [6, 26, 62, 90, 94, 153, 162], "applic": [6, 8, 27, 38, 45, 48, 54, 55, 56, 59, 62, 74, 77, 83, 84, 100, 120, 124, 135, 137, 143, 191, 192, 198, 200, 212, 225, 236, 241, 243, 244, 249, 250, 254, 257, 258, 260, 263, 265, 270, 275], "cp": [6, 35, 60], "todo": [6, 170], "hear": 6, "feedback": [6, 74, 79, 273], "continu": [7, 74, 78, 79, 105, 118, 238, 267, 271], "conveni": [7, 13, 69, 103, 109, 120, 140, 141, 151, 161, 164, 179, 191, 195, 197, 198, 247, 260, 263], "recent": [7, 21, 103, 112, 268], "transfer": [7, 8, 50, 118, 275], "paralllel": 7, "pkg1df6df1a3b33c": 7, "9a4eb3c8701508aa9458b1a73d0633783ecc2270": [7, 103], "b": [7, 21, 24, 29, 42, 52, 62, 87, 88, 90, 94, 97, 99, 100, 102, 106, 110, 115, 140, 150, 204, 210, 215, 245, 252, 253, 255, 256, 258, 261, 267], "pkgd573962ec2c90": 7, "conan_cache_sav": 7, "well": [7, 60, 74, 76, 94, 103, 117, 120, 133, 153, 189, 191, 192, 212, 221, 254, 275], "pkg773791b8c97aa": 7, "substitut": [7, 155, 235], "storag": [7, 74, 88, 118, 150, 156, 202, 241, 272], "transitori": 7, "strategi": [7, 8, 60, 135, 140, 266, 275], "proof": 7, "stabl": [7, 62, 103, 109, 110, 120, 150, 151], "expect": [7, 10, 42, 45, 60, 78, 94, 99, 102, 120, 122, 140, 150, 153, 201, 218, 254, 256, 266, 272], "fantast": 8, "1500": 8, "contribut": [8, 74, 196, 204, 236, 237], "great": [8, 62, 74, 77, 240, 275], "knowledg": [8, 61, 74, 77], "wide": [8, 62, 84, 246, 248, 249, 254], "variant": [8, 70], "On": [8, 45, 56, 59, 84, 118, 141, 153, 217, 241, 244, 245, 246, 254], "top": [8, 137, 151, 231], "contributor": [8, 74], "qnx": 8, "greatest": 8, "univers": 8, "promis": 8, "unlik": [8, 91, 120, 192, 246], "snapshot": [8, 247, 271], "contrari": 8, "e": [8, 42, 62, 74, 77, 88, 91, 92, 95, 97, 99, 100, 102, 103, 106, 109, 112, 116, 118, 120, 124, 150, 151, 152, 153, 183, 187, 189, 192, 200, 207, 209, 210, 212, 215, 221, 225, 226, 235, 255, 256, 275], "g": [8, 35, 42, 47, 48, 77, 87, 88, 91, 92, 97, 99, 100, 102, 103, 106, 109, 112, 116, 118, 120, 150, 151, 152, 153, 160, 171, 183, 187, 189, 192, 197, 200, 207, 209, 210, 212, 215, 221, 225, 226, 235, 244, 245, 246, 248, 249, 256, 265, 266, 267], "opencv": [8, 118, 141, 158], "greater": 8, "remain": [8, 118, 120, 155, 185, 195, 221], "older": [8, 74, 105, 108, 272, 273, 274], "push": [8, 60, 74, 231], "ecosystem": [8, 79, 84, 217], "hand": [8, 74, 84, 106, 122, 141], "combin": [8, 87, 90, 97, 99, 100, 102, 106, 108, 110, 115, 134, 140, 274], "mean": [8, 13, 29, 31, 35, 39, 40, 50, 62, 67, 74, 77, 78, 82, 83, 84, 88, 91, 99, 100, 101, 102, 103, 112, 116, 120, 122, 124, 127, 131, 135, 136, 140, 143, 146, 151, 153, 155, 157, 158, 170, 178, 179, 185, 191, 195, 196, 200, 207, 209, 218, 235, 246, 247, 258, 262, 264, 267, 270, 271, 272, 273], "languag": [8, 38, 42, 45, 49, 54, 55, 74, 186, 244], "pip": [8, 60, 118, 241], "pypi": [8, 62], "npm": 8, "cargo": 8, "discourag": [8, 88, 120, 154, 179, 221, 256], "unconstrain": 8, "manner": [8, 265], "guidelin": [8, 61, 62, 74, 75, 180], "seri": [8, 120, 264], "highli": [8, 24, 31, 36, 45, 54, 55], "mention": [8, 95, 100, 135, 137, 151, 185, 191, 209, 216, 221, 227, 252, 262, 267, 275], "earlier": [8, 74, 273], "caus": [8, 78, 120, 124, 137, 143, 191, 212, 254, 256, 270, 271, 272], "solver": 8, "actual": [8, 13, 19, 39, 40, 74, 77, 84, 94, 112, 116, 122, 131, 137, 141, 151, 153, 178, 196, 197, 198, 200, 235, 242, 247, 267, 270, 271, 274], "4": [8, 10, 21, 26, 48, 54, 77, 82, 83, 100, 103, 107, 117, 118, 120, 125, 131, 135, 141, 146, 150, 151, 153, 179, 192, 215, 245, 248, 251, 258, 268, 274], "5": [8, 10, 67, 77, 82, 89, 97, 102, 105, 106, 107, 108, 120, 124, 131, 135, 151, 153, 164, 202, 225, 247, 271, 273, 274], "greatli": [8, 275], "encourag": [8, 74, 120, 254, 266], "consist": [8, 18, 82, 84, 89, 90, 270, 271, 274, 275], "rust": 8, "technologi": [8, 153], "upstream": [8, 60, 120, 124, 131, 137, 178, 191, 265, 270], "period": [8, 268], "downtim": 8, "schedul": 8, "effort": [8, 131, 275], "made": [8, 56, 88, 275], "unschedul": 8, "rare": [8, 122, 136, 138], "treat": [8, 89, 137, 150, 153, 200], "urgenc": 8, "occasion": 8, "suffer": 8, "enterpris": [8, 118, 153, 239, 241], "strong": [8, 74, 84, 151], "uptim": 8, "protect": [8, 62, 119, 153], "transient": 8, "network": [8, 21, 89, 118, 147], "extern": [8, 19, 26, 49, 62, 250, 254, 256, 259, 261, 272], "These": [8, 21, 31, 45, 72, 74, 82, 89, 90, 102, 118, 129, 130, 131, 133, 145, 147, 150, 151, 154, 155, 159, 175, 190, 192, 193, 207, 208, 212, 221, 245, 246, 248, 253, 254, 258, 259, 263, 267, 271, 275], "industri": [8, 79], "financ": 8, "robot": 8, "embed": [8, 74, 82, 83, 120, 137, 153], "stronger": 8, "licens": [8, 36, 55, 74, 95, 100, 101, 102, 109, 129, 130, 131, 132, 134, 162, 239, 244, 250, 254, 262, 266, 272], "medic": 8, "automot": 8, "advis": [8, 138, 139, 151], "instanc": [8, 31, 42, 67, 95, 100, 118, 120, 124, 133, 134, 135, 150, 151, 159, 181, 183, 187, 191, 192, 195, 196, 197, 198, 209, 217, 221, 223, 224, 225, 228, 231, 255, 263], "backport": [8, 204, 275], "suitabl": [8, 153], "review": [8, 67, 257, 258, 260, 267], "tight": 8, "subsect": 8, "come": [10, 56, 59, 62, 131, 151, 159, 187, 192, 212, 221, 240, 246, 259, 275], "glanc": 10, "becom": [10, 62, 84, 129, 130, 179, 272, 275], "unfeas": 10, "benefit": 10, "interest": [10, 13, 74, 88, 90], "pick": [10, 247], "action": [10, 31, 54, 60, 67, 118, 247, 255], "summar": [10, 79, 275], "libpng": [10, 97, 101, 185], "libmysqlcli": 10, "publish": 10, "easi": [10, 26, 64, 68, 69, 74, 78, 85, 140, 247, 254, 266, 270], "invoc": [10, 13, 36, 65, 66, 71, 72, 73, 78, 122, 145, 156, 158, 183, 184, 185, 186, 189, 192, 197, 207, 214, 215, 224, 226], "8": [10, 77, 82, 102, 113, 120, 125, 131, 151, 153, 184, 197, 198, 200, 204, 221, 225, 226, 228, 247, 251, 252, 253, 262, 263, 273], "493d36bd9641e15993479706dea3c341": 10, "6": [10, 24, 54, 62, 74, 77, 82, 103, 117, 118, 125, 140, 143, 153, 185, 204, 211, 245, 247, 248, 249], "40": [10, 103, 272], "2ba025f1324ff820cf68c9e9c94b7772": 10, "lz4": [10, 36], "9": [10, 45, 52, 77, 82, 89, 106, 124, 125, 131, 146, 150, 151, 153, 202, 245, 273], "b572cad582ca4d39c0fccb5185fbb691": 10, "openssl": [10, 21, 74, 83, 85, 91, 102, 120, 131, 146, 212, 215], "f2eb8e67d3f5513e8a9b5e3b62d87ea1": 10, "f2eb8e6ve24ff825bca32bea494b77dd": 10, "zstd": [10, 36], "54d99a44717a7ff82e9d37f9b6ff415c": 10, "27": [10, 103, 259], "de7930d308bf5edde100f2b1624841d9": 10, "18": [10, 26, 42, 83, 85, 100, 103, 124, 153], "afterward": 10, "go": [10, 17, 21, 24, 26, 27, 29, 31, 36, 45, 47, 48, 52, 54, 55, 67, 94, 97, 108, 129, 137, 146, 192, 218, 225, 242, 244, 257, 258, 260, 263, 265, 267, 270, 273], "usual": [10, 62, 120, 137, 142, 151, 156, 161, 185, 195, 265, 267, 271], "behaviour": [10, 118, 151, 191, 235, 253, 254, 255], "googl": [11, 42, 43, 54, 66, 80, 89, 150, 180, 204, 214, 215, 216], "ndk": [11, 25, 26, 64, 120, 136, 181, 192, 221, 245], "macro": [11, 37, 45], "modul": [11, 37, 45, 62, 69, 118, 120, 131, 132, 151, 156, 160, 179, 191, 215], "concaten": [13, 91, 116], "11": [13, 24, 55, 77, 85, 88, 89, 95, 99, 102, 103, 112, 113, 120, 131, 137, 146, 150, 151, 152, 153, 160, 185, 191, 197, 198, 204, 207, 212, 215, 225, 228, 244, 245, 246, 247, 248, 249, 251, 252, 258, 262, 263, 266, 273], "sent": 13, "12": [13, 21, 24, 26, 27, 95, 103, 112, 113, 146, 151, 153, 187, 204, 212, 221, 241, 247, 258, 259, 272], "b1fd071d8a2234a488b3ff74a3526f81": 13, "1667396813": [13, 106], "987": 13, "ae9eaf478e918e6470fe64a4d8d4d9552b0b3606": [13, 103], "19808a47de859c2408ffcf8e5df1fdaf": 13, "arch": [13, 16, 17, 18, 24, 26, 27, 38, 41, 42, 49, 52, 56, 59, 60, 62, 73, 77, 84, 85, 88, 89, 91, 95, 99, 100, 101, 103, 110, 112, 116, 120, 123, 126, 127, 132, 135, 136, 141, 144, 150, 151, 153, 161, 164, 172, 181, 183, 184, 185, 186, 189, 191, 192, 195, 197, 198, 207, 208, 209, 210, 212, 214, 215, 216, 217, 221, 224, 225, 226, 227, 228, 233, 235, 244, 245, 246, 247, 248, 252, 254, 256, 258, 259, 260, 263, 271, 272], "x86_64": [13, 24, 26, 27, 35, 42, 56, 59, 77, 84, 85, 95, 99, 103, 110, 126, 133, 141, 151, 153, 161, 164, 184, 185, 187, 192, 197, 198, 235, 244, 245, 246, 248, 249, 252, 254, 259, 260, 263, 266, 271, 272], "singl": [13, 26, 47, 48, 50, 74, 82, 86, 91, 97, 107, 110, 120, 157, 162, 175, 185, 189, 190, 191, 192, 193, 197, 198, 200, 221, 225, 248, 256, 259, 267, 275], "almost": [13, 82, 86], "myremot": [13, 91, 112, 116, 118, 149, 268, 272], "slow": 13, "promot": 13, "magnitud": 13, "dedupl": 13, "One": [13, 74, 77, 120, 160, 186, 192, 200, 221, 226, 245, 252], "mypkg": [13, 50, 84, 88, 102, 109, 120, 138, 140, 141, 151, 160, 191, 195, 215], "cmake_lib": [13, 27, 83, 88, 109, 190, 254, 259, 272], "represent": 13, "f57cc9a1824f47af2f52df0dbdd440f6": 13, "2401fa1d188d289bb25c37cfa3317e13e377a351": [13, 88, 272], "75f44d989175c05bc4be2399edc63091": 13, "null": [13, 24, 26, 84, 95, 97, 101, 153], "known": [13, 50, 153, 202, 247, 258, 275], "destruct": 13, "natur": [13, 84, 270, 272], "cannot": [13, 27, 42, 60, 78, 84, 87, 90, 97, 99, 100, 102, 104, 105, 106, 115, 120, 121, 122, 123, 132, 140, 144, 146, 150, 155, 159, 179, 187, 191, 192, 193, 246, 254, 258, 259, 264, 270, 271], "OR": [13, 26, 88, 91, 103, 112, 116, 172, 227, 273], "leav": [13, 26, 84, 98, 112, 118, 131, 150, 153, 268], "subproject": [14, 15, 133, 267], "recreat": [16, 17, 18, 19, 21, 24, 29, 31, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 244, 245, 246, 247, 248, 249, 251, 252, 253, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267], "examples2": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 39, 40, 42, 45, 48, 49, 50, 52, 54, 55, 60, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271], "cd": [16, 17, 18, 19, 21, 24, 29, 31, 35, 36, 38, 39, 40, 41, 42, 45, 48, 49, 50, 52, 54, 55, 60, 62, 83, 191, 231, 244, 245, 246, 247, 248, 249, 251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263, 265, 266, 267, 270, 271, 272, 275], "conanfile_in_subfold": 16, "cmakelist": [16, 17, 18, 19, 21, 35, 38, 41, 42, 47, 48, 49, 50, 67, 68, 78, 88, 109, 120, 134, 189, 190, 191, 192, 218, 244, 248, 249, 251, 252, 254, 255, 256, 259, 260, 261, 262, 263, 265, 266, 267, 272, 275], "h": [16, 17, 18, 21, 26, 31, 42, 45, 50, 54, 55, 56, 59, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 134, 159, 200, 244, 245, 246, 251, 252, 253, 254, 255, 258, 259, 261, 262, 263, 265, 266, 267], "pkgsai": 16, "export_sources_fold": [16, 18, 19, 52, 130, 204], "cmake_fil": 16, "real": [17, 26, 60, 74, 79, 116, 136, 143, 200, 270, 274, 275], "editable_compon": 17, "greet": [17, 159, 221], "hello": [17, 18, 19, 26, 27, 31, 41, 47, 48, 50, 52, 54, 56, 59, 60, 83, 100, 103, 109, 120, 131, 159, 179, 189, 190, 191, 192, 214, 221, 242, 251, 252, 253, 254, 255, 256, 259, 261, 262, 263, 265, 266, 267, 272], "bye": [17, 18, 159, 265, 272], "greetingsconan": 17, "exports_sourc": [17, 19, 38, 41, 42, 49, 52, 56, 59, 60, 78, 129, 130, 179, 192, 231, 254, 256, 258, 260, 267, 272, 274], "src_folder": [17, 19, 190, 218, 266], "dir": [17, 19, 21, 27, 89, 109, 120, 136, 151, 193, 210, 217, 231, 252, 253, 254, 255, 258, 263, 266, 267], "bt": [17, 90], "package_fold": [17, 38, 39, 40, 41, 59, 95, 100, 101, 119, 128, 131, 133, 134, 136, 162, 183, 185, 192, 195, 200, 207, 210, 212, 220, 258, 259, 260, 261], "keep_path": [17, 59, 134, 200, 259, 260, 261], "cmake_file_nam": [17, 136, 191], "myg": 17, "cmake_target_nam": [17, 21, 136, 191, 255], "mygreet": 17, "myhello": [17, 255], "myby": 17, "beyond": 17, "filenam": [17, 48, 50, 87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 109, 115, 151, 161, 163, 196, 200, 202, 220], "besid": [17, 31, 48, 60, 70, 102, 150, 151, 153, 156, 185, 191, 193, 244, 253, 255, 256, 262, 266], "app": [17, 26, 38, 55, 73, 83, 84, 89, 107, 118, 131, 137, 150, 184, 186, 187, 189, 191, 192, 195, 207, 208, 209, 210, 212, 214, 215, 216, 217, 221, 224, 226, 233, 240, 244, 273, 274], "example2": 17, "find_packag": [17, 21, 26, 41, 42, 50, 67, 109, 191, 244, 249, 252, 255, 262, 263], "add_execut": [17, 21, 50, 67, 191, 244, 249, 252, 255, 263], "target_link_librari": [17, 21, 26, 42, 50, 67, 191, 244, 249, 252, 255, 262, 263], "adio": 17, "multiple_subproject": 18, "sibl": [18, 120], "myhead": [18, 202], "myutil": 18, "subprojectfold": 18, "reloc": 18, "100": [18, 19, 21, 27, 89, 118, 120, 244, 245, 246, 248, 249, 252, 253, 254, 255, 256, 258, 263, 266, 267], "world": [18, 27, 47, 48, 50, 52, 54, 56, 59, 60, 74, 79, 83, 120, 159, 192, 214, 251, 252, 254, 255, 256, 259, 262, 263, 265, 266, 272], "fine": [18, 19, 42, 107, 118, 120, 241, 254], "principl": [18, 270, 271], "must": [18, 59, 60, 62, 66, 78, 88, 104, 105, 107, 118, 120, 126, 127, 129, 130, 135, 140, 150, 151, 157, 158, 159, 163, 168, 175, 189, 191, 200, 204, 207, 209, 211, 231, 244, 247, 248, 249, 254, 255, 271], "third_party_librari": 19, "whose": [19, 86, 87, 90, 97, 99, 100, 102, 106, 115, 140, 151], "mypatch": 19, "sour": 19, "libhello": [19, 27, 52, 251, 252, 253, 255, 256, 259, 261, 262, 263, 266], "archiv": [19, 52, 88, 89, 140, 183, 200, 211, 256, 266], "head": [19, 52, 140, 231, 251, 252, 255, 256, 262, 266, 272], "strip_root": [19, 52, 200, 202, 256, 266], "awar": [19, 39, 40, 62, 68, 91, 97, 110, 126, 127, 148, 231, 251, 252, 253, 255, 256, 259, 262, 266, 275], "branch": [19, 62, 78, 139, 140, 231, 250, 251, 252, 255, 262, 266, 269, 272, 274], "tag": [19, 62, 78, 89, 120, 139, 140, 145, 150, 231, 251, 252, 254, 255, 256, 262, 266, 272, 274], "patch_fil": [19, 52, 204], "7kb": [19, 256, 266], "50": [19, 21, 27, 252, 253, 254, 255, 258, 263, 266, 267], "cmakefil": [19, 21, 27, 252, 253, 254, 255, 258, 263, 266, 267], "libcrypto": [21, 136], "libssl": [21, 136], "abstract": [21, 49, 50, 65, 72, 73, 78, 84, 184, 189, 207, 214, 224, 255], "rest": [21, 74, 84, 97, 108, 150, 151, 200, 203, 212, 239, 240], "game": [21, 109, 270, 271], "algorithm": [21, 202], "ai": [21, 109], "coupl": [21, 29, 123, 244, 252, 255, 263], "package_nam": [21, 109, 146, 185, 235, 240], "component_nam": [21, 191, 193, 215], "check_components_exist": 21, "15": [21, 38, 42, 47, 49, 67, 89, 110, 150, 153, 191, 235, 244, 246, 247, 248, 249, 252, 255, 261, 262, 263], "packagetest": [21, 252, 255, 263], "barbarian": [21, 100, 110], "d6e361d329116": 21, "j16": [21, 255], "25": [21, 35, 83, 84, 151, 153, 252, 255, 260, 272], "37": [21, 185], "libnetwork": 21, "libalgorithm": 21, "62": 21, "75": [21, 252, 255], "87": 21, "libai": 21, "librend": 21, "am": [21, 45, 270], "NOT": [21, 26, 120, 140, 179, 191, 232, 252], "stack": 21, "incomplet": [21, 105, 108, 153], "occur": [21, 145, 202], "22": [21, 83, 85, 103, 151, 153, 245, 247, 248, 249, 258, 259], "conanexcept": [21, 36, 60, 201, 202], "tbd": 22, "config_fil": 24, "propos": 24, "webo": 24, "sdk_version": [24, 153, 183, 184], "7": [24, 54, 60, 77, 82, 89, 125, 151, 153, 273], "cortexa15t2hf": 24, "rc": [24, 54, 66, 89, 150, 192, 214, 216, 227], "rewrit": [24, 106], "sub": [24, 104, 111, 120, 151, 159, 200, 266], "conan_hom": [24, 36, 78, 100, 110, 148, 150, 151, 152, 153, 160, 161, 162], "myuser": [24, 29, 42, 60, 120, 149, 151, 154], "pkgconan": [24, 151, 220], "gnu98": [24, 153], "pkg929d53a5f06b1": 24, "a0d37d10fdb83a0414d7f4a1fb73da2c210211c6": 24, "6a947a7b5669d6fde1a35ce5ff987fc6": 24, "637fc1c7080faaa7e2cdccde1bcde118": 24, "pkgb3950b1043542": 24, "libstdc": [24, 89, 150, 151, 153, 209, 217, 245], "pkg918904bbca9dc": 24, "44a4588d3fe63ccc6e7480565d35be38d405718": 24, "d913ec060e71cc56b10768afb9620094": 24, "pkg789b624c93fc0": 24, "pkgde9b63a6bed0a": 24, "19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc": 24, "f5739d5a25b3757254dead01b30d3af0": 24, "pkgd154182aac59": 24, "observ": [24, 215], "right": [24, 26, 63, 78, 102, 122, 179, 191, 265, 266, 271, 273], "2023": [24, 79, 83, 85, 103, 272], "02": [24, 85, 103, 207, 272], "16": [24, 89, 103, 146, 150, 151, 153], "06": [24, 247, 248], "42": [24, 84, 89, 103, 120, 179], "10": [24, 45, 54, 60, 89, 103, 117, 150, 151, 153, 221, 247], "utc": [24, 56, 59, 83, 85, 103, 247, 254, 258, 259, 272], "wizard": 26, "myconanappl": 26, "minimum": [26, 120, 141, 221, 254, 262], "suggest": [26, 74, 120, 127], "21": [26, 27, 103, 117, 124, 153, 192, 221], "rememb": [26, 36, 118, 217, 248], "api_level": [26, 27, 153, 221], "standard": [26, 27, 35, 50, 74, 120, 123, 133, 147, 150, 151, 181, 186, 191, 192, 221, 225, 226, 231, 244, 245, 251, 253, 258, 262, 266, 273], "choic": [26, 153, 261], "jni": 26, "jniexport": 26, "jstring": 26, "jnical": 26, "java_com_example_myconanapp_mainactivity_stringfromjni": 26, "jnienv": 26, "jobject": 26, "std": [26, 42, 52, 79, 209, 216, 252, 262, 272], "zlibvers": [26, 55, 244], "newstringutf": 26, "c_str": 26, "prepar": [26, 78, 116, 122, 131, 143, 178, 236, 245, 250, 254, 266, 275], "my_conan_app": 26, "view": [26, 29, 67, 103, 120, 125, 135, 157, 253], "task": [26, 60, 78, 140, 155, 156, 175, 259, 271, 275], "conaninstal": 26, "element": [26, 31, 78, 97, 98, 112, 225, 226], "conanexecut": 26, "builddir": [26, 38, 41, 50, 95, 100, 136, 191], "mkdir": [26, 60, 83, 199, 259, 272], "armv7": [26, 27, 153, 181, 184, 235], "x86": [26, 27, 88, 89, 91, 103, 112, 116, 150, 153, 172, 187, 200, 224, 228, 235, 271], "n": [26, 36, 42, 45, 52, 54, 55, 153, 163, 190, 224, 231, 244, 246, 251, 252, 262, 272], "sout": 26, "stringbuild": 26, "serr": 26, "proc": 26, "consumeprocessoutput": 26, "waitfor": 26, "println": 26, "exitvalu": 26, "throw": [26, 88, 145, 155], "err": 26, "ncommand": 26, "compilesdk": 26, "32": [26, 83, 126, 153, 187, 217, 228, 245, 259, 271], "defaultconfig": 26, "adjust": [26, 27, 133, 183, 191, 192, 209, 210, 212, 253], "focu": [26, 262], "proil": 26, "_static": [26, 27, 153], "14": [26, 27, 56, 59, 77, 100, 103, 109, 110, 120, 151, 153, 164, 212, 228, 244, 245, 246, 254, 258, 262], "ndk_path": [26, 27, 89, 120, 136, 150, 192, 221], "luism": [26, 258, 260], "7075529": 26, "bin": [26, 27, 35, 39, 40, 54, 95, 100, 136, 151, 183, 192, 209, 210, 212, 215, 240, 245, 258, 260, 261], "android31": [26, 27], "llvm": [26, 27, 153], "prebuilt": [26, 27, 83, 99, 250, 257, 266], "darwin": [26, 27, 54, 100, 110, 151], "_share": [26, 27, 153], "externalnativebuild": 26, "applicationid": 26, "myconanapp": 26, "minsdk": 26, "targetsdk": 26, "versioncod": 26, "versionnam": 26, "testinstrumentationrunn": 26, "androidx": 26, "androidjunitrunn": 26, "cppflag": [26, 45, 208, 209], "dcmake_toolchain_fil": [26, 29, 35, 47, 48, 189, 191, 192, 244, 245, 246, 248, 249, 254, 259, 265, 266, 267], "respons": [26, 39, 40, 50, 56, 59, 62, 68, 77, 89, 94, 102, 119, 120, 122, 127, 136, 138, 139, 150, 162, 200, 204, 221, 231, 254], "android_abi": [26, 180, 192], "exit": [26, 31, 87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 143], "prematur": 26, "essenti": [26, 45, 74, 151, 152], "absent": 26, "cmake_build_typ": [26, 191, 192], "endif": [26, 52, 246, 251, 252, 255, 262], "strequal": [26, 252], "cmake_current_list_dir": 26, "conan_toolchain": [26, 35, 47, 48, 49, 50, 89, 131, 150, 189, 191, 192, 244, 245, 246, 248, 249, 254, 259, 265, 266, 267], "elseif": 26, "v8a": [26, 181], "armeabi": [26, 181], "v7a": [26, 181], "Not": [26, 78, 95, 100, 120, 127, 131, 150, 158, 244, 249, 256, 270], "add_librari": [26, 42, 50, 255, 261, 262], "virtual": [26, 62, 74, 118, 151, 246, 249, 253], "devic": [26, 27], "pair": [26, 118], "qr": 26, "click": [26, 29, 67, 212, 240], "brew": [27, 62, 89, 150, 234], "usr": [27, 118, 151, 211, 245], "choos": [27, 120, 191, 207, 235, 244, 262], "fit": [27, 79, 86, 187, 271], "balanc": [27, 82], "mingw": [27, 153, 243, 249], "ninja": [27, 56, 78, 84, 89, 102, 108, 124, 131, 145, 150, 189, 192, 221, 249, 260], "provis": 27, "w": [27, 145, 163], "r23b": 27, "unless": [27, 74, 88, 102, 112, 116, 118, 120, 129, 130, 150, 155, 204, 225, 244, 268], "know": [27, 31, 50, 82, 90, 94, 120, 144, 153, 159, 191, 207, 246, 253, 255, 260, 267, 274], "bare": [29, 74, 254], "symbol": [29, 67, 79, 148, 183, 192], "box": [29, 267], "consuming_packag": [29, 244, 245, 246, 247, 248, 249], "simple_cmake_project": [29, 244], "finish": [29, 54], "successfulli": [29, 54, 68, 245, 255, 263, 265], "23": [29, 47, 48, 90, 102, 106, 124, 146, 153, 192, 258, 259, 260, 265, 266, 267, 272], "compressor": [29, 35, 55, 191, 244, 245, 246, 248, 249], "sln": [29, 59, 72, 224], "solut": [29, 59, 72, 74, 78, 118, 133, 137, 225, 226, 239, 241, 270], "startup": 29, "breakpoint": 29, "void": [29, 42, 52, 55, 244, 246, 251, 262, 272], "deflateinit": [29, 55, 244], "defstream": [29, 55, 244], "z_best_compress": [29, 55, 244], "deflat": [29, 55, 244], "z_finish": [29, 55, 244], "f5": 29, "stop": [29, 102, 192], "Into": 29, "navig": [29, 67, 240], "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, 244], "inspir": 30, "agnost": [30, 33, 50, 56, 102, 161], "enough": [31, 50, 60, 62, 78, 94, 124, 131, 135, 150, 151, 155, 193, 248, 261, 270], "cmd_clean": 31, "your_conan_hom": [31, 159, 267], "Will": [31, 39, 40, 87, 90, 91, 97, 99, 100, 102, 106, 108, 112, 115, 120, 131, 140, 164, 183, 186, 191, 192, 196, 221, 235], "ye": 31, "31da245c3399e4124e39bd4f77b5261f": 31, "a16985deb2e1aa73a8480faad22b722c": 31, "721995a35b1a8d840ce634ea1ac71161": 31, "9a77cdcff3a539b5b077dd811b2ae3b0": 31, "cee90a74944125e7e9b4f74210bfec3f": 31, "7cddd50952de9935d6c3b5b676a34c48": 31, "conan_api": [31, 159, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178], "conanoutput": [31, 159], "onceargu": 31, "conan_command": 31, "userio": 31, "userinput": 31, "recipe_color": 31, "bright_blu": 31, "removed_color": 31, "bright_yellow": 31, "add_argu": [31, 159], "store_tru": 31, "parse_arg": [31, 159], "request_boolean": 31, "non_interact": [31, 89, 149, 150, 155], "output_remot": 31, "writeln": 31, "fg": [31, 251, 262], "all_rrev": 31, "recipe_revis": [31, 82, 120, 247], "latest_rrev": 31, "repr_notim": 31, "packages_configur": 31, "package_ref": 31, "all_prev": 31, "package_revis": [31, 82], "latest_prev": 31, "argpars": [31, 159], "argumentpars": [31, 159], "visit": [31, 84, 86, 107, 118, 122, 240], "websit": [31, 159], "proce": [31, 42, 246], "translat": [31, 67, 72, 73, 77, 136, 186, 192, 209, 221, 225, 226, 248, 254, 255], "bg": 31, "font": 31, "foreground": 31, "background": [31, 155], "apart": [31, 54, 215], "predefin": [31, 47, 86, 109, 124, 146, 180, 192, 265, 267], "success": [31, 120, 145], "remoteregistri": 31, "searchapi": [31, 165, 177], "listapi": [31, 165, 172], "removeapi": [31, 165, 176], "deserv": [31, 150], "especi": [31, 62, 120, 150, 259, 264, 275], "attent": [31, 150, 261], "tour": [32, 34], "development_deploi": 35, "zlibconfig": 35, "uninstal": [35, 62], "elsewher": [35, 50, 120, 139], "place": [35, 36, 42, 50, 59, 77, 84, 100, 116, 120, 122, 124, 136, 148, 160, 162, 179, 195, 200, 248, 254, 259, 260, 261, 273], "conanbuild": [35, 45, 54, 131, 136, 151, 189, 195, 196, 197, 207, 209, 228, 245, 248, 249, 260, 266], "17": [35, 56, 59, 67, 83, 89, 103, 117, 150, 151, 153, 216, 254, 258, 259], "2022": [35, 67, 79, 103, 117, 153, 247, 258, 259], "big": [35, 118, 129, 153], "blocker": 35, "sed": 35, "old_fold": 35, "new_fold": 35, "dcmake_build_typ": [35, 47, 48, 189, 191, 244, 245, 246, 248, 249, 259, 265, 266, 267], "fact": [35, 50, 118, 253], "ticket": 35, "manual": [35, 45, 59, 67, 88, 104, 105, 107, 118, 131, 137, 271, 274], "cwd": [36, 102, 109, 138, 139, 145, 161, 174], "mcap": 36, "carri": 36, "sources_deploi": 36, "plu": [36, 45, 109, 122, 225], "dependencies_sourc": 36, "preprocess": 36, "accomplish": [36, 192], "source_deploi": 36, "kwarg": [36, 158, 161, 163, 204, 235], "robust": [36, 158], "dependency_sourc": 36, "iter": [36, 102, 107, 157, 161, 163, 192, 194], "said": [36, 253, 271], "advanc": [37, 39, 40, 67, 74, 79, 120, 137, 151, 188, 193, 231, 239, 240, 271, 275], "pkg_macro": 38, "endfunct": [38, 41], "vast": [39, 40], "build_requir": [39, 40, 42, 90, 105, 106, 107, 108, 121, 131, 137, 151, 191, 212, 215, 245, 247, 248, 260, 271], "different_opt": 39, "myoption": [39, 120, 123, 143], "echo": [39, 40, 158, 179, 260], "off": [39, 40, 63, 68, 160, 192, 216, 252, 266], "necho": [39, 40], "mygcc": [39, 40], "chmod": [39, 40], "0o777": [39, 40], "itself": [39, 40, 42, 60, 78, 118, 120, 135, 136, 140, 179, 192, 248, 254, 263, 268], "mygcc1": [39, 40], "mygcc2": [39, 40], "wine": [39, 40], "gcc1": [39, 40], "assert": [39, 40, 163, 192, 196], "gcc2": [39, 40], "ext": [39, 40], "tell": [39, 40, 41, 54, 120, 152, 179, 191, 207, 215, 217, 244, 252, 255, 263], "anyth": [39, 40, 56, 74, 78, 198, 235, 245, 259, 260, 263, 272, 275], "identifi": [39, 40, 69, 81, 83, 85, 112, 120, 121, 246, 253, 260, 267, 273], "construct": [39, 40], "Of": [39, 40, 74, 270], "cours": [39, 40, 270], "invis": [39, 40], "exactli": [39, 40, 50, 74, 82, 131, 133, 135, 157, 235, 260], "disambigu": [39, 40, 150, 191, 212], "obviou": 40, "different_vers": 40, "myscript": 41, "nice": 41, "myfunct": [41, 120, 179], "cmake_build_modul": [41, 191], "tc": [41, 48, 56, 59, 120, 131, 153, 186, 189, 192, 208, 209, 216, 221, 226, 227, 233, 252, 254, 256, 260, 262, 266], "build_context_activ": 41, "build_context_build_modul": 41, "cmake_find_mod": [41, 50, 136, 191], "build_context": [41, 191, 223], "behav": [42, 207, 246], "protobuf": [42, 120, 124, 136, 191, 212], "perhap": 42, "pb": 42, "nonetheless": [42, 258], "using_protobuf": 42, "myaddress": 42, "addressbook": 42, "proto": 42, "myaddresserrecip": 42, "config_opt": [42, 120, 121, 127, 131, 250, 253, 254, 256], "libprotobuf": 42, "protobuf_generate_cpp": 42, "proto_src": 42, "proto_hdr": 42, "target_include_directori": [42, 50, 261, 262], "build_interfac": [42, 50], "cmake_current_source_dir": 42, "cmake_current_binary_dir": [42, 50], "install_interfac": [42, 50], "set_target_properti": [42, 50, 255, 261, 262], "public_head": [42, 50, 261, 262], "iostream": [42, 120, 262], "fstream": 42, "google_protobuf_verify_vers": 42, "address_book": 42, "person": [42, 150], "add_peopl": 42, "set_id": 42, "1337": 42, "cout": [42, 52, 262, 272], "alloc": [42, 215], "shutdownprotobuflibrari": 42, "simpli": [42, 66, 151, 217, 218, 265], "argc": [42, 204], "argv": [42, 204], "71305099cc4dc0b08bb532d4f9196ac1": 42, "c4e35584cc696eb5dd8370a2a6d920fb2a156438": 42, "ac69396cd9fbb796b5b1fc16473ca354": 42, "e60fa1e7fc3000cc7be2a50a507800815e3f45e0": 42, "0af7d905b0df3225a3a56243841e041b": 42, "13c96f538b52e1600c40b88994de240f": [42, 100, 106], "d0599452a426a161e02a297c6e0c5070f99b4909": [42, 95, 103], "69b9ece1cce8bc302b69159b4d437acd": 42, "myser03f790a5a5533": 42, "libmyaddress": 42, "ok": [42, 67, 88, 252, 258], "notic": [42, 50, 67, 89, 120, 152, 159, 209, 212, 214, 215, 220, 221, 246, 251, 252, 253, 262], "arm": [42, 84, 153, 224, 245, 248], "mach": 42, "64": [42, 153, 187, 217, 228, 245, 271], "bit": [42, 50, 52, 60, 126, 136, 151, 153, 159, 187, 200, 228, 245, 254, 259, 263, 274], "arbitrari": [43, 46, 50, 67, 74, 105, 107, 135, 156, 273], "bazel": [43, 53, 61, 63, 89, 109, 150, 180, 213, 215, 216, 244], "popular": [45, 54, 55, 63, 70, 74, 153, 235, 244], "fmt": [45, 54, 106, 251, 252, 253, 262, 263], "mac": [45, 187, 263], "string_formatt": [45, 54], "ac": 45, "www": [45, 100, 101, 118, 120, 275], "org": [45, 62, 100, 101, 120, 150, 202], "softwar": [45, 100, 217, 235, 275], "autoconf": 45, "60": [45, 54], "html_node": 45, "configure_002eac": 45, "_": [45, 78, 120, 151, 155, 160, 180, 186, 212, 225, 259], "cstdlib": [45, 54], "exit_success": [45, 54, 55, 244, 246], "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, 118, 200], "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, 56], "vari": [45, 62, 78, 84], "acloc": 45, "reference_commands_instal": 45, "conanautotoolstoolchain": [45, 209], "conanbuildenv": [45, 197, 260, 266], "conanrun": [45, 54, 136, 142, 151, 189, 196, 198, 246, 263, 266], "conanrunenv": [45, 198, 266], "deactivate_conanbuild": [45, 197, 245, 248, 249, 266], "deactivate_conanrun": [45, 246, 266, 267], "_fmt": 45, "run_exampl": 45, "u": [45, 74, 77, 87, 90, 97, 99, 100, 102, 106, 115, 124, 248, 256], "ldflag": [45, 120, 136, 150, 151, 208, 209, 221, 227], "pkg_config_path": [45, 209, 211, 221], "m4": 45, "second": [45, 60, 83, 89, 118, 120, 134, 150, 185, 202, 253, 260], "cmake_ex": [47, 83, 109], "foo": [47, 48, 49, 91, 118, 120, 133, 191, 192, 196, 200, 209, 211, 227], "correspond": [47, 67, 120, 192, 197, 198, 209, 212, 223, 246, 253, 255], "binarydir": 47, "everytim": [47, 48, 245, 265, 266, 267], "cmake_toolchain": [48, 49], "extend_own_cmake_preset": 48, "user_presets_path": 48, "configurepreset": [48, 192], "displaynam": 48, "user_toolchain_profil": 49, "aspect": 49, "characterist": [49, 81, 124], "appconan": 49, "myvar1": [49, 151, 195], "my_user_var1": 49, "myvar": [49, 120, 136, 151, 179, 192, 195, 221, 260], "myprofil": [49, 56, 102, 110, 151], "profile_dir": [49, 151], "evalu": [49, 82, 101, 102, 104, 106, 110, 118, 120, 129, 131, 137, 143, 150, 154, 170, 248, 271], "myvalue1": [49, 195], "system_nam": [49, 89, 150, 192], "usabl": [50, 153], "aren": 50, "fair": [50, 79], "vendor": [50, 94, 154], "happili": 50, "pkg_config_fil": 50, "pkgrecip": [50, 273, 274], "three": [50, 120, 133, 150, 186, 195, 226, 235], "mylib": [50, 120, 124, 151, 192, 209, 275], "project_source_dir": 50, "cmake_install_includedir": [50, 192], "mypkgconfig": 50, "namespac": [50, 78, 191, 207, 209, 252], "destin": [50, 128, 129, 130, 200, 202, 225, 254], "cmake_install_prefix": [50, 192, 261], "_m_x64": [50, 56, 59], "runtim": [50, 56, 59, 74, 79, 120, 124, 136, 151, 153, 164, 195, 198, 207, 209, 221, 223, 226, 227, 246, 263], "multithreadeddl": [50, 56, 59], "_msc_ver1939": [50, 56, 59], "_msvc_lang201402": [50, 56, 59], "__cplusplus199711": [50, 59, 254, 256, 259], "switch": [50, 136, 164, 185, 225, 226], "viceversa": 50, "inconveni": [50, 265], "trivial": 50, "transtiv": 50, "simplest": [52, 122, 256, 261, 274], "hellorecip": [52, 60, 251, 252, 253, 254, 255, 256, 259, 262, 266, 272], "friend": [52, 252], "rule": [52, 82, 88, 118, 119, 120, 135, 154, 156, 157, 209, 212, 215, 268, 270, 273], "ifdef": [52, 246, 251, 262, 272], "ndebug": [52, 209, 246, 251, 262, 272], "hello_patch": 52, "conan_data": [52, 60, 129, 131, 204, 256], "complex": [52, 79, 120, 132, 151, 179, 200, 223, 273], "bazeltoolchain": [54, 66, 109, 180, 213, 214], "workspac": [54, 66, 92, 215, 260], "demo": [54, 60, 79, 118], "charg": [54, 134], "bzl": [54, 66, 215], "load_conan_depend": [54, 215], "rules_cc": [54, 215], "cc_binari": 54, "bazeldep": [54, 66, 109, 180, 213], "bazel_layout": [54, 146, 215], "conan_bzl": [54, 66, 214, 216], "franchuti": [54, 95], "bazelrc": [54, 89, 150, 214, 216], "38": [54, 100, 259], "272": 54, "lc": 54, "date": 54, "elaps": 54, "180": [54, 153], "critic": [54, 88, 254, 272], "68": [54, 99, 103], "sandbox": 54, "total": [54, 102, 146, 150, 153, 196, 252, 258], "simple_meson_project": 55, "stdlib": [55, 153, 192, 209, 244, 246], "stdio": [55, 244], "buffer_in": [55, 244], "256": [55, 202, 244], "mit": [55, 74, 109, 120, 132, 239, 244, 272], "easili": [55, 60, 77, 84, 118, 122, 123, 136, 140, 154, 161, 192, 193, 244, 252, 274, 275], "buffer_out": [55, 244], "z_stream": [55, 244], "zalloc": [55, 244], "z_null": [55, 244], "zfree": [55, 244], "opaqu": [55, 244], "avail_in": [55, 244], "uint": [55, 244], "strlen": [55, 244], "bytef": [55, 244], "avail_out": [55, 244], "sizeof": [55, 244], "next_out": [55, 244], "deflateend": [55, 244], "printf": [55, 244, 246], "size": [55, 79, 196, 244, 246, 248, 249, 268], "lu": [55, 244], "conan_meson_": 55, "ini": [55, 56, 71, 220, 244], "conan_meson_n": [55, 56, 220], "233": [55, 244, 246, 248, 249], "147": [55, 244, 246, 248, 249], "haven": [56, 59, 67, 82, 98, 255, 265, 268], "familiar": [56, 59], "concept": [56, 59, 76, 83, 243, 253, 267, 269, 271], "creation": [56, 59, 74, 78, 121, 153, 162, 231, 247], "meson_lib": [56, 109], "vcxproj": [56, 59], "basic_layout": [56, 180], "briefli": [56, 59, 150, 237, 253, 254], "parametr": [56, 59, 109], "conan_meson_cross": [56, 220], "testhello": 56, "__cplusplus201402": 56, "856c535669f78da11502a119b7d8a6c9": [56, 59], "2024": [56, 59, 254], "03": [56, 59, 153, 247, 254, 272], "04": [56, 59, 103, 153, 254], "52": [56, 59, 83, 85, 254], "39": [56, 59, 103, 247, 254, 259], "c13a22a41ecd72caf9e556f68b406569547e0861": [56, 59], "dynam": [56, 59, 85, 103, 120, 121, 138, 139, 151, 153, 162, 164, 179, 221, 245, 246, 248, 274, 275], "193": [56, 59, 85, 153], "msbuild_lib": [59, 109], "test_hello": [59, 252, 255], "vs_layout": [59, 146, 180, 218, 222], "conantoolchain": [59, 186, 226], "prop": [59, 72, 131, 191, 225, 226], "sheet": [59, 61, 75], "receiv": [59, 60, 77, 84, 104, 124, 157, 158, 159, 162, 163, 164, 193, 221, 231, 254, 260, 268, 273], "act": [59, 159], "accordingli": [59, 120], "importgroup": 59, "label": [59, 74, 95, 100, 101, 214, 215, 226], "propertysheet": 59, "x64": [59, 84, 133, 153, 224], "pragmat": 60, "someon": [60, 271], "coordin": [60, 140, 200, 231], "who": [60, 273], "tri": [60, 99, 164, 244, 247], "capture_scm": 60, "update_conandata": [60, 199], "scm_url": 60, "scm_commit": 60, "checkout": [60, 62, 77, 78, 231, 251, 252, 255, 256, 262, 272], "myfold": [60, 102, 200], "m": [60, 62, 89, 91, 103, 112, 116, 150, 189, 197, 198, 211, 224, 225, 228, 252, 258, 274], "wip": 60, "8e8764c40bebabbe3ec57f9a0816a2c8e691f559": 60, "buildabl": 60, "techniqu": 60, "imposs": [60, 83, 84, 151, 270, 271], "squash": 60, "19": [60, 77, 103, 153, 259], "xdf": [60, 265], "gitignor": [60, 231], "anywai": [60, 120], "encod": [60, 154, 200, 226, 272], "password": [60, 111, 118, 149, 154, 155, 175, 202, 240], "repeat": [60, 74, 120, 190, 197, 198, 259, 268], "consequ": [60, 97], "orthogon": [60, 156, 162, 275], "ssh": [60, 154], "actor": 60, "ubuntu": [60, 74, 153, 235, 245], "v3": [60, 153, 249], "secret": [60, 118, 154, 155], "ssh_private_kei": 60, "v4": [60, 153], "webfactori": 60, "v0": [60, 241], "privat": [60, 74, 77, 78, 118, 132, 136, 150, 154, 179, 180, 239, 240, 241, 254, 262], "care": [60, 84], "riski": 60, "disclos": 60, "welcom": 61, "decentr": 61, "blog": [61, 67, 76, 248, 275], "social": 61, "mail": 61, "tracker": [61, 74], "question": [61, 74], "tabl": 61, "introduct": [61, 63, 107, 137, 147, 156, 236, 240, 243, 248, 251, 259, 271, 275], "devop": 61, "clion": [61, 63, 192], "jfrog": [61, 63, 74, 79, 240], "cheat": [61, 75], "faq": [61, 74, 75, 120, 272], "video": [61, 74, 75, 270], "changelog": 61, "solari": [62, 74, 235], "suno": [62, 74, 153], "modern": [62, 77, 131, 204, 262, 275], "carefulli": 62, "sudo": [62, 89, 120, 136, 150, 235], "virtualenv": [62, 89, 150, 196, 197, 198, 228, 249], "virtualenvwrapp": 62, "readthedoc": 62, "en": [62, 77, 200, 275], "venv": 62, "restart": [62, 67], "logout": [62, 86, 175], "termin": [62, 74, 89, 103, 150, 158], "upgrad": [62, 191, 270, 275], "inconsist": 62, "somehow": 62, "userhom": 62, "attempt": [62, 67, 78, 89, 131, 140, 150, 153, 202], "yield": 62, "xyz": 62, "mark": [62, 67, 143], "interfer": 62, "pep": 62, "668": 62, "isol": [62, 78, 266, 271, 273], "isn": [62, 67], "debian": [62, 74, 153, 202, 235], "ensurepath": 62, "number": [62, 69, 74, 89, 116, 135, 150, 153, 187, 190, 202, 204, 223, 224, 235, 258, 259, 273, 274, 275], "gatekeep": 62, "quarantin": 62, "browser": 62, "curl": [62, 67], "wget": 62, "util": [62, 67, 77, 85, 93, 116, 120, 140, 183, 192, 196, 200, 207, 235, 245, 261], "interpret": [62, 150, 179, 245], "conan_src": 62, "develop2": 62, "beta": [62, 120, 273], "matter": [62, 102, 144, 150, 155, 205, 259, 270, 275], "seamless": 63, "shelf": [63, 68, 160], "though": [63, 90, 103, 118, 120, 134, 150, 241, 247, 273], "yet": [63, 67, 82, 95, 99, 100, 131, 133, 159, 170, 208, 255], "resum": 63, "enhanc": 63, "autotoolsdep": [65, 180, 206], "wrapper": [65, 66, 71, 72, 73, 80, 145, 156, 183, 184, 189, 191, 202, 207, 214, 224, 231, 235, 254], "jetbrain": 67, "marketplac": 67, "brows": 67, "conan_provid": 67, "cmake_project_top_level_includ": 67, "bear": [67, 252], "mind": [67, 244, 252, 263], "24": [67, 102, 151, 153, 207, 241, 259], "button": [67, 240], "appear": [67, 159, 161, 240, 266], "bottom": 67, "toolbar": 67, "wheel": 67, "checkbox": 67, "sequenti": [67, 74], "uncheck": 67, "disappear": 67, "libcurl": 67, "internet": [67, 100, 154, 259, 275], "along": [67, 68, 88, 120, 191, 253], "ey": 67, "icon": 67, "snippet": 67, "project_nam": [67, 191, 244, 249], "cmake_cxx_standard": [67, 192], "reload": [67, 118], "recollect": [69, 140], "down": [69, 82, 83, 252, 258, 272], "segment": 69, "histori": 69, "servic": [69, 238], "offer": [69, 120, 151], "dedic": [69, 74, 90, 111, 116, 124, 248, 272], "sf": [69, 89], "art": 69, "tf": [69, 83, 89, 90, 94, 252, 253, 261], "create_releas": 69, "mybuildname_releas": 69, "my_artifactori": 69, "mybuildname_aggreg": 69, "readme_build_info": 69, "md": [69, 120, 129, 130, 226, 266, 275], "bsd": 70, "maketoolchain": 70, "myproject": [72, 224, 248], "xcodebuild": [73, 180, 182, 185], "xcodetoolchain": [73, 180, 182, 185], "xcodeproj": [73, 184], "mobil": 74, "metal": 74, "scon": [74, 80, 180], "acceler": 74, "matur": [74, 120], "polici": [74, 77, 120, 179, 191, 192, 259, 268], "creator": [74, 77, 86, 110, 159, 247], "thousand": [74, 79], "compani": [74, 79, 120, 162, 239, 240], "high": [74, 108, 130, 202], "consol": [74, 145, 221, 228, 231, 246], "logic": [74, 78, 121, 126, 127, 131, 135, 140, 153, 157, 160, 185, 186, 192, 218, 248, 268, 271, 273], "webui": [74, 240], "protocol": [74, 120], "ldap": [74, 118], "topologi": 74, "conan_serv": [74, 118, 241], "boost": [74, 102, 136, 146, 150, 158, 191], "poco": [74, 131, 140, 146], "signific": 74, "truth": [74, 79], "redhat": 74, "archlinux": 74, "raspbian": [74, 235], "desktop": 74, "likewis": [74, 124, 127, 135, 136, 140, 271, 273, 274], "onward": 74, "goal": [74, 123, 135, 142], "evolv": [74, 153, 179, 247, 269], "backward": [74, 97], "incompat": [74, 124, 153, 179, 265], "disrupt": [74, 271], "preview": [74, 103, 125, 148, 157, 161, 163, 191, 200, 268], "year": [74, 79, 275], "life": [74, 79, 274], "eol": 74, "tomtom": 74, "audi": 74, "rti": 74, "continent": 74, "plex": 74, "electrolux": 74, "merced": 74, "benz": 74, "amaz": 74, "5k": 74, "star": 74, "count": 74, "300": 74, "cpplang": [74, 77], "slack": [74, 77], "discuss": [74, 150, 170], "discord": 74, "plai": [74, 120, 187], "exercis": 74, "narr": 74, "explan": [74, 81, 99, 106, 120, 135, 153], "conduct": 74, "thread": [74, 89, 116, 150, 153], "bad": [74, 140, 221, 256, 272], "confer": [74, 79], "talk": [74, 79], "evolut": [74, 271], "troubleshoot": 75, "handi": [76, 120, 190, 256], "pdf": 76, "png": [76, 101, 109], "post": [76, 156, 162, 248, 261, 275], "goe": [76, 271], "behind": [77, 118], "b1d267f77ddd5d10d06d2ecf5a6bc433fbb7ee": [77, 103, 254, 266], "gnu11": [77, 153, 246, 254], "precompil": [77, 88, 102, 120, 134, 136, 215, 236, 259], "mayb": [77, 191, 253, 261], "influenc": [77, 120, 246], "overcom": 77, "agre": 77, "spell": [77, 153], "submit": [77, 131, 238], "Such": [77, 78, 247, 275], "httpconnect": 77, "debuglevel": 77, "netrc": 77, "honor": 77, "crlf": [77, 78, 272], "lf": [77, 272], "gitattribut": 77, "gitconfig": 77, "editor": 77, "notepad": 77, "playground": 78, "colleagu": 78, "kept": 78, "kind": [78, 107, 118, 129, 130, 153, 154, 155, 162, 240, 259, 273], "unit": [78, 122, 135, 142, 252, 254, 263], "among": [78, 82, 120, 134, 136, 153, 200, 226, 247, 248], "convert": [78, 109, 136, 183, 205, 253, 261], "flat": [78, 179, 200], "strictli": [78, 94, 120, 124, 136, 209, 248, 254, 270], "extrem": [78, 273], "complic": [78, 120, 137], "workaround": [78, 137, 270], "Its": [78, 109, 120, 137, 157, 235], "whenev": [78, 120, 129, 137, 140, 151, 187, 252], "abus": [78, 132, 260], "entrant": 78, "undefin": [78, 84, 105, 107, 164, 200, 254, 256], "indirect": [78, 137], "reserv": [78, 84, 119, 192], "_conan": [78, 118, 119], "sens": [78, 94, 105, 127, 138, 151, 153, 231, 246, 253], "rewritten": 78, "checksum": [78, 85, 88, 120, 180, 199, 202, 272], "educ": 79, "outdat": 79, "accu": 79, "diego": 79, "rodriguez": 79, "losada": 79, "cppcon": 79, "watch": [79, 275], "grow": [79, 275], "lesson": [79, 275], "challeng": [79, 155], "trend": 79, "ten": 79, "largest": 79, "why": [79, 96, 99, 253, 258, 260], "lui": 79, "caro": 79, "campo": 79, "quick": 79, "overview": [79, 120], "intrins": [79, 129], "visibilitybinari": 79, "half": 79, "battl": 79, "meet": 79, "onlin": 79, "book": 79, "chri": 79, "mcarthur": 79, "fall": [82, 274], "ill": 82, "form": [82, 88, 91, 99, 103, 109, 112, 116, 118, 120, 124, 129, 130, 136, 140, 142, 235, 247, 248, 254, 272, 273], "taken": [82, 120, 134, 153, 179, 192], "eras": [82, 135], "del": [82, 126, 135, 144, 253, 254, 256, 260], "gcc5": 82, "lost": [82, 97], "default_xxx": 82, "default_build_mod": [82, 89, 150], "default_embed_mod": [82, 89, 150], "full_mod": [82, 83, 89, 120, 150, 275], "default_non_embed_mod": [82, 89, 150], "minor_mod": [82, 83, 89, 120, 137, 150, 179, 275], "default_python_mod": [82, 89, 150, 179], "default_unknown_mod": [82, 89, 150], "semver_mod": [82, 89, 120, 150], "confus": [82, 273], "safeti": 82, "emb": [82, 231], "package_id_xxxx_mod": 82, "package_id_embed_mod": [82, 120], "package_id_non_embed_mod": [82, 120], "package_id_unknown_mod": [82, 120], "patch_mod": [82, 120, 179], "package_id_": 82, "non_emb": 82, "_mode": 82, "package_id_mod": [82, 95, 120, 253, 275], "differenti": [82, 153, 245], "expand": [82, 85, 127, 135, 148], "major_mod": [82, 120], "inlin": [83, 85, 258], "pure": [83, 136, 186, 192, 209, 216, 221, 226, 227, 259], "linker": [83, 89, 100, 136, 150, 186, 192, 207, 209, 216, 221, 226, 227, 245, 246], "8879e931d726a8aad7f372e28470faa1": [83, 85], "09": [83, 85, 103, 247], "54": [83, 85], "0348efdcd0e319fb58ea747bb94dbd88850d6dd1": [83, 85], "z": [83, 84, 85, 99, 120, 179, 210, 254], "quickli": [83, 94, 259], "632e236936211ac2293ec33339ce582b": 83, "34": [83, 258, 272], "3ca530d20914cf632eb00efbccc564da48190314": 83, "d125304fb1fb088d5b92d4f8135f4dff": 83, "9bdee485ef71c14ac5f8a657202632bdb8b4482b": [83, 254], "bump": [83, 179, 247, 275], "moon": [83, 159], "1c90e8b8306c359b103da31faeee824c": 83, "ef2b5ed33d26b35b9147c90b27b217e2c7bde2d0": 83, "rebuilt": [83, 270, 272], "wil": 83, "49": [83, 103], "embed_mod": 83, "new_subset": 84, "subvalue1": 84, "subvalue2": 84, "new_root_set": 84, "value1": [84, 120, 151], "value2": [84, 120, 151], "implictli": 84, "explicilti": 84, "implicitli": [84, 120, 153, 179], "build_test": [84, 90, 120, 192, 252], "option2": [84, 120], "option1": [84, 120], "wherebi": 84, "therebi": 84, "comment": [84, 103, 109, 148, 153, 157, 164, 191, 263, 270], "tune": [84, 254], "realli": [84, 90, 127, 153, 265, 270, 274], "retri": [84, 89, 149, 150, 200, 202], "spirit": 84, "myconf": [84, 120, 133, 135, 136, 150, 151], "myitem": [84, 135], "settings_build": [84, 87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 120, 131, 260], "outcom": [84, 216], "irrelev": [84, 146], "reflect": [84, 183, 247], "97d5730b529b4224045fe7090592d4c1": [85, 103], "08": [85, 103, 272], "51": [85, 103, 273], "57": [85, 103], "d62dff20d86436b9c58ddc0162499d197be9de1": [85, 97, 103], "abe5e2b04ea92ce2ee91bc9834317dbe66628206": [85, 103], "sha1": [85, 201, 202, 245], "cat": [85, 105, 106, 107, 108, 208, 246, 271], "compilerruntim": 85, "compilerruntime_typ": 85, "sha1sum": [85, 201], "386": 85, "seen": [85, 181, 247, 270, 274], "worthi": 86, "core_conf": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "deployer_fold": [87, 100, 102], "nr": [87, 90, 92, 93, 94, 97, 99, 100, 101, 102, 106, 115], "profile_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 170], "profile_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115, 170], "profile_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "options_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "settings_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "settings_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_build": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_host": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "conf_al": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "lockfile_out": [87, 90, 93, 94, 97, 99, 100, 102, 105, 106, 107, 108, 115], "lockfile_overrid": [87, 90, 94, 97, 99, 100, 102, 106, 115], "posit": [87, 88, 89, 90, 91, 92, 93, 94, 97, 99, 100, 101, 102, 103, 104, 106, 109, 111, 112, 113, 114, 115, 116, 175], "vquiet": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "verror": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vwarn": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 145], "vnotic": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 145], "vstatu": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vverbos": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "vdebug": [87, 88, 89, 90, 91, 92, 93, 94, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117], "disallow": [87, 90, 97, 99, 100, 102, 106, 115], "fnmatch": [87, 89, 90, 97, 99, 100, 102, 106, 111, 115, 120, 200, 231], "wildcard": [87, 90, 91, 97, 99, 100, 101, 102, 103, 106, 111, 113, 115, 175, 200], "satisfi": [87, 90, 97, 99, 100, 102, 106, 115, 151, 247], "with_qt": [87, 90, 94, 97, 99, 100, 102, 106, 110, 115], "cdc0d9d0e8f554d3df2388c535137d77": 88, "5cb229164ec1d245": 88, "conanmanifest": [88, 163, 244, 249], "liter": [88, 109, 151, 179], "ident": [88, 120, 135, 179, 242, 246], "1cae77d6250c23b7": 88, "al": 88, "eventu": [88, 191], "extract": [88, 128, 136, 149, 200, 211, 256, 261], "package_queri": [88, 91, 103, 112, 116], "AND": [88, 91, 103, 112, 116, 172], "454923cd42d0da27b9b1294ebc3e4ecc84020747": 88, "6fe7fa69f760aee504e0be85c12b2327c716f9e7": 88, "verify_ssl": [89, 152], "target_fold": 89, "origin2": 89, "target2": 89, "submodul": 89, "conan_config": [89, 185, 186], "recurs": [89, 148, 200], "deduc": [89, 120, 190, 196, 198, 202, 203, 227, 274], "verif": [89, 150, 202], "certif": [89, 118, 152, 202], "my_set": 89, "retry_wait": [89, 150, 202], "wait": [89, 150, 202], "gzip": [89, 150, 200], "compresslevel": [89, 150], "cacert_path": [89, 118, 150], "cacert": [89, 118, 150], "clean_system_proxi": [89, 150], "proxi": [89, 118, 150], "client_cert": [89, 150], "tupl": [89, 120, 132, 150, 151, 200, 202, 231], "cert": [89, 150], "max_retri": [89, 150], "maximum": [89, 118, 120, 150, 187, 224, 254, 262], "no_proxy_match": [89, 150], "timeout": [89, 150], "allow_uppercase_pkg_nam": [89, 150], "temporarili": [89, 150, 151, 155], "uppercas": [89, 150, 155], "default_build_profil": [89, 150, 155], "default_profil": [89, 150, 155], "cmake_android_ndk": [89, 150], "enable_arc": [89, 150, 192], "arc": [89, 150, 192], "enable_bitcod": [89, 150, 192], "bitcod": [89, 150, 192], "enable_vis": [89, 150, 192], "sdk_path": [89, 150, 183, 184, 192, 221], "can_run": [89, 122, 142, 150, 263], "objc": [89, 150, 192, 221], "objcxx": [89, 150], "fortran": [89, 150, 192, 209], "asm": [89, 150, 153, 192, 227], "hip": [89, 150, 192], "ispc": [89, 150, 192], "exelinkflag": [89, 95, 100, 136, 150, 186, 192, 209, 216, 221, 226, 227], "cmake_exe_linker_flags_init": [89, 150, 192], "jx": [89, 150], "mp": [89, 150, 192], "linker_script": [89, 150, 192, 209, 216, 221], "sharedlinkflag": [89, 95, 100, 136, 150, 186, 192, 209, 216, 221, 226, 227], "cmake_shared_linker_flags_init": [89, 150, 192], "skip_test": [89, 122, 150, 192, 214, 252, 258], "sysroot": [89, 95, 100, 150, 183, 192, 209, 221], "find_package_prefer_config": [89, 150], "cmake_find_package_prefer_config": [89, 150, 192], "presets_environ": [89, 150, 192], "wether": [89, 150], "system_processor": [89, 150, 192], "cmake_system_processor": [89, 150, 192], "system_vers": [89, 150, 192], "cmake_system_vers": [89, 150, 192], "toolchain_fil": [89, 150, 151, 192], "toolset_arch": [89, 150, 192], "toolset": [89, 150, 153, 192, 217, 223], "cmake_generator_toolset": [89, 150, 192], "toolset_cuda": [89, 150, 192], "install_strip": [89, 150, 189], "strip": [89, 97, 150, 183, 189, 200, 204, 221, 231, 245], "launcher": [89, 150, 196, 197, 198, 208, 209, 228, 260, 263], "define_libcxx11_abi": [89, 150], "glibcxx_use_cxx11_abi": [89, 150], "host_triplet": [89, 150], "pkg_config": [89, 150, 211, 212, 221], "bazelrc_path": [89, 150, 214], "rcpath1": [89, 150, 214], "config1": [89, 150, 214], "installation_path": [89, 150, 217, 228], "setvars_arg": [89, 150, 217], "onto": [89, 150], "setvar": [89, 150, 217], "backend": [89, 118, 150, 221], "vs2010": [89, 150, 221], "vs2012": [89, 150], "vs2013": [89, 150], "vs2015": [89, 150, 221], "vs2017": [89, 150, 217, 221], "extra_machine_fil": [89, 150, 220], "bash": [89, 120, 150, 228, 241], "msy": [89, 150, 153, 241], "cygwin": [89, 150, 153], "wsl": [89, 150, 153], "sfu": [89, 150], "2019": [89, 150, 153, 217, 228, 248], "max_cpu_count": [89, 136, 150, 151, 189, 224], "vs_version": [89, 150, 151, 153], "exclude_code_analysi": [89, 150, 225], "suppress": [89, 150, 192], "compile_opt": [89, 120, 136, 150, 226], "sudo_askpass": [89, 150, 235], "yum": [89, 150, 234], "pacman": [89, 150, 234], "choco": [89, 150, 235], "zypper": [89, 150, 234], "pkgutil": [89, 150, 234], "30": [89, 97, 103, 259], "test_fold": [90, 94, 252], "serv": [90, 118, 240, 246], "misus": 90, "mutual": [91, 102, 112, 116], "packagelist": [91, 116], "pgkg": 91, "resid": [92, 110], "my_project": [92, 97, 99, 100, 102, 106], "variou": [93, 137, 153, 266], "sb": 94, "this_pkg": 94, "slower": [94, 129], "y": [94, 99, 120, 254], "binary_remot": 95, "invalid_build": [95, 100], "homepag": [95, 100, 101, 131], "win_bash_run": 95, "options_descript": 95, "options_definit": [95, 101], "generators_fold": [95, 100, 101, 131, 191, 192, 225], "srcdir": [95, 100, 136], "resdir": [95, 100, 136, 192, 209, 221, 248], "frameworkdir": [95, 100, 136], "framework": [95, 100, 124, 136, 137, 212, 225, 233, 245, 252, 260], "ffa77daf83a57094149707928bdce823": [95, 103], "1440f4f447208c8e6808936b4c6ff282": 95, "dc0e384f0551386cd76dc29cc964c95": [95, 99], "1703667991": 95, "3458598": 95, "1703668372": 95, "8517942": 95, "massiv": [95, 100], "spiffi": [95, 100], "delic": [95, 100], "unobtrus": [95, 100], "unencumb": [95, 100], "patent": [95, 100], "zlib774aa77541f8b": 95, "resolved_rang": 95, "replaced_requir": 95, "closest": [96, 99], "annot": 97, "doesnt": 97, "preserv": 97, "absenc": 97, "order_bi": 97, "06023034579559bb64357db3a53f88a4": 97, "54b9c3efd9ddd25eb6a8cbf01860b499": 97, "build_arg": 97, "ed8593b3f837c6c9aa766f231c917a5b": 97, "60778dfa43503cdcda3636d15124c19bf6546ae3": 97, "ad092d2e4aebcd9d48a5b1f3fd51ba9a": 97, "firstli": 97, "purpous": 97, "pref": [97, 118, 131, 168], "closest_binari": 99, "1692672717": [99, 103], "b647c43bfefae3f830561ca202b6cfd935b56205": 99, "package_filt": [100, 159], "df": 100, "dot": [100, 159, 273], "myproject_fold": 100, "binutil": 100, "0dc90586530d3e194d01d17cb70d9461": 100, "5350e016ee8d04f418b50b7be75f5d8be9d79547": 100, "cci": 100, "degrad": 100, "gpl": 100, "assembl": 100, "objcopi": 100, "objdump": 100, "multilib": 100, "target_arch": 100, "target_o": 100, "target_triplet": 100, "with_libquadmath": 100, "binut53bd9b3ee9490": 100, "416618fa04d433c6bd94279ed2e93638": 100, "76f7d863f21b130b4e6527af3b1d430f7f8edbea": 100, "866f53e31e2d9b04d49d0bb18606e88": 100, "zlibbcf9063fcc882": 100, "digraph": 100, "vi": 100, "j": [100, 120, 153, 220], "css": 100, "cloudfar": 100, "cdnj": 100, "cloudflar": 100, "ajax": 100, "info_graph": 100, "basi": [100, 109], "neon": 101, "msa": 101, "sse": 101, "vsx": 101, "api_prefix": 101, "graphic": [101, 248], "redirect": [101, 103, 117, 118, 145, 155, 189, 265, 275], "deployer_packag": 102, "recomput": 102, "myconan": [102, 120], "bzip2": [102, 131, 197, 198, 225, 228], "compound": 102, "left": [102, 118, 254, 267, 273], "highest": 102, "myprofile3": 102, "myprofile1": [102, 151], "myprofile2": [102, 151], "minim": [102, 109, 187, 263], "immedi": [102, 136, 142, 150, 151, 225, 263], "uniqu": [102, 120, 122, 135, 150, 246, 253, 258, 272], "strict": [102, 105, 107, 151, 200, 271, 275], "newpkg": 102, "gb": 103, "graph_binari": 103, "gr": 103, "graph_recip": 103, "5d": [103, 112], "dai": [103, 112], "4w": [103, 112, 268], "hour": [103, 112], "26": [103, 248], "mycompani": 103, "20": [103, 151, 153, 164, 197, 251], "lite": 103, "shortest": 103, "46": 103, "53": [103, 117], "placehold": [103, 116, 195, 196], "8b23adc7acd6f1d6e220338a78e3a19": 103, "ce3665ce19f82598aa0f7ac0b71ee966": 103, "31ee767cb2828e539c42913a471e821a": 103, "05": [103, 247], "d77ee68739fcbe5bf37b8a4690eea6ea": 103, "ebec3dc6d7f6b907b3ada0c3d3cdc83613a2b715": 103, "implicit": [103, 204, 271], "e4e1703f72ed07c15d73a555ec3a2fa1": 103, "07": [103, 117], "45": [103, 247, 258, 273], "fdb823f07bc228621617c6397210a5c6c4c8807b": 103, "4834a9b0d050d7cf58c3ab391fe32e25": 103, "33": [103, 258, 259], "31": [103, 124, 272], "6a6451bbfcb0e591333827e9784d7dfa": 103, "29": [103, 247, 272], "67bb089d9d968cbc4ef69e657a03de84": 103, "47": [103, 247], "36": [103, 259], "5e196dbea832f1efee1e70e058a7eead": 103, "26475a416fa5b61cb962041623748d73": 103, "d15c4f81b5de757b13ca26b636246edff7bdbf24": [103, 254], "a2eb7f4c8f2243b6e80ec9e7ee0e1b25": 103, "human": 103, "zli": 103, "b58eeddfe2fd25ac3a105f72836b3360": 103, "01": [103, 207, 272], "d9b1e9044ee265092e81db7028ae10e0": 103, "192": [103, 118, 153, 164, 223], "denomin": 103, "deviat": [103, 120], "mypytool": 105, "manipul": [105, 107, 140, 200, 261], "moreov": 105, "scratch": [106, 264, 265], "ca4ae2047ef0ccd7d2210d8d91bd0e02": 106, "1675126491": 106, "773": 106, "5f184bc602682bcea668356d75e7563b": 106, "1676913225": 106, "027": [106, 275], "733": 106, "e747928f85b03f48aaf227ff897d9634": 106, "1675126490": 106, "952": 106, "lock1": 107, "lock2": 107, "consolid": 107, "diverg": 107, "simplic": 107, "pkgb": 107, "app1": 107, "pkgawin": 107, "pkganix": 107, "gone": [107, 252, 263], "nix": [107, 200], "math": [108, 109, 137, 200, 270], "85d927a4a067a531b1a9c7619522c015": 108, "1702683583": 108, "3411012": 108, "fd2b006646a54397c16a1478ac4111ac": 108, "3544693": 108, "mytool": [108, 215], "othertool": 108, "downgrad": 108, "unlock": 108, "meson_ex": 109, "msbuild_ex": 109, "bazel_lib": 109, "bazel_ex": 109, "autotools_lib": 109, "autotools_ex": 109, "aid": 109, "boilerpl": [109, 120], "requires1": 109, "requires2": 109, "tool_requires1": 109, "tool_requires2": 109, "magic": 109, "mygam": 109, "mytempl": 109, "full_path": 109, "conan_vers": [109, 150], "brack": 109, "not_templ": 109, "image2": 109, "guess": [110, 151, 174, 244], "Be": [110, 126, 127, 148, 231, 253], "carlosz": 110, "ios_bas": 110, "ios_simul": 110, "clang_15": 110, "package_set": 110, "build_env": 110, "registri": [111, 240], "usernam": [111, 118, 151, 155, 175], "ap": 111, "allowed_packag": [111, 175], "insert": [111, 175], "conan_login_": 111, "expos": [111, 118, 131, 151, 231], "new_nam": [111, 175], "keyword": [112, 158, 204, 207], "intact": 112, "smell": [112, 272], "manifest": [116, 120, 262], "sys_vers": 117, "1316": 117, "mainli": [118, 241], "pro": [118, 239, 241], "conan_server_hom": 118, "server_dir": 118, "server_directori": 118, "prior": [118, 162], "hot": 118, "relaunch": 118, "jwt_secret": 118, "ijkhyoiouinmxcrtytrr": 118, "jwt_expire_minut": 118, "120": 118, "ssl_enabl": 118, "port": [118, 241], "9300": [118, 241], "public_port": 118, "host_nam": 118, "localhost": [118, 202, 240, 241], "authorize_timeout": 118, "1800": 118, "disk_storage_path": 118, "disk_authorize_timeout": 118, "updown_secret": 118, "hjhjujkjkjkjkluyyuuyhj": 118, "write_permiss": 118, "lasot": 118, "default_us": 118, "default_user2": 118, "read_permiss": 118, "jwt": 118, "random": [118, 191], "safe": [118, 120, 140, 187], "anytim": 118, "amount": 118, "ip": [118, 202], "domain": 118, "168": 118, "docker": [118, 240], "9999": 118, "p9300": 118, "traffic": 118, "somedir": [118, 211], "crt": 118, "pem": [118, 150], "reject": 118, "regist": 118, "plain": [118, 120], "premis": 118, "firewal": 118, "trust": 118, "sysadmin": 118, "restrict": [118, 120, 153], "comma": [118, 120], "allowed_user1": 118, "allowed_user2": 118, "packagea": 118, "john": [118, 120], "peter": 118, "custom_authent": 118, "authenticator_nam": 118, "collabor": [118, 167], "htpasswd": 118, "schiffner": 118, "uilianri": 118, "my_authent": 118, "get_class": 118, "myauthent": 118, "valid_us": 118, "plain_password": 118, "factori": 118, "custom_author": 118, "authorizer_nam": 118, "my_author": 118, "authenticationexcept": 118, "forbiddenexcept": 118, "myauthor": 118, "_check_conan": 118, "deni": [118, 200], "_check_packag": 118, "_check": 118, "check_read_conan": 118, "check_write_conan": 118, "check_delete_conan": 118, "check_read_packag": 118, "check_write_packag": 118, "check_delete_packag": 118, "conform": 118, "check_": 118, "conanfilerefer": 118, "meanwhil": 118, "_packag": 118, "packagerefer": 118, "443": 118, "server_nam": 118, "myservernam": 118, "mydomain": 118, "proxy_pass": 118, "ssl_certif": 118, "ssl_certificate_kei": 118, "mod_wsgi": 118, "apache2": 118, "site": [118, 120], "0_conan": 118, "virtualhost": 118, "80": 118, "wsgiscriptalia": 118, "dist": 118, "server_launch": 118, "wsgicallableobject": 118, "wsgipassauthor": 118, "grant": 118, "srv": 118, "helloconan": [119, 120, 183, 207, 259], "varieti": 119, "member": [119, 120, 131, 179], "_my_data": 119, "_my_help": 119, "lowercas": [120, 254, 273], "101": 120, "charact": [120, 155, 195, 196, 254], "shorter": [120, 196], "z0": 120, "9_": 120, "alphanumer": [120, 254], "ing": 120, "pkgname": [120, 225, 247], "pre1": [120, 254, 273], "build2": [120, 254], "pkgversion": 120, "programmat": 120, "mychannel": 120, "short": [120, 254], "incred": 120, "spdx": 120, "peopl": 120, "smith": 120, "protocinstallerconan": 120, "protoc_instal": 120, "buffer": 120, "rpc": 120, "eigenconan": 120, "eigen": 120, "tuxfamili": 120, "mylibconan": 120, "otherlib": 120, "otherus": 120, "bracket": [120, 273], "alpha": [120, 273], "tool_a": 120, "tool_b": 120, "gtest": [120, 124, 131, 137, 146, 225, 245, 252, 258, 263], "downstream": [120, 124, 136, 137, 179, 191, 270], "other_test_tool": 120, "pyreq": [120, 132, 160, 179], "myconanfilebas": [120, 132], "utilsbas": 120, "tmp": [120, 192, 200, 252, 253, 255, 256, 258, 261], "got": [120, 260, 266, 271], "shutil": [120, 140], "emul": [120, 153, 226, 271], "mistak": 120, "yaml": 120, "8c48baf3babe0d505d16cfc0cf272589c66d3624264098213db0fb00034728e9": 120, "15b6393c20030aab02c8e2fe0243cb1d1d18062f6c095d67bca91871dc7f324a": 120, "opt": [120, 196, 216, 217, 273, 275], "7zip": [120, 146, 151], "7z": 120, "determin": [120, 137, 151, 195, 246], "gnu20": [120, 153], "get_saf": [120, 126, 127, 218, 248], "compiler_vers": [120, 151, 187], "feasibl": [120, 136], "is_android": 120, "option3": 120, "option4": 120, "comparison": [120, 239, 273], "encapsul": 120, "zwave": 120, "reference_pattern": 120, "option_nam": 120, "condition": [120, 122, 123, 127, 131, 140, 225, 226, 248, 250, 255, 262], "otherpkg": 120, "some_opt": 120, "overridden": [120, 179, 202], "123": [120, 151, 179], "conaninvalidconfigur": [120, 143, 144, 187, 248, 270], "word": [120, 132, 153, 272], "freez": 120, "overriden": [120, 202], "234": [120, 179], "particularli": [120, 133, 135], "explanatori": 120, "reference_conanfile_methods_package_id": 120, "package_id_python_mod": 120, "semver": [120, 232, 273, 275], "modif": [120, 135, 153, 192, 195, 247, 272, 275], "unrelated_mod": 120, "ever": 120, "pocotimerconan": 120, "foorecip": 120, "myrecip": 120, "methodconan": 120, "export_fold": [120, 129], "codebas": 120, "androidndk": [120, 136], "define_path": [120, 133, 136, 195], "fill": [120, 162, 178, 211], "append_path": [120, 136, 195], "runtime_var": 120, "flag3": [120, 136], "flag1": [120, 136, 150, 151, 216], "flag2": [120, 136, 150, 151], "expandattributedsourc": [120, 136], "unset": [120, 136, 150, 151, 153, 195, 208], "flag0": [120, 136], "pop": [120, 221, 246], "friendli": 120, "emit": 120, "taskflow": 120, "odr": [120, 137], "violat": [120, 137], "libressl": 120, "boringssl": 120, "libav": 120, "ffmpeg": [120, 158], "mariadb": 120, "mysql": 120, "libjpeg": 120, "9d": 120, "turbo": 120, "libjpegturbo": 120, "openbla": 120, "cbla": 120, "lapack": 120, "redund": 120, "myconsum": [120, 260], "my_android_ndk": 120, "var1": [120, 151], "green": 120, "neutral": 120, "white": [120, 155], "yellow": 120, "red": 120, "distinct": 120, "tend": 120, "auto_shared_fp": 120, "auto_header_onli": 120, "parenthes": 120, "extensions_properti": 120, "abi": [120, 153, 181, 245], "validate_build": 121, "mybuildsystem": 122, "interrupt": 122, "lift": 122, "info_build": 123, "myvalu": [123, 192, 195, 221], "fullsourc": 123, "theori": [124, 248], "parameter": 124, "ran": [124, 141, 161, 252, 258], "nutshel": [124, 209], "mylibrecip": 124, "myapprecip": 124, "myapp": [124, 275], "gettext": 124, "libgettext": 124, "constrain": [126, 253], "sse2": 126, "with_sse2": 126, "elif": 127, "deploy_fold": [128, 171, 195], "myfil": [130, 179, 200, 275], "export_conandata_patch": [130, 199], "conanvcvar": [131, 192, 221, 226, 227, 228], "repetit": [131, 136], "mygener": [131, 160], "mygen": [131, 160], "dylib": [131, 136, 183, 200, 207, 246, 253, 261], "dll": [131, 134, 136, 196, 246, 261], "xxxdir": 131, "indirectli": 131, "buildenv_info": [131, 133, 195, 197, 255, 260], "runenv_info": [131, 133, 195, 197, 198, 255, 260], "is_build_context": 131, "fashion": 131, "pcre": 131, "44": 131, "expat": 131, "35": [131, 259, 272], "1k": 131, "criteria": 131, "direct_host": 131, "direct_build": 131, "heavili": 131, "mycomp": 131, "mylicens": 132, "overwritten": [132, 136, 140], "baseconan": 132, "derivedconan": 132, "deriv": [132, 140], "uncondition": 132, "datafil": 132, "my": [132, 133, 136, 151, 153, 162, 179, 202, 209, 221], "awesom": 132, "me": 132, "__init__": [132, 160, 162, 184, 227], "constructor": [132, 193, 204, 207, 209, 222, 231, 235], "subdirectori": 133, "classic": [133, 153, 217, 257], "hopefulli": 133, "release64": 133, "stub": 133, "my_includ": 133, "sayconan": [133, 267], "mydata_path": 133, "obvious": 133, "mydata_path2": 133, "my_conf_fold": 133, "creating_packages_package_method": 134, "relax": [135, 271], "assumpt": [135, 248, 271], "couldn": 135, "disadvantag": [135, 274], "lose": 135, "although": [135, 196, 263], "predict": 135, "obj": 136, "preprocessor": [136, 186, 192, 209, 221, 226, 227], "property_nam": 136, "property_valu": 136, "xml": [136, 226], "pkg_config_nam": [136, 212], "zmq": 136, "zmq_static": 136, "ws2_32": 136, "get_properti": 136, "crypto": [136, 212, 215], "define_crypto": 136, "headers_ssl": 136, "obj_ext": 136, "prepend_path": [136, 195], "mypath": [136, 195, 260], "myarmarch": 136, "otherarch": 136, "my_android_arch": 136, "myrunpath": 136, "mypkghom": 136, "ti": 136, "former": [136, 271], "virtualrunenv": [136, 151, 180, 192, 194, 195, 196, 246, 255, 260], "transmit": [136, 275], "exceptionhandl": [136, 150], "async": [136, 150, 204], "bundl": [136, 240], "android_ndk": 136, "albeit": 136, "adequ": 136, "claus": 137, "catch2": [137, 252], "seem": 137, "ambigu": [137, 275], "priorit": [138, 139, 193, 200, 270, 271], "tarbal": [140, 231, 239, 272], "check_sha1": [140, 199], "pococonan": 140, "zip_nam": 140, "pocoproject": 140, "8d87812ce591ced8ce3a022beec1df1c8b2fac87": 140, "unlink": 140, "bypass": 140, "appar": 140, "problemat": [140, 273], "destroi": [140, 153, 164], "lead": [140, 248], "frozen": 140, "realiz": [141, 247, 271], "gtk": 141, "undesir": 141, "libgtk": 141, "pkg1": [141, 191, 235], "pkg2": [141, 191, 235], "prove": [142, 263], "succe": [143, 235], "cfc18fcc7a50ead278a7c1820be74e56": 143, "warn_tag": 145, "custom_tag": 145, "ignore_error": 145, "appropri": 145, "unnot": 145, "ninja_stdout": 145, "stringio": 145, "pin": [146, 247, 272, 274], "revision1": 146, "70": 146, "revision2": 146, "00": [146, 207, 272], "inde": 146, "aka": [147, 183], "project1": [148, 225], "project2": [148, 225], "unauthor": 149, "ask": [149, 155], "conan_login_usernam": [149, 155], "conan_login_username_": [149, 155], "conan_password": [149, 155], "conan_password_": [149, 155], "admin": [149, 240], "emptiv": 149, "getenv": [149, 151, 154, 196], "mytk": [149, 154], "mytoken": [149, 154], "whatev": [150, 151, 159, 217], "heaviest": 150, "dowload": 150, "danielm": 150, "my_conan_storage_fold": 150, "recurr": 150, "my_download_cach": 150, "confvar": [150, 151], "hint": [150, 151], "yyi": [150, 151], "ins": 150, "zzz": [150, 151], "everywher": [150, 151], "discret": 150, "establish": 150, "packagenam": [150, 191], "orgnam": 150, "_must_": 150, "cpu_count": 150, "myconf1": 150, "detect_o": [150, 151], "myconf2": 150, "detect_arch": [150, 151], "conan_home_fold": 150, "eval": 150, "integ": [150, 175, 232], "unmodifi": 150, "rid": [150, 151], "f1": 150, "f2": 150, "f0": 150, "pai": [150, 261], "tl": [150, 152, 202], "constitut": 150, "implic": [150, 253], "tool1": 151, "tool4": 151, "environmentvar1": 151, "dlib": 151, "ab": 151, "relpath": 151, "my_pkg_opt": 151, "myvalue12": 151, "mypath1": [151, 195], "path11": 151, "path12": 151, "comp": [151, 212], "chanel": 151, "ration": 151, "kitwar": 151, "3488ec5c2829b44387152a6c4b013767": 151, "20496b332552131b67fb99bf425f95f64d0d0818": 151, "profile_var": 151, "my_build_typ": 151, "referenc": [151, 191, 202], "loop": 151, "meant": [151, 254, 263], "judici": 151, "compiler_ex": 151, "detect_default_compil": 151, "default_msvc_runtim": 151, "default_compiler_vers": 151, "default_cppstd": 151, "detect_libcxx": 151, "v143": [151, 153], "gnu14": [151, 153, 209, 245], "default_msvc_ide_vers": 151, "digit": [151, 153, 273, 275], "zlib_clang_profil": 151, "my_var": [151, 260], "statement": 151, "gcc_49": 151, "my_remote_nam": 152, "windowsstor": 153, "windowsc": 153, "ios_vers": 153, "iphoneo": [153, 221], "iphonesimul": 153, "watchsimul": 153, "appletvo": 153, "appletvsimul": 153, "xrsimul": 153, "catalyst": 153, "aix": 153, "arduino": 153, "board": 153, "emscripten": 153, "neutrino": 153, "vxwork": 153, "ppc32be": 153, "ppc32": [153, 187, 235], "ppc64le": [153, 235], "ppc64": [153, 187], "armv4": 153, "armv4i": 153, "armv5el": [153, 181], "armv5hf": [153, 181], "armv6": [153, 181], "armv7hf": [153, 181, 235, 245], "armv7k": 153, "armv8_32": 153, "sparc": [153, 187, 192], "sparcv9": [153, 187], "mip": 153, "mips64": 153, "avr": 153, "s390": 153, "s390x": [153, 235], "wasm": 153, "sh4le": 153, "e2k": 153, "v5": 153, "v6": [153, 181], "v7": 153, "xtensalx6": 153, "xtensalx106": 153, "xtensalx7": 153, "sun": 153, "posix": 153, "libcstd": 153, "libstdcxx": 153, "libstlport": 153, "win32": 153, "dwarf2": 153, "sjlj": 153, "seh": 153, "98": 153, "gnu23": 153, "170": 153, "190": 153, "191": 153, "v110_xp": 153, "v120_xp": 153, "v140_xp": 153, "v141_xp": 153, "runtime_vers": 153, "v140": 153, "v141": 153, "v142": 153, "2021": [153, 217], "icx": [153, 217], "dpcpp": [153, 217], "gnu03": 153, "gpp": 153, "ne": 153, "accp": 153, "acpp": 153, "ecpp": 153, "mcst": 153, "lcc": 153, "relwithdebinfo": 153, "minsizerel": 153, "hardwar": 153, "microprocessor": 153, "microcontrol": 153, "famili": 153, "2015": 153, "2017": [153, 217, 244, 246, 248, 249], "finer": 153, "1913": 153, "dpc": [153, 217], "suppos": 153, "311": 153, "brief": [153, 240, 243], "arch_build": 153, "arch_target": 153, "powerpc": [153, 235], "endian": 153, "littl": [153, 159], "soft": 153, "float": 153, "swift": 153, "a6": 153, "a6x": 153, "chip": 153, "iphon": 153, "5c": 153, "ipad": 153, "k": 153, "aarch32": 153, "ilp32": 153, "a12": 153, "chipset": 153, "xr": [153, 200], "scalabl": [153, 239, 240], "microsystem": 153, "interlock": 153, "pipelin": [153, 155], "formerli": 153, "atmel": 153, "microchip": 153, "390": 153, "ibm": 153, "javascript": 153, "low": 153, "assembli": 153, "byte": [153, 200], "hitachi": 153, "superh": 153, "2000": 153, "512": 153, "vliw": 153, "2cm": 153, "2c": 153, "moscow": 153, "4c": 153, "8c": 153, "8c1": 153, "1c": 153, "1ck": 153, "8c2": 153, "8cb": 153, "2c3": 153, "12c": 153, "16c": 153, "32c": 153, "xtensa": 153, "lx6": 153, "dpu": 153, "esp32": 153, "esp8266": 153, "lx7": 153, "s2": 153, "s3": 153, "_glibcxx_use_cxx11_abi": [153, 192, 209], "wise": 153, "cento": [153, 235], "rogu": 153, "wave": 153, "stlport": 153, "apach": 153, "dinkum": 153, "abridg": 153, "rhel6": 153, "cache_vari": 153, "some_centos_flag": 153, "anymor": 153, "myo": 153, "mycompil": 153, "my_custom_compil": 153, "sync": [153, 204], "tarballnam": 154, "bearer": 154, "mypassword": 154, "hardcod": [154, 263, 273], "difficult": [154, 179, 252, 274], "remote_nam": [155, 175], "unauthent": 155, "unattend": 155, "stuck": 155, "autodetect": [155, 192], "tty": 155, "no_color": 155, "conan_color_dark": 155, "scheme": [155, 273, 275], "light": 155, "dark": 155, "mypythoncod": [156, 268], "altogeth": [156, 159, 192], "pre_build": [156, 162], "complement": 156, "qualiti": [156, 162], "facilit": [156, 161], "variat": [157, 270], "intercept": 158, "commmand": 158, "startswith": 158, "caller": 158, "heavy_pkg": 158, "qt": 158, "abseil": 158, "_commands_": 159, "cmd_": 159, "your_command_nam": 159, "cmd_hello": 159, "cmd_bye": 159, "topic_nam": 159, "topic1": 159, "topic2": 159, "cmd_command": 159, "output_json": 159, "parser": 159, "hello_moon": 159, "subpars": 159, "narg": 159, "mygroup": 159, "mycommand": 159, "mycommand_mysubcommand": 159, "add_my_common_arg": 159, "chose": 159, "format_graph_html": 159, "format_graph_info": 159, "field_filt": 159, "format_graph_json": 159, "format_graph_dot": 159, "graph_info": 159, "deps_graph": [159, 171], "command_subcommand": 159, "child": 159, "arg1": [159, 189, 217], "arg2": [159, 189, 217], "arg3": 159, "_conanfil": 160, "deps_info": 160, "repeatedli": [161, 275], "my_custom_deploy": 161, "hook_exampl": 162, "pre_export": 162, "field_valu": 162, "getattr": 162, "abort": 162, "hook_": 162, "replace_in_fil": [162, 199, 252], "post_packag": 162, "isdir": 162, "custom_modul": 162, "hook_print": 162, "my_print": 162, "hook_ful": 162, "pre_sourc": 162, "pre_packag": 162, "pre_package_info": 162, "post_package_info": 162, "artifacts_fold": 163, "signature_fold": 163, "conan_packag": [163, 244, 249], "written": [163, 255, 275], "twice": 163, "conan_sourc": 163, "signer": 163, "asc": 163, "listdir": 163, "isfil": 163, "profile_plugin": 164, "ordereddict": [164, 193], "profilesapi": [165, 174], "installapi": [165, 171], "graphapi": [165, 170], "exportapi": [165, 169], "newapi": [165, 173], "uploadapi": [165, 178], "downloadapi": [165, 168], "cache_fold": 166, "global_conf": 167, "settings_yml": 167, "pkgrefer": [168, 172], "download_ful": 168, "package_list": [168, 178], "load_root_test_conanfil": 170, "tested_refer": 170, "tested_python_requir": 170, "recipe_consum": 170, "load_graph": 170, "root_nod": 170, "check_upd": 170, "load_root_nod": 170, "analyze_binari": 170, "build_mod": 170, "build_modes_test": 170, "tested_graph": 170, "buildmod": 170, "install_binari": 171, "intal": 171, "install_system_requir": 171, "only_info": 171, "install_sourc": 171, "install_consum": 171, "deploy_packag": 171, "filter_packages_configur": 172, "pkg_configur": 172, "pkgconfigur": 172, "get_templ": 173, "template_fold": 173, "get_home_templ": 173, "template_nam": 173, "get_default_host": 174, "get_default_build": 174, "get_profil": 174, "get_path": 174, "sin": 174, "alphabet": [174, 273], "contact": 175, "user_xxx": 175, "only_en": 175, "user_login": 175, "user_logout": 175, "check_upstream": 178, "enabled_remot": 178, "upload_data": 178, "upload_ful": 178, "check_integr": 178, "dry_run": 178, "get_backup_sourc": 178, "mybas": 179, "cool": 179, "super": [179, 209], "pyreq_path": 179, "myfile_path": 179, "mynumb": 179, "gradual": 179, "hierarchi": 179, "is_apple_o": [180, 182], "to_apple_arch": [180, 182], "envvar": [180, 194, 195, 197, 198], "intelcc": 180, "nmaketoolchain": [180, 222], "sconsdep": 180, "armv5": 181, "lc_id_dylib": [183, 207], "lc_load_dylib": [183, 207], "rpath": [183, 192, 207, 246], "lc_rpath": [183, 207], "outlin": 183, "libnam": 183, "my_execut": 183, "add_rpath": 183, "executable_path": 183, "use_settings_target": 183, "ranlib": 183, "lipo": 183, "codesign": 183, "isysroot": [183, 221], "sdk_platform_path": 183, "sdk_platform_vers": 183, "libtool": 183, "alltarget": 184, "i386": [184, 221], "sdkroot": 184, "ios8": 184, "skd": 184, "conan_libpng": 185, "conan_libpng_libpng": 185, "conan_libpng_libpng_debug_x86_64": 185, "conan_libpng_libpng_release_x86_64": 185, "conan_zlib": [185, 225], "conan_zlib_zlib": 185, "conan_zlib_zlib_debug_x86_64": 185, "conan_zlib_zlib_release_x86_64": 185, "system_header_search_path": 185, "gcc_preprocessor_definit": 185, "other_cflag": 185, "other_cplusplusflag": 185, "framework_search_path": 185, "library_search_path": 185, "other_ldflag": 185, "conan_libpng_debug_x86_64": 185, "package_root_": 185, "releaseshar": [185, 191, 225, 262], "mycustomconfig": [185, 225], "conantoolchain_release_x86_64": 186, "conantoolchain_debug_x86_64": 186, "conan_global_flag": 186, "conantoolchain_": [186, 226], "_x86_64": 186, "clang_cxx_librari": 186, "clang_cxx_language_standard": 186, "macosx_deployment_target": 186, "mmacosx": 186, "_cpu_count": 187, "cgroup": 187, "skip_x64_x86": 187, "m1": [187, 221, 263], "gnu_extens": 187, "cppstd_default": 187, "dxxx": 189, "dvar": 189, "build_tool_arg": 189, "barg1": 189, "barg2": 189, "underli": 189, "diagnost": 189, "dcmake_verbose_makefil": 189, "maxcpucount": 189, "cmake_gener": 190, "shared_fals": 190, "shared_tru": 190, "chosen": [190, 217], "cmake_prefix_path": [191, 192], "cmake_module_path": [191, 192], "findxxx": 191, "conandeps_legaci": 191, "cmake_binary_dir": 191, "enumer": 191, "overal": 191, "releasedshar": 191, "my_tool": [191, 212, 215], "collid": [191, 212, 275], "capnproto": [191, 212], "_build": [191, 212], "81": 191, "fakecomp": 191, "cmake_module_file_nam": 191, "cmake_module_target_nam": 191, "dep_nam": [191, 248], "get_cmake_package_nam": 191, "module_mod": 191, "get_find_mod": 191, "cmake_target_alias": 191, "rout": 191, "cmake_set_interface_link_directori": 191, "pragma": 191, "nosonam": 191, "sonam": 191, "cmake_config_version_compat": 191, "samemajorvers": 191, "sameminorvers": 191, "exactvers": 191, "configvers": 191, "myfilenam": [191, 202], "myfooalia": 191, "mycompon": [191, 212, 215], "varcompon": 191, "myfilenameconfig": 191, "findmyfilenam": 191, "zlibconan": 191, "alter": 191, "colon": 191, "new_component_target_nam": 191, "buildir": 191, "popul": [191, 245], "cmake_map_imported_config_": 191, "dcmake_map_imported_config_coverag": 191, "myvar_valu": 192, "mydefin": [192, 221], "mydef_valu": [192, 221], "cmake_path": 192, "cmake_position_independent_cod": 192, "nmake": [192, 193, 227], "easier": [192, 275], "schema": [192, 200, 226], "testpreset": 192, "jon": 192, "mydef": [192, 221], "myconfigdef": 192, "mydebugvalu": 192, "myreleasevalu": 192, "novalue_def": 192, "add_compile_definit": 192, "cachevari": 192, "foo2": 192, "ON": [192, 245, 266], "myconfigvar": 192, "sentenc": 192, "buildenv": [192, 195, 217, 245], "my_build_var": 192, "my_buildvar_value_overridden": 192, "runenv": [192, 195], "my_run_var": 192, "my_runvar_set_in_gener": 192, "my_env_var": 192, "my_env_var_valu": 192, "save_script": [192, 196], "other_env": 192, "compose_env": [192, 195], "extra_cxxflag": [192, 209, 227], "extra_cflag": [192, 209, 227], "extra_sharedlinkflag": 192, "extra_exelinkflag": 192, "clash": 192, "filepath": 192, "mytoolchainpackag": 192, "mytoolchain": 192, "mytoolrequir": 192, "toolchain1": 192, "toolchain2": 192, "yyyi": 192, "ninclud": 192, "generic_system": 192, "cmake_c_compil": 192, "cmake_cxx_compil": 192, "android_system": 192, "android_platform": 192, "android_stl": 192, "android_ndk_path": 192, "apple_system": 192, "cmake_osx_architectur": 192, "cmake_osx_sysroot": 192, "arch_flag": [192, 209], "m32": 192, "m64": 192, "vs_runtim": 192, "cmake_msvc_runtime_librari": 192, "cmake_cxx_extens": 192, "cmake_flags_init": 192, "cmake_xxx_flag": 192, "conan_xxx": 192, "cmake_cxx_flags_init": 192, "conan_cxx_flag": 192, "try_compil": 192, "in_try_compil": 192, "find_path": 192, "cmake_skip_rpath": 192, "skip_rpath": 192, "build_shared_lib": [192, 255, 266], "output_dir": 192, "cmake_install_xxx": 192, "cmake_install_bindir": 192, "cmake_install_sbindir": 192, "cmake_install_libexecdir": 192, "cmake_install_libdir": 192, "cmake_install_oldincludedir": 192, "cmake_install_datarootdir": 192, "mybin": [192, 209], "myinclud": [192, 209], "myre": [192, 209], "block_nam": 192, "new_tmp": 192, "other_toolset": 192, "generic_block": 192, "methodtyp": 192, "mygenericblock": 192, "helloworld": 192, "myblock": 192, "mynewblock": 192, "64bit": [192, 271], "32bit": [192, 271], "ppc": 192, "r23c": 192, "cmake_c_flags_init": 192, "add_definit": 192, "cmake_xcode_attribute_enable_bitcod": 192, "cmake_xcode_attribute_clang_enable_objc_arc": 192, "cmake_xcode_attribute_gcc_symbols_private_extern": 192, "cmake_sysroot": 192, "cmp0149": 192, "cmake_rc_compil": 192, "cmake_objc_compil": 192, "objcpp": [192, 221], "cmake_objcxx_compil": 192, "cmake_cuda_compil": 192, "cmake_fortran_compil": 192, "cmake_asm_compil": 192, "cmake_hip_compil": 192, "cmake_ispc_compil": 192, "collaps": 193, "aggregated_cpp_info": 193, "topological_sort": 193, "revers": 193, "dep_cppinfo": 193, "get_sorted_compon": 193, "fewer": 193, "other_cppinfo": 193, "myvar2": 195, "myvalue2": 195, "myvar3": 195, "myvalue3": 195, "myvar4": 195, "mypath2": 195, "mypath3": 195, "env1": [195, 196], "env2": 195, "prevail": [195, 270], "autootoolsdep": 195, "mypkg_data_dir": 195, "datadir": [195, 212, 221], "filesystem": [195, 202], "deploy_base_fold": 195, "my_env_fil": 196, "ps1": [196, 197, 198, 228, 249], "var2": 196, "variable_refer": 196, "penv": 196, "32k": 196, "2048": 196, "closer": 196, "varnam": 196, "ld_library_path": [197, 198, 246, 255, 260], "deactivate_conanbuildenv": [197, 245, 248, 249, 252], "accumul": [197, 198, 208, 233], "auto_gener": [197, 198], "dyld_library_path": [198, 246], "dyld_framework_path": [198, 246], "deactivate_conanrunenv": 198, "rm": 199, "rmdir": 199, "chdir": 199, "trim_conandata": 199, "collect_lib": 199, "check_md5": 199, "check_sha256": 199, "absolute_to_relative_symlink": [199, 261], "remove_external_symlink": 199, "remove_broken_symlink": 199, "ignore_cas": 200, "insensit": 200, "utf": [200, 226], "otherfil": 200, "robocopi": 200, "abe2h9f": 200, "file_path": [200, 201], "mydir": 200, "newdir": 200, "do_someth": 200, "tzb2": 200, "bz2": 200, "txz": 200, "xz": 200, "keep_permiss": [200, 202], "bigfil": 200, "danger": 200, "inter": 200, "libmylib": [200, 207], "stare": 200, "libmath": 200, "other_libdir": 200, "rwxr": 200, "lrwxr": 200, "md5sum": 201, "sha256sum": 201, "md5": 202, "ftp": 202, "impli": [202, 272, 275], "httpbasic": 202, "sha": 202, "someurl": 202, "somefil": 202, "e5d695597e9fa520209d1b41edad2a27": 202, "ia64": 202, "5258a9b6afe9463c2e56b9e8355b1a4bee125ca828b8078f910303bc2ef91fa6": 202, "base_path": 204, "patch_str": 204, "fuzz": 204, "fuzzi": 204, "0001": 204, "buildflatbuff": 204, "0002": 204, "patch_typ": 204, "patch_sourc": 204, "flatbuff": 204, "5650": 204, "patch_descript": 204, "misc": 204, "1232": 204, "1292": 204, "g_test_add_func": 204, "paus": 204, "cancel": 204, "do_pause_cancel_test": 204, "g_test_add_data_func": 204, "steal": 204, "gint_to_point": 204, "do_stealing_test": 204, "length": 204, "do_response_informational_content_length_test": 204, "ret": 204, "g_test_run": 204, "0003": 204, "base_fold": 205, "configure_arg": 207, "make_arg": 207, "_conanbuild": [207, 209], "destdir": 207, "unix_path": [207, 222], "install_nam": 207, "cmdsize": 207, "48": 207, "offset": 207, "stamp": 207, "jan": 207, "1970": 207, "loader": 207, "wl": [207, 211], "conanautotoolsdep": 208, "undesired_valu": 208, "seamlessli": 209, "precalcul": 209, "my_argu": 209, "sbindir": [209, 221], "oldincludedir": 209, "datarootdir": 209, "he": 209, "extra_defin": [209, 227], "extra_ldflag": [209, 227], "gcc_cxx11_abi": 209, "build_type_flag": 209, "sysroot_flag": 209, "apple_arch_flag": [209, 221], "apple_isysroot_flag": [209, 221], "msvc_runtime_flag": [209, 222], "myflag": 209, "update_configure_arg": 209, "updated_flag": 209, "update_make_arg": 209, "update_autoreconf_arg": 209, "xxxxxx_arg": 209, "prune": [209, 271], "gold": [209, 221], "lld": [209, 221], "nvcc": 209, "fc": 209, "mk": 210, "conan_dep": 210, "conan_name_zlib": 210, "conan_version_zlib": 210, "conan_reference_zlib": 210, "conan_root_zlib": 210, "zlib273508b343e8c": 210, "conan_include_dirs_zlib": 210, "conan_include_dir_flag": 210, "conan_lib_dirs_zlib": 210, "conan_lib_dir_flag": 210, "conan_bin_dirs_zlib": 210, "conan_bin_dir_flag": 210, "conan_libs_zlib": 210, "conan_lib_flag": 210, "conan_include_dir": 210, "conan_lib_dir": 210, "conan_bin_dir": 210, "conan_lib": [210, 267], "conan_define_flag": 210, "conan_system_lib_flag": 210, "lz": [210, 212], "libastr": 211, "_use_libastr": 211, "astral": 211, "linkflag": [211, 233], "tmp_dir": 211, "is_system": 211, "rt": 211, "your_us": 212, "647afeb69d3b0a2d3d316e80b24d38c714cc6900": 212, "pkg_config_alias": 212, "xxxxx": [212, 216, 221], "freeform": 212, "component_vers": 212, "custom_cont": 212, "mynam": 212, "componentnam": 212, "alias1": 212, "alias2": 212, "rcpath": 214, "bz": [214, 215], "fresh": 214, "new_local_repositori": 215, "build_fil": 215, "cc_import": 215, "cc_librari": 215, "z_precompil": 215, "static_librari": 215, "libz": [215, 246], "hdr": 215, "glob": 215, "filegroup": 215, "zlib_binari": 215, "bazel_target_nam": 215, "bazel_repository_nam": 215, "my_target": 215, "my_repo": 215, "cxxopt": 216, "dynamic_mod": 216, "compilation_mod": 216, "force_p": 216, "copt": 216, "flagn": 216, "conlyopt": 216, "linkopt": 216, "dbg": 216, "crosstool_top": 216, "icpx": 217, "conanintelsetvar": 217, "intelprofil": 217, "ms_toolset": 217, "batch": 217, "argn": 217, "intel64": 217, "ia32": 217, "ia": 217, "mysrcfold": 218, "reconfigur": 220, "dprefix": 220, "n_job": 220, "55": [221, 247], "default_librari": 221, "buildtyp": 221, "libexecdir": 221, "localedir": 221, "mandir": 221, "infodir": 221, "wrap_mod": 221, "nofallback": 221, "cpp_arg": 221, "c_arg": 221, "c_link_arg": 221, "cpp_link_arg": 221, "conan_meson_xxxx": 221, "with_msg": 221, "hi": 221, "everyon": 221, "contrast": 221, "packageopt": 221, "upon": 221, "mio": 221, "ios_host_profil": 221, "objc_arg": 221, "objc_link_arg": 221, "objcpp_arg": 221, "objcpp_link_arg": 221, "android_host_profil": 221, "c_ld": 221, "cc_ld": 221, "cpp_ld": 221, "cxx_ld": 221, "as_": 221, "AS": [221, 227], "windr": 221, "macosx": 221, "objcflag": 221, "objcxxflag": 221, "check_min_v": 222, "is_msvc": 222, "is_msvc_static_runtim": 222, "msvs_toolset": 222, "raise_invalid": 223, "visualstudio": 223, "worth": 223, "mt": [223, 226], "neither": 223, "myreleas": 224, "myplatform": 224, "conan_zlib_vars_release_x64": 225, "conanzlibxxxx": 225, "conanzlibincludedir": 225, "conanzliblib": 225, "conan_zlib_vars_debug_x64": 225, "conanzlib": 225, "conan_zlib_release_x64": 225, "conan_zlib_debug_x64": 225, "conan_bzip": 225, "bzip": 225, "conan_bzip2": 225, "conan_pkgname_compname_vars_release_x64": 225, "compnam": 225, "conan_pkgname_compname_release_x64": 225, "conan_pkgname_compnam": 225, "conan_pkgnam": 225, "conan_pkgname_vars_release_x64": 225, "gather": [225, 273], "catch": 225, "executablepath": 225, "binarydirectori": 225, "custombuild": 225, "caexcludepath": 225, "uncondit": 225, "conan_": 225, "_var": 225, "conantoolchain_release_x86": 226, "mtd": 226, "mdd": 226, "clcompil": 226, "windowstargetplatformvers": 226, "additionalopt": 226, "preprocessordefinit": 226, "vcvarsal": [226, 228], "includeextern": 226, "xmln": 226, "2003": 226, "itemdefinitiongroup": 226, "propertygroup": 226, "conannmakedep": 227, "_link_": 227, "conannmaketoolchain": 227, "my_flag": 227, "env_var": 227, "cl_env_var": 227, "winsdk": 228, "thin": [231, 254], "repourl": 231, "children": 231, "hidden_output": 231, "rev": 231, "get_remote_url": 231, "commit_in_remot": 231, "occurr": 231, "get_repo_root": 231, "toplevel": 231, "fetch_commit": 231, "qualifi": [232, 273], "sconscript_conandep": 233, "cpppath": 233, "binpath": 233, "frameworkpath": 233, "cppdefin": 233, "ccflag": 233, "shlinkflag": 233, "sconscript": 233, "mergeflag": 233, "chocolatei": 234, "libgl": 235, "libglvnd": 235, "devel": 235, "mesa": 235, "linuxmint": 235, "pidora": 235, "scientif": 235, "xenserv": 235, "amazon": 235, "oracl": 235, "amzn": 235, "almalinux": 235, "rocki": 235, "fedora": 235, "rhel": 235, "mageia": 235, "manjaro": 235, "opensus": 235, "sle": 235, "host_packag": 235, "install_substitut": 235, "packages_substitut": 235, "pkg3": 235, "_arch_nam": 235, "multiarch": 235, "arch_nam": 235, "libxcb": 235, "util0": 235, "packages_altern": 235, "amd64": 235, "conan_arch_set": 235, "apt_arch_set": 235, "86": 235, "armv7hl": 235, "lib32": 235, "c3i": 238, "profession": 239, "matrix": [239, 270, 271], "8081": 240, "8082": 240, "bintrai": 240, "jdk": 240, "dialog": 240, "bottl": 241, "wsgirefserv": 241, "ctrl": 241, "my_local_serv": 242, "lan": 242, "easiest": 244, "conan_export": 244, "f1fadf0d3b196dc0332750354ad8ab7b": [244, 249], "cdc9a35e010a17fc90bb845108cf86cfcbce64bf": 244, "dd7bf2a1ab4eb5d1943598c09b616121": 244, "raspberri": 245, "pi": 245, "someprofil": 245, "gnueabihf": 245, "compressorrecip": [245, 247, 248], "identif": 245, "elf": 245, "lsb": 245, "eabi5": 245, "sysv": 245, "armhf": 245, "buildid": 245, "2a216076864a1b1f30211debf297ac37a9195196": 245, "different_configur": 246, "anywher": 246, "tutorial_us": 246, "zlib1": 246, "reinstal": 246, "dyld": 246, "41259": 246, "wonder": 246, "answer": 246, "li": [246, 273], "factor": 246, "breakdown": 246, "approxim": [247, 273], "87a7211557b6690ef5bf7fc599dd8349": 247, "f305019023c2db74d1001c5afa5cf362": 247, "82202701ea360c0863f1db5008067122": 247, "bd533fb124387a214816ab72c8d1df28": 247, "59": 247, "58": 247, "3b9e037ae1c615d045a06c67d88491a": 247, "chronolog": 247, "tediou": [247, 265, 274], "occas": 247, "4524fcdd41f33e8df88ece6e755a5dcc": 247, "1650538915": 247, "154": 247, "stai": 247, "conanfile_pi": 248, "neater": 248, "base64": 248, "auxiliari": 248, "v8": 248, "asset": 248, "dear": 248, "imgui": 248, "bind": 248, "clarifi": 248, "cmake_vers": 249, "3e3d8f3a848b2a60afafbe7a0955085a": 249, "2a823fda5c9d8b4f682cb27c30caf4124c5726c8": 249, "48bc7191ec1ee467f1e951033d7d41b2": 249, "f2f48d9745706caf77ea883a5855538256e7f2d4": 249, "6c519070f013da19afd56b52c465b596": 249, "scaffold": 250, "walkthrough": 250, "peculiar": 250, "fanci": 251, "colour": [251, 262], "creating_packag": [251, 252, 253, 255, 256, 258, 259, 260, 261, 262, 263], "add_requir": 251, "check_max_cppstd": [251, 262], "check_min_cppstd": [251, 258, 262], "require_fmt": 251, "crimson": [251, 262], "emphasi": [251, 262], "bold": [251, 262], "__x86_64__": [251, 254, 256, 259, 266], "__cplusplu": 251, "201103": 251, "__gnuc__": 251, "__gnuc_minor__": 251, "__clang_major__": 251, "__clang_minor__": 251, "__apple_build_version__": 251, "13160021": 251, "build_method": 252, "with_test": 252, "with_fmt": [252, 253, 262], "novelti": 252, "compose_messag": 252, "add_subdirectori": 252, "googletest": [252, 258], "gtest_main": [252, 258], "hellotest": 252, "composemessag": 252, "expect_eq": 252, "c51d80ef47661865": 252, "3ad4c6873a47059c": 252, "tear": [252, 258], "82b6c0c858e739929f74f59c25c187b927d514f3": 252, "particular": 252, "uncommon": 252, "configure_options_set": 253, "met": 253, "ng": 253, "738feca714b7251063cc51448da0cf4811424e7c": 253, "7fe7f5af0ef27552": 253, "3bd9faedc711cbb4fdf10b295268246": 253, "e6b11fb0cb64e3777f8d62f4543cd6b3": 253, "5c497cbb5421cbda": 253, "3d27635e4dd04a258d180fe03cfa07ae1186a828": 253, "19a2e552db727a2b": 253, "67b887a0805c2a535b58be404529c1f": 253, "c7796386fcad5369": 253, "depict": 253, "diagram": 253, "intuit": 253, "2a899fd0da3125064bf9328b8db681cd82899d56": 253, "f0d1385f4f90ae465341c15740552d7": 253, "8a55286c6595f662": 253, "601209640bd378c906638a8de90070f7": 253, "d1b3f3666400710fec06446a697f9eeddd1235aa": 253, "24a2edf207deeed4151bd87bca4af51c": 253, "concret": 254, "email": 254, "constraint": [254, 271, 275], "completitud": 254, "leverag": 254, "dcbfe21e5250264b26595d151796be70": 254, "__gnuc__4": [254, 256, 259, 266], "__gnuc_minor__2": [254, 256, 259, 266], "__clang_major__13": [254, 256, 259], "__clang_minor__1": [254, 256, 259], "__apple_build_version__13160021": [254, 256, 259], "6679492451b5d0750f14f9024fdbf84e19d2941b": 254, "customis": 254, "breakag": [254, 256], "package_inform": 255, "output_nam": 255, "a311fcf8a63f3206": 255, "fd7c4113dad406f7d8211b3470c16627b54ff3af": [255, 261, 263], "44d78a68b16b25c5e6d7e8884b8f58b8": 255, "a8cb81b31dc10d96": 255, "handle_sourc": 256, "mutabl": 256, "0fcb5ffd11025446": 256, "update_sourc": 256, "369786d0fb355069": 256, "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466": 256, "saw": [257, 258, 271], "other_packag": [258, 259, 260], "sumconan": 258, "sum": 258, "8d9f1fb3655adcb348befcd8374c5292": 258, "pid": [258, 259], "header_only_gtest": 258, "test_sum": 258, "9bf83ef65d5ff0d6": 258, "sumtest": 258, "basicsum": 258, "lack": 258, "3rd": 259, "circumst": 259, "54a3ab9b777a90a13e500dd311d9cd70316e9d55": 259, "deep": 259, "local_include_fold": 259, "local_lib_fold": 259, "prebuilt_binari": 259, "vendor_hello_librari": 259, "_o": 259, "_arch": 259, "9c7634dfe0369907f569c4e583f9bc50": 259, "522dcea5982a3f8a5b624c16477e47195da2f84f": 259, "63fead0844576fc02943e16909f08fcdddd6f44b": 259, "82339cc4d6db7990c1830d274cd12e7c91ab18a1": [259, 260], "28": 259, "a0cd51c51fe9010370187244af885b0efcc5b69b": 259, "c93719558cf197f1df5a7f1d071093e26f0e44a0": 259, "dcf68e932572755309a5f69f3cee1bede410e907": 259, "somewher": 259, "prebuilt_remote_binari": 259, "base_url": 259, "d8e4debf31f0b7b5ec7ff910f76f1e2a": 259, "secure_scannerrecip": 260, "secure_scann": 260, "scanner": 260, "secure_scannertestconan": 260, "my_consum": 260, "enviorn": 260, "overwrot": 260, "package_method": 261, "predetermin": 261, "b5857f2e70d1b2fd": 261, "bf7f5b9a3bb2c957742be4be216dfcbb": 261, "25e0b5c00ae41ef9fbfbbb1e5ac86e1": [261, 263], "47b4c4c61c8616e5": 261, "222db0532bba7cbc": 261, "50f91e204d09b64b24b29df3b87a2f3a": 261, "96ed9fb1f78bc96708b1abf4841523b0": 261, "21ec37b931782de8": 261, "preparing_the_build": 262, "optional_fmt": 262, "target_compile_definit": 262, "using_fmt": 262, "endl": 262, "debugshar": 262, "testing_packag": 263, "hellotestconan": 263, "cd132b054cf999f31bd2fd2424053ddc": 263, "ff7a496f48fca9a88dc478962881e015f4a5b98f": 263, "1d9bb4c015de50bcb4a338c07229b3bc": 263, "4ff3fd65a1d37b52436bf62ea6eaac04": 263, "d136b3379fdb29bdfe31404b916b29e1": 263, "656efb9d626073d4ffa0dda2cc8178bc408b1be": 263, "ee8cbd2bf32d1c89e553bdd9d5606127": 263, "costli": 264, "entir": 264, "depth": 264, "developing_packag": [265, 266, 267], "editable_packag": 265, "fledg": 265, "perspect": 265, "increment": 265, "trial": 266, "phase": 266, "local_package_development_flow": 266, "ve": 266, "cmakedeps_macro": 266, "f09ef573c22f3919ba26ee91ae444eaa": 266, "__cplusplus201103": 266, "__clang_major__14": 266, "__apple_build_version__14000029": 266, "po": 266, "examin": 267, "package_layout": 267, "sayb3ea744527a91": 267, "say830097e941e10": 267, "libsai": 267, "say8938ceae216fc": 267, "say_say_releas": 267, "local_fold": 267, "expir": 268, "increas": [268, 269], "oppos": [268, 275], "intent": 268, "intro": [270, 271], "credit": 270, "videogam": 270, "0fe4e6890766f7b8e21f764f0049aec7": 270, "d639998c2e55cf36d261ab319801c322": 270, "905c3f0babc520684c84127378fefdd0": [270, 271], "converg": 270, "mathemat": 271, "sound32": 271, "sound": 271, "1675278126": 271, "0552447": 271, "83d4b7bf607b3b60a6546f8b58b5cdd7": 271, "1675278904": 271, "0791488": 271, "1675278900": 271, "0103245": 271, "enforc": 271, "paramount": 271, "1675278901": 271, "7527816": 271, "harm": 271, "1675294635": 271, "6049662": 271, "1675294637": 271, "9775107": 271, "2475ece651f666f42c155623228c75d2": 272, "2b547b7f20f5541c16d0b5cbcf207502": 272, "licenc": 272, "1d674b4349d2b1ea06aa6419f5f99dd9": 272, "chat": 272, "17b45a168519b8e0ed178d822b7ad8c8": 272, "12f87e1b8a881da6b19cc7f229e16c76": 272, "ago": 272, "determinist": 272, "subsequ": 272, "8b8c3deef5ef47a8009d4afaebfe952": 272, "8e8d380347e6d067240c4c00132d42b1": 272, "c347faaedc1e7e3282d3bfed31700019": 272, "wast": 272, "apprecip": [273, 274], "newest": 273, "hold": 273, "letter": [273, 275], "becam": 273, "evid": 273, "demand": 273, "entiti": 273, "numer": 273, "tild": 273, "caret": 273, "include_prereleas": 273, "henc": 273, "fast": 274, "blown": 274, "intervent": 274, "excit": 275, "youtub": 275, "kkgglzm5ou": 275, "tribe": 275, "026": 275, "requirements_trait": 275, "modular": 275, "subapi": 275, "redesign": 275, "send": 275, "thorough": 275, "mydeploi": 275, "meaning": 275, "mylib_a": 275, "mylib_b": 275, "034": 275, "new_lockfil": 275, "enviro": 275, "shorten": 275, "short_path": 275, "incredibuild": 275, "sigstor": 275, "accur": 275, "bulk": 275, "teh": 275}, "objects": {"conan.api.conan_api": [[166, 0, 1, "", "ConanAPI"]], "conan.api.subapi.config": [[167, 0, 1, "", "ConfigAPI"]], "conan.api.subapi.config.ConfigAPI": [[167, 1, 1, "", "global_conf"], [167, 1, 1, "", "settings_yml"]], "conan.api.subapi.download": [[168, 0, 1, "", "DownloadAPI"]], "conan.api.subapi.download.DownloadAPI": [[168, 2, 1, "", "download_full"], [168, 2, 1, "", "package"], [168, 2, 1, "", "recipe"]], "conan.api.subapi.export": [[169, 0, 1, "", "ExportAPI"]], "conan.api.subapi.graph": [[170, 0, 1, "", "GraphAPI"]], "conan.api.subapi.graph.GraphAPI": [[170, 2, 1, "", "analyze_binaries"], [170, 2, 1, "", "load_graph"], [170, 2, 1, "", "load_root_test_conanfile"]], "conan.api.subapi.install": [[171, 0, 1, "", "InstallAPI"]], "conan.api.subapi.install.InstallAPI": [[171, 2, 1, "", "install_binaries"], [171, 2, 1, "", "install_consumer"], [171, 2, 1, "", "install_sources"], [171, 2, 1, "", "install_system_requires"]], "conan.api.subapi.list": [[172, 0, 1, "", "ListAPI"]], "conan.api.subapi.list.ListAPI": [[172, 2, 1, "", "filter_packages_configurations"]], "conan.api.subapi.new": [[173, 0, 1, "", "NewAPI"]], "conan.api.subapi.new.NewAPI": [[173, 2, 1, "", "get_home_template"], [173, 2, 1, "", "get_template"]], "conan.api.subapi.profiles": [[174, 0, 1, "", "ProfilesAPI"]], "conan.api.subapi.profiles.ProfilesAPI": [[174, 2, 1, "", "detect"], [174, 2, 1, "", "get_default_build"], [174, 2, 1, "", "get_default_host"], [174, 2, 1, "", "get_path"], [174, 2, 1, "", "get_profile"], [174, 2, 1, "", "list"]], "conan.api.subapi.remotes": [[175, 0, 1, "", "RemotesAPI"]], "conan.api.subapi.remotes.RemotesAPI": [[175, 2, 1, "", "add"], [175, 2, 1, "", "disable"], [175, 2, 1, "", "enable"], [175, 2, 1, "", "get"], [175, 2, 1, "", "list"], [175, 2, 1, "", "remove"], [175, 2, 1, "", "rename"], [175, 2, 1, "", "update"], [175, 2, 1, "", "user_login"], [175, 2, 1, "", "user_logout"]], "conan.api.subapi.remove": [[176, 0, 1, "", "RemoveAPI"]], "conan.api.subapi.search": [[177, 0, 1, "", "SearchAPI"]], "conan.api.subapi.upload": [[178, 0, 1, "", "UploadAPI"]], "conan.api.subapi.upload.UploadAPI": [[178, 2, 1, "", "check_upstream"], [178, 2, 1, "", "get_backup_sources"], [178, 2, 1, "", "prepare"], [178, 2, 1, "", "upload_full"]], "conan.tools.android": [[181, 3, 1, "", "android_abi"]], "conan.tools.apple": [[183, 0, 1, "", "XCRun"], [183, 3, 1, "", "fix_apple_shared_install_name"], [183, 3, 1, "", "is_apple_os"], [183, 3, 1, "", "to_apple_arch"]], "conan.tools.apple.XCRun": [[183, 1, 1, "", "ar"], [183, 1, 1, "", "cc"], [183, 1, 1, "", "cxx"], [183, 2, 1, "", "find"], [183, 1, 1, "", "install_name_tool"], [183, 1, 1, "", "libtool"], [183, 1, 1, "", "otool"], [183, 1, 1, "", "ranlib"], [183, 1, 1, "", "sdk_path"], [183, 1, 1, "", "sdk_platform_path"], [183, 1, 1, "", "sdk_platform_version"], [183, 1, 1, "", "sdk_version"], [183, 1, 1, "", "strip"]], "conan.tools.apple.xcodebuild": [[184, 0, 1, "", "XcodeBuild"]], "conan.tools.apple.xcodebuild.XcodeBuild": [[184, 2, 1, "", "__init__"], [184, 2, 1, "", "build"]], "conan.tools.build.cppstd": [[187, 3, 1, "", "check_max_cppstd"], [187, 3, 1, "", "check_min_cppstd"], [187, 3, 1, "", "default_cppstd"], [187, 3, 1, "", "supported_cppstd"], [187, 3, 1, "", "valid_max_cppstd"], [187, 3, 1, "", "valid_min_cppstd"]], "conan.tools.build.cpu": [[187, 3, 1, "", "build_jobs"]], "conan.tools.build.cross_building": [[187, 3, 1, "", "can_run"], [187, 3, 1, "", "cross_building"]], "conan.tools.cmake.cmake": [[189, 0, 1, "", "CMake"]], "conan.tools.cmake.cmake.CMake": [[189, 2, 1, "", "build"], [189, 2, 1, "", "configure"], [189, 2, 1, "", "ctest"], [189, 2, 1, "", "install"], [189, 2, 1, "", "test"]], "conan.tools.cmake.cmakedeps.cmakedeps": [[191, 0, 1, "", "CMakeDeps"]], "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps": [[191, 2, 1, "", "generate"], [191, 2, 1, "", "get_cmake_package_name"], [191, 2, 1, "", "get_find_mode"], [191, 2, 1, "", "set_property"]], "conan.tools.cmake.layout": [[190, 3, 1, "", "cmake_layout"]], "conan.tools.cmake.toolchain.toolchain": [[192, 0, 1, "", "CMakeToolchain"]], "conan.tools.cmake.toolchain.toolchain.CMakeToolchain": [[192, 2, 1, "", "generate"]], "conan.tools.env.environment": [[196, 0, 1, "", "EnvVars"], [195, 0, 1, "", "Environment"]], "conan.tools.env.environment.EnvVars": [[196, 2, 1, "", "apply"], [196, 2, 1, "", "get"], [196, 2, 1, "", "items"], [196, 2, 1, "", "save_script"]], "conan.tools.env.environment.Environment": [[195, 2, 1, "", "append"], [195, 2, 1, "", "append_path"], [195, 2, 1, "", "compose_env"], [195, 2, 1, "", "define"], [195, 2, 1, "", "deploy_base_folder"], [195, 2, 1, "", "dumps"], [195, 2, 1, "", "prepend"], [195, 2, 1, "", "prepend_path"], [195, 2, 1, "", "remove"], [195, 2, 1, "", "unset"], [195, 2, 1, "", "vars"]], "conan.tools.env.virtualbuildenv": [[197, 0, 1, "", "VirtualBuildEnv"]], "conan.tools.env.virtualbuildenv.VirtualBuildEnv": [[197, 2, 1, "", "environment"], [197, 2, 1, "", "generate"], [197, 2, 1, "", "vars"]], "conan.tools.env.virtualrunenv": [[198, 0, 1, "", "VirtualRunEnv"]], "conan.tools.env.virtualrunenv.VirtualRunEnv": [[198, 2, 1, "", "environment"], [198, 2, 1, "", "generate"], [198, 2, 1, "", "vars"]], "conan.tools.files": [[200, 3, 1, "", "collect_libs"]], "conan.tools.files.conandata": [[200, 3, 1, "", "trim_conandata"], [200, 3, 1, "", "update_conandata"]], "conan.tools.files.copy_pattern": [[200, 3, 1, "", "copy"]], "conan.tools.files.files": [[200, 3, 1, "", "chdir"], [201, 3, 1, "", "check_md5"], [201, 3, 1, "", "check_sha1"], [201, 3, 1, "", "check_sha256"], [202, 3, 1, "", "download"], [202, 3, 1, "", "ftp_download"], [202, 3, 1, "", "get"], [200, 3, 1, "", "load"], [200, 3, 1, "", "mkdir"], [200, 3, 1, "", "rename"], [200, 3, 1, "", "replace_in_file"], [200, 3, 1, "", "rm"], [200, 3, 1, "", "rmdir"], [200, 3, 1, "", "save"], [200, 3, 1, "", "unzip"]], "conan.tools.files.patches": [[204, 3, 1, "", "apply_conandata_patches"], [204, 3, 1, "", "export_conandata_patches"], [204, 3, 1, "", "patch"]], "conan.tools.files.symlinks": [[205, 3, 1, "", "absolute_to_relative_symlinks"], [205, 3, 1, "", "remove_broken_symlinks"], [205, 3, 1, "", "remove_external_symlinks"]], "conan.tools.gnu": [[210, 0, 1, "", "MakeDeps"], [211, 0, 1, "", "PkgConfig"], [212, 0, 1, "", "PkgConfigDeps"]], "conan.tools.gnu.MakeDeps": [[210, 2, 1, "", "generate"]], "conan.tools.gnu.PkgConfig": [[211, 2, 1, "", "fill_cpp_info"]], "conan.tools.gnu.PkgConfigDeps": [[212, 1, 1, "", "content"], [212, 2, 1, "", "generate"]], "conan.tools.gnu.autotools": [[207, 0, 1, "", "Autotools"]], "conan.tools.gnu.autotools.Autotools": [[207, 2, 1, "", "autoreconf"], [207, 2, 1, "", "configure"], [207, 2, 1, "", "install"], [207, 2, 1, "", "make"]], "conan.tools.gnu.autotoolsdeps": [[208, 0, 1, "", "AutotoolsDeps"]], "conan.tools.gnu.autotoolsdeps.AutotoolsDeps": [[208, 1, 1, "", "environment"]], "conan.tools.gnu.autotoolstoolchain": [[209, 0, 1, "", "AutotoolsToolchain"]], "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain": [[209, 2, 1, "", "update_autoreconf_args"], [209, 2, 1, "", "update_configure_args"], [209, 2, 1, "", "update_make_args"]], "conan.tools.google": [[214, 0, 1, "", "Bazel"], [215, 0, 1, "", "BazelDeps"], [216, 0, 1, "", "BazelToolchain"]], "conan.tools.google.Bazel": [[214, 2, 1, "", "build"], [214, 2, 1, "", "test"]], "conan.tools.google.BazelDeps": [[215, 4, 1, "", "build_context_activated"], [215, 2, 1, "", "generate"]], "conan.tools.google.BazelToolchain": [[216, 4, 1, "", "compilation_mode"], [216, 4, 1, "", "compiler"], [216, 4, 1, "", "conlyopt"], [216, 4, 1, "", "copt"], [216, 4, 1, "", "cppstd"], [216, 4, 1, "", "cpu"], [216, 4, 1, "", "crosstool_top"], [216, 4, 1, "", "cxxopt"], [216, 4, 1, "", "dynamic_mode"], [216, 4, 1, "", "force_pic"], [216, 2, 1, "", "generate"], [216, 4, 1, "", "linkopt"]], "conan.tools.intel": [[217, 0, 1, "", "IntelCC"]], "conan.tools.intel.IntelCC": [[217, 4, 1, "", "arch"], [217, 1, 1, "", "command"], [217, 2, 1, "", "generate"], [217, 1, 1, "", "installation_path"], [217, 1, 1, "", "ms_toolset"]], "conan.tools.meson": [[220, 0, 1, "", "Meson"], [221, 0, 1, "", "MesonToolchain"]], "conan.tools.meson.Meson": [[220, 2, 1, "", "build"], [220, 2, 1, "", "configure"], [220, 2, 1, "", "install"], [220, 2, 1, "", "test"]], "conan.tools.meson.MesonToolchain": [[221, 4, 1, "", "apple_arch_flag"], [221, 4, 1, "", "apple_isysroot_flag"], [221, 4, 1, "", "apple_min_version_flag"], [221, 4, 1, "", "ar"], [221, 4, 1, "", "as_"], [221, 4, 1, "", "c"], [221, 4, 1, "", "c_args"], [221, 4, 1, "", "c_ld"], [221, 4, 1, "", "c_link_args"], [221, 4, 1, "", "cpp"], [221, 4, 1, "", "cpp_args"], [221, 4, 1, "", "cpp_ld"], [221, 4, 1, "", "cpp_link_args"], [221, 4, 1, "", "cross_build"], [221, 2, 1, "", "generate"], [221, 4, 1, "", "ld"], [221, 4, 1, "", "objc"], [221, 4, 1, "", "objc_args"], [221, 4, 1, "", "objc_link_args"], [221, 4, 1, "", "objcpp"], [221, 4, 1, "", "objcpp_args"], [221, 4, 1, "", "objcpp_link_args"], [221, 4, 1, "", "pkg_config_path"], [221, 4, 1, "", "pkgconfig"], [221, 4, 1, "", "preprocessor_definitions"], [221, 4, 1, "", "project_options"], [221, 4, 1, "", "properties"], [221, 4, 1, "", "strip"], [221, 4, 1, "", "windres"]], "conan.tools.microsoft": [[224, 0, 1, "", "MSBuild"], [225, 0, 1, "", "MSBuildDeps"], [226, 0, 1, "", "MSBuildToolchain"], [228, 0, 1, "", "VCVars"], [223, 3, 1, "", "unix_path"], [229, 3, 1, "", "vs_layout"]], "conan.tools.microsoft.MSBuild": [[224, 2, 1, "", "build"], [224, 2, 1, "", "command"]], "conan.tools.microsoft.MSBuildDeps": [[225, 2, 1, "", "generate"]], "conan.tools.microsoft.MSBuildToolchain": [[226, 2, 1, "", "generate"]], "conan.tools.microsoft.VCVars": [[228, 2, 1, "", "generate"]], "conan.tools.microsoft.visual": [[223, 3, 1, "", "check_min_vs"], [223, 3, 1, "", "is_msvc"], [223, 3, 1, "", "is_msvc_static_runtime"], [223, 3, 1, "", "msvc_runtime_flag"], [223, 3, 1, "", "msvs_toolset"]], "conan.tools.scm": [[232, 0, 1, "", "Version"]], "conan.tools.scm.git": [[231, 0, 1, "", "Git"]], "conan.tools.scm.git.Git": [[231, 2, 1, "", "checkout"], [231, 2, 1, "", "checkout_from_conandata_coordinates"], [231, 2, 1, "", "clone"], [231, 2, 1, "", "commit_in_remote"], [231, 2, 1, "", "coordinates_to_conandata"], [231, 2, 1, "", "fetch_commit"], [231, 2, 1, "", "get_commit"], [231, 2, 1, "", "get_remote_url"], [231, 2, 1, "", "get_repo_root"], [231, 2, 1, "", "get_url_and_commit"], [231, 2, 1, "", "included_files"], [231, 2, 1, "", "is_dirty"], [231, 2, 1, "", "run"]], "conan.tools.system.package_manager": [[235, 0, 1, "", "Apk"], [235, 0, 1, "", "Apt"], [235, 0, 1, "", "Brew"], [235, 0, 1, "", "Chocolatey"], [235, 0, 1, "", "PacMan"], [235, 0, 1, "", "Pkg"], [235, 0, 1, "", "PkgUtil"], [235, 0, 1, "", "Yum"], [235, 0, 1, "", "Zypper"]], "conan.tools.system.package_manager.Apk": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Apt": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Brew": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Chocolatey": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.PacMan": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Pkg": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.PkgUtil": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Yum": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conan.tools.system.package_manager.Zypper": [[235, 2, 1, "", "check"], [235, 2, 1, "", "install"], [235, 2, 1, "", "install_substitutes"], [235, 2, 1, "", "update"]], "conans.model.conf.Conf": [[136, 2, 1, "", "append"], [136, 2, 1, "", "define"], [136, 2, 1, "", "prepend"], [136, 2, 1, "", "remove"], [136, 2, 1, "", "unset"], [136, 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, 61, 275], "1": [1, 265], "0": [1, 265], "15": 1, "feb": 1, "2024": 1, "17": 1, "10": 1, "jan": 1, "16": 1, "21": 1, "dec": 1, "2023": 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, "22": 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, 275], "creat": [3, 4, 5, 6, 19, 24, 26, 35, 56, 59, 62, 90, 106, 118, 196, 240, 250, 254, 272], "an": [3, 248], "artifactori": [3, 69, 240], "backup": [3, 4, 88, 275], "repo": [3, 240], "your": [3, 5, 24, 36, 47, 48, 56, 59, 118, 245, 252, 254], "sourc": [3, 4, 29, 36, 52, 62, 74, 114, 120, 140, 252, 255, 256, 266, 267, 275], "back": 4, "up": [4, 239, 241], "third": [4, 19, 275], "parti": [4, 19, 275], "conan": [4, 12, 21, 26, 30, 31, 35, 43, 45, 48, 54, 55, 56, 59, 61, 87, 88, 89, 90, 91, 92, 93, 94, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 160, 166, 181, 182, 183, 187, 188, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 207, 213, 217, 218, 219, 221, 222, 223, 230, 233, 234, 235, 237, 238, 239, 240, 241, 244, 245, 249, 253, 254, 255, 261, 263, 266, 267, 268, 275], "configur": [4, 22, 23, 67, 84, 118, 127, 133, 147, 150, 161, 185, 191, 217, 225, 235, 246, 248, 253, 255, 271, 275], "overview": 4, "usag": 4, "set": [4, 24, 77, 82, 84, 102, 111, 120, 151, 153, 190, 239, 241, 246, 253, 255, 260], "necessari": 4, "config": [4, 50, 89, 167], "run": [4, 31, 36, 118, 137, 145, 196, 240, 252], "normal": 4, "upload": [4, 6, 13, 88, 116, 178, 242, 272], "packag": [4, 6, 7, 8, 13, 17, 19, 21, 31, 38, 50, 56, 59, 61, 74, 77, 103, 120, 134, 163, 235, 242, 243, 246, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 263, 264, 265, 266, 267, 268, 272, 275], "repositori": [4, 237, 256], "host": [5, 245], "own": [5, 118], "conancent": [5, 8], "binari": [5, 74, 81, 82, 84, 120, 157, 253, 259], "updat": [5, 62, 102, 111], "from": [5, 7, 13, 29, 36, 62, 82, 145, 162, 191, 248, 256, 268], "upstream": 5, "manag": [6, 60, 61, 74, 209, 235, 261, 275], "metadata": [6, 91, 120, 275], "file": [6, 23, 50, 51, 147, 150, 179, 191, 192, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 208, 209, 210, 212, 215, 216, 221, 225, 256, 261, 275], "recip": [6, 31, 43, 82, 103, 145, 180, 252, 253, 255, 260], "hook": [6, 162], "ad": [6, 135, 153], "command": [6, 12, 31, 32, 69, 86, 145, 158, 159, 275], "download": [6, 13, 91, 150, 168, 202, 259], "remov": [6, 13, 92, 108, 111, 112, 176, 260, 268], "test_packag": 6, "save": [7, 88, 200], "restor": [7, 88], "cach": [7, 88, 140, 150, 254, 268, 275], "us": [8, 13, 17, 24, 35, 38, 41, 42, 45, 47, 50, 52, 54, 55, 62, 67, 90, 118, 160, 191, 192, 207, 221, 240, 244, 245, 246, 248, 249, 256, 261, 265, 272], "product": 8, "environ": [8, 22, 133, 155, 195, 196, 209, 227, 255, 275], "repeat": 8, "reproduc": 8, "servic": 8, "reliabl": 8, "complianc": 8, "secur": 8, "control": 8, "custom": [8, 24, 31, 32, 34, 82, 84, 109, 118, 153, 159, 160, 161, 185, 191, 192, 193, 208, 209, 210, 212, 215, 217, 221, 224, 225, 226, 227, 228, 275], "version": [9, 10, 39, 40, 82, 102, 117, 120, 232, 247, 269, 273, 274], "handl": [10, 256], "rang": [10, 247, 273], "pre": [10, 259], "releas": [10, 246], "exampl": [11, 12, 14, 15, 20, 23, 25, 30, 37, 43, 109], "list": [13, 89, 92, 103, 110, 111, 172, 268, 275], "them": 13, "one": 13, "remot": [13, 111, 152, 155, 175, 239, 256], "differ": [13, 39, 40, 77, 246, 272], "build": [13, 25, 26, 27, 29, 45, 47, 52, 54, 55, 69, 74, 84, 87, 90, 97, 98, 120, 122, 136, 137, 187, 192, 207, 221, 244, 245, 246, 249, 252, 259, 262, 265, 266, 267, 275], "conanfil": [14, 15, 16, 20, 26, 102, 119, 146, 248], "method": [14, 52, 82, 121, 235, 248, 252, 255, 261], "layout": [15, 16, 18, 19, 120, 133, 146, 218, 248, 267], "declar": [16, 18, 19, 195], "when": [16, 18, 19, 207], "i": [16, 85, 207], "insid": [16, 41, 50], "subfold": 16, "compon": [17, 21, 136, 185, 255], "edit": [17, 92, 240, 265], "we": 18, "have": 18, "multipl": [18, 21, 246, 255], "subproject": 18, "librari": [19, 21, 136, 153, 207, 246, 252, 253, 255, 258], "package_info": [20, 136, 255], "defin": [21, 185, 255], "provid": [21, 120, 255], "propag": [22, 255], "inform": [22, 60, 82, 120, 135, 136, 150, 193, 255], "consum": [22, 82, 120, 191, 243, 255], "settings_us": [24, 153], "yml": [24, 153, 256], "locat": [24, 31, 36, 159], "new": [24, 26, 109, 153, 173, 274, 275], "cross": [25, 27, 84, 192, 221, 245], "integr": [26, 63, 88, 275], "android": [26, 27, 64, 181, 221], "studio": [26, 29, 59, 72], "project": [26, 45, 47, 54, 55, 191, 244, 252], "introduc": [26, 246, 252, 255], "depend": [26, 29, 35, 36, 38, 39, 40, 49, 82, 83, 120, 131, 225, 246, 251, 255, 265, 270], "txt": [26, 146, 248], "gradl": 26, "conan_android_toolchain": 26, "cmake": [26, 38, 41, 46, 49, 50, 68, 188, 189, 191, 244, 261], "cmakelist": 26, "applic": [26, 245, 246], "ndk": 27, "develop": [28, 35, 264, 266], "tool": [28, 39, 40, 43, 44, 46, 51, 52, 53, 57, 58, 150, 180, 181, 182, 183, 187, 188, 193, 194, 199, 200, 201, 202, 203, 204, 205, 206, 213, 217, 218, 219, 222, 223, 230, 233, 234, 235, 249, 260, 261], "flow": [28, 266], "debug": [29, 246], "step": [29, 261], "visual": [29, 59, 72, 223], "extens": [30, 69, 156, 275], "clean": [31, 88], "old": 31, "revis": [31, 77, 103, 247, 272, 275], "code": [31, 36, 252], "tour": [31, 36], "parser": 31, "user": [31, 102, 111, 120, 150, 275], "input": 31, "output": [31, 90, 93, 103, 120, 145], "public": [31, 275], "api": [31, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 275], "builtin": 33, "deploy": [33, 34, 36, 102, 161, 275], "agnost": 35, "deploi": [35, 36, 128], "copi": [36, 200, 248, 261], "all": [36, 74], "graph": [37, 95, 96, 97, 98, 99, 100, 103, 170, 275], "macro": 38, "same": [39, 40, 42], "requir": [39, 40, 42, 90, 102, 120, 137, 141, 146, 179, 225, 248, 260, 274], "option": [39, 82, 84, 102, 120, 146, 151, 190, 221, 246, 253, 255, 270], "modul": [41, 162], "tool_requir": [41, 42, 120, 124, 146, 151], "transpar": 41, "autotool": [44, 45, 65, 207], "simpl": [45, 54, 55, 244, 260], "linux": [45, 77], "maco": [45, 207], "cmaketoolchain": [47, 48, 49, 50, 192], "cmakepreset": [47, 48], "gener": [47, 48, 69, 102, 120, 131, 146, 160, 191, 192, 193, 197, 198, 208, 209, 210, 212, 215, 216, 221, 225, 248, 255], "toolchain": [47, 192], "extend": [48, 84, 179, 192], "ones": 48, "inject": 49, "arbitrari": 49, "variabl": [49, 133, 155, 185, 192, 195, 196], "xxx": 50, "import": [50, 162, 191, 268], "consider": 50, "patch": [52, 204, 252], "replace_in_fil": [52, 200], "apply_conandata_patch": [52, 204], "googl": [53, 213], "bazel": [54, 66, 214], "meson": [55, 56, 57, 71, 219, 220, 221], "first": [56, 59, 254], "microsoft": [58, 222, 223], "msbuild": [59, 224], "captur": 60, "git": [60, 231, 256], "scm": [60, 230], "credenti": [60, 149], "c": [61, 153, 221, 240, 253], "document": [61, 74], "instal": [62, 67, 69, 89, 102, 171, 191, 261, 266], "pip": 62, "recommend": 62, "known": 62, "issu": 62, "pipx": 62, "system": [62, 74, 141, 153, 234, 235, 252, 275], "self": [62, 131, 133, 267], "contain": 62, "execut": 62, "android_logo": 64, "autotools_logo": 65, "bazel_logo": 66, "clion_logo": 67, "clion": 67, "introduct": [67, 74, 150, 151, 179, 247], "plugin": [67, 82, 164, 275], "cmake_logo": 68, "jfrog_logo": 69, "jfrog": 69, "info": [69, 95, 100, 120], "how": [69, 85, 207, 235, 245], "gnu_make_logo": 70, "makefil": 70, "meson_logo": 71, "visual_studio_logo": 72, "xcode_logo": 73, "xcode": 73, "open": 74, "decentr": 74, "platform": 74, "compil": [74, 153, 192, 245], "stabl": 74, "commun": [74, 240], "navig": 74, "knowledg": 75, "cheat": 76, "sheet": 76, "faq": 77, "troubleshoot": 77, "error": [77, 248], "miss": 77, "prebuilt": [77, 259], "invalid": 77, "authenticationexcept": 77, "obtain": [77, 195], "window": 77, "core": [78, 150], "guidelin": 78, "good": 78, "practic": 78, "forbidden": 78, "video": 79, "refer": [80, 103, 120, 166, 184, 189, 190, 191, 192, 195, 196, 197, 198, 207, 208, 209, 210, 211, 212, 214, 215, 216, 217, 220, 221, 224, 225, 226, 228, 235], "The": [81, 82, 83], "model": [81, 84, 120, 245, 255, 275], "compat": [82, 125, 157, 253, 275], "erasur": [82, 135], "package_id": [82, 83, 85, 135, 179, 260, 275], "py": [82, 119, 248, 275], "global": [82, 150, 160], "default": [82, 137, 221], "mode": [82, 83, 265], "effect": [83, 179], "non": [83, 248], "emb": [83, 120], "v": [84, 248], "conf": [84, 102, 120, 150, 151, 184, 186, 189, 192, 202, 209, 211, 214, 216, 217, 220, 221, 224, 225, 226, 227, 228], "target": [84, 191], "comput": 85, "formatt": [86, 95, 159], "path": [88, 102, 110], "check": 88, "home": 89, "show": [89, 110], "add": [92, 105, 111, 153, 251], "export": [93, 94, 120, 129, 169, 266], "format": [93, 103], "pkg": [94, 235, 266], "json": [95, 103, 149, 152, 154], "order": [97, 98], "merg": [98, 107], "explain": 99, "inspect": 101, "profil": [102, 110, 151, 164, 174, 245, 275], "name": [102, 120, 159, 212, 215], "channel": [102, 120], "lockfil": [102, 247, 271, 275], "id": [103, 246, 253], "artifact": 103, "html": 103, "compact": 103, "lock": [104, 105, 106, 107, 108], "templat": [109, 150], "detect": 110, "auth": 111, "disabl": [111, 191], "enabl": 111, "login": [111, 155], "logout": 111, "renam": [111, 200], "search": [113, 177], "test": [115, 137, 142, 179, 252, 258, 263], "server": [118, 241], "paramet": [118, 159], "permiss": 118, "authent": 118, "author": [118, 120], "ssl": 118, "nginx": 118, "subdirectori": 118, "apach": 118, "attribut": [120, 209, 212, 221, 224, 226, 227], "descript": [120, 150], "licens": [120, 261], "topic": 120, "homepag": 120, "url": 120, "build_requir": [120, 124], "test_requir": [120, 124, 146], "python_requir": [120, 160, 179, 268], "python_requires_extend": 120, "exports_sourc": 120, "conan_data": 120, "source_buildenv": 120, "package_typ": [120, 137], "default_opt": 120, "default_build_opt": 120, "options_descript": 120, "package_id_": 120, "non_emb": 120, "python": [120, 165, 179, 275], "unknown": 120, "_mode": 120, "build_polici": 120, "win_bash": 120, "win_bash_run": 120, "folder": [120, 133, 267], "source_fold": 120, "export_sources_fold": 120, "build_fold": 120, "package_fold": 120, "recipe_fold": 120, "recipe_metadata_fold": 120, "package_metadata_fold": 120, "no_copy_sourc": 120, "cpp": [120, 133, 267], "cpp_info": [120, 131, 136], "buildenv_info": [120, 136], "runenv_info": [120, 136], "conf_info": [120, 136], "deprec": [120, 151], "other": [120, 257, 268], "content": [120, 192, 237, 243, 250, 257, 269], "revision_mod": 120, "upload_polici": 120, "required_conan_vers": 120, "implement": [120, 126, 127, 135], "alia": 120, "extension_properti": 120, "build_id": 123, "host_vers": 124, "config_opt": 126, "avail": [126, 127, 135, 235], "automat": [126, 127, 135], "auto_shared_fp": [126, 127], "export_sourc": 130, "interfac": [131, 162], "iter": [131, 196], "init": 132, "auto_header_onli": 135, "partial": 135, "properti": [136, 191, 212, 214, 215, 235, 255], "trait": [137, 225], "header": [137, 253, 258], "lib": 137, "visibl": 137, "transitive_head": 137, "transitive_lib": 137, "package_id_mod": 137, "forc": [137, 140], "overrid": [137, 270], "direct": 137, "infer": 137, "each": 137, "kind": 137, "set_nam": 138, "set_vers": 139, "retriev": 140, "system_requir": 141, "collect": 141, "valid": [143, 248], "validate_build": 144, "text": 145, "conanrc": 148, "storage_path": 150, "download_cach": 150, "data": [150, 221], "type": [150, 221, 257], "oper": [150, 153, 200], "pattern": [150, 151], "about": [150, 207, 254], "built": [150, 161, 207, 259], "network": 150, "client": 150, "certif": 150, "ux": 150, "skip": 150, "warn": 150, "section": 151, "system_tool": 151, "buildenv": 151, "runenv": 151, "replace_requir": 151, "replace_tool_requir": 151, "platform_requir": 151, "platform_tool_requir": 151, "render": 151, "includ": 151, "msvc": 153, "intel": [153, 217], "cc": 153, "architectur": 153, "standard": 153, "aka": 153, "libcxx": 153, "sub": 153, "valu": 153, "source_credenti": 154, "conan_hom": 155, "conan_default_profil": 155, "termin": 155, "color": 155, "log": 155, "wrapper": [158, 275], "scope": 159, "decor": 159, "conan_command": 159, "group": 159, "none": 159, "conan_subcommand": 159, "argument": [159, 221], "definit": [159, 195], "pars": 159, "full_deploi": 161, "direct_deploi": 161, "structur": 162, "storag": 162, "activ": 162, "share": [162, 207, 246], "offici": 162, "sign": [163, 275], "base": 179, "class": 179, "reus": 179, "resolut": 179, "android_abi": 181, "appl": [182, 183, 221], "fix_apple_shared_install_nam": 183, "is_apple_o": 183, "to_apple_arch": 183, "xcrun": 183, "xcodebuild": 184, "xcodedep": 185, "addit": 185, "support": [185, 225, 248], "xcodetoolchain": 186, "build_job": 187, "cross_build": 187, "can_run": 187, "cppstd": 187, "check_min_cppstd": 187, "check_max_cppstd": 187, "valid_min_cppstd": 187, "valid_max_cppstd": 187, "default_cppstd": 187, "supported_cppstd": 187, "cmake_layout": 190, "multi": [190, 271, 275], "cmakedep": 191, "build_context_activ": [191, 212, 215], "build_context_suffix": [191, 212], "build_context_build_modul": 191, "check_components_exist": 191, "overwrit": 191, "side": 191, "set_properti": 191, "For": 191, "map": 191, "": [191, 275], "preprocessor_definit": [192, 221], "cache_vari": 192, "user_presets_path": 192, "presets_build_environ": 192, "presets_run_environ": 192, "extra": 192, "flag": [192, 210], "presets_prefix": 192, "advanc": 192, "block": 192, "cppinfo": 193, "aggreg": 193, "env": 194, "composit": 195, "envvar": 196, "appli": 196, "virtualbuildenv": 197, "virtualrunenv": 198, "basic": 200, "load": 200, "rm": 200, "mkdir": 200, "rmdir": 200, "chdir": 200, "unzip": 200, "update_conandata": 200, "trim_conandata": 200, "collect_lib": 200, "checksum": 201, "check_md5": 201, "check_sha1": 201, "check_sha256": 201, "get": 202, "ftp_download": 202, "autopackag": 203, "export_conandata_patch": 204, "symlink": [205, 261], "absolute_to_relative_symlink": 205, "remove_external_symlink": 205, "remove_broken_symlink": 205, "gnu": 206, "A": [207, 254, 260], "note": [207, 254], "relocat": 207, "helper": 207, "why": 207, "thi": 207, "problem": 207, "address": 207, "autotoolsdep": 208, "autotoolstoolchain": 209, "configure_arg": 209, "make_arg": 209, "autoreconf_arg": 209, "makedep": 210, "pkgconfig": 211, "pkgconfigdep": 212, "bazeldep": 215, "bazeltoolchain": 216, "intelcc": 217, "predefin": 218, "basic_layout": 218, "mesontoolchain": 221, "conan_meson_n": 221, "ini": 221, "conan_meson_cross": 221, "directori": 221, "project_opt": 221, "proper": 221, "object": 221, "check_min_v": 223, "msvc_runtime_flag": 223, "is_msvc": 223, "is_msvc_static_runtim": 223, "msvs_toolset": 223, "subsystem": 223, "unix_path": 223, "msbuilddep": 225, "msbuildtoolchain": 226, "nmakedep": 227, "nmaketoolchain": 227, "constructor": 227, "vcvar": 228, "vs_layout": 229, "scon": 233, "sconsdep": 233, "package_manag": 235, "affect": 235, "ar": 235, "invok": 235, "apk": 235, "apt": 235, "yum": 235, "dnf": 235, "pacman": 235, "zypper": 235, "brew": 235, "pkgutil": 235, "chocolatei": 235, "tutori": 236, "work": [237, 265], "tabl": [237, 243, 250, 257, 269], "contribut": 238, "center": 238, "ce": 240, "context": 245, "two": 245, "static": 246, "modifi": 246, "its": 246, "link": 246, "between": 246, "concept": 246, "understand": [248, 267], "flexibl": 248, "rais": 248, "condit": 248, "resourc": 248, "chang": [252, 255], "condition": 252, "select": 252, "onli": [253, 258], "specif": 255, "zip": 256, "store": 256, "branch": 256, "conandata": 256, "local": [259, 264], "alreadi": 259, "prepar": 262, "put": 265, "sai": 265, "revert": 265, "featur": 268, "unus": 268, "conflict": 270, "resolv": 270, "evolv": 271, "semant": 273, "express": 273, "autom": 274, "what": 275, "migrat": 275, "cli": 275, "checker": 275, "immut": 275, "optim": 275}, "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.1.0 (15-Feb-2024)": [[1, "feb-2024"]], "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, "id77"]], "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, "id159"]], "2.0.11 (18-Sept-2023)": [[1, "id171"]], "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, "id257"]], "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, "id326"]], "2.0.4 (11-Apr-2023)": [[1, "apr-2023"]], "2.0.3 (03-Apr-2023)": [[1, "id386"]], "2.0.2 (15-Mar-2023)": [[1, "mar-2023"]], "2.0.1 (03-Mar-2023)": [[1, "id435"]], "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"], [91, "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"], [269, "versioning"]], "Handling version ranges and pre-releases": [[10, "handling-version-ranges-and-pre-releases"]], "Examples": [[11, "examples"], [109, "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"], [255, "define-components-for-conan-packages-that-provide-multiple-libraries"]], "Propagating environment or configuration information to consumers": [[22, "propagating-environment-or-configuration-information-to-consumers"], [255, "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"], [146, "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"]], "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"], [159, "custom-commands"]], "Builtin deployers": [[33, "builtin-deployers"]], "Custom deployers": [[34, "custom-deployers"], [161, "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"], [128, "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"]], "CMakeToolchain: Using xxx-config.cmake files inside packages": [[50, "cmaketoolchain-using-xxx-config-cmake-files-inside-packages"]], "Important considerations": [[50, "important-considerations"]], "tools.files": [[51, "tools-files"]], "Patching sources": [[52, "patching-sources"]], "Patching using \u2018replace_in_file\u2019": [[52, "patching-using-replace-in-file"]], "in source() method": [[52, "in-source-method"]], "in build() method": [[52, "in-build-method"]], "Patching using \u201cpatch\u201d tool": [[52, "patching-using-patch-tool"]], "Patching using \u201capply_conandata_patches\u201d tool": [[52, "patching-using-apply-conandata-patches-tool"]], "tools.google": [[53, "tools-google"]], "Build a simple Bazel project using Conan": [[54, "build-a-simple-bazel-project-using-conan"]], "Build a simple Meson project using Conan": [[55, "build-a-simple-meson-project-using-conan"]], "Create your first Conan package with Meson": [[56, "create-your-first-conan-package-with-meson"]], "tools.meson": [[57, "tools-meson"]], "tools.microsoft": [[58, "tools-microsoft"]], "Create your first Conan package with Visual Studio/MSBuild": [[59, "create-your-first-conan-package-with-visual-studio-msbuild"]], "Capturing Git scm information": [[60, "capturing-git-scm-information"]], "Credentials management": [[60, "credentials-management"]], "Conan 2 - C and C++ Package Manager Documentation": [[61, "conan-2-c-and-c-package-manager-documentation"]], "Install": [[62, "install"]], "Install with pip (recommended)": [[62, "install-with-pip-recommended"]], "Known installation issues with pip": [[62, "known-installation-issues-with-pip"]], "Update": [[62, "update"], [102, "update"]], "Install with pipx": [[62, "install-with-pipx"]], "Use a system installer or create a self-contained executable": [[62, "use-a-system-installer-or-create-a-self-contained-executable"]], "Install from source": [[62, "install-from-source"]], "Integrations": [[63, "integrations"]], "android_logo Android": [[64, "android-logo-android"]], "autotools_logo Autotools": [[65, "autotools-logo-autotools"]], "bazel_logo Bazel": [[66, "bazel-logo-bazel"]], "clion_logo CLion": [[67, "clion-logo-clion"]], "Introduction": [[67, "introduction"], [74, "introduction"], [179, "introduction"]], "Installing the plugin": [[67, "installing-the-plugin"]], "Configuring the plugin": [[67, "configuring-the-plugin"]], "Using the plugin": [[67, "using-the-plugin"]], "cmake_logo CMake": [[68, "cmake-logo-cmake"]], "jfrog_logo JFrog": [[69, "jfrog-logo-jfrog"]], "Artifactory Build Info": [[69, "artifactory-build-info"]], "How to install the build info extension commands": [[69, "how-to-install-the-build-info-extension-commands"]], "Generating a Build Info": [[69, "generating-a-build-info"]], "gnu_make_logo Makefile": [[70, "gnu-make-logo-makefile"]], "meson_logo Meson": [[71, "meson-logo-meson"]], "visual_studio_logo Visual Studio": [[72, "visual-studio-logo-visual-studio"]], "xcode_logo Xcode": [[73, "xcode-logo-xcode"]], "Open Source": [[74, "open-source"]], "Decentralized package manager": [[74, "decentralized-package-manager"]], "Binary management": [[74, "binary-management"]], "All platforms, all build systems and compilers": [[74, "all-platforms-all-build-systems-and-compilers"]], "Stable": [[74, "stable"]], "Community": [[74, "community"]], "Navigating the documentation": [[74, "navigating-the-documentation"]], "Knowledge": [[75, "knowledge"]], "Cheat sheet": [[76, "cheat-sheet"]], "FAQ": [[77, "faq"]], "Troubleshooting": [[77, "troubleshooting"]], "ERROR: Missing prebuilt package": [[77, "error-missing-prebuilt-package"]], "ERROR: Invalid setting": [[77, "error-invalid-setting"]], "ERROR: AuthenticationException:": [[77, "error-authenticationexception"]], "ERROR: Obtaining different revisions in Linux and Windows": [[77, "error-obtaining-different-revisions-in-linux-and-windows"]], "Core guidelines": [[78, "core-guidelines"]], "Good practices": [[78, "good-practices"]], "Forbidden practices": [[78, "forbidden-practices"]], "Videos": [[79, "videos"]], "Reference": [[80, "reference"], [184, "reference"], [189, "reference"], [190, "reference"], [191, "reference"], [192, "reference"], [195, "reference"], [196, "reference"], [197, "reference"], [198, "reference"], [207, "reference"], [208, "reference"], [209, "reference"], [210, "reference"], [211, "reference"], [212, "reference"], [214, "reference"], [215, "reference"], [216, "reference"], [217, "reference"], [220, "reference"], [221, "reference"], [224, "reference"], [225, "reference"], [226, "reference"], [228, "reference"], [235, "reference"], [235, "id4"], [235, "id6"], [235, "id7"], [235, "id8"], [235, "id9"], [235, "id10"], [235, "id11"], [235, "id12"]], "The binary model": [[81, "the-binary-model"]], "Customizing the binary compatibility": [[82, "customizing-the-binary-compatibility"]], "Customizing binary compatibility of settings and options": [[82, "customizing-binary-compatibility-of-settings-and-options"]], "Information erasure in package_id() method": [[82, "information-erasure-in-package-id-method"]], "The compatibility() method": [[82, "the-compatibility-method"]], "The compatibility.py plugin": [[82, "the-compatibility-py-plugin"]], "Customizing binary compatibility of dependencies versions": [[82, "customizing-binary-compatibility-of-dependencies-versions"]], "Global default package_id modes": [[82, "global-default-package-id-modes"]], "Custom package_id modes for recipe consumers": [[82, "custom-package-id-modes-for-recipe-consumers"]], "Custom package_id from recipe dependencies": [[82, "custom-package-id-from-recipe-dependencies"]], "The effect of dependencies on package_id": [[83, "the-effect-of-dependencies-on-package-id"]], "Non-embed mode": [[83, "non-embed-mode"]], "Embed mode": [[83, "embed-mode"]], "Extending the binary model": [[84, "extending-the-binary-model"]], "Custom settings": [[84, "custom-settings"]], "Custom options": [[84, "custom-options"]], "Settings vs options vs conf": [[84, "settings-vs-options-vs-conf"]], "Custom configuration": [[84, "custom-configuration"]], "Cross build target settings": [[84, "cross-build-target-settings"]], "How the package_id is computed": [[85, "how-the-package-id-is-computed"]], "Commands": [[86, "commands"]], "Command formatters": [[86, "command-formatters"]], "conan build": [[87, "conan-build"], [266, "conan-build"]], "conan cache": [[88, "conan-cache"]], "conan cache path": [[88, "conan-cache-path"]], "conan cache clean": [[88, "conan-cache-clean"]], "conan cache check-integrity": [[88, "conan-cache-check-integrity"]], "conan cache backup-upload": [[88, "conan-cache-backup-upload"]], "conan cache save": [[88, "conan-cache-save"]], "conan cache restore": [[88, "conan-cache-restore"]], "conan config": [[89, "conan-config"]], "conan config home": [[89, "conan-config-home"]], "conan config install": [[89, "conan-config-install"]], "conan config list": [[89, "conan-config-list"]], "conan config show": [[89, "conan-config-show"]], "conan create": [[90, "conan-create"]], "Using conan create with build requirements": [[90, "using-conan-create-with-build-requirements"]], "Conan create output": [[90, "conan-create-output"]], "conan download": [[91, "conan-download"]], "conan editable": [[92, "conan-editable"]], "conan editable add": [[92, "conan-editable-add"]], "conan editable remove": [[92, "conan-editable-remove"]], "conan editable list": [[92, "conan-editable-list"]], "conan export": [[93, "conan-export"]], "Output Formats": [[93, "output-formats"]], "conan export-pkg": [[94, "conan-export-pkg"], [266, "conan-export-pkg"]], "Formatter: Graph-info JSON": [[95, "formatter-graph-info-json"]], "conan graph": [[96, "conan-graph"]], "conan graph build-order": [[97, "conan-graph-build-order"]], "conan graph build-order-merge": [[98, "conan-graph-build-order-merge"]], "conan graph explain": [[99, "conan-graph-explain"]], "conan graph info": [[100, "conan-graph-info"]], "conan inspect": [[101, "conan-inspect"]], "conan install": [[102, "conan-install"], [266, "conan-install"]], "Conanfile path or \u2013requires": [[102, "conanfile-path-or-requires"]], "Profiles, Settings, Options, Conf": [[102, "profiles-settings-options-conf"]], "Generators and deployers": [[102, "generators-and-deployers"]], "Name, version, user, channel": [[102, "name-version-user-channel"]], "Lockfiles": [[102, "lockfiles"], [247, "lockfiles"], [271, "lockfiles"]], "conan list": [[103, "conan-list"]], "Listing recipe references": [[103, "listing-recipe-references"]], "Listing recipe revisions": [[103, "listing-recipe-revisions"]], "Listing package IDs": [[103, "listing-package-ids"]], "Listing package revisions": [[103, "listing-package-revisions"]], "Listing graph artifacts": [[103, "listing-graph-artifacts"]], "List json output format": [[103, "list-json-output-format"]], "List html output format": [[103, "list-html-output-format"]], "List compact output format": [[103, "list-compact-output-format"]], "conan lock": [[104, "conan-lock"]], "conan lock add": [[105, "conan-lock-add"]], "conan lock create": [[106, "conan-lock-create"]], "conan lock merge": [[107, "conan-lock-merge"]], "conan lock remove": [[108, "conan-lock-remove"]], "conan new": [[109, "conan-new"], [109, "id1"]], "Custom templates": [[109, "custom-templates"]], "conan profile": [[110, "conan-profile"]], "conan profile detect": [[110, "conan-profile-detect"]], "conan profile list": [[110, "conan-profile-list"]], "conan profile path": [[110, "conan-profile-path"]], "conan profile show": [[110, "conan-profile-show"]], "conan remote": [[111, "conan-remote"]], "conan remote add": [[111, "conan-remote-add"]], "conan remote auth": [[111, "conan-remote-auth"]], "conan remote disable": [[111, "conan-remote-disable"]], "conan remote enable": [[111, "conan-remote-enable"]], "conan remote list": [[111, "conan-remote-list"]], "conan remote list-users": [[111, "conan-remote-list-users"]], "conan remote login": [[111, "conan-remote-login"]], "conan remote logout": [[111, "conan-remote-logout"]], "conan remote remove": [[111, "conan-remote-remove"]], "conan remote rename": [[111, "conan-remote-rename"]], "conan remote set-user": [[111, "conan-remote-set-user"]], "conan remote update": [[111, "conan-remote-update"]], "conan remove": [[112, "conan-remove"]], "conan search": [[113, "conan-search"]], "conan source": [[114, "conan-source"], [266, "conan-source"]], "conan test": [[115, "conan-test"]], "conan upload": [[116, "conan-upload"]], "conan version": [[117, "conan-version"]], "Conan Server": [[118, "conan-server"]], "Configuration": [[118, "configuration"]], "Server Parameters": [[118, "server-parameters"]], "Permissions Parameters": [[118, "permissions-parameters"]], "Authentication": [[118, "authentication"]], "Create Your Own Custom Authenticator": [[118, "create-your-own-custom-authenticator"]], "Authorizations": [[118, "authorizations"]], "Create Your Own Custom Authorizer": [[118, "create-your-own-custom-authorizer"]], "Running the Conan Server with SSL using Nginx": [[118, "running-the-conan-server-with-ssl-using-nginx"]], "Running the Conan Server with SSL using Nginx in a Subdirectory": [[118, "running-the-conan-server-with-ssl-using-nginx-in-a-subdirectory"]], "Running Conan Server using Apache": [[118, "running-conan-server-using-apache"]], "conanfile.py": [[119, "conanfile-py"]], "Attributes": [[120, "attributes"], [212, "attributes"], [221, "attributes"], [226, "attributes"], [227, "attributes"]], "Package reference": [[120, "package-reference"]], "name": [[120, "name"]], "version": [[120, "version"]], "user": [[120, "user"]], "channel": [[120, "channel"]], "Metadata": [[120, "metadata"]], "description": [[120, "description"]], "license": [[120, "license"]], "author": [[120, "author"]], "topics": [[120, "topics"]], "homepage": [[120, "homepage"]], "url": [[120, "url"]], "Requirements": [[120, "requirements"]], "requires": [[120, "requires"]], "tool_requires": [[120, "tool-requires"]], "build_requires": [[120, "build-requires"]], "test_requires": [[120, "test-requires"], [124, "test-requires"]], "python_requires": [[120, "python-requires"], [268, "python-requires"]], "python_requires_extend": [[120, "python-requires-extend"]], "Sources": [[120, "sources"]], "exports": [[120, "exports"]], "exports_sources": [[120, "exports-sources"]], "conan_data": [[120, "conan-data"]], "source_buildenv": [[120, "source-buildenv"]], "Binary model": [[120, "binary-model"]], "package_type": [[120, "package-type"]], "settings": [[120, "settings"]], "options": [[120, "options"]], "default_options": [[120, "default-options"]], "default_build_options": [[120, "default-build-options"]], "options_description": [[120, "options-description"]], "info": [[120, "info"]], "package_id_{embed,non_embed,python,unknown}_mode": [[120, "package-id-embed-non-embed-python-unknown-mode"]], "Build": [[120, "build"]], "generators": [[120, "generators"]], "build_policy": [[120, "build-policy"]], "win_bash": [[120, "win-bash"]], "win_bash_run": [[120, "win-bash-run"]], "Folders and layout": [[120, "folders-and-layout"]], "source_folder": [[120, "source-folder"]], "export_sources_folder": [[120, "export-sources-folder"]], "build_folder": [[120, "build-folder"]], "package_folder": [[120, "package-folder"]], "recipe_folder": [[120, "recipe-folder"]], "recipe_metadata_folder": [[120, "recipe-metadata-folder"]], "package_metadata_folder": [[120, "package-metadata-folder"]], "no_copy_source": [[120, "no-copy-source"]], "Layout": [[120, "layout"]], "folders": [[120, "folders"]], "cpp": [[120, "cpp"]], "layouts": [[120, "layouts"]], "Package information for consumers": [[120, "package-information-for-consumers"]], "cpp_info": [[120, "cpp-info"]], "buildenv_info": [[120, "buildenv-info"]], "runenv_info": [[120, "runenv-info"]], "conf_info": [[120, "conf-info"], [136, "conf-info"]], "deprecated": [[120, "deprecated"]], "provides": [[120, "provides"]], "Other": [[120, "other"]], "dependencies": [[120, "dependencies"]], "conf": [[120, "conf"], [184, "conf"], [186, "conf"], [189, "conf"], [192, "conf"], [202, "conf"], [209, "conf"], [211, "conf"], [214, "conf"], [216, "conf"], [217, "conf"], [220, "conf"], [221, "conf"], [224, "conf"], [225, "conf"], [226, "conf"], [227, "conf"], [228, "conf"]], "Output": [[120, "output"]], "Output contents": [[120, "output-contents"]], "revision_mode": [[120, "revision-mode"]], "upload_policy": [[120, "upload-policy"]], "required_conan_version": [[120, "required-conan-version"]], "implements": [[120, "implements"]], "alias": [[120, "alias"]], "extension_properties": [[120, "extension-properties"]], "Methods": [[121, "methods"]], "build()": [[122, "build"]], "build_id()": [[123, "build-id"]], "build_requirements()": [[124, "build-requirements"]], "tool_requires()": [[124, "tool-requires"]], "": [[124, "host-version"]], "compatibility()": [[125, "compatibility"]], "config_options()": [[126, "config-options"]], "Available automatic implementations": [[126, "available-automatic-implementations"], [127, "available-automatic-implementations"], [135, "available-automatic-implementations"]], "auto_shared_fpic": [[126, "auto-shared-fpic"], [127, "auto-shared-fpic"]], "configure()": [[127, "configure"]], "export()": [[129, "export"]], "export_sources()": [[130, "export-sources"]], "generate()": [[131, "generate"]], "self.dependencies": [[131, "self-dependencies"]], "Dependencies interface": [[131, "dependencies-interface"]], "Iterating dependencies": [[131, "iterating-dependencies"]], "Dependencies cpp_info interface": [[131, "dependencies-cpp-info-interface"]], "init()": [[132, "init"]], "layout()": [[133, "layout"]], "self.folders": [[133, "self-folders"], [267, "self-folders"]], "self.cpp": [[133, "self-cpp"], [267, "self-cpp"]], "Environment variables and configuration": [[133, "environment-variables-and-configuration"]], "package()": [[134, "package"]], "package_id()": [[135, "package-id"]], "auto_header_only": [[135, "auto-header-only"]], "Information erasure": [[135, "information-erasure"]], "Partial information erasure": [[135, "partial-information-erasure"]], "Adding information": [[135, "adding-information"]], "package_info()": [[136, "package-info"]], "cpp_info: Library and build information": [[136, "cpp-info-library-and-build-information"]], "Properties": [[136, "properties"], [191, "properties"], [212, "properties"], [214, "properties"], [215, "properties"]], "Components": [[136, "components"]], "buildenv_info, runenv_info": [[136, "buildenv-info-runenv-info"]], "requirements()": [[137, "requirements"]], "Requirement traits": [[137, "requirement-traits"]], "headers": [[137, "headers"]], "libs": [[137, "libs"]], "build": [[137, "build"]], "run": [[137, "run"]], "visible": [[137, "visible"]], "transitive_headers": [[137, "transitive-headers"]], "transitive_libs": [[137, "transitive-libs"]], "test": [[137, "test"]], "package_id_mode": [[137, "package-id-mode"]], "force": [[137, "force"]], "override": [[137, "override"]], "direct": [[137, "direct"]], "package_type trait inferring": [[137, "package-type-trait-inferring"]], "Default traits for each kind of requires": [[137, "default-traits-for-each-kind-of-requires"]], "set_name()": [[138, "set-name"]], "set_version()": [[139, "set-version"]], "source()": [[140, "source"]], "Source caching": [[140, "source-caching"]], "Forced retrieval of sources": [[140, "forced-retrieval-of-sources"]], "system_requirements()": [[141, "system-requirements"]], "Collecting system requirements": [[141, "collecting-system-requirements"]], "test()": [[142, "test"]], "validate()": [[143, "validate"]], "validate_build()": [[144, "validate-build"]], "Running and output": [[145, "running-and-output"]], "Output text from recipes": [[145, "output-text-from-recipes"]], "Running commands": [[145, "running-commands"]], "[requires]": [[146, "requires"]], "[tool_requires]": [[146, "tool-requires"], [151, "tool-requires"]], "[test_requires]": [[146, "test-requires"]], "[generators]": [[146, "generators"]], "[options]": [[146, "options"], [151, "options"]], "[layout]": [[146, "layout"]], "Configuration files": [[147, "configuration-files"]], ".conanrc": [[148, "conanrc"]], "credentials.json": [[149, "credentials-json"]], "global.conf": [[150, "global-conf"]], "Introduction to configuration": [[150, "introduction-to-configuration"]], "Description of configurations": [[150, "description-of-configurations"]], "core.cache:storage_path": [[150, "core-cache-storage-path"]], "core.download:download_cache": [[150, "core-download-download-cache"]], "User/Tools configurations": [[150, "user-tools-configurations"]], "Configuration file template": [[150, "configuration-file-template"]], "Configuration data types": [[150, "configuration-data-types"]], "Configuration data operators": [[150, "configuration-data-operators"]], "Configuration patterns": [[150, "configuration-patterns"]], "Information about built-in confs": [[150, "information-about-built-in-confs"]], "Networking confs": [[150, "networking-confs"]], "Configuration of client certificates": [[150, "configuration-of-client-certificates"]], "UX confs": [[150, "ux-confs"]], "Skip warnings": [[150, "skip-warnings"]], "profiles": [[151, "profiles"]], "Introduction to profiles": [[151, "introduction-to-profiles"]], "Profile sections": [[151, "profile-sections"]], "[settings]": [[151, "settings"]], "[system_tools] (DEPRECATED)": [[151, "system-tools-deprecated"]], "[buildenv]": [[151, "buildenv"]], "[runenv]": [[151, "runenv"]], "[conf]": [[151, "conf"]], "[replace_requires]": [[151, "replace-requires"]], "[replace_tool_requires]": [[151, "replace-tool-requires"]], "[platform_requires]": [[151, "platform-requires"]], "[platform_tool_requires]": [[151, "platform-tool-requires"]], "Profile rendering": [[151, "profile-rendering"]], "Profile patterns": [[151, "profile-patterns"]], "Profile includes": [[151, "profile-includes"]], "remotes.json": [[152, "remotes-json"]], "settings.yml": [[153, "settings-yml"]], "Operating systems": [[153, "operating-systems"]], "Compilers": [[153, "compilers"]], "msvc": [[153, "msvc"]], "intel-cc": [[153, "intel-cc"]], "Architectures": [[153, "architectures"]], "C++ standard libraries (aka compiler.libcxx)": [[153, "c-standard-libraries-aka-compiler-libcxx"]], "Customizing settings": [[153, "customizing-settings"]], "Adding new settings": [[153, "adding-new-settings"]], "Adding new sub-settings": [[153, "adding-new-sub-settings"]], "Add new values": [[153, "add-new-values"]], "settings_user.yml": [[153, "settings-user-yml"]], "source_credentials.json": [[154, "source-credentials-json"]], "Environment variables": [[155, "environment-variables"]], "CONAN_HOME": [[155, "conan-home"]], "CONAN_DEFAULT_PROFILE": [[155, "conan-default-profile"]], "Remote login variables": [[155, "remote-login-variables"]], "Terminal color variables": [[155, "terminal-color-variables"]], "Logging": [[155, "logging"]], "Extensions": [[156, "extensions"]], "Binary compatibility": [[157, "binary-compatibility"]], "Command wrapper": [[158, "command-wrapper"], [275, "command-wrapper"]], "Location and naming": [[159, "location-and-naming"]], "Scoping": [[159, "scoping"]], "Decorators": [[159, "decorators"]], "conan_command(group=None, formatters=None)": [[159, "conan-command-group-none-formatters-none"]], "conan_subcommand(formatters=None)": [[159, "conan-subcommand-formatters-none"]], "Argument definition and parsing": [[159, "argument-definition-and-parsing"]], "Formatters": [[159, "formatters"]], "Commands parameters": [[159, "commands-parameters"]], "Custom Conan generators": [[160, "custom-conan-generators"]], "Custom generators as python_requires": [[160, "custom-generators-as-python-requires"]], "Using global custom generators": [[160, "using-global-custom-generators"]], "Deployers": [[161, "deployers"]], "Built-in deployers": [[161, "built-in-deployers"]], "full_deploy": [[161, "full-deploy"]], "direct_deploy": [[161, "direct-deploy"]], "configuration": [[161, "configuration"], [191, "configuration"]], "Hooks": [[162, "hooks"]], "Hook structure": [[162, "hook-structure"]], "Importing from a module": [[162, "importing-from-a-module"]], "Hook interface": [[162, "hook-interface"]], "Storage, activation and sharing": [[162, "storage-activation-and-sharing"]], "Official Hooks": [[162, "official-hooks"]], "Package signing": [[163, "package-signing"], [275, "package-signing"]], "Profile plugin": [[164, "profile-plugin"]], "Python API": [[165, "python-api"]], "Conan API Reference": [[166, "conan-api-reference"]], "Config API": [[167, "config-api"]], "Download API": [[168, "download-api"]], "Export API": [[169, "export-api"]], "Graph API": [[170, "graph-api"]], "Install API": [[171, "install-api"]], "List API": [[172, "list-api"]], "New API": [[173, "new-api"]], "Profiles API": [[174, "profiles-api"]], "Remotes API": [[175, "remotes-api"]], "Remove API": [[176, "remove-api"]], "Search API": [[177, "search-api"]], "Upload API": [[178, "upload-api"]], "Python requires": [[179, "python-requires"]], "Extending base classes": [[179, "extending-base-classes"]], "Reusing files": [[179, "reusing-files"]], "Testing python-requires": [[179, "testing-python-requires"]], "Effect in package_id": [[179, "effect-in-package-id"]], "Resolution of python_requires": [[179, "resolution-of-python-requires"]], "Recipe tools": [[180, "recipe-tools"]], "conan.tools.android": [[181, "conan-tools-android"]], "android_abi()": [[181, "android-abi"]], "conan.tools.apple": [[182, "conan-tools-apple"]], "conan.tools.apple.fix_apple_shared_install_name()": [[183, "conan-tools-apple-fix-apple-shared-install-name"]], "conan.tools.apple.is_apple_os()": [[183, "conan-tools-apple-is-apple-os"]], "conan.tools.apple.to_apple_arch()": [[183, "conan-tools-apple-to-apple-arch"]], "conan.tools.apple.XCRun()": [[183, "conan-tools-apple-xcrun"]], "XcodeBuild": [[184, "xcodebuild"]], "XcodeDeps": [[185, "xcodedeps"]], "Additional variables defined": [[185, "additional-variables-defined"]], "Components support": [[185, "components-support"]], "Custom configurations": [[185, "custom-configurations"], [217, "custom-configurations"]], "XcodeToolchain": [[186, "xcodetoolchain"]], "conan.tools.build": [[187, "conan-tools-build"]], "Building": [[187, "building"]], "conan.tools.build.build_jobs()": [[187, "conan-tools-build-build-jobs"]], "conan.tools.build.cross_building()": [[187, "conan-tools-build-cross-building"]], "conan.tools.build.can_run()": [[187, "conan-tools-build-can-run"]], "Cppstd": [[187, "cppstd"]], "conan.tools.build.check_min_cppstd()": [[187, "conan-tools-build-check-min-cppstd"]], "conan.tools.build.check_max_cppstd()": [[187, "conan-tools-build-check-max-cppstd"]], "conan.tools.build.valid_min_cppstd()": [[187, "conan-tools-build-valid-min-cppstd"]], "conan.tools.build.valid_max_cppstd()": [[187, "conan-tools-build-valid-max-cppstd"]], "conan.tools.build.default_cppstd()": [[187, "conan-tools-build-default-cppstd"]], "conan.tools.build.supported_cppstd()": [[187, "conan-tools-build-supported-cppstd"]], "conan.tools.cmake": [[188, "conan-tools-cmake"]], "CMake": [[189, "cmake"]], "cmake_layout": [[190, "cmake-layout"]], "Multi-setting/option cmake_layout": [[190, "multi-setting-option-cmake-layout"]], "CMakeDeps": [[191, "cmakedeps"]], "Generated files": [[191, "generated-files"], [192, "generated-files"], [197, "generated-files"], [198, "generated-files"], [208, "generated-files"], [209, "generated-files"], [210, "generated-files"], [212, "generated-files"], [215, "generated-files"], [216, "generated-files"], [221, "generated-files"], [225, "generated-files"]], "Customization": [[191, "customization"], [192, "customization"], [208, "customization"], [209, "customization"], [210, "customization"], [212, "customization"], [215, "customization"], [221, "customization"], [224, "customization"], [225, "customization"], [226, "customization"], [228, "customization"]], "build_context_activated": [[191, "build-context-activated"], [212, "build-context-activated"], [215, "build-context-activated"]], "build_context_suffix": [[191, "build-context-suffix"], [212, "build-context-suffix"]], "build_context_build_modules": [[191, "build-context-build-modules"]], "check_components_exist": [[191, "check-components-exist"]], "Overwrite properties from the consumer side using CMakeDeps.set_property()": [[191, "overwrite-properties-from-the-consumer-side-using-cmakedeps-set-property"]], "Disable CMakeDeps For Installed CMake configuration files": [[191, "disable-cmakedeps-for-installed-cmake-configuration-files"]], "Map from project configuration to imported target\u2019s configuration": [[191, "map-from-project-configuration-to-imported-target-s-configuration"]], "CMakeToolchain": [[192, "cmaketoolchain"]], "preprocessor_definitions": [[192, "preprocessor-definitions"], [221, "preprocessor-definitions"]], "cache_variables": [[192, "cache-variables"]], "variables": [[192, "variables"]], "user_presets_path": [[192, "user-presets-path"]], "presets_build_environment, presets_run_environment": [[192, "presets-build-environment-presets-run-environment"]], "Extra compilation flags": [[192, "extra-compilation-flags"]], "presets_prefix": [[192, "presets-prefix"]], "Using a custom toolchain file": [[192, "using-a-custom-toolchain-file"]], "Extending and advanced customization": [[192, "extending-and-advanced-customization"]], "Customizing the content blocks": [[192, "customizing-the-content-blocks"]], "Cross building": [[192, "cross-building"]], "conan.tools.CppInfo": [[193, "conan-tools-cppinfo"]], "Aggregating information in custom generators": [[193, "aggregating-information-in-custom-generators"]], "conan.tools.env": [[194, "conan-tools-env"]], "Environment": [[195, "environment"]], "Variable declaration": [[195, "variable-declaration"]], "Composition": [[195, "composition"]], "Obtaining environment variables": [[195, "obtaining-environment-variables"]], "Environment definition": [[195, "environment-definition"]], "EnvVars": [[196, "envvars"]], "Creating environment files": [[196, "creating-environment-files"]], "Running with environment files": [[196, "running-with-environment-files"]], "Applying the environment variables": [[196, "applying-the-environment-variables"]], "Iterating the variables": [[196, "iterating-the-variables"]], "VirtualBuildEnv": [[197, "virtualbuildenv"]], "VirtualRunEnv": [[198, "virtualrunenv"]], "conan.tools.files": [[199, "conan-tools-files"]], "conan.tools.files basic operations": [[200, "conan-tools-files-basic-operations"]], "conan.tools.files.copy()": [[200, "conan-tools-files-copy"]], "conan.tools.files.load()": [[200, "conan-tools-files-load"]], "conan.tools.files.save()": [[200, "conan-tools-files-save"]], "conan.tools.files.rename()": [[200, "conan-tools-files-rename"]], "conan.tools.files.replace_in_file()": [[200, "conan-tools-files-replace-in-file"]], "conan.tools.files.rm()": [[200, "conan-tools-files-rm"]], "conan.tools.files.mkdir()": [[200, "conan-tools-files-mkdir"]], "conan.tools.files.rmdir()": [[200, "conan-tools-files-rmdir"]], "conan.tools.files.chdir()": [[200, "conan-tools-files-chdir"]], "conan.tools.files.unzip()": [[200, "conan-tools-files-unzip"]], "conan.tools.files.update_conandata()": [[200, "conan-tools-files-update-conandata"]], "conan.tools.files.trim_conandata()": [[200, "conan-tools-files-trim-conandata"]], "conan.tools.files.collect_libs()": [[200, "conan-tools-files-collect-libs"]], "conan.tools.files checksums": [[201, "conan-tools-files-checksums"]], "conan.tools.files.check_md5()": [[201, "conan-tools-files-check-md5"]], "conan.tools.files.check_sha1()": [[201, "conan-tools-files-check-sha1"]], "conan.tools.files.check_sha256()": [[201, "conan-tools-files-check-sha256"]], "conan.tools.files downloads": [[202, "conan-tools-files-downloads"]], "conan.tools.files.get()": [[202, "conan-tools-files-get"]], "conan.tools.files.ftp_download()": [[202, "conan-tools-files-ftp-download"]], "conan.tools.files.download()": [[202, "conan-tools-files-download"]], "conan.tools.files AutoPackager": [[203, "conan-tools-files-autopackager"]], "conan.tools.files patches": [[204, "conan-tools-files-patches"]], "conan.tools.files.patch()": [[204, "conan-tools-files-patch"]], "conan.tools.files.apply_conandata_patches()": [[204, "conan-tools-files-apply-conandata-patches"]], "conan.tools.files.export_conandata_patches()": [[204, "conan-tools-files-export-conandata-patches"]], "conan.tools.files.symlinks": [[205, "conan-tools-files-symlinks"]], "conan.tools.files.symlinks.absolute_to_relative_symlinks()": [[205, "conan-tools-files-symlinks-absolute-to-relative-symlinks"]], "conan.tools.files.symlinks.remove_external_symlinks()": [[205, "conan-tools-files-symlinks-remove-external-symlinks"]], "conan.tools.files.symlinks.remove_broken_symlinks()": [[205, "conan-tools-files-symlinks-remove-broken-symlinks"]], "conan.tools.gnu": [[206, "conan-tools-gnu"]], "Autotools": [[207, "autotools"]], "A note about relocatable shared libraries in macOS built the Autotools build helper": [[207, "a-note-about-relocatable-shared-libraries-in-macos-built-the-autotools-build-helper"]], "Why is this a problem when using Conan?": [[207, "why-is-this-a-problem-when-using-conan"]], "How to address this problem in Conan": [[207, "how-to-address-this-problem-in-conan"]], "AutotoolsDeps": [[208, "autotoolsdeps"]], "AutotoolsToolchain": [[209, "autotoolstoolchain"]], "Customizing the environment": [[209, "customizing-the-environment"], [227, "customizing-the-environment"]], "Managing the configure_args, make_args and autoreconf_args attributes": [[209, "managing-the-configure-args-make-args-and-autoreconf-args-attributes"]], "MakeDeps": [[210, "makedeps"]], "Flags": [[210, "flags"]], "PkgConfig": [[211, "pkgconfig"]], "PkgConfigDeps": [[212, "pkgconfigdeps"]], "Naming": [[212, "naming"], [215, "naming"]], "conan.tools.google": [[213, "conan-tools-google"]], "Bazel": [[214, "bazel"]], "BazelDeps": [[215, "bazeldeps"]], "BazelToolchain": [[216, "bazeltoolchain"]], "conan.tools.intel": [[217, "conan-tools-intel"]], "IntelCC": [[217, "intelcc"]], "conan.tools.layout": [[218, "conan-tools-layout"]], "Predefined layouts": [[218, "predefined-layouts"]], "basic_layout": [[218, "basic-layout"]], "conan.tools.meson": [[219, "conan-tools-meson"]], "Meson": [[220, "meson"]], "MesonToolchain": [[221, "mesontoolchain"]], "conan_meson_native.ini": [[221, "conan-meson-native-ini"]], "conan_meson_cross.ini": [[221, "conan-meson-cross-ini"]], "Default directories": [[221, "default-directories"]], "project_options": [[221, "project-options"]], "Using Proper Data Types for Conan Options in Meson": [[221, "using-proper-data-types-for-conan-options-in-meson"]], "Cross-building for Apple and Android": [[221, "cross-building-for-apple-and-android"]], "Objective-C arguments": [[221, "objective-c-arguments"]], "conan.tools.microsoft": [[222, "conan-tools-microsoft"]], "conan.tools.microsoft.visual": [[223, "conan-tools-microsoft-visual"]], "check_min_vs": [[223, "check-min-vs"]], "msvc_runtime_flag": [[223, "msvc-runtime-flag"]], "is_msvc": [[223, "is-msvc"]], "is_msvc_static_runtime": [[223, "is-msvc-static-runtime"]], "msvs_toolset": [[223, "msvs-toolset"]], "conan.tools.microsoft.subsystems": [[223, "conan-tools-microsoft-subsystems"]], "unix_path": [[223, "unix-path"]], "MSBuild": [[224, "msbuild"]], "attributes": [[224, "attributes"]], "MSBuildDeps": [[225, "msbuilddeps"]], "Requirement traits support": [[225, "requirement-traits-support"]], "Configurations": [[225, "configurations"]], "Dependencies": [[225, "dependencies"]], "MSBuildToolchain": [[226, "msbuildtoolchain"]], "NMakeDeps": [[227, "nmakedeps"]], "NMakeToolchain": [[227, "nmaketoolchain"]], "constructor": [[227, "constructor"]], "VCVars": [[228, "vcvars"]], "vs_layout": [[229, "vs-layout"]], "conan.tools.scm": [[230, "conan-tools-scm"]], "Git": [[231, "git"]], "Version": [[232, "version"]], "conan.tools.scons": [[233, "conan-tools-scons"]], "SConsDeps": [[233, "sconsdeps"]], "conan.tools.system": [[234, "conan-tools-system"]], "conan.tools.system.package_manager": [[235, "conan-tools-system-package-manager"]], "Methods available for system package manager tools": [[235, "methods-available-for-system-package-manager-tools"]], "Configuration properties that affect how system package managers are invoked": [[235, "configuration-properties-that-affect-how-system-package-managers-are-invoked"]], "conan.tools.system.package_manager.Apk": [[235, "conan-tools-system-package-manager-apk"]], "conan.tools.system.package_manager.Apt": [[235, "conan-tools-system-package-manager-apt"]], "conan.tools.system.package_manager.Yum": [[235, "conan-tools-system-package-manager-yum"]], "conan.tools.system.package_manager.Dnf": [[235, "conan-tools-system-package-manager-dnf"]], "conan.tools.system.package_manager.PacMan": [[235, "conan-tools-system-package-manager-pacman"]], "conan.tools.system.package_manager.Zypper": [[235, "conan-tools-system-package-manager-zypper"]], "conan.tools.system.package_manager.Brew": [[235, "conan-tools-system-package-manager-brew"]], "conan.tools.system.package_manager.Pkg": [[235, "conan-tools-system-package-manager-pkg"]], "conan.tools.system.package_manager.PkgUtil": [[235, "conan-tools-system-package-manager-pkgutil"]], "conan.tools.system.package_manager.Chocolatey": [[235, "conan-tools-system-package-manager-chocolatey"]], "Tutorial": [[236, "tutorial"]], "Working with Conan repositories": [[237, "working-with-conan-repositories"]], "Table of contents": [[237, null], [243, null], [250, null], [257, null], [269, null]], "Contributing to Conan Center": [[238, "contributing-to-conan-center"]], "Setting up a Conan remote": [[239, "setting-up-a-conan-remote"]], "Artifactory Community Edition for C/C++": [[240, "artifactory-community-edition-for-c-c"]], "Running Artifactory CE": [[240, "running-artifactory-ce"]], "Creating and Using a Conan Repo": [[240, "creating-and-using-a-conan-repo"]], "Setting-up a Conan Server": [[241, "setting-up-a-conan-server"]], "Uploading Packages": [[242, "uploading-packages"]], "Consuming packages": [[243, "consuming-packages"]], "Build a simple CMake project using Conan": [[244, "build-a-simple-cmake-project-using-conan"]], "How to cross-compile your applications using Conan: host and build contexts": [[245, "how-to-cross-compile-your-applications-using-conan-host-and-build-contexts"]], "Conan two profiles model: build and host profiles": [[245, "conan-two-profiles-model-build-and-host-profiles"]], "Build and host contexts": [[245, "build-and-host-contexts"]], "Building for multiple configurations: Release, Debug, Static and Shared": [[246, "building-for-multiple-configurations-release-debug-static-and-shared"]], "Modifying settings: use Debug configuration for the application and its dependencies": [[246, "modifying-settings-use-debug-configuration-for-the-application-and-its-dependencies"]], "Modifying options: linking the application dependencies as shared libraries": [[246, "modifying-options-linking-the-application-dependencies-as-shared-libraries"]], "Difference between settings and options": [[246, "difference-between-settings-and-options"]], "Introducing the concept of Package ID": [[246, "introducing-the-concept-of-package-id"]], "Introduction to versioning": [[247, "introduction-to-versioning"]], "Version ranges": [[247, "version-ranges"], [273, "version-ranges"]], "Revisions": [[247, "revisions"], [272, "revisions"]], "Understanding the flexibility of using conanfile.py vs conanfile.txt": [[248, "understanding-the-flexibility-of-using-conanfile-py-vs-conanfile-txt"]], "Use the layout() method": [[248, "use-the-layout-method"]], "Use the validate() method to raise an error for non-supported configurations": [[248, "use-the-validate-method-to-raise-an-error-for-non-supported-configurations"]], "Conditional requirements using a conanfile.py": [[248, "conditional-requirements-using-a-conanfile-py"]], "Use the generate() method to copy resources from packages": [[248, "use-the-generate-method-to-copy-resources-from-packages"]], "Using build tools as Conan packages": [[249, "using-build-tools-as-conan-packages"]], "Creating packages": [[250, "creating-packages"]], "Add dependencies to packages": [[251, "add-dependencies-to-packages"]], "Build packages: the build() method": [[252, "build-packages-the-build-method"]], "Build and run tests for your project": [[252, "build-and-run-tests-for-your-project"]], "Changes introduced in the recipe": [[252, "changes-introduced-in-the-recipe"], [255, "changes-introduced-in-the-recipe"]], "Changes introduced in the library sources": [[252, "changes-introduced-in-the-library-sources"], [255, "changes-introduced-in-the-library-sources"]], "Conditionally patching the source code": [[252, "conditionally-patching-the-source-code"]], "Conditionally select your build system": [[252, "conditionally-select-your-build-system"]], "Configure settings and options in recipes": [[253, "configure-settings-and-options-in-recipes"]], "Conan packages binary compatibility: the package ID": [[253, "conan-packages-binary-compatibility-the-package-id"]], "C libraries": [[253, "c-libraries"]], "Header-only libraries": [[253, "header-only-libraries"]], "Create your first Conan package": [[254, "create-your-first-conan-package"]], "A note about the Conan cache": [[254, "a-note-about-the-conan-cache"]], "Define information for consumers: the package_info() method": [[255, "define-information-for-consumers-the-package-info-method"]], "Setting information in the package_info() method": [[255, "setting-information-in-the-package-info-method"]], "Define information for consumers depending on settings or options": [[255, "define-information-for-consumers-depending-on-settings-or-options"]], "Properties model: setting information for specific generators": [[255, "properties-model-setting-information-for-specific-generators"]], "Handle sources in packages": [[256, "handle-sources-in-packages"]], "Sources from a zip file stored in a remote repository": [[256, "sources-from-a-zip-file-stored-in-a-remote-repository"]], "Sources from a branch in a git repository": [[256, "sources-from-a-branch-in-a-git-repository"]], "Using the conandata.yml file": [[256, "using-the-conandata-yml-file"]], "Other types of packages": [[257, "other-types-of-packages"]], "Header-only packages": [[258, "header-only-packages"]], "Header-only library with tests": [[258, "header-only-library-with-tests"]], "Package prebuilt binaries": [[259, "package-prebuilt-binaries"]], "Locally building binaries": [[259, "locally-building-binaries"]], "Packaging already Pre-built Binaries": [[259, "packaging-already-pre-built-binaries"]], "Downloading and Packaging Pre-built Binaries": [[259, "downloading-and-packaging-pre-built-binaries"]], "Tool requires packages": [[260, "tool-requires-packages"]], "A simple tool require recipe": [[260, "a-simple-tool-require-recipe"]], "Removing settings in package_id()": [[260, "removing-settings-in-package-id"]], "Package files: the package() method": [[261, "package-files-the-package-method"]], "Using CMake install step in the package() method": [[261, "using-cmake-install-step-in-the-package-method"]], "Use conan.tools.files.copy() in the package() method and packaging licenses": [[261, "use-conan-tools-files-copy-in-the-package-method-and-packaging-licenses"]], "Managing symlinks in the package() method": [[261, "managing-symlinks-in-the-package-method"]], "Preparing the build": [[262, "preparing-the-build"]], "Testing Conan packages": [[263, "testing-conan-packages"]], "Developing packages locally": [[264, "developing-packages-locally"]], "Packages in editable mode": [[265, "packages-in-editable-mode"]], "Put say/1.0 package in editable mode": [[265, "put-say-1-0-package-in-editable-mode"]], "Using say/1.0 package in editable mode": [[265, "using-say-1-0-package-in-editable-mode"]], "Working with editable packages": [[265, "working-with-editable-packages"]], "Building editable dependencies": [[265, "building-editable-dependencies"]], "Revert the editable mode": [[265, "revert-the-editable-mode"]], "Package Development Flow": [[266, "package-development-flow"]], "Understanding the Conan Package layout": [[267, "understanding-the-conan-package-layout"]], "cpp.package": [[267, "cpp-package"]], "cpp.source and cpp.build": [[267, "cpp-source-and-cpp-build"]], "Other important Conan features": [[268, "other-important-conan-features"]], "Packages lists": [[268, "packages-lists"]], "Removing unused packages from the cache": [[268, "removing-unused-packages-from-the-cache"]], "Dependencies conflicts": [[270, "dependencies-conflicts"]], "Resolving conflicts": [[270, "resolving-conflicts"]], "Overriding options": [[270, "overriding-options"]], "Multi-configuration lockfiles": [[271, "multi-configuration-lockfiles"]], "Evolving lockfiles": [[271, "evolving-lockfiles"]], "Creating different revisions": [[272, "creating-different-revisions"]], "Using revisions": [[272, "using-revisions"]], "Uploading revisions": [[272, "uploading-revisions"]], "Package revisions": [[272, "package-revisions"]], "Semantic versioning": [[273, "semantic-versioning"]], "Range expressions": [[273, "range-expressions"]], "Versions": [[274, "versions"]], "Automating versions": [[274, "automating-versions"]], "Requiring the new versions": [[274, "requiring-the-new-versions"]], "What\u2019s new in Conan 2": [[275, "what-s-new-in-conan-2"]], "Conan 2 migration guide": [[275, "conan-2-migration-guide"]], "New graph model": [[275, "new-graph-model"]], "New public Python API": [[275, "new-public-python-api"]], "New build system integrations": [[275, "new-build-system-integrations"]], "New custom user commands": [[275, "new-custom-user-commands"]], "New CLI": [[275, "new-cli"]], "New deployers": [[275, "new-deployers"]], "New package_id": [[275, "new-package-id"]], "compatibility.py": [[275, "compatibility-py"]], "New lockfiles": [[275, "new-lockfiles"]], "New configuration and environment management": [[275, "new-configuration-and-environment-management"]], "Multi-revision cache": [[275, "multi-revision-cache"]], "New extensions plugins": [[275, "new-extensions-plugins"]], "Profile checker": [[275, "profile-checker"]], "Package immutability optimizations": [[275, "package-immutability-optimizations"]], "Package lists": [[275, "package-lists"]], "Metadata files": [[275, "metadata-files"]], "Third party backup sources": [[275, "third-party-backup-sources"]]}, "indexentries": {"append() (conf method)": [[136, "conans.model.conf.Conf.append"]], "define() (conf method)": [[136, "conans.model.conf.Conf.define"]], "prepend() (conf method)": [[136, "conans.model.conf.Conf.prepend"]], "remove() (conf method)": [[136, "conans.model.conf.Conf.remove"]], "unset() (conf method)": [[136, "conans.model.conf.Conf.unset"]], "update() (conf method)": [[136, "conans.model.conf.Conf.update"]], "conanapi (class in conan.api.conan_api)": [[166, "conan.api.conan_api.ConanAPI"]], "configapi (class in conan.api.subapi.config)": [[167, "conan.api.subapi.config.ConfigAPI"]], "global_conf (configapi property)": [[167, "conan.api.subapi.config.ConfigAPI.global_conf"]], "settings_yml (configapi property)": [[167, "conan.api.subapi.config.ConfigAPI.settings_yml"]], "downloadapi (class in conan.api.subapi.download)": [[168, "conan.api.subapi.download.DownloadAPI"]], "download_full() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.download_full"]], "package() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.package"]], "recipe() (downloadapi method)": [[168, "conan.api.subapi.download.DownloadAPI.recipe"]], "exportapi (class in conan.api.subapi.export)": [[169, "conan.api.subapi.export.ExportAPI"]], "graphapi (class in conan.api.subapi.graph)": [[170, "conan.api.subapi.graph.GraphAPI"]], "analyze_binaries() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.analyze_binaries"]], "load_graph() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.load_graph"]], "load_root_test_conanfile() (graphapi method)": [[170, "conan.api.subapi.graph.GraphAPI.load_root_test_conanfile"]], "installapi (class in conan.api.subapi.install)": [[171, "conan.api.subapi.install.InstallAPI"]], "install_binaries() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_binaries"]], "install_consumer() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_consumer"]], "install_sources() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_sources"]], "install_system_requires() (installapi method)": [[171, "conan.api.subapi.install.InstallAPI.install_system_requires"]], "listapi (class in conan.api.subapi.list)": [[172, "conan.api.subapi.list.ListAPI"]], "filter_packages_configurations() (listapi static method)": [[172, "conan.api.subapi.list.ListAPI.filter_packages_configurations"]], "newapi (class in conan.api.subapi.new)": [[173, "conan.api.subapi.new.NewAPI"]], "get_home_template() (newapi method)": [[173, "conan.api.subapi.new.NewAPI.get_home_template"]], "get_template() (newapi method)": [[173, "conan.api.subapi.new.NewAPI.get_template"]], "profilesapi (class in conan.api.subapi.profiles)": [[174, "conan.api.subapi.profiles.ProfilesAPI"]], "detect() (profilesapi static method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.detect"]], "get_default_build() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_default_build"]], "get_default_host() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_default_host"]], "get_path() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_path"]], "get_profile() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.get_profile"]], "list() (profilesapi method)": [[174, "conan.api.subapi.profiles.ProfilesAPI.list"]], "remotesapi (class in conan.api.subapi.remotes)": [[175, "conan.api.subapi.remotes.RemotesAPI"]], "add() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.add"]], "disable() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.disable"]], "enable() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.enable"]], "get() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.get"]], "list() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.list"]], "remove() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.remove"]], "rename() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.rename"]], "update() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.update"]], "user_login() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.user_login"]], "user_logout() (remotesapi method)": [[175, "conan.api.subapi.remotes.RemotesAPI.user_logout"]], "removeapi (class in conan.api.subapi.remove)": [[176, "conan.api.subapi.remove.RemoveAPI"]], "searchapi (class in conan.api.subapi.search)": [[177, "conan.api.subapi.search.SearchAPI"]], "uploadapi (class in conan.api.subapi.upload)": [[178, "conan.api.subapi.upload.UploadAPI"]], "check_upstream() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.check_upstream"]], "get_backup_sources() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.get_backup_sources"]], "prepare() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.prepare"]], "upload_full() (uploadapi method)": [[178, "conan.api.subapi.upload.UploadAPI.upload_full"]], "android_abi() (in module conan.tools.android)": [[181, "conan.tools.android.android_abi"]], "xcrun (class in conan.tools.apple)": [[183, "conan.tools.apple.XCRun"]], "ar (xcrun property)": [[183, "conan.tools.apple.XCRun.ar"]], "cc (xcrun property)": [[183, "conan.tools.apple.XCRun.cc"]], "cxx (xcrun property)": [[183, "conan.tools.apple.XCRun.cxx"]], "find() (xcrun method)": [[183, "conan.tools.apple.XCRun.find"]], "fix_apple_shared_install_name() (in module conan.tools.apple)": [[183, "conan.tools.apple.fix_apple_shared_install_name"]], "install_name_tool (xcrun property)": [[183, "conan.tools.apple.XCRun.install_name_tool"]], "is_apple_os() (in module conan.tools.apple)": [[183, "conan.tools.apple.is_apple_os"]], "libtool (xcrun property)": [[183, "conan.tools.apple.XCRun.libtool"]], "otool (xcrun property)": [[183, "conan.tools.apple.XCRun.otool"]], "ranlib (xcrun property)": [[183, "conan.tools.apple.XCRun.ranlib"]], "sdk_path (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_path"]], "sdk_platform_path (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_platform_path"]], "sdk_platform_version (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_platform_version"]], "sdk_version (xcrun property)": [[183, "conan.tools.apple.XCRun.sdk_version"]], "strip (xcrun property)": [[183, "conan.tools.apple.XCRun.strip"]], "to_apple_arch() (in module conan.tools.apple)": [[183, "conan.tools.apple.to_apple_arch"]], "xcodebuild (class in conan.tools.apple.xcodebuild)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild"]], "__init__() (xcodebuild method)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild.__init__"]], "build() (xcodebuild method)": [[184, "conan.tools.apple.xcodebuild.XcodeBuild.build"]], "build_jobs() (in module conan.tools.build.cpu)": [[187, "conan.tools.build.cpu.build_jobs"]], "can_run() (in module conan.tools.build.cross_building)": [[187, "conan.tools.build.cross_building.can_run"]], "check_max_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.check_max_cppstd"]], "check_min_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.check_min_cppstd"]], "cross_building() (in module conan.tools.build.cross_building)": [[187, "conan.tools.build.cross_building.cross_building"]], "default_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.default_cppstd"]], "supported_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.supported_cppstd"]], "valid_max_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.valid_max_cppstd"]], "valid_min_cppstd() (in module conan.tools.build.cppstd)": [[187, "conan.tools.build.cppstd.valid_min_cppstd"]], "cmake (class in conan.tools.cmake.cmake)": [[189, "conan.tools.cmake.cmake.CMake"]], "build() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.build"]], "configure() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.configure"]], "ctest() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.ctest"]], "install() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.install"]], "test() (cmake method)": [[189, "conan.tools.cmake.cmake.CMake.test"]], "cmake_layout() (in module conan.tools.cmake.layout)": [[190, "conan.tools.cmake.layout.cmake_layout"]], "cmakedeps (class in conan.tools.cmake.cmakedeps.cmakedeps)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps"]], "generate() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.generate"]], "get_cmake_package_name() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_cmake_package_name"]], "get_find_mode() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.get_find_mode"]], "set_property() (cmakedeps method)": [[191, "conan.tools.cmake.cmakedeps.cmakedeps.CMakeDeps.set_property"]], "cmaketoolchain (class in conan.tools.cmake.toolchain.toolchain)": [[192, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain"]], "generate() (cmaketoolchain method)": [[192, "conan.tools.cmake.toolchain.toolchain.CMakeToolchain.generate"]], "environment (class in conan.tools.env.environment)": [[195, "conan.tools.env.environment.Environment"]], "append() (environment method)": [[195, "conan.tools.env.environment.Environment.append"]], "append_path() (environment method)": [[195, "conan.tools.env.environment.Environment.append_path"]], "compose_env() (environment method)": [[195, "conan.tools.env.environment.Environment.compose_env"]], "define() (environment method)": [[195, "conan.tools.env.environment.Environment.define"]], "deploy_base_folder() (environment method)": [[195, "conan.tools.env.environment.Environment.deploy_base_folder"]], "dumps() (environment method)": [[195, "conan.tools.env.environment.Environment.dumps"]], "prepend() (environment method)": [[195, "conan.tools.env.environment.Environment.prepend"]], "prepend_path() (environment method)": [[195, "conan.tools.env.environment.Environment.prepend_path"]], "remove() (environment method)": [[195, "conan.tools.env.environment.Environment.remove"]], "unset() (environment method)": [[195, "conan.tools.env.environment.Environment.unset"]], "vars() (environment method)": [[195, "conan.tools.env.environment.Environment.vars"]], "envvars (class in conan.tools.env.environment)": [[196, "conan.tools.env.environment.EnvVars"]], "apply() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.apply"]], "get() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.get"]], "items() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.items"]], "save_script() (envvars method)": [[196, "conan.tools.env.environment.EnvVars.save_script"]], "virtualbuildenv (class in conan.tools.env.virtualbuildenv)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv"]], "environment() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.environment"]], "generate() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.generate"]], "vars() (virtualbuildenv method)": [[197, "conan.tools.env.virtualbuildenv.VirtualBuildEnv.vars"]], "virtualrunenv (class in conan.tools.env.virtualrunenv)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv"]], "environment() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.environment"]], "generate() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.generate"]], "vars() (virtualrunenv method)": [[198, "conan.tools.env.virtualrunenv.VirtualRunEnv.vars"]], "chdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.chdir"]], "collect_libs() (in module conan.tools.files)": [[200, "conan.tools.files.collect_libs"]], "copy() (in module conan.tools.files.copy_pattern)": [[200, "conan.tools.files.copy_pattern.copy"]], "load() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.load"]], "mkdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.mkdir"]], "rename() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rename"]], "replace_in_file() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.replace_in_file"]], "rm() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rm"]], "rmdir() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.rmdir"]], "save() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.save"]], "trim_conandata() (in module conan.tools.files.conandata)": [[200, "conan.tools.files.conandata.trim_conandata"]], "unzip() (in module conan.tools.files.files)": [[200, "conan.tools.files.files.unzip"]], "update_conandata() (in module conan.tools.files.conandata)": [[200, "conan.tools.files.conandata.update_conandata"]], "check_md5() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_md5"]], "check_sha1() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_sha1"]], "check_sha256() (in module conan.tools.files.files)": [[201, "conan.tools.files.files.check_sha256"]], "download() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.download"]], "ftp_download() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.ftp_download"]], "get() (in module conan.tools.files.files)": [[202, "conan.tools.files.files.get"]], "apply_conandata_patches() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.apply_conandata_patches"]], "export_conandata_patches() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.export_conandata_patches"]], "patch() (in module conan.tools.files.patches)": [[204, "conan.tools.files.patches.patch"]], "absolute_to_relative_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.absolute_to_relative_symlinks"]], "remove_broken_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.remove_broken_symlinks"]], "remove_external_symlinks() (in module conan.tools.files.symlinks)": [[205, "conan.tools.files.symlinks.remove_external_symlinks"]], "autotools (class in conan.tools.gnu.autotools)": [[207, "conan.tools.gnu.autotools.Autotools"]], "autoreconf() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.autoreconf"]], "configure() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.configure"]], "install() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.install"]], "make() (autotools method)": [[207, "conan.tools.gnu.autotools.Autotools.make"]], "autotoolsdeps (class in conan.tools.gnu.autotoolsdeps)": [[208, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps"]], "environment (autotoolsdeps property)": [[208, "conan.tools.gnu.autotoolsdeps.AutotoolsDeps.environment"]], "autotoolstoolchain (class in conan.tools.gnu.autotoolstoolchain)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain"]], "update_autoreconf_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_autoreconf_args"]], "update_configure_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_configure_args"]], "update_make_args() (autotoolstoolchain method)": [[209, "conan.tools.gnu.autotoolstoolchain.AutotoolsToolchain.update_make_args"]], "makedeps (class in conan.tools.gnu)": [[210, "conan.tools.gnu.MakeDeps"]], "generate() (makedeps method)": [[210, "conan.tools.gnu.MakeDeps.generate"]], "pkgconfig (class in conan.tools.gnu)": [[211, "conan.tools.gnu.PkgConfig"]], "fill_cpp_info() (pkgconfig method)": [[211, "conan.tools.gnu.PkgConfig.fill_cpp_info"]], "pkgconfigdeps (class in conan.tools.gnu)": [[212, "conan.tools.gnu.PkgConfigDeps"]], "content (pkgconfigdeps property)": [[212, "conan.tools.gnu.PkgConfigDeps.content"]], "generate() (pkgconfigdeps method)": [[212, "conan.tools.gnu.PkgConfigDeps.generate"]], "bazel (class in conan.tools.google)": [[214, "conan.tools.google.Bazel"]], "build() (bazel method)": [[214, "conan.tools.google.Bazel.build"]], "test() (bazel method)": [[214, "conan.tools.google.Bazel.test"]], "bazeldeps (class in conan.tools.google)": [[215, "conan.tools.google.BazelDeps"]], "build_context_activated (bazeldeps attribute)": [[215, "conan.tools.google.BazelDeps.build_context_activated"]], "generate() (bazeldeps method)": [[215, "conan.tools.google.BazelDeps.generate"]], "bazeltoolchain (class in conan.tools.google)": [[216, "conan.tools.google.BazelToolchain"]], "compilation_mode (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.compilation_mode"]], "compiler (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.compiler"]], "conlyopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.conlyopt"]], "copt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.copt"]], "cppstd (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cppstd"]], "cpu (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cpu"]], "crosstool_top (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.crosstool_top"]], "cxxopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.cxxopt"]], "dynamic_mode (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.dynamic_mode"]], "force_pic (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.force_pic"]], "generate() (bazeltoolchain method)": [[216, "conan.tools.google.BazelToolchain.generate"]], "linkopt (bazeltoolchain attribute)": [[216, "conan.tools.google.BazelToolchain.linkopt"]], "intelcc (class in conan.tools.intel)": [[217, "conan.tools.intel.IntelCC"]], "arch (intelcc attribute)": [[217, "conan.tools.intel.IntelCC.arch"]], "command (intelcc property)": [[217, "conan.tools.intel.IntelCC.command"]], "generate() (intelcc method)": [[217, "conan.tools.intel.IntelCC.generate"]], "installation_path (intelcc property)": [[217, "conan.tools.intel.IntelCC.installation_path"]], "ms_toolset (intelcc property)": [[217, "conan.tools.intel.IntelCC.ms_toolset"]], "meson (class in conan.tools.meson)": [[220, "conan.tools.meson.Meson"]], "build() (meson method)": [[220, "conan.tools.meson.Meson.build"]], "configure() (meson method)": [[220, "conan.tools.meson.Meson.configure"]], "install() (meson method)": [[220, "conan.tools.meson.Meson.install"]], "test() (meson method)": [[220, "conan.tools.meson.Meson.test"]], "mesontoolchain (class in conan.tools.meson)": [[221, "conan.tools.meson.MesonToolchain"]], "apple_arch_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_arch_flag"]], "apple_isysroot_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_isysroot_flag"]], "apple_min_version_flag (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.apple_min_version_flag"]], "ar (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.ar"]], "as_ (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.as_"]], "c (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c"]], "c_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_args"]], "c_ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_ld"]], "c_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.c_link_args"]], "cpp (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp"]], "cpp_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_args"]], "cpp_ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_ld"]], "cpp_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cpp_link_args"]], "cross_build (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.cross_build"]], "generate() (mesontoolchain method)": [[221, "conan.tools.meson.MesonToolchain.generate"]], "ld (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.ld"]], "objc (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc"]], "objc_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc_args"]], "objc_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objc_link_args"]], "objcpp (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp"]], "objcpp_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp_args"]], "objcpp_link_args (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.objcpp_link_args"]], "pkg_config_path (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.pkg_config_path"]], "pkgconfig (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.pkgconfig"]], "preprocessor_definitions (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.preprocessor_definitions"]], "project_options (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.project_options"]], "properties (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.properties"]], "strip (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.strip"]], "windres (mesontoolchain attribute)": [[221, "conan.tools.meson.MesonToolchain.windres"]], "check_min_vs() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.check_min_vs"]], "is_msvc() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.is_msvc"]], "is_msvc_static_runtime() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.is_msvc_static_runtime"]], "msvc_runtime_flag() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.msvc_runtime_flag"]], "msvs_toolset() (in module conan.tools.microsoft.visual)": [[223, "conan.tools.microsoft.visual.msvs_toolset"]], "unix_path() (in module conan.tools.microsoft)": [[223, "conan.tools.microsoft.unix_path"]], "msbuild (class in conan.tools.microsoft)": [[224, "conan.tools.microsoft.MSBuild"]], "build() (msbuild method)": [[224, "conan.tools.microsoft.MSBuild.build"]], "command() (msbuild method)": [[224, "conan.tools.microsoft.MSBuild.command"]], "msbuilddeps (class in conan.tools.microsoft)": [[225, "conan.tools.microsoft.MSBuildDeps"]], "generate() (msbuilddeps method)": [[225, "conan.tools.microsoft.MSBuildDeps.generate"]], "msbuildtoolchain (class in conan.tools.microsoft)": [[226, "conan.tools.microsoft.MSBuildToolchain"]], "generate() (msbuildtoolchain method)": [[226, "conan.tools.microsoft.MSBuildToolchain.generate"]], "vcvars (class in conan.tools.microsoft)": [[228, "conan.tools.microsoft.VCVars"]], "generate() (vcvars method)": [[228, "conan.tools.microsoft.VCVars.generate"]], "vs_layout() (in module conan.tools.microsoft)": [[229, "conan.tools.microsoft.vs_layout"]], "git (class in conan.tools.scm.git)": [[231, "conan.tools.scm.git.Git"]], "checkout() (git method)": [[231, "conan.tools.scm.git.Git.checkout"]], "checkout_from_conandata_coordinates() (git method)": [[231, "conan.tools.scm.git.Git.checkout_from_conandata_coordinates"]], "clone() (git method)": [[231, "conan.tools.scm.git.Git.clone"]], "commit_in_remote() (git method)": [[231, "conan.tools.scm.git.Git.commit_in_remote"]], "coordinates_to_conandata() (git method)": [[231, "conan.tools.scm.git.Git.coordinates_to_conandata"]], "fetch_commit() (git method)": [[231, "conan.tools.scm.git.Git.fetch_commit"]], "get_commit() (git method)": [[231, "conan.tools.scm.git.Git.get_commit"]], "get_remote_url() (git method)": [[231, "conan.tools.scm.git.Git.get_remote_url"]], "get_repo_root() (git method)": [[231, "conan.tools.scm.git.Git.get_repo_root"]], "get_url_and_commit() (git method)": [[231, "conan.tools.scm.git.Git.get_url_and_commit"]], "included_files() (git method)": [[231, "conan.tools.scm.git.Git.included_files"]], "is_dirty() (git method)": [[231, "conan.tools.scm.git.Git.is_dirty"]], "run() (git method)": [[231, "conan.tools.scm.git.Git.run"]], "version (class in conan.tools.scm)": [[232, "conan.tools.scm.Version"]], "apk (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Apk"]], "apt (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Apt"]], "brew (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Brew"]], "chocolatey (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Chocolatey"]], "pacman (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.PacMan"]], "pkg (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Pkg"]], "pkgutil (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.PkgUtil"]], "yum (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Yum"]], "zypper (class in conan.tools.system.package_manager)": [[235, "conan.tools.system.package_manager.Zypper"]], "check() (apk method)": [[235, "conan.tools.system.package_manager.Apk.check"]], "check() (apt method)": [[235, "conan.tools.system.package_manager.Apt.check"]], "check() (brew method)": [[235, "conan.tools.system.package_manager.Brew.check"]], "check() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.check"]], "check() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.check"]], "check() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.check"]], "check() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.check"]], "check() (yum method)": [[235, "conan.tools.system.package_manager.Yum.check"]], "check() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.check"]], "install() (apk method)": [[235, "conan.tools.system.package_manager.Apk.install"]], "install() (apt method)": [[235, "conan.tools.system.package_manager.Apt.install"]], "install() (brew method)": [[235, "conan.tools.system.package_manager.Brew.install"]], "install() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.install"]], "install() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.install"]], "install() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.install"]], "install() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.install"]], "install() (yum method)": [[235, "conan.tools.system.package_manager.Yum.install"]], "install() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.install"]], "install_substitutes() (apk method)": [[235, "conan.tools.system.package_manager.Apk.install_substitutes"]], "install_substitutes() (apt method)": [[235, "conan.tools.system.package_manager.Apt.install_substitutes"]], "install_substitutes() (brew method)": [[235, "conan.tools.system.package_manager.Brew.install_substitutes"]], "install_substitutes() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.install_substitutes"]], "install_substitutes() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.install_substitutes"]], "install_substitutes() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.install_substitutes"]], "install_substitutes() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.install_substitutes"]], "install_substitutes() (yum method)": [[235, "conan.tools.system.package_manager.Yum.install_substitutes"]], "install_substitutes() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.install_substitutes"]], "update() (apk method)": [[235, "conan.tools.system.package_manager.Apk.update"]], "update() (apt method)": [[235, "conan.tools.system.package_manager.Apt.update"]], "update() (brew method)": [[235, "conan.tools.system.package_manager.Brew.update"]], "update() (chocolatey method)": [[235, "conan.tools.system.package_manager.Chocolatey.update"]], "update() (pacman method)": [[235, "conan.tools.system.package_manager.PacMan.update"]], "update() (pkg method)": [[235, "conan.tools.system.package_manager.Pkg.update"]], "update() (pkgutil method)": [[235, "conan.tools.system.package_manager.PkgUtil.update"]], "update() (yum method)": [[235, "conan.tools.system.package_manager.Yum.update"]], "update() (zypper method)": [[235, "conan.tools.system.package_manager.Zypper.update"]]}}) \ No newline at end of file diff --git a/2/sitemap.xml b/2/sitemap.xml index 4c929af5e4e..f1e60be4aca 100644 --- a/2/sitemap.xml +++ b/2/sitemap.xml @@ -1,2 +1,2 @@ -https://docs.conan.io/en/2.1/404.htmlhttps://docs.conan.io/en/2.1/changelog.htmlhttps://docs.conan.io/en/2.1/devops.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/sources_backup.htmlhttps://docs.conan.io/en/2.1/devops/conancenter/hosting_binaries.htmlhttps://docs.conan.io/en/2.1/devops/metadata.htmlhttps://docs.conan.io/en/2.1/devops/save_restore.htmlhttps://docs.conan.io/en/2.1/devops/using_conancenter.htmlhttps://docs.conan.io/en/2.1/devops/versioning.htmlhttps://docs.conan.io/en/2.1/devops/versioning/resolve_prereleases.htmlhttps://docs.conan.io/en/2.1/examples.htmlhttps://docs.conan.io/en/2.1/examples/commands.htmlhttps://docs.conan.io/en/2.1/examples/commands/pkglists.htmlhttps://docs.conan.io/en/2.1/examples/conanfile.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/conanfile_in_subfolder.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/editable_components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/multiple_subprojects.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/third_party_libraries.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/package_info_conf_and_env.htmlhttps://docs.conan.io/en/2.1/examples/config_files.htmlhttps://docs.conan.io/en/2.1/examples/config_files/settings/settings_user.htmlhttps://docs.conan.io/en/2.1/examples/cross_build.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/android_studio.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/ndk.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow/debug/step_into_dependencies.htmlhttps://docs.conan.io/en/2.1/examples/extensions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/custom_commands.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/builtin_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/custom_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/dev/development_deploy.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/sources/custom_deployer_sources.htmlhttps://docs.conan.io/en/2.1/examples/graph.htmlhttps://docs.conan.io/en/2.1/examples/graph/requires/consume_cmake_macro.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_options.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_versions.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/use_cmake_modules.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/using_protobuf.htmlhttps://docs.conan.io/en/2.1/examples/tools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/use_package_config_cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/files.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/patches/patch_sources.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazeltoolchain/build_simple_bazel_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/mesontoolchain/build_simple_meson_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/scm/git/capture_scm/git_capture_scm.htmlhttps://docs.conan.io/en/2.1/index.htmlhttps://docs.conan.io/en/2.1/installation.htmlhttps://docs.conan.io/en/2.1/integrations.htmlhttps://docs.conan.io/en/2.1/integrations/android.htmlhttps://docs.conan.io/en/2.1/integrations/autotools.htmlhttps://docs.conan.io/en/2.1/integrations/bazel.htmlhttps://docs.conan.io/en/2.1/integrations/clion.htmlhttps://docs.conan.io/en/2.1/integrations/cmake.htmlhttps://docs.conan.io/en/2.1/integrations/jfrog.htmlhttps://docs.conan.io/en/2.1/integrations/makefile.htmlhttps://docs.conan.io/en/2.1/integrations/meson.htmlhttps://docs.conan.io/en/2.1/integrations/visual_studio.htmlhttps://docs.conan.io/en/2.1/integrations/xcode.htmlhttps://docs.conan.io/en/2.1/introduction.htmlhttps://docs.conan.io/en/2.1/knowledge.htmlhttps://docs.conan.io/en/2.1/knowledge/cheatsheet.htmlhttps://docs.conan.io/en/2.1/knowledge/faq.htmlhttps://docs.conan.io/en/2.1/knowledge/guidelines.htmlhttps://docs.conan.io/en/2.1/knowledge/videos.htmlhttps://docs.conan.io/en/2.1/reference.htmlhttps://docs.conan.io/en/2.1/reference/binary_model.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/custom_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/dependencies.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/extending.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/package_id.htmlhttps://docs.conan.io/en/2.1/reference/commands.htmlhttps://docs.conan.io/en/2.1/reference/commands/build.htmlhttps://docs.conan.io/en/2.1/reference/commands/cache.htmlhttps://docs.conan.io/en/2.1/reference/commands/config.htmlhttps://docs.conan.io/en/2.1/reference/commands/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/download.htmlhttps://docs.conan.io/en/2.1/reference/commands/editable.htmlhttps://docs.conan.io/en/2.1/reference/commands/export.htmlhttps://docs.conan.io/en/2.1/reference/commands/export-pkg.htmlhttps://docs.conan.io/en/2.1/reference/commands/formatters/graph_info_json_formatter.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order_merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/explain.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/info.htmlhttps://docs.conan.io/en/2.1/reference/commands/inspect.htmlhttps://docs.conan.io/en/2.1/reference/commands/install.htmlhttps://docs.conan.io/en/2.1/reference/commands/list.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/add.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/new.htmlhttps://docs.conan.io/en/2.1/reference/commands/profile.htmlhttps://docs.conan.io/en/2.1/reference/commands/remote.htmlhttps://docs.conan.io/en/2.1/reference/commands/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/search.htmlhttps://docs.conan.io/en/2.1/reference/commands/source.htmlhttps://docs.conan.io/en/2.1/reference/commands/test.htmlhttps://docs.conan.io/en/2.1/reference/commands/upload.htmlhttps://docs.conan.io/en/2.1/reference/commands/version.htmlhttps://docs.conan.io/en/2.1/reference/conan_server.htmlhttps://docs.conan.io/en/2.1/reference/conanfile.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/attributes.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/compatibility.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/config_options.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/configure.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/deploy.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export_sources.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/generate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/init.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/layout.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_info.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_name.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_version.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/source.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/system_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/test.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate_build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/running_and_output.htmlhttps://docs.conan.io/en/2.1/reference/conanfile_txt.htmlhttps://docs.conan.io/en/2.1/reference/config_files.htmlhttps://docs.conan.io/en/2.1/reference/config_files/conanrc.htmlhttps://docs.conan.io/en/2.1/reference/config_files/credentials.htmlhttps://docs.conan.io/en/2.1/reference/config_files/global_conf.htmlhttps://docs.conan.io/en/2.1/reference/config_files/profiles.htmlhttps://docs.conan.io/en/2.1/reference/config_files/remotes.htmlhttps://docs.conan.io/en/2.1/reference/config_files/settings.htmlhttps://docs.conan.io/en/2.1/reference/config_files/source_credentials.htmlhttps://docs.conan.io/en/2.1/reference/environment.htmlhttps://docs.conan.io/en/2.1/reference/extensions.htmlhttps://docs.conan.io/en/2.1/reference/extensions/binary_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/extensions/command_wrapper.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_commands.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_generators.htmlhttps://docs.conan.io/en/2.1/reference/extensions/deployers.htmlhttps://docs.conan.io/en/2.1/reference/extensions/hooks.htmlhttps://docs.conan.io/en/2.1/reference/extensions/package_signing.htmlhttps://docs.conan.io/en/2.1/reference/extensions/profile_plugin.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConanAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConfigAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/DownloadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ExportAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/GraphAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/InstallAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ListAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/NewAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ProfilesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemotesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemoveAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/SearchAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/UploadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_requires.htmlhttps://docs.conan.io/en/2.1/reference/tools.htmlhttps://docs.conan.io/en/2.1/reference/tools/android.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/other.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodebuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodetoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/build.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmakedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmaketoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/cpp_info.htmlhttps://docs.conan.io/en/2.1/reference/tools/env.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/environment.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/envvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualbuildenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualrunenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/files.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/basic.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/checksum.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/downloads.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/packaging.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/patches.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/symlinks.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotools.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolsdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolstoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/makedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfig.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfigdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeldeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeltoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/intel.htmlhttps://docs.conan.io/en/2.1/reference/tools/layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/mesontoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/helpers.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuilddeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuildtoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/nmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/vcvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/visual_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/git.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/version.htmlhttps://docs.conan.io/en/2.1/reference/tools/scons.htmlhttps://docs.conan.io/en/2.1/reference/tools/system.htmlhttps://docs.conan.io/en/2.1/reference/tools/system/package_manager.htmlhttps://docs.conan.io/en/2.1/tutorial.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/conan_center.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/uploading_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/build_simple_cmake_project.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/cross_building_with_conan.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/different_configurations.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/intro_to_versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/the_flexibility_of_conanfile_py.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/use_tools_as_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/add_dependencies_to_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/build_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/configure_options_settings.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/define_package_information.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/handle_sources_in_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/header_only_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/package_method.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/preparing_the_build.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/test_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/editable_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/local_package_development_flow.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/package_layout.htmlhttps://docs.conan.io/en/2.1/tutorial/other_features.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/conflicts.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/lockfiles.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/revisions.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/version_ranges.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/versions.htmlhttps://docs.conan.io/en/2.1/whatsnew.htmlhttps://docs.conan.io/en/2.1/genindex.htmlhttps://docs.conan.io/en/2.1/Page Not Found.htmlhttps://docs.conan.io/en/2.1/search.html \ No newline at end of file +https://docs.conan.io/en/2.1/404.htmlhttps://docs.conan.io/en/2.1/changelog.htmlhttps://docs.conan.io/en/2.1/devops.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/repositories/artifactory/creating_backup_sources_repo.htmlhttps://docs.conan.io/en/2.1/devops/backup_sources/sources_backup.htmlhttps://docs.conan.io/en/2.1/devops/conancenter/hosting_binaries.htmlhttps://docs.conan.io/en/2.1/devops/metadata.htmlhttps://docs.conan.io/en/2.1/devops/save_restore.htmlhttps://docs.conan.io/en/2.1/devops/using_conancenter.htmlhttps://docs.conan.io/en/2.1/devops/versioning.htmlhttps://docs.conan.io/en/2.1/devops/versioning/resolve_prereleases.htmlhttps://docs.conan.io/en/2.1/examples.htmlhttps://docs.conan.io/en/2.1/examples/commands.htmlhttps://docs.conan.io/en/2.1/examples/commands/pkglists.htmlhttps://docs.conan.io/en/2.1/examples/conanfile.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/conanfile_in_subfolder.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/editable_components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/multiple_subprojects.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/layout/third_party_libraries.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/components.htmlhttps://docs.conan.io/en/2.1/examples/conanfile/package_info/package_info_conf_and_env.htmlhttps://docs.conan.io/en/2.1/examples/config_files.htmlhttps://docs.conan.io/en/2.1/examples/config_files/settings/settings_user.htmlhttps://docs.conan.io/en/2.1/examples/cross_build.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/android_studio.htmlhttps://docs.conan.io/en/2.1/examples/cross_build/android/ndk.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow.htmlhttps://docs.conan.io/en/2.1/examples/dev_flow/debug/step_into_dependencies.htmlhttps://docs.conan.io/en/2.1/examples/extensions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/clean/custom_command_clean_revisions.htmlhttps://docs.conan.io/en/2.1/examples/extensions/commands/custom_commands.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/builtin_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/custom_deployers.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/dev/development_deploy.htmlhttps://docs.conan.io/en/2.1/examples/extensions/deployers/sources/custom_deployer_sources.htmlhttps://docs.conan.io/en/2.1/examples/graph.htmlhttps://docs.conan.io/en/2.1/examples/graph/requires/consume_cmake_macro.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_options.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/different_versions.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/use_cmake_modules.htmlhttps://docs.conan.io/en/2.1/examples/graph/tool_requires/using_protobuf.htmlhttps://docs.conan.io/en/2.1/examples/tools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools.htmlhttps://docs.conan.io/en/2.1/examples/tools/autotools/autotools_toolchain/build_project_autotools_toolchain.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/build_project_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/extend_own_cmake_presets.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/inject_cmake_variables.htmlhttps://docs.conan.io/en/2.1/examples/tools/cmake/cmake_toolchain/use_package_config_cmake.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/files.htmlhttps://docs.conan.io/en/2.1/examples/tools/files/patches/patch_sources.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/examples/tools/google/bazeltoolchain/build_simple_bazel_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/build_simple_meson_project.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/examples/tools/microsoft/msbuild/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/examples/tools/scm/git/capture_scm/git_capture_scm.htmlhttps://docs.conan.io/en/2.1/index.htmlhttps://docs.conan.io/en/2.1/installation.htmlhttps://docs.conan.io/en/2.1/integrations.htmlhttps://docs.conan.io/en/2.1/integrations/android.htmlhttps://docs.conan.io/en/2.1/integrations/autotools.htmlhttps://docs.conan.io/en/2.1/integrations/bazel.htmlhttps://docs.conan.io/en/2.1/integrations/clion.htmlhttps://docs.conan.io/en/2.1/integrations/cmake.htmlhttps://docs.conan.io/en/2.1/integrations/jfrog.htmlhttps://docs.conan.io/en/2.1/integrations/makefile.htmlhttps://docs.conan.io/en/2.1/integrations/meson.htmlhttps://docs.conan.io/en/2.1/integrations/visual_studio.htmlhttps://docs.conan.io/en/2.1/integrations/xcode.htmlhttps://docs.conan.io/en/2.1/introduction.htmlhttps://docs.conan.io/en/2.1/knowledge.htmlhttps://docs.conan.io/en/2.1/knowledge/cheatsheet.htmlhttps://docs.conan.io/en/2.1/knowledge/faq.htmlhttps://docs.conan.io/en/2.1/knowledge/guidelines.htmlhttps://docs.conan.io/en/2.1/knowledge/videos.htmlhttps://docs.conan.io/en/2.1/reference.htmlhttps://docs.conan.io/en/2.1/reference/binary_model.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/custom_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/dependencies.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/extending.htmlhttps://docs.conan.io/en/2.1/reference/binary_model/package_id.htmlhttps://docs.conan.io/en/2.1/reference/commands.htmlhttps://docs.conan.io/en/2.1/reference/commands/build.htmlhttps://docs.conan.io/en/2.1/reference/commands/cache.htmlhttps://docs.conan.io/en/2.1/reference/commands/config.htmlhttps://docs.conan.io/en/2.1/reference/commands/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/download.htmlhttps://docs.conan.io/en/2.1/reference/commands/editable.htmlhttps://docs.conan.io/en/2.1/reference/commands/export.htmlhttps://docs.conan.io/en/2.1/reference/commands/export-pkg.htmlhttps://docs.conan.io/en/2.1/reference/commands/formatters/graph_info_json_formatter.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/build_order_merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/explain.htmlhttps://docs.conan.io/en/2.1/reference/commands/graph/info.htmlhttps://docs.conan.io/en/2.1/reference/commands/inspect.htmlhttps://docs.conan.io/en/2.1/reference/commands/install.htmlhttps://docs.conan.io/en/2.1/reference/commands/list.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/add.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/create.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/merge.htmlhttps://docs.conan.io/en/2.1/reference/commands/lock/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/new.htmlhttps://docs.conan.io/en/2.1/reference/commands/profile.htmlhttps://docs.conan.io/en/2.1/reference/commands/remote.htmlhttps://docs.conan.io/en/2.1/reference/commands/remove.htmlhttps://docs.conan.io/en/2.1/reference/commands/search.htmlhttps://docs.conan.io/en/2.1/reference/commands/source.htmlhttps://docs.conan.io/en/2.1/reference/commands/test.htmlhttps://docs.conan.io/en/2.1/reference/commands/upload.htmlhttps://docs.conan.io/en/2.1/reference/commands/version.htmlhttps://docs.conan.io/en/2.1/reference/conan_server.htmlhttps://docs.conan.io/en/2.1/reference/conanfile.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/attributes.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/build_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/compatibility.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/config_options.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/configure.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/deploy.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/export_sources.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/generate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/init.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/layout.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_id.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/package_info.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_name.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/set_version.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/source.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/system_requirements.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/test.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/methods/validate_build.htmlhttps://docs.conan.io/en/2.1/reference/conanfile/running_and_output.htmlhttps://docs.conan.io/en/2.1/reference/conanfile_txt.htmlhttps://docs.conan.io/en/2.1/reference/config_files.htmlhttps://docs.conan.io/en/2.1/reference/config_files/conanrc.htmlhttps://docs.conan.io/en/2.1/reference/config_files/credentials.htmlhttps://docs.conan.io/en/2.1/reference/config_files/global_conf.htmlhttps://docs.conan.io/en/2.1/reference/config_files/profiles.htmlhttps://docs.conan.io/en/2.1/reference/config_files/remotes.htmlhttps://docs.conan.io/en/2.1/reference/config_files/settings.htmlhttps://docs.conan.io/en/2.1/reference/config_files/source_credentials.htmlhttps://docs.conan.io/en/2.1/reference/environment.htmlhttps://docs.conan.io/en/2.1/reference/extensions.htmlhttps://docs.conan.io/en/2.1/reference/extensions/binary_compatibility.htmlhttps://docs.conan.io/en/2.1/reference/extensions/command_wrapper.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_commands.htmlhttps://docs.conan.io/en/2.1/reference/extensions/custom_generators.htmlhttps://docs.conan.io/en/2.1/reference/extensions/deployers.htmlhttps://docs.conan.io/en/2.1/reference/extensions/hooks.htmlhttps://docs.conan.io/en/2.1/reference/extensions/package_signing.htmlhttps://docs.conan.io/en/2.1/reference/extensions/profile_plugin.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConanAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ConfigAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/DownloadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ExportAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/GraphAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/InstallAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ListAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/NewAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/ProfilesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemotesAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/RemoveAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/SearchAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_api/UploadAPI.htmlhttps://docs.conan.io/en/2.1/reference/extensions/python_requires.htmlhttps://docs.conan.io/en/2.1/reference/tools.htmlhttps://docs.conan.io/en/2.1/reference/tools/android.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/other.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodebuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/apple/xcodetoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/build.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmake_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmakedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/cmake/cmaketoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/cpp_info.htmlhttps://docs.conan.io/en/2.1/reference/tools/env.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/environment.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/envvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualbuildenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/env/virtualrunenv.htmlhttps://docs.conan.io/en/2.1/reference/tools/files.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/basic.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/checksum.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/downloads.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/packaging.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/patches.htmlhttps://docs.conan.io/en/2.1/reference/tools/files/symlinks.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotools.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolsdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/autotoolstoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/makedeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfig.htmlhttps://docs.conan.io/en/2.1/reference/tools/gnu/pkgconfigdeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazel.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeldeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/google/bazeltoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/intel.htmlhttps://docs.conan.io/en/2.1/reference/tools/layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/meson.htmlhttps://docs.conan.io/en/2.1/reference/tools/meson/mesontoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/helpers.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuild.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuilddeps.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/msbuildtoolchain.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/nmake.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/vcvars.htmlhttps://docs.conan.io/en/2.1/reference/tools/microsoft/visual_layout.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/git.htmlhttps://docs.conan.io/en/2.1/reference/tools/scm/version.htmlhttps://docs.conan.io/en/2.1/reference/tools/scons.htmlhttps://docs.conan.io/en/2.1/reference/tools/system.htmlhttps://docs.conan.io/en/2.1/reference/tools/system/package_manager.htmlhttps://docs.conan.io/en/2.1/tutorial.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/conan_center.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/artifactory/artifactory_ce_cpp.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/setting_up_conan_remotes/conan_server.htmlhttps://docs.conan.io/en/2.1/tutorial/conan_repositories/uploading_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/build_simple_cmake_project.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/cross_building_with_conan.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/different_configurations.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/intro_to_versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/the_flexibility_of_conanfile_py.htmlhttps://docs.conan.io/en/2.1/tutorial/consuming_packages/use_tools_as_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/add_dependencies_to_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/build_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/configure_options_settings.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/create_your_first_package.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/define_package_information.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/handle_sources_in_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/header_only_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/package_prebuilt_binaries.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/other_types_of_packages/tool_requires_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/package_method.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/preparing_the_build.htmlhttps://docs.conan.io/en/2.1/tutorial/creating_packages/test_conan_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/editable_packages.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/local_package_development_flow.htmlhttps://docs.conan.io/en/2.1/tutorial/developing_packages/package_layout.htmlhttps://docs.conan.io/en/2.1/tutorial/other_features.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/conflicts.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/lockfiles.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/revisions.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/version_ranges.htmlhttps://docs.conan.io/en/2.1/tutorial/versioning/versions.htmlhttps://docs.conan.io/en/2.1/whatsnew.htmlhttps://docs.conan.io/en/2.1/genindex.htmlhttps://docs.conan.io/en/2.1/Page Not Found.htmlhttps://docs.conan.io/en/2.1/search.html \ No newline at end of file diff --git a/2/tutorial.html b/2/tutorial.html index 8add3eb8f4e..b2843b8e355 100644 --- a/2/tutorial.html +++ b/2/tutorial.html @@ -183,7 +183,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/tutorial/conan_repositories.html b/2/tutorial/conan_repositories.html index 05113be83ef..f8e73ae0497 100644 --- a/2/tutorial/conan_repositories.html +++ b/2/tutorial/conan_repositories.html @@ -153,7 +153,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/tutorial/conan_repositories/conan_center.html b/2/tutorial/conan_repositories/conan_center.html index dc33148b180..f0b7b67175b 100644 --- a/2/tutorial/conan_repositories/conan_center.html +++ b/2/tutorial/conan_repositories/conan_center.html @@ -141,7 +141,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/tutorial/conan_repositories/setting_up_conan_remotes.html b/2/tutorial/conan_repositories/setting_up_conan_remotes.html index 1782d915923..2b6a443dcd4 100644 --- a/2/tutorial/conan_repositories/setting_up_conan_remotes.html +++ b/2/tutorial/conan_repositories/setting_up_conan_remotes.html @@ -163,7 +163,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 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 53d3496d07d..f2232ea77d1 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 @@ -191,7 +191,7 @@

    Creating and Using a Conan Repo

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 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 2f6568a2818..2ea96e25190 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 @@ -177,7 +177,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/tutorial/conan_repositories/uploading_packages.html b/2/tutorial/conan_repositories/uploading_packages.html index 8720ca7d20f..ee41d8fcd73 100644 --- a/2/tutorial/conan_repositories/uploading_packages.html +++ b/2/tutorial/conan_repositories/uploading_packages.html @@ -180,7 +180,7 @@

    © Copyright 2016-2024, JFrog. - Last updated on Mar 05, 2024. + Last updated on Mar 06, 2024.

    diff --git a/2/tutorial/consuming_packages.html b/2/tutorial/consuming_packages.html index 1f9d2fe1e2b..af4d8e7dbaa 100644 --- a/2/tutorial/consuming_packages.html +++ b/2/tutorial/consuming_packages.html @@ -154,6 +154,7 @@
  • Use the layout() method
  • Use the validate() method to raise an error for non-supported configurations
  • Conditional requirements using a conanfile.py
  • +
  • Use the generate() method to copy resources from packages
  • How to cross-compile your applications using Conan: host and build contexts