Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mention to tools.graph:skip_binaries #3342

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Conan extensions examples
=========================

.. note::

Check the `conan-extensions <https://github.com/conan-io/conan-extensions>`_ repository,
which hosts useful extensions ready to use or to take inspiration from for your custom ones

.. toctree::
:maxdepth: 2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,8 @@ under ``dependencies_sources`` using :ref:`conan.tools.copy<conan_tools_files_co
``tools.build:download_source=True`` is necessary so that ``dep.folders.source_folder`` is defined for the dependencies.
Without the conf, said variable will not be defined for those dependencies that do not need to be built from sources
nor in those commands that do not require building, such as :command:`conan graph`.

.. note::

If your custom deployer needs access to the full dependency graph, including those libraries that might be skipped,
use the ``tools.graph:skip_binaries=False`` conf. This is useful for collecting, for example, all the licenses in your graph.