diff --git a/docs/faqs.md b/docs/faqs.md index 9ecbaef89c..7179c56a26 100644 --- a/docs/faqs.md +++ b/docs/faqs.md @@ -16,6 +16,7 @@ This section gathers the most common questions from the community related to pac * [Is the Jenkins orchestration library publicly available?](#is-the-jenkins-orchestration-library-publicly-available) * [Why not x86 binaries?](#why-not-x86-binaries) * [But if there are no packages available, what will the x86 validation look like?](#but-if-there-are-no-packages-available-what-will-the-x86-validation-look-like) + * [Do static libraries tend to be compiled as PIC by default?](#do-static-libraries-tend-to-be-compiled-as-pic-by-default) * [Why PDB files are not allowed?](#why-pdb-files-are-not-allowed) * [Why is there no option for PDB, as there is for fPIC?](#why-is-there-no-option-for-pdb-as-there-is-for-fpic) * [Can I remove an option from a recipe?](#can-i-remove-an-option-from-a-recipe) diff --git a/docs/how_to_add_packages.md b/docs/how_to_add_packages.md index 9afa6401e8..1fe2b11941 100644 --- a/docs/how_to_add_packages.md +++ b/docs/how_to_add_packages.md @@ -26,7 +26,9 @@ When pull requests are merged, the CI will upload the generated packages to the * [Verifying Dependency Version](#verifying-dependency-version) * [Verifying Dependency Options](#verifying-dependency-options) * [Test the recipe locally](#test-the-recipe-locally) + * [Hooks](#hooks) * [Updating conan hooks on your machine](#updating-conan-hooks-on-your-machine) + * [Linters](#linters) * [Debugging failed builds](#debugging-failed-builds) ## Request access diff --git a/docs/packaging_policy.md b/docs/packaging_policy.md index 25757c36cc..9c58b5482b 100644 --- a/docs/packaging_policy.md +++ b/docs/packaging_policy.md @@ -10,7 +10,10 @@ This document gathers all the relevant information regarding the general lines t * [Build](#build) * [Package](#package) * [Settings](#settings) - * [Options](#options) + * [Options](#options) + * [Predefined Options and Known Defaults](#predefined-options-and-known-defaults) + * [Options to Avoid](#options-to-avoid) + * [Recommended feature options names](#recommended-feature-options-names) ## Sources diff --git a/docs/reviewing.md b/docs/reviewing.md index 3490fe6624..bc36105848 100644 --- a/docs/reviewing.md +++ b/docs/reviewing.md @@ -19,7 +19,6 @@ The following policies are preferred during the review, but not mandatory: * [Test Package](#test-package) * [Minimalistic Source Code](#minimalistic-source-code) * [CMake targets](#cmake-targets) - * [Recommended feature options names](#recommended-feature-options-names) * [Supported Versions](#supported-versions) * [Removing old versions](#removing-old-versions) * [Adding old versions](#adding-old-versions) diff --git a/docs/v2_migration.md b/docs/v2_migration.md index 26e53c13df..700c20b79a 100644 --- a/docs/v2_migration.md +++ b/docs/v2_migration.md @@ -7,7 +7,9 @@ Conan v2 in pull requests. ## Contents - * [Using Layout with New Generators](#using-layout-with-new-generators) + * [Using Layout](#using-layout) + * [With New Generators](#with-new-generators) + * [With Multiple Build Helpers](#with-multiple-build-helpers) * [New cpp_info set_property model](#new-cpp_info-set_property-model) * [CMakeDeps](#cmakedeps) * [Update required_conan_version to ">=1.43.0"](#update-required_conan_version-to-1430)