From ef978ccbaff81a9c6ed250b066c1a510489dd422 Mon Sep 17 00:00:00 2001 From: memsharded Date: Wed, 9 Aug 2023 11:00:44 +0200 Subject: [PATCH] fix handle_sources tree --- tutorial/creating_packages/handle_sources_in_packages.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorial/creating_packages/handle_sources_in_packages.rst b/tutorial/creating_packages/handle_sources_in_packages.rst index c52efbe19256..fdf07492a36e 100644 --- a/tutorial/creating_packages/handle_sources_in_packages.rst +++ b/tutorial/creating_packages/handle_sources_in_packages.rst @@ -29,7 +29,6 @@ the library sources: .. code-block:: text . - ├── CMakeLists.txt ├── conanfile.py └── test_package ├── CMakeLists.txt @@ -37,6 +36,9 @@ the library sources: └── src └── example.cpp +(There are other files, like ``conanfile_git.py``, ``conandata.yml`` and ``conanfile_conandata.yml``. These files are the "solution" or the final state of the code after running this tutorial section). + + Sources from a *zip* file stored in a remote repository -------------------------------------------------------